func ToGoUint64(o Object) (v uint64, ok bool) {
    switch o := o.(type) {
    case Int:
        v, ok = uint64(o), true
    case Uint: