if !bannedFound {
            if i := strings.Index(text, bannedSub); i != -1 {
                bannedFound = true
                s := strings.TrimSpace(text[i+len(bannedSub):])
                if banned, err = strconv.ParseInt(s, 10, 64); err != nil {