func Length(x uint64) int { return (bits.Lg(x)-1)>>3 + 2 }
func Length(x uint64) int { b := bits.Lg(x) if b%7 == 0 { return b / 7 } return b/7 + 1 }