Dim v As Long = Bit.And(value, 0xFFFFFFFF)
Dim i_b0 As Int = Bit.And(v, 0xFF)
Dim i_b1 As Int = Bit.And(Bit.UnsignedShiftRight(v, 8), 0xFF)
Dim i_b2 As Int = Bit.And(Bit.UnsignedShiftRight(v, 16), 0xFF)
Dim i_b3 As Int = Bit.And(Bit.UnsignedShiftRight(v, 24), 0xFF)
Log( $" ${i_b3}, ${i_b2}, ${i_b1}, ${i_b0}")