func HumanUint32(num uint32) string {
    switch {
    case num >= 1000000000:
        return fmt.Sprintf("%v B", num/1000000000)
    case num >= 1000000: