diff --git a/MAINTAINERS.md b/MAINTAINERS.md
index d94ed7652ad..320ce87534b 100644
--- a/MAINTAINERS.md
+++ b/MAINTAINERS.md
@@ -24,7 +24,7 @@ The following is the full list, alphabetically ordered.
deepthi, mattlord, derekperkins
### Builds
-dkhenry, shlomi-noach, ajm188, vmg, GuptaManan100, frouioui
+shlomi-noach, ajm188, vmg, GuptaManan100, frouioui
### Resharding
rohit-nayak-ps, deepthi, mattlord
@@ -54,7 +54,7 @@ deepthi, ajm188, GuptaManan100, dbussink
harshit-gangal
### Kubernetes
-derekperkins, dkhenry, GuptaManan100, frouioui
+derekperkins, GuptaManan100, frouioui
### VTAdmin
ajm188, notfelineit
diff --git a/changelog/21.0/21.0.0/summary.md b/changelog/21.0/21.0.0/summary.md
index ecff5e2d915..b17cfb890eb 100644
--- a/changelog/21.0/21.0.0/summary.md
+++ b/changelog/21.0/21.0.0/summary.md
@@ -16,6 +16,7 @@
- **[VTGate Tablet Balancer](#tablet-balancer)**
- **[Query Timeout Override](#query-timeout)**
- **[New Backup Engine](#new-backup-engine)**
+ - **[Dynamic VReplication Configuration](#dynamic-vreplication-configuration)**
## Major Changes
@@ -132,9 +133,15 @@ A query can also be set to have no timeout by using the `QUERY_TIMEOUT_MS` comme
Example usage:
`select /*vt+ QUERY_TIMEOUT_MS=30 */ col from tbl`
-### New Backup Engine
+### New Backup Engine (EXPERIMENTAL)
We are introducing a the backup engine supporting logical backups starting on v21 to support use cases that require something else besides physical backups. This is experimental and is based on the
[MySQL Shell](https://dev.mysql.com/doc/mysql-shell/8.0/en/).
The new engine is enabled by using `--backup_engine_implementation=mysqlshell`. There are other options that are required, so check the docs on which options are required and how to use it.
+
+### Dynamic VReplication Configuration
+Currently many of the configuration options for VReplication Workflows are vttablet flags. This means that any change
+requires restarts of vttablets. We now allow these to be overridden while creating a workflow or dynamically once
+the workflow is in progress. See https://github.com/vitessio/vitess/pull/16583 for details.
+
diff --git a/config/init_db.sql b/config/init_db.sql
index 25ea2a42f3a..118d8d02687 100644
--- a/config/init_db.sql
+++ b/config/init_db.sql
@@ -29,6 +29,7 @@ DROP DATABASE IF EXISTS test;
CREATE USER 'vt_dba'@'localhost';
GRANT ALL ON *.* TO 'vt_dba'@'localhost';
GRANT GRANT OPTION ON *.* TO 'vt_dba'@'localhost';
+GRANT PROXY ON ''@'' TO 'vt_dba'@'localhost' WITH GRANT OPTION;
# User for app traffic, with global read-write access.
CREATE USER 'vt_app'@'localhost';
diff --git a/examples/common/scripts/vtadmin-up.sh b/examples/common/scripts/vtadmin-up.sh
index 356f6ac3880..499c6ea6204 100755
--- a/examples/common/scripts/vtadmin-up.sh
+++ b/examples/common/scripts/vtadmin-up.sh
@@ -43,7 +43,7 @@ vtadmin \
--alsologtostderr \
--rbac \
--rbac-config="${script_dir}/../vtadmin/rbac.yaml" \
- --cluster "id=${cluster_name},name=${cluster_name},discovery=staticfile,discovery-staticfile-path=${script_dir}/../vtadmin/discovery.json,tablet-fqdn-tmpl=http://{{ .Tablet.Hostname }}:15{{ .Tablet.Alias.Uid }}" \
+ --cluster "id=${cluster_name},name=${cluster_name},discovery=staticfile,discovery-staticfile-path=${script_dir}/../vtadmin/discovery.json,tablet-fqdn-tmpl=http://{{ .Tablet.Hostname }}:15{{ .Tablet.Alias.Uid }},schema-cache-default-expiration=1m" \
> "${log_dir}/vtadmin-api.out" 2>&1 &
vtadmin_api_pid=$!
diff --git a/examples/local/vstream_client.go b/examples/local/vstream_client.go
index e1d672eac5e..ab00f83871d 100644
--- a/examples/local/vstream_client.go
+++ b/examples/local/vstream_client.go
@@ -76,6 +76,7 @@ func main() {
// MinimizeSkew: false,
// HeartbeatInterval: 60, //seconds
// StopOnReshard: true,
+ // IncludeReshardJournalEvents: true,
}
reader, err := conn.VStream(ctx, topodatapb.TabletType_PRIMARY, vgtid, filter, flags)
if err != nil {
diff --git a/examples/operator/101_initial_cluster.yaml b/examples/operator/101_initial_cluster.yaml
index de627c61c50..c26219254f1 100644
--- a/examples/operator/101_initial_cluster.yaml
+++ b/examples/operator/101_initial_cluster.yaml
@@ -176,6 +176,7 @@ stringData:
CREATE USER 'vt_dba'@'localhost';
GRANT ALL ON *.* TO 'vt_dba'@'localhost';
GRANT GRANT OPTION ON *.* TO 'vt_dba'@'localhost';
+ GRANT PROXY ON ''@'' TO 'vt_dba'@'localhost' WITH GRANT OPTION;
# User for app traffic, with global read-write access.
CREATE USER 'vt_app'@'localhost';
diff --git a/go.mod b/go.mod
index ec3eef4fe32..26daaa0f15c 100644
--- a/go.mod
+++ b/go.mod
@@ -10,11 +10,10 @@ require (
github.com/HdrHistogram/hdrhistogram-go v0.9.0 // indirect
github.com/aquarapid/vaultlib v0.5.1
github.com/armon/go-metrics v0.4.1 // indirect
- github.com/aws/aws-sdk-go v1.55.5
github.com/buger/jsonparser v1.1.1
github.com/cespare/xxhash/v2 v2.3.0
github.com/corpix/uarand v0.1.1 // indirect
- github.com/dave/jennifer v1.7.0
+ github.com/dave/jennifer v1.7.1
github.com/evanphx/json-patch v5.9.0+incompatible
github.com/fsnotify/fsnotify v1.7.0
github.com/go-sql-driver/mysql v1.7.1
@@ -32,7 +31,6 @@ require (
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/serf v0.10.1 // indirect
github.com/icrowley/fake v0.0.0-20180203215853-4178557ae428
- github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/klauspost/compress v1.17.9
github.com/klauspost/pgzip v1.2.6
github.com/krishicks/yaml-patch v0.0.10
@@ -49,8 +47,8 @@ require (
github.com/pkg/errors v0.9.1
github.com/planetscale/pargzip v0.0.0-20201116224723-90c7fc03ea8a
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10
- github.com/prometheus/client_golang v1.20.2
- github.com/prometheus/common v0.57.0
+ github.com/prometheus/client_golang v1.20.3
+ github.com/prometheus/common v0.59.1
github.com/sjmudd/stopwatch v0.1.1
github.com/soheilhy/cmux v0.1.5
github.com/spf13/cobra v1.8.1
@@ -59,31 +57,31 @@ require (
github.com/stretchr/testify v1.9.0
github.com/tchap/go-patricia v2.3.0+incompatible
github.com/tidwall/gjson v1.17.3
- github.com/tinylib/msgp v1.2.0 // indirect
+ github.com/tinylib/msgp v1.2.1 // indirect
github.com/uber/jaeger-client-go v2.30.0+incompatible
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82
github.com/z-division/go-zookeeper v1.0.0
- go.etcd.io/etcd/api/v3 v3.5.15
- go.etcd.io/etcd/client/pkg/v3 v3.5.15
- go.etcd.io/etcd/client/v3 v3.5.15
+ go.etcd.io/etcd/api/v3 v3.5.16
+ go.etcd.io/etcd/client/pkg/v3 v3.5.16
+ go.etcd.io/etcd/client/v3 v3.5.16
go.uber.org/mock v0.2.0
- golang.org/x/crypto v0.26.0 // indirect
- golang.org/x/mod v0.20.0 // indirect
- golang.org/x/net v0.28.0
- golang.org/x/oauth2 v0.22.0
- golang.org/x/sys v0.24.0
- golang.org/x/term v0.23.0
- golang.org/x/text v0.17.0 // indirect
+ golang.org/x/crypto v0.27.0 // indirect
+ golang.org/x/mod v0.21.0 // indirect
+ golang.org/x/net v0.29.0
+ golang.org/x/oauth2 v0.23.0
+ golang.org/x/sys v0.25.0
+ golang.org/x/term v0.24.0
+ golang.org/x/text v0.18.0 // indirect
golang.org/x/time v0.6.0
- golang.org/x/tools v0.24.0
- google.golang.org/api v0.195.0
- google.golang.org/genproto v0.0.0-20240827150818-7e3bb234dfed // indirect
- google.golang.org/grpc v1.66.0
+ golang.org/x/tools v0.25.0
+ google.golang.org/api v0.197.0
+ google.golang.org/genproto v0.0.0-20240903143218-8af14fe29dc1 // indirect
+ google.golang.org/grpc v1.66.2
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.3.0
google.golang.org/grpc/examples v0.0.0-20210430044426-28078834f35b
google.golang.org/protobuf v1.34.2
- gopkg.in/DataDog/dd-trace-go.v1 v1.67.0
+ gopkg.in/DataDog/dd-trace-go.v1 v1.67.1
gopkg.in/asn1-ber.v1 v1.0.0-20181015200546-f715ec2f112d // indirect
gopkg.in/ldap.v2 v2.5.1
sigs.k8s.io/yaml v1.4.0
@@ -92,6 +90,11 @@ require (
require (
github.com/DataDog/datadog-go/v5 v5.5.0
github.com/Shopify/toxiproxy/v2 v2.9.0
+ github.com/aws/aws-sdk-go-v2 v1.30.4
+ github.com/aws/aws-sdk-go-v2/config v1.27.31
+ github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.15
+ github.com/aws/aws-sdk-go-v2/service/s3 v1.60.1
+ github.com/aws/smithy-go v1.20.4
github.com/bndr/gotabulate v1.1.2
github.com/gammazero/deque v0.2.1
github.com/google/safehtml v0.1.0
@@ -104,26 +107,40 @@ require (
github.com/spf13/jwalterweatherman v1.1.0
github.com/xlab/treeprint v1.2.0
go.uber.org/goleak v1.3.0
- golang.org/x/exp v0.0.0-20240823005443-9b4947da3948
+ golang.org/x/exp v0.0.0-20240909161429-701f63a606c0
golang.org/x/sync v0.8.0
gonum.org/v1/gonum v0.14.0
- modernc.org/sqlite v1.32.0
+ modernc.org/sqlite v1.33.1
)
require (
cloud.google.com/go v0.115.1 // indirect
- cloud.google.com/go/auth v0.9.2 // indirect
+ cloud.google.com/go/auth v0.9.4 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.4 // indirect
- cloud.google.com/go/compute/metadata v0.5.0 // indirect
- cloud.google.com/go/iam v1.2.0 // indirect
+ cloud.google.com/go/compute/metadata v0.5.1 // indirect
+ cloud.google.com/go/iam v1.2.1 // indirect
github.com/DataDog/appsec-internal-go v1.7.0 // indirect
- github.com/DataDog/datadog-agent/pkg/obfuscate v0.56.1 // indirect
- github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.56.1 // indirect
- github.com/DataDog/go-libddwaf/v3 v3.3.0 // indirect
+ github.com/DataDog/datadog-agent/pkg/obfuscate v0.57.0 // indirect
+ github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.57.0 // indirect
+ github.com/DataDog/go-libddwaf/v3 v3.4.0 // indirect
github.com/DataDog/go-sqllexer v0.0.14 // indirect
github.com/DataDog/go-tuf v1.1.0-0.5.2 // indirect
github.com/DataDog/sketches-go v1.4.6 // indirect
github.com/Microsoft/go-winio v0.6.2 // indirect
+ github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.4 // indirect
+ github.com/aws/aws-sdk-go-v2/credentials v1.17.30 // indirect
+ github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.12 // indirect
+ github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.16 // indirect
+ github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.16 // indirect
+ github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
+ github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.16 // indirect
+ github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.4 // indirect
+ github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.18 // indirect
+ github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.18 // indirect
+ github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.16 // indirect
+ github.com/aws/aws-sdk-go-v2/service/sso v1.22.5 // indirect
+ github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.5 // indirect
+ github.com/aws/aws-sdk-go-v2/service/sts v1.30.5 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/coreos/go-semver v0.3.1 // indirect
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
@@ -138,7 +155,7 @@ require (
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/google/s2a-go v0.1.8 // indirect
- github.com/googleapis/enterprise-certificate-proxy v0.3.3 // indirect
+ github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
github.com/googleapis/gax-go/v2 v2.13.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
@@ -176,17 +193,17 @@ require (
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
go.opencensus.io v0.24.0 // indirect
- go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0 // indirect
- go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 // indirect
- go.opentelemetry.io/otel v1.29.0 // indirect
- go.opentelemetry.io/otel/metric v1.29.0 // indirect
- go.opentelemetry.io/otel/trace v1.29.0 // indirect
+ go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.55.0 // indirect
+ go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.55.0 // indirect
+ go.opentelemetry.io/otel v1.30.0 // indirect
+ go.opentelemetry.io/otel/metric v1.30.0 // indirect
+ go.opentelemetry.io/otel/trace v1.30.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
- golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9 // indirect
- google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed // indirect
- google.golang.org/genproto/googleapis/rpc v0.0.0-20240827150818-7e3bb234dfed // indirect
+ golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
+ google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect
+ google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
diff --git a/go.sum b/go.sum
index be825d9ab8a..5258e8f05fa 100644
--- a/go.sum
+++ b/go.sum
@@ -2,14 +2,14 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMT
cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
cloud.google.com/go v0.115.1 h1:Jo0SM9cQnSkYfp44+v+NQXHpcHqlnRJk2qxh6yvxxxQ=
cloud.google.com/go v0.115.1/go.mod h1:DuujITeaufu3gL68/lOFIirVNJwQeyf5UXyi+Wbgknc=
-cloud.google.com/go/auth v0.9.2 h1:I+Rq388FYU8QdbVB1IiPd+6KNdrqtAPE/asiKHShBLM=
-cloud.google.com/go/auth v0.9.2/go.mod h1:7z6VY+7h3KUdRov5F1i8NDP5ZzWKYmEPO842BgCsmTk=
+cloud.google.com/go/auth v0.9.4 h1:DxF7imbEbiFu9+zdKC6cKBko1e8XeJnipNqIbWZ+kDI=
+cloud.google.com/go/auth v0.9.4/go.mod h1:SHia8n6//Ya940F1rLimhJCjjx7KE17t0ctFEci3HkA=
cloud.google.com/go/auth/oauth2adapt v0.2.4 h1:0GWE/FUsXhf6C+jAkWgYm7X9tK8cuEIfy19DBn6B6bY=
cloud.google.com/go/auth/oauth2adapt v0.2.4/go.mod h1:jC/jOpwFP6JBxhB3P5Rr0a9HLMC/Pe3eaL4NmdvqPtc=
-cloud.google.com/go/compute/metadata v0.5.0 h1:Zr0eK8JbFv6+Wi4ilXAR8FJ3wyNdpxHKJNPos6LTZOY=
-cloud.google.com/go/compute/metadata v0.5.0/go.mod h1:aHnloV2TPI38yx4s9+wAZhHykWvVCfu7hQbF+9CWoiY=
-cloud.google.com/go/iam v1.2.0 h1:kZKMKVNk/IsSSc/udOb83K0hL/Yh/Gcqpz+oAkoIFN8=
-cloud.google.com/go/iam v1.2.0/go.mod h1:zITGuWgsLZxd8OwAlX+eMFgZDXzBm7icj1PVTYG766Q=
+cloud.google.com/go/compute/metadata v0.5.1 h1:NM6oZeZNlYjiwYje+sYFjEpP0Q0zCan1bmQW/KmIrGs=
+cloud.google.com/go/compute/metadata v0.5.1/go.mod h1:C66sj2AluDcIqakBq/M8lw8/ybHgOZqin2obFxa/E5k=
+cloud.google.com/go/iam v1.2.1 h1:QFct02HRb7H12J/3utj0qf5tobFh9V4vR6h9eX5EBRU=
+cloud.google.com/go/iam v1.2.1/go.mod h1:3VUIJDPpwT6p/amXRC5GY8fCCh70lxPygguVtI0Z4/g=
cloud.google.com/go/longrunning v0.6.0 h1:mM1ZmaNsQsnb+5n1DNPeL0KwQd9jQRqSqSDEkBZr+aI=
cloud.google.com/go/longrunning v0.6.0/go.mod h1:uHzSZqW89h7/pasCWNYdUpwGz3PcVWhrWupreVPYLts=
cloud.google.com/go/storage v1.43.0 h1:CcxnSohZwizt4LCzQHWvBf1/kvtHUn7gk9QERXPyXFs=
@@ -34,15 +34,15 @@ github.com/Azure/go-autorest/tracing v0.6.0/go.mod h1:+vhtPC754Xsa23ID7GlGsrdKBp
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/DataDog/appsec-internal-go v1.7.0 h1:iKRNLih83dJeVya3IoUfK+6HLD/hQsIbyBlfvLmAeb0=
github.com/DataDog/appsec-internal-go v1.7.0/go.mod h1:wW0cRfWBo4C044jHGwYiyh5moQV2x0AhnwqMuiX7O/g=
-github.com/DataDog/datadog-agent/pkg/obfuscate v0.56.1 h1:TXR1S1HTNRHP3hh9Oz/dxa6nfp3lWsalvrDh18QdsYU=
-github.com/DataDog/datadog-agent/pkg/obfuscate v0.56.1/go.mod h1:NHgTieB5DpTc4AZrzx1xE+tPCWTJ7Hw3TVRiWuK505U=
-github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.56.1 h1:5GP8wQ26OpgSGbuP4dOx114w8NF3I1b+IrOAiFU22jk=
-github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.56.1/go.mod h1:If8HaT8MFPv9NdWDtaQfEy1OUB6RiMFeQwLSay7G91U=
+github.com/DataDog/datadog-agent/pkg/obfuscate v0.57.0 h1:5hk3X9Ymna7RqYzoR3K15AZNgASJ89LvJY48tpTsjj0=
+github.com/DataDog/datadog-agent/pkg/obfuscate v0.57.0/go.mod h1:Po5HwoDd4FmT/EqgrE9x7Zz4LjxtGBSIuNY1C1lppBQ=
+github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.57.0 h1:LplNAmMgZvGU7kKA0+4c1xWOjz828xweW5TCi8Mw9Q0=
+github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.57.0/go.mod h1:4Vo3SJ24uzfKHUHLoFa8t8o+LH+7TCQ7sPcZDtOpSP4=
github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ=
github.com/DataDog/datadog-go/v5 v5.5.0 h1:G5KHeB8pWBNXT4Jtw0zAkhdxEAWSpWH00geHI6LDrKU=
github.com/DataDog/datadog-go/v5 v5.5.0/go.mod h1:K9kcYBlxkcPP8tvvjZZKs/m1edNAUFzBbdpTUKfCsuw=
-github.com/DataDog/go-libddwaf/v3 v3.3.0 h1:jS72fuQpFgJZEdEJDmHJCPAgNTEMZoz1EUvimPUOiJ4=
-github.com/DataDog/go-libddwaf/v3 v3.3.0/go.mod h1:Bz/0JkpGf689mzbUjKJeheJINqsyyhM8p9PDuHdK2Ec=
+github.com/DataDog/go-libddwaf/v3 v3.4.0 h1:NJ2W2vhYaOm1OWr1LJCbdgp7ezG/XLJcQKBmjFwhSuM=
+github.com/DataDog/go-libddwaf/v3 v3.4.0/go.mod h1:n98d9nZ1gzenRSk53wz8l6d34ikxS+hs62A31Fqmyi4=
github.com/DataDog/go-sqllexer v0.0.14 h1:xUQh2tLr/95LGxDzLmttLgTo/1gzFeOyuwrQa/Iig4Q=
github.com/DataDog/go-sqllexer v0.0.14/go.mod h1:KwkYhpFEVIq+BfobkTC1vfqm4gTi65skV/DpDBXtexc=
github.com/DataDog/go-tuf v1.1.0-0.5.2 h1:4CagiIekonLSfL8GMHRHcHudo1fQnxELS9g4tiAupQ4=
@@ -73,8 +73,44 @@ github.com/armon/go-metrics v0.4.1 h1:hR91U9KYmb6bLBYLQjyM+3j+rcd/UhE+G78SFnF8gJ
github.com/armon/go-metrics v0.4.1/go.mod h1:E6amYzXo6aW1tqzoZGT755KkbgrJsSdpwZ+3JqfkOG4=
github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8=
github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8=
-github.com/aws/aws-sdk-go v1.55.5 h1:KKUZBfBoyqy5d3swXyiC7Q76ic40rYcbqH7qjh59kzU=
-github.com/aws/aws-sdk-go v1.55.5/go.mod h1:eRwEWoyTWFMVYVQzKMNHWP5/RV4xIUGMQfXQHfHkpNU=
+github.com/aws/aws-sdk-go-v2 v1.30.4 h1:frhcagrVNrzmT95RJImMHgabt99vkXGslubDaDagTk8=
+github.com/aws/aws-sdk-go-v2 v1.30.4/go.mod h1:CT+ZPWXbYrci8chcARI3OmI/qgd+f6WtuLOoaIA8PR0=
+github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.4 h1:70PVAiL15/aBMh5LThwgXdSQorVr91L127ttckI9QQU=
+github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.4/go.mod h1:/MQxMqci8tlqDH+pjmoLu1i0tbWCUP1hhyMRuFxpQCw=
+github.com/aws/aws-sdk-go-v2/config v1.27.31 h1:kxBoRsjhT3pq0cKthgj6RU6bXTm/2SgdoUMyrVw0rAI=
+github.com/aws/aws-sdk-go-v2/config v1.27.31/go.mod h1:z04nZdSWFPaDwK3DdJOG2r+scLQzMYuJeW0CujEm9FM=
+github.com/aws/aws-sdk-go-v2/credentials v1.17.30 h1:aau/oYFtibVovr2rDt8FHlU17BTicFEMAi29V1U+L5Q=
+github.com/aws/aws-sdk-go-v2/credentials v1.17.30/go.mod h1:BPJ/yXV92ZVq6G8uYvbU0gSl8q94UB63nMT5ctNO38g=
+github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.12 h1:yjwoSyDZF8Jth+mUk5lSPJCkMC0lMy6FaCD51jm6ayE=
+github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.12/go.mod h1:fuR57fAgMk7ot3WcNQfb6rSEn+SUffl7ri+aa8uKysI=
+github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.15 h1:ijB7hr56MngOiELJe0C5aQRaBQ11LveNgWFyG02AUto=
+github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.15/go.mod h1:0QEmQSSWMVfiAk93l1/ayR9DQ9+jwni7gHS2NARZXB0=
+github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.16 h1:TNyt/+X43KJ9IJJMjKfa3bNTiZbUP7DeCxfbTROESwY=
+github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.16/go.mod h1:2DwJF39FlNAUiX5pAc0UNeiz16lK2t7IaFcm0LFHEgc=
+github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.16 h1:jYfy8UPmd+6kJW5YhY0L1/KftReOGxI/4NtVSTh9O/I=
+github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.16/go.mod h1:7ZfEPZxkW42Afq4uQB8H2E2e6ebh6mXTueEpYzjCzcs=
+github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 h1:VaRN3TlFdd6KxX1x3ILT5ynH6HvKgqdiXoTxAF4HQcQ=
+github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1/go.mod h1:FbtygfRFze9usAadmnGJNc8KsP346kEe+y2/oyhGAGc=
+github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.16 h1:mimdLQkIX1zr8GIPY1ZtALdBQGxcASiBd2MOp8m/dMc=
+github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.16/go.mod h1:YHk6owoSwrIsok+cAH9PENCOGoH5PU2EllX4vLtSrsY=
+github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.4 h1:KypMCbLPPHEmf9DgMGw51jMj77VfGPAN2Kv4cfhlfgI=
+github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.4/go.mod h1:Vz1JQXliGcQktFTN/LN6uGppAIRoLBR2bMvIMP0gOjc=
+github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.18 h1:GckUnpm4EJOAio1c8o25a+b3lVfwVzC9gnSBqiiNmZM=
+github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.18/go.mod h1:Br6+bxfG33Dk3ynmkhsW2Z/t9D4+lRqdLDNCKi85w0U=
+github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.18 h1:tJ5RnkHCiSH0jyd6gROjlJtNwov0eGYNz8s8nFcR0jQ=
+github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.18/go.mod h1:++NHzT+nAF7ZPrHPsA+ENvsXkOO8wEu+C6RXltAG4/c=
+github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.16 h1:jg16PhLPUiHIj8zYIW6bqzeQSuHVEiWnGA0Brz5Xv2I=
+github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.16/go.mod h1:Uyk1zE1VVdsHSU7096h/rwnXDzOzYQVl+FNPhPw7ShY=
+github.com/aws/aws-sdk-go-v2/service/s3 v1.60.1 h1:mx2ucgtv+MWzJesJY9Ig/8AFHgoE5FwLXwUVgW/FGdI=
+github.com/aws/aws-sdk-go-v2/service/s3 v1.60.1/go.mod h1:BSPI0EfnYUuNHPS0uqIo5VrRwzie+Fp+YhQOUs16sKI=
+github.com/aws/aws-sdk-go-v2/service/sso v1.22.5 h1:zCsFCKvbj25i7p1u94imVoO447I/sFv8qq+lGJhRN0c=
+github.com/aws/aws-sdk-go-v2/service/sso v1.22.5/go.mod h1:ZeDX1SnKsVlejeuz41GiajjZpRSWR7/42q/EyA/QEiM=
+github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.5 h1:SKvPgvdvmiTWoi0GAJ7AsJfOz3ngVkD/ERbs5pUnHNI=
+github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.5/go.mod h1:20sz31hv/WsPa3HhU3hfrIet2kxM4Pe0r20eBZ20Tac=
+github.com/aws/aws-sdk-go-v2/service/sts v1.30.5 h1:OMsEmCyz2i89XwRwPouAJvhj81wINh+4UK+k/0Yo/q8=
+github.com/aws/aws-sdk-go-v2/service/sts v1.30.5/go.mod h1:vmSqFK+BVIwVpDAGZB3CoCXHzurt4qBE8lf+I/kRTh0=
+github.com/aws/smithy-go v1.20.4 h1:2HK1zBdPgRbjFOHlfeQZfpC4r72MOb9bZkiFwggKO+4=
+github.com/aws/smithy-go v1.20.4/go.mod h1:irrKGvNn1InZwb2d7fkIRNucdfwR8R+Ts3wxYa/cJHg=
github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=
github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=
@@ -103,8 +139,8 @@ github.com/corpix/uarand v0.1.1/go.mod h1:SFKZvkcRoLqVRFZ4u25xPmp6m9ktANfbpXZ7SJ
github.com/cpuguy83/go-md2man/v2 v2.0.4 h1:wfIWP927BUkWJb2NmU/kNDYIBTh/ziUX91+lVfRxZq4=
github.com/cpuguy83/go-md2man/v2 v2.0.4/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
-github.com/dave/jennifer v1.7.0 h1:uRbSBH9UTS64yXbh4FrMHfgfY762RD+C7bUPKODpSJE=
-github.com/dave/jennifer v1.7.0/go.mod h1:nXbxhEmQfOZhWml3D1cDK5M1FLnMSozpbFN/m3RmGZc=
+github.com/dave/jennifer v1.7.1 h1:B4jJJDHelWcDhlRQxWeo0Npa/pYKBLrirAQoTN45txo=
+github.com/dave/jennifer v1.7.1/go.mod h1:nXbxhEmQfOZhWml3D1cDK5M1FLnMSozpbFN/m3RmGZc=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=
@@ -216,8 +252,8 @@ github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+
github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
-github.com/googleapis/enterprise-certificate-proxy v0.3.3 h1:QRje2j5GZimBzlbhGA2V2QlGNgL8G6e+wGo/+/2bWI0=
-github.com/googleapis/enterprise-certificate-proxy v0.3.3/go.mod h1:YKe7cfqYXjKGpGvmSg28/fFvhNzinZQm8DGnaburhGA=
+github.com/googleapis/enterprise-certificate-proxy v0.3.4 h1:XYIDZApgAnrN1c855gTgghdIA6Stxb52D5RnLI1SLyw=
+github.com/googleapis/enterprise-certificate-proxy v0.3.4/go.mod h1:YKe7cfqYXjKGpGvmSg28/fFvhNzinZQm8DGnaburhGA=
github.com/googleapis/gax-go/v2 v2.13.0 h1:yitjD5f7jQHhyDsnhKEBU52NdvvdSeGzlAnDPT0hH1s=
github.com/googleapis/gax-go/v2 v2.13.0/go.mod h1:Z/fvTZXF8/uw7Xu5GuslPw+bplx6SS338j1Is2S+B7A=
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=
@@ -288,10 +324,6 @@ github.com/icrowley/fake v0.0.0-20180203215853-4178557ae428 h1:Mo9W14pwbO9VfRe+y
github.com/icrowley/fake v0.0.0-20180203215853-4178557ae428/go.mod h1:uhpZMVGznybq1itEKXj6RYw9I71qK4kH+OGMjRC4KEo=
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
-github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg=
-github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo=
-github.com/jmespath/go-jmespath/internal/testify v1.5.1 h1:shLQSRRSCCPj3f2gpwzGwWFoC7ycTf1rcQZHOlsJ6N8=
-github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U=
github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU=
github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
github.com/jtolds/gls v4.2.1+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=
@@ -416,8 +448,8 @@ github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSg
github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo=
github.com/prometheus/client_golang v1.4.0/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU=
-github.com/prometheus/client_golang v1.20.2 h1:5ctymQzZlyOON1666svgwn3s6IKWgfbjsejTMiXIyjg=
-github.com/prometheus/client_golang v1.20.2/go.mod h1:PIEt8X02hGcP8JWbeHyeZ53Y/jReSnHgO035n//V5WE=
+github.com/prometheus/client_golang v1.20.3 h1:oPksm4K8B+Vt35tUhw6GbSNSgVlVSBH0qELP/7u83l4=
+github.com/prometheus/client_golang v1.20.3/go.mod h1:PIEt8X02hGcP8JWbeHyeZ53Y/jReSnHgO035n//V5WE=
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
@@ -426,8 +458,8 @@ github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p
github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY=
github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4=
github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4=
-github.com/prometheus/common v0.57.0 h1:Ro/rKjwdq9mZn1K5QPctzh+MA4Lp0BuYk5ZZEVhoNcY=
-github.com/prometheus/common v0.57.0/go.mod h1:7uRPFSUTbfZWsJ7MHY56sqt7hLQu3bxXHDnNhl8E9qI=
+github.com/prometheus/common v0.59.1 h1:LXb1quJHWm1P6wq/U824uxYi4Sg0oGvNeUm1z5dJoX0=
+github.com/prometheus/common v0.59.1/go.mod h1:GpWM7dewqmVYcd7SmRaiWVe9SSqjf0UrwnYnpEZNuT0=
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=
github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A=
@@ -509,8 +541,8 @@ github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JT
github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=
github.com/tidwall/pretty v1.2.1 h1:qjsOFOWWQl+N3RsoF5/ssm1pHmJJwhjlSbZ51I6wMl4=
github.com/tidwall/pretty v1.2.1/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=
-github.com/tinylib/msgp v1.2.0 h1:0uKB/662twsVBpYUPbokj4sTSKhWFKB7LopO2kWK8lY=
-github.com/tinylib/msgp v1.2.0/go.mod h1:2vIGs3lcUo8izAATNobrCHevYZC/LMsJtw4JPiYPHro=
+github.com/tinylib/msgp v1.2.1 h1:6ypy2qcCznxpP4hpORzhtXyTqrBs7cfM9MCCWY8zsmU=
+github.com/tinylib/msgp v1.2.1/go.mod h1:2vIGs3lcUo8izAATNobrCHevYZC/LMsJtw4JPiYPHro=
github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM=
github.com/uber/jaeger-client-go v2.30.0+incompatible h1:D6wyKGCecFaSRUpo8lCVbaOOb6ThwMmTEbhRwtKR97o=
github.com/uber/jaeger-client-go v2.30.0+incompatible/go.mod h1:WVhlPFC8FDjOFMMWRy2pZqQJSXxYSwNYOkTr/Z6d3Kk=
@@ -525,26 +557,26 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec
github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
github.com/z-division/go-zookeeper v1.0.0 h1:ULsCj0nP6+U1liDFWe+2oEF6o4amixoDcDlwEUghVUY=
github.com/z-division/go-zookeeper v1.0.0/go.mod h1:6X4UioQXpvyezJJl4J9NHAJKsoffCwy5wCaaTktXjOA=
-go.etcd.io/etcd/api/v3 v3.5.15 h1:3KpLJir1ZEBrYuV2v+Twaa/e2MdDCEZ/70H+lzEiwsk=
-go.etcd.io/etcd/api/v3 v3.5.15/go.mod h1:N9EhGzXq58WuMllgH9ZvnEr7SI9pS0k0+DHZezGp7jM=
-go.etcd.io/etcd/client/pkg/v3 v3.5.15 h1:fo0HpWz/KlHGMCC+YejpiCmyWDEuIpnTDzpJLB5fWlA=
-go.etcd.io/etcd/client/pkg/v3 v3.5.15/go.mod h1:mXDI4NAOwEiszrHCb0aqfAYNCrZP4e9hRca3d1YK8EU=
-go.etcd.io/etcd/client/v3 v3.5.15 h1:23M0eY4Fd/inNv1ZfU3AxrbbOdW79r9V9Rl62Nm6ip4=
-go.etcd.io/etcd/client/v3 v3.5.15/go.mod h1:CLSJxrYjvLtHsrPKsy7LmZEE+DK2ktfd2bN4RhBMwlU=
+go.etcd.io/etcd/api/v3 v3.5.16 h1:WvmyJVbjWqK4R1E+B12RRHz3bRGy9XVfh++MgbN+6n0=
+go.etcd.io/etcd/api/v3 v3.5.16/go.mod h1:1P4SlIP/VwkDmGo3OlOD7faPeP8KDIFhqvciH5EfN28=
+go.etcd.io/etcd/client/pkg/v3 v3.5.16 h1:ZgY48uH6UvB+/7R9Yf4x574uCO3jIx0TRDyetSfId3Q=
+go.etcd.io/etcd/client/pkg/v3 v3.5.16/go.mod h1:V8acl8pcEK0Y2g19YlOV9m9ssUe6MgiDSobSoaBAM0E=
+go.etcd.io/etcd/client/v3 v3.5.16 h1:sSmVYOAHeC9doqi0gv7v86oY/BTld0SEFGaxsU9eRhE=
+go.etcd.io/etcd/client/v3 v3.5.16/go.mod h1:X+rExSGkyqxvu276cr2OwPLBaeqFu1cIl4vmRjAD/50=
go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0=
go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo=
-go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0 h1:r6I7RJCN86bpD/FQwedZ0vSixDpwuWREjW9oRMsmqDc=
-go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0/go.mod h1:B9yO6b04uB80CzjedvewuqDhxJxi11s7/GtiGa8bAjI=
-go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 h1:TT4fX+nBOA/+LUkobKGW1ydGcn+G3vRw9+g5HwCphpk=
-go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0/go.mod h1:L7UH0GbB0p47T4Rri3uHjbpCFYrVrwc1I25QhNPiGK8=
-go.opentelemetry.io/otel v1.29.0 h1:PdomN/Al4q/lN6iBJEN3AwPvUiHPMlt93c8bqTG5Llw=
-go.opentelemetry.io/otel v1.29.0/go.mod h1:N/WtXPs1CNCUEx+Agz5uouwCba+i+bJGFicT8SR4NP8=
-go.opentelemetry.io/otel/metric v1.29.0 h1:vPf/HFWTNkPu1aYeIsc98l4ktOQaL6LeSoeV2g+8YLc=
-go.opentelemetry.io/otel/metric v1.29.0/go.mod h1:auu/QWieFVWx+DmQOUMgj0F8LHWdgalxXqvp7BII/W8=
-go.opentelemetry.io/otel/sdk v1.28.0 h1:b9d7hIry8yZsgtbmM0DKyPWMMUMlK9NEKuIG4aBqWyE=
-go.opentelemetry.io/otel/sdk v1.28.0/go.mod h1:oYj7ClPUA7Iw3m+r7GeEjz0qckQRJK2B8zjcZEfu7Pg=
-go.opentelemetry.io/otel/trace v1.29.0 h1:J/8ZNK4XgR7a21DZUAsbF8pZ5Jcw1VhACmnYt39JTi4=
-go.opentelemetry.io/otel/trace v1.29.0/go.mod h1:eHl3w0sp3paPkYstJOmAimxhiFXPg+MMTlEh3nsQgWQ=
+go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.55.0 h1:hCq2hNMwsegUvPzI7sPOvtO9cqyy5GbWt/Ybp2xrx8Q=
+go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.55.0/go.mod h1:LqaApwGx/oUmzsbqxkzuBvyoPpkxk3JQWnqfVrJ3wCA=
+go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.55.0 h1:ZIg3ZT/aQ7AfKqdwp7ECpOK6vHqquXXuyTjIO8ZdmPs=
+go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.55.0/go.mod h1:DQAwmETtZV00skUwgD6+0U89g80NKsJE3DCKeLLPQMI=
+go.opentelemetry.io/otel v1.30.0 h1:F2t8sK4qf1fAmY9ua4ohFS/K+FUuOPemHUIXHtktrts=
+go.opentelemetry.io/otel v1.30.0/go.mod h1:tFw4Br9b7fOS+uEao81PJjVMjW/5fvNCbpsDIXqP0pc=
+go.opentelemetry.io/otel/metric v1.30.0 h1:4xNulvn9gjzo4hjg+wzIKG7iNFEaBMX00Qd4QIZs7+w=
+go.opentelemetry.io/otel/metric v1.30.0/go.mod h1:aXTfST94tswhWEb+5QjlSqG+cZlmyXy/u8jFpor3WqQ=
+go.opentelemetry.io/otel/sdk v1.29.0 h1:vkqKjk7gwhS8VaWb0POZKmIEDimRCMsopNYnriHyryo=
+go.opentelemetry.io/otel/sdk v1.29.0/go.mod h1:pM8Dx5WKnvxLCb+8lG1PRNIDxu9g9b9g59Qr7hfAAok=
+go.opentelemetry.io/otel/trace v1.30.0 h1:7UBkkYzeg3C7kQX8VAidWh2biiQbtAKjyIML8dQ9wmc=
+go.opentelemetry.io/otel/trace v1.30.0/go.mod h1:5EyKqTzzmyqB9bwtCCq6pDLktPK6fmGf/Dph+8VI02o=
go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
go.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
go.uber.org/atomic v1.11.0 h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE=
@@ -568,11 +600,11 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
-golang.org/x/crypto v0.26.0 h1:RrRspgV4mU+YwB4FYnuBoKsUapNIL5cohGAmSH3azsw=
-golang.org/x/crypto v0.26.0/go.mod h1:GY7jblb9wI+FOo5y8/S2oY4zWP07AkOJ4+jxCqdqn54=
+golang.org/x/crypto v0.27.0 h1:GXm2NjJrPaiv/h1tb2UH8QfgC/hOf/+z0p6PT8o1w7A=
+golang.org/x/crypto v0.27.0/go.mod h1:1Xngt8kV6Dvbssa53Ziq6Eqn0HqbZi5Z6R0ZpwQzt70=
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
-golang.org/x/exp v0.0.0-20240823005443-9b4947da3948 h1:kx6Ds3MlpiUHKj7syVnbp57++8WpuKPcR5yjLBjvLEA=
-golang.org/x/exp v0.0.0-20240823005443-9b4947da3948/go.mod h1:akd2r19cwCdwSwWeIdzYQGa/EZZyqcOdwWiwj5L5eKQ=
+golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 h1:e66Fs6Z+fZTbFBAxKfP3PALWBtpfqks2bwGcexMxgtk=
+golang.org/x/exp v0.0.0-20240909161429-701f63a606c0/go.mod h1:2TbTHSBQa924w8M6Xs1QcRcFwyucIwBGpK1p2f1YFFY=
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=
golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
@@ -580,8 +612,8 @@ golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHl
golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
-golang.org/x/mod v0.20.0 h1:utOm6MM3R3dnawAiJgn0y+xvuYRsm1RKM/4giyfDgV0=
-golang.org/x/mod v0.20.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
+golang.org/x/mod v0.21.0 h1:vvrHzRwRfVKSiLrG+d4FMl/Qi4ukBCE6kZlTUkDYRT0=
+golang.org/x/mod v0.21.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY=
golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
@@ -604,12 +636,12 @@ golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM=
golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1/go.mod h1:9tjilg8BloeKEkVJvy7fQ90B1CfIiPueXVOjqfkSzI8=
golang.org/x/net v0.0.0-20210610132358-84b48f89b13b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
-golang.org/x/net v0.28.0 h1:a9JDOJc5GMUJ0+UDqmLT86WiEy7iWyIhz8gz8E4e5hE=
-golang.org/x/net v0.28.0/go.mod h1:yqtgsTWOOnlGLG9GFRrK3++bGOUEkNBoHZc8MEDWPNg=
+golang.org/x/net v0.29.0 h1:5ORfpBpCs4HzDYoodCDBbwHzdR5UrLBZ3sOnUJmFoHo=
+golang.org/x/net v0.29.0/go.mod h1:gLkgy8jTGERgjzMic6DS9+SP0ajcu6Xu3Orq/SpETg0=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
-golang.org/x/oauth2 v0.22.0 h1:BzDx2FehcG7jJwgWLELCdmLuxk2i+x9UDpSiss2u0ZA=
-golang.org/x/oauth2 v0.22.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
+golang.org/x/oauth2 v0.23.0 h1:PbgcYx2W7i4LvjJWEbf0ngHV6qJYr86PkAV3bXdLEbs=
+golang.org/x/oauth2 v0.23.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@@ -656,17 +688,17 @@ golang.org/x/sys v0.0.0-20220627191245-f75cf1eec38b/go.mod h1:oPkhp1MJrh7nUepCBc
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.24.0 h1:Twjiwq9dn6R1fQcyiK+wQyHWfaz/BJB+YIpzU/Cv3Xg=
-golang.org/x/sys v0.24.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
+golang.org/x/sys v0.25.0 h1:r+8e+loiHxRqhXVl6ML1nO3l1+oFoWbnlu2Ehimmi34=
+golang.org/x/sys v0.25.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
-golang.org/x/term v0.23.0 h1:F6D4vR+EHoL9/sWAWgAR1H2DcHr4PareCbAaCo1RpuU=
-golang.org/x/term v0.23.0/go.mod h1:DgV24QBUrK6jhZXl+20l6UWznPlwAHm1Q1mGHtydmSk=
+golang.org/x/term v0.24.0 h1:Mh5cbb+Zk2hqqXNO7S1iTjEphVL+jb8ZWaqh/g+JWkM=
+golang.org/x/term v0.24.0/go.mod h1:lOBK/LVxemqiMij05LGJ0tzNr8xlmwBRJ81PX6wVLH8=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
-golang.org/x/text v0.17.0 h1:XtiM5bkSOt+ewxlOE/aE/AKEHibwj/6gvWMl9Rsh0Qc=
-golang.org/x/text v0.17.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
+golang.org/x/text v0.18.0 h1:XvMDiNzPAl0jr17s6W9lcaIhGUfUORdGCNsuLmPG224=
+golang.org/x/text v0.18.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
golang.org/x/time v0.6.0 h1:eTDhh4ZXt5Qf0augr54TN6suAUudPcawVZeIAPU7D4U=
golang.org/x/time v0.6.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
@@ -681,18 +713,18 @@ golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roY
golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
-golang.org/x/tools v0.24.0 h1:J1shsA93PJUEVaUSaay7UXAyE8aimq3GW0pjlolpa24=
-golang.org/x/tools v0.24.0/go.mod h1:YhNqVBIfWHdzvTLs0d8LCuMhkKUgSUKldakyV7W/WDQ=
+golang.org/x/tools v0.25.0 h1:oFU9pkj/iJgs+0DT+VMHrx+oBKs/LJMV+Uvg78sl+fE=
+golang.org/x/tools v0.25.0/go.mod h1:/vtpO8WL1N9cQC3FN5zPqb//fRXskFHbLKk4OW1Q7rg=
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
-golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9 h1:LLhsEBxRTBLuKlQxFBYUOU8xyFgXv6cOTp2HASDlsDk=
-golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9/go.mod h1:NDW/Ps6MPRej6fsCIbMTohpP40sJ/P/vI1MoTEGwX90=
+golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da h1:noIWHXmPHxILtqtCOPIhSt0ABwskkZKjD3bXGnZGpNY=
+golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da/go.mod h1:NDW/Ps6MPRej6fsCIbMTohpP40sJ/P/vI1MoTEGwX90=
gonum.org/v1/gonum v0.14.0 h1:2NiG67LD1tEH0D7kM+ps2V+fXmsAnpUeec7n8tcr4S0=
gonum.org/v1/gonum v0.14.0/go.mod h1:AoWeoz0becf9QMWtE8iWXNXc27fK4fNeHNf/oMejGfU=
-google.golang.org/api v0.195.0 h1:Ude4N8FvTKnnQJHU48RFI40jOBgIrL8Zqr3/QeST6yU=
-google.golang.org/api v0.195.0/go.mod h1:DOGRWuv3P8TU8Lnz7uQc4hyNqrBpMtD9ppW3wBJurgc=
+google.golang.org/api v0.197.0 h1:x6CwqQLsFiA5JKAiGyGBjc2bNtHtLddhJCE2IKuhhcQ=
+google.golang.org/api v0.197.0/go.mod h1:AuOuo20GoQ331nq7DquGHlU6d+2wN2fZ8O0ta60nRNw=
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
@@ -700,12 +732,12 @@ google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98
google.golang.org/genproto v0.0.0-20200423170343-7949de9c1215/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo=
google.golang.org/genproto v0.0.0-20200806141610-86f49bd18e98/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
-google.golang.org/genproto v0.0.0-20240827150818-7e3bb234dfed h1:4C4dbrVFtfIp3GXJdMX1Sj25mahfn5DywOo65/2ISQ8=
-google.golang.org/genproto v0.0.0-20240827150818-7e3bb234dfed/go.mod h1:ICjniACoWvcDz8c8bOsHVKuuSGDJy1z5M4G0DM3HzTc=
-google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed h1:3RgNmBoI9MZhsj3QxC+AP/qQhNwpCLOvYDYYsFrhFt0=
-google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed/go.mod h1:OCdP9MfskevB/rbYvHTsXTtKC+3bHWajPdoKgjcYkfo=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20240827150818-7e3bb234dfed h1:J6izYgfBXAI3xTKLgxzTmUltdYaLsuBxFCgDHWJ/eXg=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20240827150818-7e3bb234dfed/go.mod h1:UqMtugtsSgubUsoxbuAoiCXvqvErP7Gf0so0mK9tHxU=
+google.golang.org/genproto v0.0.0-20240903143218-8af14fe29dc1 h1:BulPr26Jqjnd4eYDVe+YvyR7Yc2vJGkO5/0UxD0/jZU=
+google.golang.org/genproto v0.0.0-20240903143218-8af14fe29dc1/go.mod h1:hL97c3SYopEHblzpxRL4lSs523++l8DYxGM1FQiYmb4=
+google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 h1:hjSy6tcFQZ171igDaN5QHOw2n6vx40juYbC/x67CEhc=
+google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1/go.mod h1:qpvKtACPCQhAdu3PyQgV4l3LMXZEtft7y8QcarRsp9I=
+google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 h1:pPJltXNxVzT4pK9yD8vR9X75DaWYYmLGMsEvBfFQZzQ=
+google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1/go.mod h1:UqMtugtsSgubUsoxbuAoiCXvqvErP7Gf0so0mK9tHxU=
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
@@ -713,8 +745,8 @@ google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8
google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk=
google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak=
google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc=
-google.golang.org/grpc v1.66.0 h1:DibZuoBznOxbDQxRINckZcUvnCEvrW9pcWIE2yF9r1c=
-google.golang.org/grpc v1.66.0/go.mod h1:s3/l6xSSCURdVfAnL+TqCNMyTDAGN6+lZeVxnZR128Y=
+google.golang.org/grpc v1.66.2 h1:3QdXkuq3Bkh7w+ywLdLvM56cmGvQHUMZpiCzt6Rqaoo=
+google.golang.org/grpc v1.66.2/go.mod h1:s3/l6xSSCURdVfAnL+TqCNMyTDAGN6+lZeVxnZR128Y=
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.3.0 h1:rNBFJjBCOgVr9pWD7rs/knKL4FRTKgpZmsRfV214zcA=
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.3.0/go.mod h1:Dk1tviKTvMCz5tvh7t+fh94dhmQVHuCt2OzJB3CTW9Y=
google.golang.org/grpc/examples v0.0.0-20210430044426-28078834f35b h1:D/GTYPo6I1oEo08Bfpuj3xl5XE+UGHj7//5fVyKxhsQ=
@@ -731,8 +763,8 @@ google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGj
google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg=
google.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw=
-gopkg.in/DataDog/dd-trace-go.v1 v1.67.0 h1:3Cb46zyKIlEWac21tvDF2O4KyMlOHQxrQkyiaUpdwM0=
-gopkg.in/DataDog/dd-trace-go.v1 v1.67.0/go.mod h1:6DdiJPKOeJfZyd/IUGCAd5elY8qPGkztK6wbYYsMjag=
+gopkg.in/DataDog/dd-trace-go.v1 v1.67.1 h1:frgcpZ18wmpj+/TwyDJM8057M65aOdgaxLiZ8pb1PFU=
+gopkg.in/DataDog/dd-trace-go.v1 v1.67.1/go.mod h1:6DdiJPKOeJfZyd/IUGCAd5elY8qPGkztK6wbYYsMjag=
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
gopkg.in/asn1-ber.v1 v1.0.0-20181015200546-f715ec2f112d h1:TxyelI5cVkbREznMhfzycHdkp5cLA7DpE+GKjSslYhM=
gopkg.in/asn1-ber.v1 v1.0.0-20181015200546-f715ec2f112d/go.mod h1:cuepJuh7vyXfUyUwEgHQXw849cJrilpS5NeIjOWESAw=
@@ -783,8 +815,8 @@ modernc.org/opt v0.1.3 h1:3XOZf2yznlhC+ibLltsDGzABUGVx8J6pnFMS3E4dcq4=
modernc.org/opt v0.1.3/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0=
modernc.org/sortutil v1.2.0 h1:jQiD3PfS2REGJNzNCMMaLSp/wdMNieTbKX920Cqdgqc=
modernc.org/sortutil v1.2.0/go.mod h1:TKU2s7kJMf1AE84OoiGppNHJwvB753OYfNl2WRb++Ss=
-modernc.org/sqlite v1.32.0 h1:6BM4uGza7bWypsw4fdLRsLxut6bHe4c58VeqjRgST8s=
-modernc.org/sqlite v1.32.0/go.mod h1:UqoylwmTb9F+IqXERT8bW9zzOWN8qwAIcLdzeBZs4hA=
+modernc.org/sqlite v1.33.1 h1:trb6Z3YYoeM9eDL1O8do81kP+0ejv+YzgyFo+Gwy0nM=
+modernc.org/sqlite v1.33.1/go.mod h1:pXV2xHxhzXZsgT/RtTFAPY6JJDEvOTcTdwADQCCWD4k=
modernc.org/strutil v1.2.0 h1:agBi9dp1I+eOnxXeiZawM8F4LawKv4NzGWSaLfyeNZA=
modernc.org/strutil v1.2.0/go.mod h1:/mdcBmfOibveCTBxUl5B5l6W+TTH1FXPLHZE6bTosX0=
modernc.org/token v1.1.0 h1:Xl7Ap9dKaEs5kLoOQeQmPWevfnk/DM5qcLcYlA8ys6Y=
diff --git a/go/cmd/vtctldclient/command/query.go b/go/cmd/vtctldclient/command/query.go
index 8232deaceb6..d00b7447bdd 100644
--- a/go/cmd/vtctldclient/command/query.go
+++ b/go/cmd/vtctldclient/command/query.go
@@ -55,13 +55,6 @@ var (
RunE: commandExecuteMultiFetchAsDBA,
Aliases: []string{"ExecuteMultiFetchAsDba"},
}
- // GetUnresolvedTransactions makes an GetUnresolvedTransactions gRPC call to a vtctld.
- GetUnresolvedTransactions = &cobra.Command{
- Use: "GetUnresolvedTransactions ",
- Short: "Retrieves unresolved transactions for the given keyspace.",
- Args: cobra.ExactArgs(1),
- RunE: commandGetUnresolvedTransactions,
- }
)
var executeFetchAsAppOptions = struct {
@@ -205,26 +198,6 @@ func commandExecuteMultiFetchAsDBA(cmd *cobra.Command, args []string) error {
return nil
}
-func commandGetUnresolvedTransactions(cmd *cobra.Command, args []string) error {
- cli.FinishedParsing(cmd)
-
- keyspace := cmd.Flags().Arg(0)
- resp, err := client.GetUnresolvedTransactions(commandCtx,
- &vtctldatapb.GetUnresolvedTransactionsRequest{
- Keyspace: keyspace,
- })
- if err != nil {
- return err
- }
-
- data, err := cli.MarshalJSON(resp.Transactions)
- if err != nil {
- return err
- }
- fmt.Printf("%s\n", data)
- return nil
-}
-
func init() {
ExecuteFetchAsApp.Flags().Int64Var(&executeFetchAsAppOptions.MaxRows, "max-rows", 10_000, "The maximum number of rows to fetch from the remote tablet.")
ExecuteFetchAsApp.Flags().BoolVar(&executeFetchAsAppOptions.UsePool, "use-pool", false, "Use the tablet connection pool instead of creating a fresh connection.")
@@ -242,6 +215,4 @@ func init() {
ExecuteMultiFetchAsDBA.Flags().BoolVar(&executeMultiFetchAsDBAOptions.ReloadSchema, "reload-schema", false, "Instructs the tablet to reload its schema after executing the query.")
ExecuteMultiFetchAsDBA.Flags().BoolVarP(&executeMultiFetchAsDBAOptions.JSON, "json", "j", false, "Output the results in JSON instead of a human-readable table.")
Root.AddCommand(ExecuteMultiFetchAsDBA)
-
- Root.AddCommand(GetUnresolvedTransactions)
}
diff --git a/go/cmd/vtctldclient/command/transactions.go b/go/cmd/vtctldclient/command/transactions.go
new file mode 100644
index 00000000000..70b9797121a
--- /dev/null
+++ b/go/cmd/vtctldclient/command/transactions.go
@@ -0,0 +1,134 @@
+/*
+Copyright 2024 The Vitess Authors.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+package command
+
+import (
+ "fmt"
+
+ "github.com/spf13/cobra"
+
+ "vitess.io/vitess/go/cmd/vtctldclient/cli"
+ querypb "vitess.io/vitess/go/vt/proto/query"
+ vtctldatapb "vitess.io/vitess/go/vt/proto/vtctldata"
+)
+
+var (
+ DistributedTransaction = &cobra.Command{
+ Use: "DistributedTransaction ",
+ Short: "Perform commands on distributed transaction",
+ Args: cobra.MinimumNArgs(2),
+
+ DisableFlagsInUseLine: true,
+ }
+
+ // GetUnresolvedTransactions makes an GetUnresolvedTransactions gRPC call to a vtctld.
+ GetUnresolvedTransactions = &cobra.Command{
+ Use: "list ",
+ Short: "Retrieves unresolved transactions for the given keyspace.",
+ Aliases: []string{"List"},
+ Args: cobra.ExactArgs(1),
+ RunE: commandGetUnresolvedTransactions,
+
+ DisableFlagsInUseLine: true,
+ }
+
+ // ConcludeTransaction makes a ConcludeTransaction gRPC call to a vtctld.
+ ConcludeTransaction = &cobra.Command{
+ Use: "conclude [ ...]",
+ Short: "Concludes the unresolved transaction by rolling back the prepared transaction on each participating shard and removing the transaction metadata record.",
+ Aliases: []string{"Conclude"},
+ Args: cobra.MinimumNArgs(1),
+ RunE: commandConcludeTransaction,
+
+ DisableFlagsInUseLine: true,
+ }
+)
+
+type ConcludeTransactionOutput struct {
+ Dtid string `json:"dtid"`
+ Message string `json:"message"`
+ Error string `json:"error,omitempty"`
+}
+
+const (
+ concludeSuccess = "Successfully concluded the distributed transaction"
+ concludeFailure = "Failed to conclude the distributed transaction"
+)
+
+func commandGetUnresolvedTransactions(cmd *cobra.Command, args []string) error {
+ cli.FinishedParsing(cmd)
+
+ keyspace := cmd.Flags().Arg(0)
+ resp, err := client.GetUnresolvedTransactions(commandCtx,
+ &vtctldatapb.GetUnresolvedTransactionsRequest{
+ Keyspace: keyspace,
+ })
+ if err != nil {
+ return err
+ }
+
+ data, err := cli.MarshalJSON(resp.Transactions)
+ if err != nil {
+ return err
+ }
+ fmt.Println(string(data))
+ return nil
+}
+
+func commandConcludeTransaction(cmd *cobra.Command, args []string) error {
+ allArgs := cmd.Flags().Args()
+ shards, err := cli.ParseKeyspaceShards(allArgs[1:])
+ if err != nil {
+ return err
+ }
+ cli.FinishedParsing(cmd)
+
+ dtid := allArgs[0]
+ var participants []*querypb.Target
+ for _, shard := range shards {
+ participants = append(participants, &querypb.Target{
+ Keyspace: shard.Keyspace,
+ Shard: shard.Name,
+ })
+ }
+ output := ConcludeTransactionOutput{
+ Dtid: dtid,
+ Message: concludeSuccess,
+ }
+
+ _, err = client.ConcludeTransaction(commandCtx,
+ &vtctldatapb.ConcludeTransactionRequest{
+ Dtid: dtid,
+ Participants: participants,
+ })
+ if err != nil {
+ output.Message = concludeFailure
+ output.Error = err.Error()
+ }
+
+ data, _ := cli.MarshalJSON(output)
+ fmt.Println(string(data))
+
+ return err
+}
+
+func init() {
+ DistributedTransaction.AddCommand(GetUnresolvedTransactions)
+ DistributedTransaction.AddCommand(ConcludeTransaction)
+
+ Root.AddCommand(DistributedTransaction)
+}
diff --git a/go/cmd/vtctldclient/command/vreplication/common/update.go b/go/cmd/vtctldclient/command/vreplication/common/update.go
index 7875c9412ac..896d417d8db 100644
--- a/go/cmd/vtctldclient/command/vreplication/common/update.go
+++ b/go/cmd/vtctldclient/command/vreplication/common/update.go
@@ -21,13 +21,12 @@ import (
"sort"
"strings"
- "vitess.io/vitess/go/vt/proto/vtrpc"
- "vitess.io/vitess/go/vt/vterrors"
-
"github.com/spf13/cobra"
"vitess.io/vitess/go/cmd/vtctldclient/cli"
"vitess.io/vitess/go/textutil"
+ "vitess.io/vitess/go/vt/proto/vtrpc"
+ "vitess.io/vitess/go/vt/vterrors"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
tabletmanagerdatapb "vitess.io/vitess/go/vt/proto/tabletmanagerdata"
@@ -143,9 +142,8 @@ func commandUpdateState(cmd *cobra.Command, args []string) error {
TabletRequest: &tabletmanagerdatapb.UpdateVReplicationWorkflowRequest{
Workflow: workflowUpdateOptions.Workflow,
Cells: textutil.SimulatedNullStringSlice,
- TabletTypes: []topodatapb.TabletType{topodatapb.TabletType(textutil.SimulatedNullInt)},
- OnDdl: binlogdatapb.OnDDLAction(textutil.SimulatedNullInt),
- State: state,
+ TabletTypes: textutil.SimulatedNullTabletTypeSlice,
+ State: &state,
},
}
diff --git a/go/cmd/vtctldclient/command/vreplication/common/utils.go b/go/cmd/vtctldclient/command/vreplication/common/utils.go
index 598f9abc200..29b7d8cd9e8 100644
--- a/go/cmd/vtctldclient/command/vreplication/common/utils.go
+++ b/go/cmd/vtctldclient/command/vreplication/common/utils.go
@@ -36,6 +36,7 @@ import (
tabletmanagerdatapb "vitess.io/vitess/go/vt/proto/tabletmanagerdata"
topodatapb "vitess.io/vitess/go/vt/proto/topodata"
vtctldatapb "vitess.io/vitess/go/vt/proto/vtctldata"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
)
var (
@@ -67,6 +68,7 @@ var (
MySQLServerVersion string
TruncateUILen int
TruncateErrLen int
+ ConfigOverrides []string
}{}
)
@@ -147,6 +149,27 @@ func validateOnDDL(cmd *cobra.Command) error {
return nil
}
+// ParseConfigOverrides converts a slice of key=value strings into a map of config overrides. The slice is passed
+// as a flag to the command, and the key=value pairs are used to override the default vreplication config values.
+func ParseConfigOverrides(overrides []string) (map[string]string, error) {
+ configOverrides := make(map[string]string, len(overrides))
+ defaultConfig, err := vttablet.NewVReplicationConfig(nil)
+ if err != nil {
+ return nil, err
+ }
+ for _, kv := range overrides {
+ key, value, ok := strings.Cut(kv, "=")
+ if !ok {
+ return nil, fmt.Errorf("invalid config override format (var=value expected): %s", kv)
+ }
+ if _, ok := defaultConfig.Map()[key]; !ok {
+ return nil, fmt.Errorf("unknown vreplication config flag: %s", key)
+ }
+ configOverrides[key] = value
+ }
+ return configOverrides, nil
+}
+
// ValidateShards checks if the provided shard names are valid key ranges.
func ValidateShards(shards []string) error {
for _, shard := range shards {
@@ -232,6 +255,7 @@ func AddCommonCreateFlags(cmd *cobra.Command) {
cmd.Flags().BoolVar(&CreateOptions.DeferSecondaryKeys, "defer-secondary-keys", false, "Defer secondary index creation for a table until after it has been copied.")
cmd.Flags().BoolVar(&CreateOptions.AutoStart, "auto-start", true, "Start the workflow after creating it.")
cmd.Flags().BoolVar(&CreateOptions.StopAfterCopy, "stop-after-copy", false, "Stop the workflow after it's finished copying the existing rows and before it starts replicating changes.")
+ cmd.Flags().StringSliceVar(&CreateOptions.ConfigOverrides, "config-overrides", []string{}, "Specify one or more VReplication config flags to override as a comma-separated list of key=value pairs.")
}
var MirrorTrafficOptions = struct {
@@ -250,6 +274,7 @@ var SwitchTrafficOptions = struct {
Direction workflow.TrafficSwitchDirection
InitializeTargetSequences bool
Shards []string
+ Force bool
}{}
func AddCommonSwitchTrafficFlags(cmd *cobra.Command, initializeTargetSequences bool) {
@@ -259,6 +284,7 @@ func AddCommonSwitchTrafficFlags(cmd *cobra.Command, initializeTargetSequences b
cmd.Flags().DurationVar(&SwitchTrafficOptions.MaxReplicationLagAllowed, "max-replication-lag-allowed", MaxReplicationLagDefault, "Allow traffic to be switched only if VReplication lag is below this.")
cmd.Flags().BoolVar(&SwitchTrafficOptions.EnableReverseReplication, "enable-reverse-replication", true, "Setup replication going back to the original source keyspace to support rolling back the traffic cutover.")
cmd.Flags().BoolVar(&SwitchTrafficOptions.DryRun, "dry-run", false, "Print the actions that would be taken and report any known errors that would have occurred.")
+ cmd.Flags().BoolVar(&SwitchTrafficOptions.Force, "force", false, "Force the traffic switch even if some potentially non-critical actions cannot be performed; for example the tablet refresh fails on some tablets in the keyspace. WARNING: this should be used with extreme caution and only in emergency situations!")
if initializeTargetSequences {
cmd.Flags().BoolVar(&SwitchTrafficOptions.InitializeTargetSequences, "initialize-target-sequences", false, "When moving tables from an unsharded keyspace to a sharded keyspace, initialize any sequences that are being used on the target when switching writes.")
}
diff --git a/go/cmd/vtctldclient/command/vreplication/materialize/create.go b/go/cmd/vtctldclient/command/vreplication/materialize/create.go
index 3eccd20df2a..931495730ba 100644
--- a/go/cmd/vtctldclient/command/vreplication/materialize/create.go
+++ b/go/cmd/vtctldclient/command/vreplication/materialize/create.go
@@ -91,6 +91,14 @@ func commandCreate(cmd *cobra.Command, args []string) error {
tsp := common.GetTabletSelectionPreference(cmd)
cli.FinishedParsing(cmd)
+ configOverrides, err := common.ParseConfigOverrides(common.CreateOptions.ConfigOverrides)
+ if err != nil {
+ return err
+ }
+ workflowOptions := &vtctldatapb.WorkflowOptions{
+ Config: configOverrides,
+ }
+
ms := &vtctldatapb.MaterializeSettings{
Workflow: common.BaseOptions.Workflow,
MaterializationIntent: vtctldatapb.MaterializationIntent_CUSTOM,
@@ -101,6 +109,7 @@ func commandCreate(cmd *cobra.Command, args []string) error {
Cell: strings.Join(common.CreateOptions.Cells, ","),
TabletTypes: topoproto.MakeStringTypeCSV(common.CreateOptions.TabletTypes),
TabletSelectionPreference: tsp,
+ WorkflowOptions: workflowOptions,
}
createOptions.TableSettings.parser, err = sqlparser.New(sqlparser.Options{
diff --git a/go/cmd/vtctldclient/command/vreplication/movetables/create.go b/go/cmd/vtctldclient/command/vreplication/movetables/create.go
index e7d5dbdfd82..817571902c5 100644
--- a/go/cmd/vtctldclient/command/vreplication/movetables/create.go
+++ b/go/cmd/vtctldclient/command/vreplication/movetables/create.go
@@ -101,6 +101,12 @@ func commandCreate(cmd *cobra.Command, args []string) error {
tsp := common.GetTabletSelectionPreference(cmd)
cli.FinishedParsing(cmd)
+ configOverrides, err := common.ParseConfigOverrides(common.CreateOptions.ConfigOverrides)
+ if err != nil {
+ return err
+ }
+ createOptions.WorkflowOptions.Config = configOverrides
+
req := &vtctldatapb.MoveTablesCreateRequest{
Workflow: common.BaseOptions.Workflow,
TargetKeyspace: common.BaseOptions.TargetKeyspace,
diff --git a/go/cmd/vtctldclient/command/vreplication/reshard/create.go b/go/cmd/vtctldclient/command/vreplication/reshard/create.go
index 05700dbb9fe..cf9bb0345b3 100644
--- a/go/cmd/vtctldclient/command/vreplication/reshard/create.go
+++ b/go/cmd/vtctldclient/command/vreplication/reshard/create.go
@@ -59,6 +59,14 @@ func commandReshardCreate(cmd *cobra.Command, args []string) error {
tsp := common.GetTabletSelectionPreference(cmd)
cli.FinishedParsing(cmd)
+ configOverrides, err := common.ParseConfigOverrides(common.CreateOptions.ConfigOverrides)
+ if err != nil {
+ return err
+ }
+ workflowOptions := &vtctldatapb.WorkflowOptions{
+ Config: configOverrides,
+ }
+
req := &vtctldatapb.ReshardCreateRequest{
Workflow: common.BaseOptions.Workflow,
Keyspace: common.BaseOptions.TargetKeyspace,
@@ -72,6 +80,7 @@ func commandReshardCreate(cmd *cobra.Command, args []string) error {
SourceShards: reshardCreateOptions.sourceShards,
TargetShards: reshardCreateOptions.targetShards,
SkipSchemaCopy: reshardCreateOptions.skipSchemaCopy,
+ WorkflowOptions: workflowOptions,
}
resp, err := common.GetClient().ReshardCreate(common.GetCommandCtx(), req)
if err != nil {
diff --git a/go/cmd/vtctldclient/command/vreplication/workflow/state.go b/go/cmd/vtctldclient/command/vreplication/workflow/state.go
index 89e75312ab2..c10e50f403c 100644
--- a/go/cmd/vtctldclient/command/vreplication/workflow/state.go
+++ b/go/cmd/vtctldclient/command/vreplication/workflow/state.go
@@ -29,7 +29,6 @@ import (
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
tabletmanagerdatapb "vitess.io/vitess/go/vt/proto/tabletmanagerdata"
- topodatapb "vitess.io/vitess/go/vt/proto/topodata"
vtctldatapb "vitess.io/vitess/go/vt/proto/vtctldata"
)
@@ -79,9 +78,8 @@ func commandUpdateState(cmd *cobra.Command, args []string) error {
TabletRequest: &tabletmanagerdatapb.UpdateVReplicationWorkflowRequest{
Workflow: baseOptions.Workflow,
Cells: textutil.SimulatedNullStringSlice,
- TabletTypes: []topodatapb.TabletType{topodatapb.TabletType(textutil.SimulatedNullInt)},
- OnDdl: binlogdatapb.OnDDLAction(textutil.SimulatedNullInt),
- State: state,
+ TabletTypes: textutil.SimulatedNullTabletTypeSlice,
+ State: &state,
},
}
diff --git a/go/cmd/vtctldclient/command/vreplication/workflow/update.go b/go/cmd/vtctldclient/command/vreplication/workflow/update.go
index 3d06ad3e64e..256cede5ab9 100644
--- a/go/cmd/vtctldclient/command/vreplication/workflow/update.go
+++ b/go/cmd/vtctldclient/command/vreplication/workflow/update.go
@@ -25,6 +25,7 @@ import (
"vitess.io/vitess/go/cmd/vtctldclient/cli"
"vitess.io/vitess/go/cmd/vtctldclient/command/vreplication/common"
+ "vitess.io/vitess/go/ptr"
"vitess.io/vitess/go/textutil"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
@@ -39,6 +40,7 @@ var (
TabletTypes []topodatapb.TabletType
TabletTypesInPreferenceOrder bool
OnDDL string
+ ConfigOverrides []string
}{}
// update makes a WorkflowUpdate gRPC call to a vtctld.
@@ -65,14 +67,17 @@ var (
}
changes = true
} else {
- updateOptions.TabletTypes = []topodatapb.TabletType{topodatapb.TabletType(textutil.SimulatedNullInt)}
+ updateOptions.TabletTypes = textutil.SimulatedNullTabletTypeSlice
}
if cmd.Flags().Lookup("on-ddl").Changed { // Validate the provided value
changes = true
if _, ok := binlogdatapb.OnDDLAction_value[strings.ToUpper(updateOptions.OnDDL)]; !ok {
return fmt.Errorf("invalid on-ddl value: %s", updateOptions.OnDDL)
}
- } // Simulated NULL will need to be handled in command
+ }
+ if len(updateOptions.ConfigOverrides) > 0 {
+ changes = true
+ }
if !changes {
return fmt.Errorf("no configuration options specified to update")
}
@@ -85,15 +90,6 @@ var (
func commandUpdate(cmd *cobra.Command, args []string) error {
cli.FinishedParsing(cmd)
- // We've already validated any provided value, if one WAS provided.
- // Now we need to do the mapping from the string representation to
- // the enum value.
- onddl := int32(textutil.SimulatedNullInt) // Simulated NULL when no value provided
- if val, ok := binlogdatapb.OnDDLAction_value[strings.ToUpper(updateOptions.OnDDL)]; ok {
- onddl = val
- }
-
- // Simulated NULL when no value is provided.
tsp := tabletmanagerdatapb.TabletSelectionPreference_UNKNOWN
if cmd.Flags().Lookup("tablet-types-in-order").Changed {
if updateOptions.TabletTypesInPreferenceOrder {
@@ -103,18 +99,29 @@ func commandUpdate(cmd *cobra.Command, args []string) error {
}
}
+ configOverrides, err := common.ParseConfigOverrides(updateOptions.ConfigOverrides)
+ if err != nil {
+ return err
+ }
+
req := &vtctldatapb.WorkflowUpdateRequest{
Keyspace: baseOptions.Keyspace,
TabletRequest: &tabletmanagerdatapb.UpdateVReplicationWorkflowRequest{
Workflow: baseOptions.Workflow,
Cells: updateOptions.Cells,
TabletTypes: updateOptions.TabletTypes,
- TabletSelectionPreference: tsp,
- OnDdl: binlogdatapb.OnDDLAction(onddl),
- State: binlogdatapb.VReplicationWorkflowState(textutil.SimulatedNullInt), // We don't allow changing this in the client command
+ TabletSelectionPreference: &tsp,
+ ConfigOverrides: configOverrides,
},
}
+ // We've already validated any provided value, if one WAS provided.
+ // Now we need to do the mapping from the string representation to
+ // the enum value.
+ if val, ok := binlogdatapb.OnDDLAction_value[strings.ToUpper(updateOptions.OnDDL)]; ok {
+ req.TabletRequest.OnDdl = ptr.Of(binlogdatapb.OnDDLAction(val))
+ }
+
resp, err := common.GetClient().WorkflowUpdate(common.GetCommandCtx(), req)
if err != nil {
return err
diff --git a/go/cmd/vtctldclient/command/vreplication/workflow/workflow.go b/go/cmd/vtctldclient/command/vreplication/workflow/workflow.go
index a4fbb37d4bd..2961b8010be 100644
--- a/go/cmd/vtctldclient/command/vreplication/workflow/workflow.go
+++ b/go/cmd/vtctldclient/command/vreplication/workflow/workflow.go
@@ -88,6 +88,8 @@ func registerCommands(root *cobra.Command) {
update.Flags().VarP((*topoproto.TabletTypeListFlag)(&updateOptions.TabletTypes), "tablet-types", "t", "New source tablet types to replicate from (e.g. PRIMARY,REPLICA,RDONLY).")
update.Flags().BoolVar(&updateOptions.TabletTypesInPreferenceOrder, "tablet-types-in-order", true, "When performing source tablet selection, look for candidates in the type order as they are listed in the tablet-types flag.")
update.Flags().StringVar(&updateOptions.OnDDL, "on-ddl", "", "New instruction on what to do when DDL is encountered in the VReplication stream. Possible values are IGNORE, STOP, EXEC, and EXEC_IGNORE.")
+ update.Flags().StringSliceVar(&updateOptions.ConfigOverrides, "config-overrides", nil, "Specify one or more VReplication config flags to override as a comma-separated list of key=value pairs.")
+
common.AddShardSubsetFlag(update, &baseOptions.Shards)
base.AddCommand(update)
}
diff --git a/go/flags/endtoend/vtbackup.txt b/go/flags/endtoend/vtbackup.txt
index 76f7842563b..fba7c794fc0 100644
--- a/go/flags/endtoend/vtbackup.txt
+++ b/go/flags/endtoend/vtbackup.txt
@@ -178,7 +178,7 @@ Flags:
--mysql-shell-backup-location string location where the backup will be stored
--mysql-shell-dump-flags string flags to pass to mysql shell dump utility. This should be a JSON string and will be saved in the MANIFEST (default "{\"threads\": 4}")
--mysql-shell-flags string execution flags to pass to mysqlsh binary to be used during dump/load (default "--defaults-file=/dev/null --js -h localhost")
- --mysql-shell-load-flags string flags to pass to mysql shell load utility. This should be a JSON string (default "{\"threads\": 4, \"loadUsers\": true, \"excludeUsers\": [\"'root'@'localhost'\"], \"updateGtidSet\": \"replace\", \"skipBinlog\": true, \"progressFile\": \"\"}")
+ --mysql-shell-load-flags string flags to pass to mysql shell load utility. This should be a JSON string (default "{\"threads\": 4, \"loadUsers\": true, \"updateGtidSet\": \"replace\", \"skipBinlog\": true, \"progressFile\": \"\"}")
--mysql-shell-should-drain decide if we should drain while taking a backup or continue to serving traffic
--mysql-shell-speedup-restore speed up restore by disabling redo logging and double write buffer during the restore process
--mysql-shutdown-timeout duration how long to wait for mysqld shutdown (default 5m0s)
diff --git a/go/flags/endtoend/vtcombo.txt b/go/flags/endtoend/vtcombo.txt
index 500615b95c9..5e82ad5b28e 100644
--- a/go/flags/endtoend/vtcombo.txt
+++ b/go/flags/endtoend/vtcombo.txt
@@ -229,7 +229,7 @@ Flags:
--mysql-shell-backup-location string location where the backup will be stored
--mysql-shell-dump-flags string flags to pass to mysql shell dump utility. This should be a JSON string and will be saved in the MANIFEST (default "{\"threads\": 4}")
--mysql-shell-flags string execution flags to pass to mysqlsh binary to be used during dump/load (default "--defaults-file=/dev/null --js -h localhost")
- --mysql-shell-load-flags string flags to pass to mysql shell load utility. This should be a JSON string (default "{\"threads\": 4, \"loadUsers\": true, \"excludeUsers\": [\"'root'@'localhost'\"], \"updateGtidSet\": \"replace\", \"skipBinlog\": true, \"progressFile\": \"\"}")
+ --mysql-shell-load-flags string flags to pass to mysql shell load utility. This should be a JSON string (default "{\"threads\": 4, \"loadUsers\": true, \"updateGtidSet\": \"replace\", \"skipBinlog\": true, \"progressFile\": \"\"}")
--mysql-shell-should-drain decide if we should drain while taking a backup or continue to serving traffic
--mysql-shell-speedup-restore speed up restore by disabling redo logging and double write buffer during the restore process
--mysql-shutdown-timeout duration timeout to use when MySQL is being shut down. (default 5m0s)
@@ -308,8 +308,8 @@ Flags:
--queryserver-enable-views Enable views support in vttablet.
--queryserver_enable_online_ddl Enable online DDL. (default true)
--redact-debug-ui-queries redact full queries and bind variables from debug UI
- --relay_log_max_items int Maximum number of rows for VReplication target buffering. (default 5000)
- --relay_log_max_size int Maximum buffer size (in bytes) for VReplication target buffering. If single rows are larger than this, a single row is buffered at a time. (default 250000)
+ --relay_log_max_items int Maximum number of rows for vreplication target buffering. (default 5000)
+ --relay_log_max_size int Maximum buffer size (in bytes) for vreplication target buffering. If single rows are larger than this, a single row is buffered at a time. (default 250000)
--remote_operation_timeout duration time to wait for a remote operation (default 15s)
--replication_connect_retry duration how long to wait in between replica reconnect attempts. Only precise to the second. (default 10s)
--restore-to-pos string (init incremental restore parameter) if set, run a point in time recovery that ends with the given position. This will attempt to use one full backup followed by zero or more incremental backups
diff --git a/go/flags/endtoend/vtctldclient.txt b/go/flags/endtoend/vtctldclient.txt
index 2c00a14c1a0..df32f456602 100644
--- a/go/flags/endtoend/vtctldclient.txt
+++ b/go/flags/endtoend/vtctldclient.txt
@@ -28,6 +28,7 @@ Available Commands:
DeleteShards Deletes the specified shards from the topology.
DeleteSrvVSchema Deletes the SrvVSchema object in the given cell.
DeleteTablets Deletes tablet(s) from the topology.
+ DistributedTransaction Perform commands on distributed transaction
EmergencyReparentShard Reparents the shard to the new primary. Assumes the old primary is dead and not responding.
ExecuteFetchAsApp Executes the given query as the App user on the remote tablet.
ExecuteFetchAsDBA Executes the given query as the DBA user on the remote tablet.
@@ -59,7 +60,6 @@ Available Commands:
GetTablets Looks up tablets according to filter criteria.
GetThrottlerStatus Get the throttler status for the given tablet.
GetTopologyPath Gets the value associated with the particular path (key) in the topology server.
- GetUnresolvedTransactions Retrieves unresolved transactions for the given keyspace.
GetVSchema Prints a JSON representation of a keyspace's topo record.
GetWorkflows Gets all vreplication workflows (Reshard, MoveTables, etc) in the given keyspace.
LegacyVtctlCommand Invoke a legacy vtctlclient command. Flag parsing is best effort.
diff --git a/go/flags/endtoend/vttablet.txt b/go/flags/endtoend/vttablet.txt
index 695cb70680d..5ff9a4b25aa 100644
--- a/go/flags/endtoend/vttablet.txt
+++ b/go/flags/endtoend/vttablet.txt
@@ -246,7 +246,7 @@ Flags:
--mysql-shell-backup-location string location where the backup will be stored
--mysql-shell-dump-flags string flags to pass to mysql shell dump utility. This should be a JSON string and will be saved in the MANIFEST (default "{\"threads\": 4}")
--mysql-shell-flags string execution flags to pass to mysqlsh binary to be used during dump/load (default "--defaults-file=/dev/null --js -h localhost")
- --mysql-shell-load-flags string flags to pass to mysql shell load utility. This should be a JSON string (default "{\"threads\": 4, \"loadUsers\": true, \"excludeUsers\": [\"'root'@'localhost'\"], \"updateGtidSet\": \"replace\", \"skipBinlog\": true, \"progressFile\": \"\"}")
+ --mysql-shell-load-flags string flags to pass to mysql shell load utility. This should be a JSON string (default "{\"threads\": 4, \"loadUsers\": true, \"updateGtidSet\": \"replace\", \"skipBinlog\": true, \"progressFile\": \"\"}")
--mysql-shell-should-drain decide if we should drain while taking a backup or continue to serving traffic
--mysql-shell-speedup-restore speed up restore by disabling redo logging and double write buffer during the restore process
--mysql-shutdown-timeout duration timeout to use when MySQL is being shut down. (default 5m0s)
@@ -298,8 +298,8 @@ Flags:
--queryserver-enable-views Enable views support in vttablet.
--queryserver_enable_online_ddl Enable online DDL. (default true)
--redact-debug-ui-queries redact full queries and bind variables from debug UI
- --relay_log_max_items int Maximum number of rows for VReplication target buffering. (default 5000)
- --relay_log_max_size int Maximum buffer size (in bytes) for VReplication target buffering. If single rows are larger than this, a single row is buffered at a time. (default 250000)
+ --relay_log_max_items int Maximum number of rows for vreplication target buffering. (default 5000)
+ --relay_log_max_size int Maximum buffer size (in bytes) for vreplication target buffering. If single rows are larger than this, a single row is buffered at a time. (default 250000)
--remote_operation_timeout duration time to wait for a remote operation (default 15s)
--replication_connect_retry duration how long to wait in between replica reconnect attempts. Only precise to the second. (default 10s)
--restore-to-pos string (init incremental restore parameter) if set, run a point in time recovery that ends with the given position. This will attempt to use one full backup followed by zero or more incremental backups
diff --git a/go/flags/endtoend/vttestserver.txt b/go/flags/endtoend/vttestserver.txt
index 538fdd3ea47..0aa69dfb204 100644
--- a/go/flags/endtoend/vttestserver.txt
+++ b/go/flags/endtoend/vttestserver.txt
@@ -90,7 +90,7 @@ Flags:
--mysql-shell-backup-location string location where the backup will be stored
--mysql-shell-dump-flags string flags to pass to mysql shell dump utility. This should be a JSON string and will be saved in the MANIFEST (default "{\"threads\": 4}")
--mysql-shell-flags string execution flags to pass to mysqlsh binary to be used during dump/load (default "--defaults-file=/dev/null --js -h localhost")
- --mysql-shell-load-flags string flags to pass to mysql shell load utility. This should be a JSON string (default "{\"threads\": 4, \"loadUsers\": true, \"excludeUsers\": [\"'root'@'localhost'\"], \"updateGtidSet\": \"replace\", \"skipBinlog\": true, \"progressFile\": \"\"}")
+ --mysql-shell-load-flags string flags to pass to mysql shell load utility. This should be a JSON string (default "{\"threads\": 4, \"loadUsers\": true, \"updateGtidSet\": \"replace\", \"skipBinlog\": true, \"progressFile\": \"\"}")
--mysql-shell-should-drain decide if we should drain while taking a backup or continue to serving traffic
--mysql-shell-speedup-restore speed up restore by disabling redo logging and double write buffer during the restore process
--mysql_bind_host string which host to bind vtgate mysql listener to (default "localhost")
diff --git a/go/mysql/binlog_event.go b/go/mysql/binlog_event.go
index 27af9926c0c..5d472230d0e 100644
--- a/go/mysql/binlog_event.go
+++ b/go/mysql/binlog_event.go
@@ -91,6 +91,8 @@ type BinlogEvent interface {
// Timestamp returns the timestamp from the event header.
Timestamp() uint32
+ // ServerID returns the server ID from the event header.
+ ServerID() uint32
// Format returns a BinlogFormat struct based on the event data.
// This is only valid if IsFormatDescription() returns true.
diff --git a/go/mysql/binlog_event_filepos.go b/go/mysql/binlog_event_filepos.go
index 8a2976da80d..c71c8346964 100644
--- a/go/mysql/binlog_event_filepos.go
+++ b/go/mysql/binlog_event_filepos.go
@@ -211,6 +211,10 @@ func (ev filePosFakeEvent) Timestamp() uint32 {
return ev.timestamp
}
+func (ev filePosFakeEvent) ServerID() uint32 {
+ return 1
+}
+
func (ev filePosFakeEvent) Format() (BinlogFormat, error) {
return BinlogFormat{}, nil
}
diff --git a/go/mysql/binlog_event_make_test.go b/go/mysql/binlog_event_make_test.go
index dddca2e0265..84535213cd9 100644
--- a/go/mysql/binlog_event_make_test.go
+++ b/go/mysql/binlog_event_make_test.go
@@ -374,6 +374,7 @@ func TestRowsEvent(t *testing.T) {
require.True(t, reflect.DeepEqual(gotRows, rows), "NewRowsEvent().Rows() got Rows:\n%v\nexpected:\n%v", gotRows, rows)
assert.NotZero(t, event.Timestamp())
+ assert.NotZero(t, event.ServerID())
}
func TestHeartbeatEvent(t *testing.T) {
@@ -384,6 +385,7 @@ func TestHeartbeatEvent(t *testing.T) {
require.NotNil(t, event)
assert.True(t, event.IsHeartbeat())
assert.Zero(t, event.Timestamp())
+ assert.NotZero(t, event.ServerID())
}
func TestRotateRotateEvent(t *testing.T) {
diff --git a/go/test/endtoend/backup/vtctlbackup/backup_utils.go b/go/test/endtoend/backup/vtctlbackup/backup_utils.go
index 7b471b3bf21..647eda078d1 100644
--- a/go/test/endtoend/backup/vtctlbackup/backup_utils.go
+++ b/go/test/endtoend/backup/vtctlbackup/backup_utils.go
@@ -1148,6 +1148,17 @@ func GetReplicaGtidPurged(t *testing.T, replicaIndex int) string {
return row.AsString("gtid_purged", "")
}
+func ReconnectReplicaToPrimary(t *testing.T, replicaIndex int) {
+ query := fmt.Sprintf("CHANGE REPLICATION SOURCE TO SOURCE_HOST='localhost', SOURCE_PORT=%d, SOURCE_USER='vt_repl', SOURCE_AUTO_POSITION = 1", primary.MySQLPort)
+ replica := getReplica(t, replicaIndex)
+ _, err := replica.VttabletProcess.QueryTablet("stop replica", keyspaceName, true)
+ require.NoError(t, err)
+ _, err = replica.VttabletProcess.QueryTablet(query, keyspaceName, true)
+ require.NoError(t, err)
+ _, err = replica.VttabletProcess.QueryTablet("start replica", keyspaceName, true)
+ require.NoError(t, err)
+}
+
func InsertRowOnPrimary(t *testing.T, hint string) {
if hint == "" {
hint = textutil.RandomHash()[:12]
diff --git a/go/test/endtoend/backup/vtctlbackup/pitr_test_framework.go b/go/test/endtoend/backup/vtctlbackup/pitr_test_framework.go
index 7f611d81ad6..4c84c3e63bc 100644
--- a/go/test/endtoend/backup/vtctlbackup/pitr_test_framework.go
+++ b/go/test/endtoend/backup/vtctlbackup/pitr_test_framework.go
@@ -68,21 +68,24 @@ type testedBackupTimestampInfo struct {
postTimestamp time.Time
}
-func waitForReplica(t *testing.T, replicaIndex int) {
+// waitForReplica waits for the replica to have same row set as on primary.
+func waitForReplica(t *testing.T, replicaIndex int) int {
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
+ ticker := time.NewTicker(1 * time.Second)
+ defer ticker.Stop()
pMsgs := ReadRowsFromPrimary(t)
for {
rMsgs := ReadRowsFromReplica(t, replicaIndex)
if len(pMsgs) == len(rMsgs) {
// success
- return
+ return len(pMsgs)
}
select {
case <-ctx.Done():
assert.FailNow(t, "timeout waiting for replica to catch up")
- return
- case <-time.After(time.Second):
+ return 0
+ case <-ticker.C:
//
}
}
@@ -289,6 +292,12 @@ func ExecTestIncrementalBackupAndRestoreToPos(t *testing.T, tcase *PITRTestCase)
if sampleTestedBackupPos == "" {
sampleTestedBackupPos = pos
}
+ t.Run("post-pitr, wait for replica to catch up", func(t *testing.T) {
+ // Replica is DRAINED and does not have replication configuration.
+ // We now connect the replica to the primary and validate it's able to catch up.
+ ReconnectReplicaToPrimary(t, 0)
+ waitForReplica(t, 0)
+ })
})
}
}
@@ -539,6 +548,12 @@ func ExecTestIncrementalBackupAndRestoreToTimestamp(t *testing.T, tcase *PITRTes
if sampleTestedBackupIndex < 0 {
sampleTestedBackupIndex = backupIndex
}
+ t.Run("post-pitr, wait for replica to catch up", func(t *testing.T) {
+ // Replica is DRAINED and does not have replication configuration.
+ // We now connect the replica to the primary and validate it's able to catch up.
+ ReconnectReplicaToPrimary(t, 0)
+ waitForReplica(t, 0)
+ })
} else {
numFailedRestores++
}
diff --git a/go/test/endtoend/onlineddl/exec_util.go b/go/test/endtoend/onlineddl/exec_util.go
index 95ab25ece5c..d86f39eb834 100644
--- a/go/test/endtoend/onlineddl/exec_util.go
+++ b/go/test/endtoend/onlineddl/exec_util.go
@@ -46,6 +46,10 @@ func CreateTempScript(t *testing.T, content string) (fileName string) {
func MysqlClientExecFile(t *testing.T, mysqlParams *mysql.ConnParams, testDataPath, testName string, fileName string) (output string) {
t.Helper()
+ errorFile, err := os.CreateTemp("", "onlineddl-test-")
+ require.NoError(t, err)
+ defer os.Remove(errorFile.Name())
+
bashPath, err := exec.LookPath("bash")
require.NoError(t, err)
mysqlPath, err := exec.LookPath("mysql")
@@ -55,13 +59,15 @@ func MysqlClientExecFile(t *testing.T, mysqlParams *mysql.ConnParams, testDataPa
if !filepath.IsAbs(fileName) {
filePath, _ = filepath.Abs(path.Join(testDataPath, testName, fileName))
}
- bashCommand := fmt.Sprintf(`%s -u%s --socket=%s --database=%s -s -s < %s 2> /tmp/error.log`, mysqlPath, mysqlParams.Uname, mysqlParams.UnixSocket, mysqlParams.DbName, filePath)
+ bashCommand := fmt.Sprintf(`%s -u%s --socket=%s --database=%s -s -s < %s 2> %s`, mysqlPath, mysqlParams.Uname, mysqlParams.UnixSocket, mysqlParams.DbName, filePath, errorFile.Name())
cmd, err := exec.Command(
bashPath,
"-c",
bashCommand,
).Output()
- require.NoError(t, err)
+ errorContent, readerr := os.ReadFile(errorFile.Name())
+ require.NoError(t, readerr)
+ require.NoError(t, err, "error details: %s", errorContent)
return string(cmd)
}
diff --git a/go/test/endtoend/onlineddl/flow/onlineddl_flow_test.go b/go/test/endtoend/onlineddl/flow/onlineddl_flow_test.go
index e731e8529ae..c442c042f8a 100644
--- a/go/test/endtoend/onlineddl/flow/onlineddl_flow_test.go
+++ b/go/test/endtoend/onlineddl/flow/onlineddl_flow_test.go
@@ -63,7 +63,7 @@ import (
"vitess.io/vitess/go/test/endtoend/throttler"
"vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/schema"
- "vitess.io/vitess/go/vt/vttablet"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
throttlebase "vitess.io/vitess/go/vt/vttablet/tabletserver/throttle/base"
"vitess.io/vitess/go/vt/vttablet/tabletserver/throttle/throttlerapp"
)
diff --git a/go/test/endtoend/onlineddl/vrepl_stress/onlineddl_vrepl_mini_stress_test.go b/go/test/endtoend/onlineddl/vrepl_stress/onlineddl_vrepl_mini_stress_test.go
index 185941d5059..e0dd9701cf8 100644
--- a/go/test/endtoend/onlineddl/vrepl_stress/onlineddl_vrepl_mini_stress_test.go
+++ b/go/test/endtoend/onlineddl/vrepl_stress/onlineddl_vrepl_mini_stress_test.go
@@ -38,7 +38,7 @@ import (
"vitess.io/vitess/go/test/endtoend/throttler"
"vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/schema"
- "vitess.io/vitess/go/vt/vttablet"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
)
type WriteMetrics struct {
diff --git a/go/test/endtoend/onlineddl/vrepl_stress_suite/onlineddl_vrepl_stress_suite_test.go b/go/test/endtoend/onlineddl/vrepl_stress_suite/onlineddl_vrepl_stress_suite_test.go
index a3925a39d4f..440b921f9ba 100644
--- a/go/test/endtoend/onlineddl/vrepl_stress_suite/onlineddl_vrepl_stress_suite_test.go
+++ b/go/test/endtoend/onlineddl/vrepl_stress_suite/onlineddl_vrepl_stress_suite_test.go
@@ -51,7 +51,7 @@ import (
"vitess.io/vitess/go/timer"
"vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/schema"
- "vitess.io/vitess/go/vt/vttablet"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
)
type testcase struct {
diff --git a/go/test/endtoend/tabletmanager/commands_test.go b/go/test/endtoend/tabletmanager/commands_test.go
index b91735c1039..4d05c403cde 100644
--- a/go/test/endtoend/tabletmanager/commands_test.go
+++ b/go/test/endtoend/tabletmanager/commands_test.go
@@ -77,9 +77,19 @@ func TestTabletCommands(t *testing.T) {
})
t.Run("GetUnresolvedTransactions", func(t *testing.T) {
- _, err := clusterInstance.VtctldClientProcess.ExecuteCommandWithOutput("GetUnresolvedTransactions", keyspaceName)
+ _, err := clusterInstance.VtctldClientProcess.ExecuteCommandWithOutput("DistributedTransaction", "list", keyspaceName)
require.NoError(t, err)
})
+ t.Run("ConcludeTransaction", func(t *testing.T) {
+ output, err := clusterInstance.VtctldClientProcess.ExecuteCommandWithOutput("DistributedTransaction", "conclude", "ks:0:1234")
+ assert.NoError(t, err)
+ assert.Contains(t, output, "Successfully concluded the distributed transaction")
+ })
+ t.Run("ConcludeTransaction with participants", func(t *testing.T) {
+ output, err := clusterInstance.VtctldClientProcess.ExecuteCommandWithOutput("DistributedTransaction", "conclude", "ks:0:1234", "ks/0")
+ assert.NoError(t, err)
+ assert.Contains(t, output, "Successfully concluded the distributed transaction")
+ })
// check Ping / RefreshState / RefreshStateByShard
err = clusterInstance.VtctldClientProcess.ExecuteCommand("PingTablet", primaryTablet.Alias)
require.Nil(t, err, "error should be Nil")
diff --git a/go/test/endtoend/vreplication/cluster_test.go b/go/test/endtoend/vreplication/cluster_test.go
index 97adbb80a6a..13268fc749c 100644
--- a/go/test/endtoend/vreplication/cluster_test.go
+++ b/go/test/endtoend/vreplication/cluster_test.go
@@ -37,7 +37,7 @@ import (
"vitess.io/vitess/go/vt/mysqlctl"
"vitess.io/vitess/go/vt/sqlparser"
"vitess.io/vitess/go/vt/vtgate/planbuilder/plancontext"
- "vitess.io/vitess/go/vt/vttablet"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
vtctldatapb "vitess.io/vitess/go/vt/proto/vtctldata"
diff --git a/go/test/endtoend/vreplication/fk_test.go b/go/test/endtoend/vreplication/fk_test.go
index 72cd278002f..34881cbcd1a 100644
--- a/go/test/endtoend/vreplication/fk_test.go
+++ b/go/test/endtoend/vreplication/fk_test.go
@@ -29,7 +29,7 @@ import (
"vitess.io/vitess/go/mysql"
"vitess.io/vitess/go/sqltypes"
"vitess.io/vitess/go/vt/log"
- "vitess.io/vitess/go/vt/vttablet"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
)
diff --git a/go/test/endtoend/vreplication/helper_test.go b/go/test/endtoend/vreplication/helper_test.go
index b45c09837c9..44c35d0acea 100644
--- a/go/test/endtoend/vreplication/helper_test.go
+++ b/go/test/endtoend/vreplication/helper_test.go
@@ -35,6 +35,8 @@ import (
"testing"
"time"
+ "golang.org/x/exp/maps"
+
"github.com/buger/jsonparser"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
@@ -1022,3 +1024,47 @@ func confirmKeyspacesRoutedTo(t *testing.T, keyspace string, routedKeyspace, tab
require.Equalf(t, routedKeyspace, plan.Keyspace.Name, "for database %s, keyspace %v, tabletType %s", database, keyspace, tt)
}
}
+
+// getVReplicationConfig returns the vreplication config for one random workflow for a given tablet. Currently, this is
+// used when there is only one workflow, so we are using this simple method to get the config.
+func getVReplicationConfig(t *testing.T, tab *cluster.VttabletProcess) map[string]string {
+ configJson, err := getDebugVar(t, tab.Port, []string{"VReplicationConfig"})
+ require.NoError(t, err)
+
+ var config map[string]string
+ err = json2.Unmarshal([]byte(configJson), &config)
+ require.NoError(t, err)
+ require.Equal(t, 1, len(config))
+
+ configJson = config[maps.Keys(config)[0]]
+ config = nil
+ err = json2.Unmarshal([]byte(configJson), &config)
+ require.NoError(t, err)
+
+ return config
+}
+
+// mapToCSV converts a golang map to a CSV string for use in defining the config overrides in vrep CLI commands.
+func mapToCSV(m map[string]string) string {
+ csv := ""
+ if len(m) == 0 {
+ return csv
+ }
+ for k, v := range m {
+ csv += fmt.Sprintf("%s=%s,", k, v)
+ }
+ if len(csv) == 0 {
+ return csv
+ }
+ return csv[:len(csv)-1]
+}
+
+// validateOverrides validates that the given vttablets have the expected config overrides.
+func validateOverrides(t *testing.T, tabs map[string]*cluster.VttabletProcess, want map[string]string) {
+ for _, tab := range tabs {
+ config := getVReplicationConfig(t, tab)
+ for k, v := range want {
+ require.EqualValues(t, v, config[k])
+ }
+ }
+}
diff --git a/go/test/endtoend/vreplication/vdiff2_test.go b/go/test/endtoend/vreplication/vdiff2_test.go
index d6602502be0..aaf4cae5375 100644
--- a/go/test/endtoend/vreplication/vdiff2_test.go
+++ b/go/test/endtoend/vreplication/vdiff2_test.go
@@ -32,10 +32,11 @@ import (
"google.golang.org/protobuf/encoding/protojson"
"google.golang.org/protobuf/proto"
+ "vitess.io/vitess/go/ptr"
"vitess.io/vitess/go/test/endtoend/cluster"
"vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/sqlparser"
- "vitess.io/vitess/go/vt/vttablet"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
tabletmanagerdatapb "vitess.io/vitess/go/vt/proto/tabletmanagerdata"
@@ -370,7 +371,6 @@ func testCLIErrors(t *testing.T, ksWorkflow, cells string) {
// testCLIFlagHandling tests that the vtctldclient CLI flags are handled correctly
// from vtctldclient->vtctld->vttablet->mysqld.
func testCLIFlagHandling(t *testing.T, targetKs, workflowName string, cell *Cell) {
- false := false
expectedOptions := &tabletmanagerdatapb.VDiffOptions{
CoreOptions: &tabletmanagerdatapb.VDiffCoreOptions{
MaxRows: 999,
@@ -379,7 +379,7 @@ func testCLIFlagHandling(t *testing.T, targetKs, workflowName string, cell *Cell
UpdateTableStats: true,
TimeoutSeconds: 60,
MaxDiffSeconds: 333,
- AutoStart: &false,
+ AutoStart: ptr.Of(false),
},
PickerOptions: &tabletmanagerdatapb.VDiffPickerOptions{
SourceCell: "zone1,zone2,zone3,zonefoosource",
diff --git a/go/test/endtoend/vreplication/vreplication_vtctldclient_cli_test.go b/go/test/endtoend/vreplication/vreplication_vtctldclient_cli_test.go
index a69d55c3417..2355730ac8c 100644
--- a/go/test/endtoend/vreplication/vreplication_vtctldclient_cli_test.go
+++ b/go/test/endtoend/vreplication/vreplication_vtctldclient_cli_test.go
@@ -30,13 +30,14 @@ import (
"vitess.io/vitess/go/json2"
"vitess.io/vitess/go/test/endtoend/cluster"
+ "vitess.io/vitess/go/vt/topo/topoproto"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
tabletmanagerdatapb "vitess.io/vitess/go/vt/proto/tabletmanagerdata"
topodatapb "vitess.io/vitess/go/vt/proto/topodata"
vschemapb "vitess.io/vitess/go/vt/proto/vschema"
vtctldatapb "vitess.io/vitess/go/vt/proto/vtctldata"
- "vitess.io/vitess/go/vt/topo/topoproto"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
)
// TestVtctldclientCLI tests the vreplication vtctldclient CLI commands, primarily to check that non-standard flags
@@ -50,6 +51,7 @@ func TestVtctldclientCLI(t *testing.T) {
}()
defaultRdonly = 0
vc = setupMinimalCluster(t)
+ vttablet.InitVReplicationConfigDefaults()
err = vc.Vtctl.AddCellInfo("zone2")
require.NoError(t, err)
@@ -73,6 +75,9 @@ func TestVtctldclientCLI(t *testing.T) {
t.Run("MoveTablesCreateFlags1", func(t *testing.T) {
testMoveTablesFlags1(t, &mt, sourceKeyspaceName, targetKeyspaceName, workflowName, targetTabs)
})
+ t.Run("testWorkflowUpdateConfig", func(t *testing.T) {
+ testWorkflowUpdateConfig(t, &mt, targetTabs, targetKeyspaceName, workflowName)
+ })
t.Run("MoveTablesCreateFlags2", func(t *testing.T) {
testMoveTablesFlags2(t, &mt, sourceKeyspaceName, targetKeyspaceName, workflowName, targetTabs)
})
@@ -97,10 +102,16 @@ func TestVtctldclientCLI(t *testing.T) {
// Tests several create flags and some complete flags and validates that some of them are set correctly for the workflow.
func testMoveTablesFlags1(t *testing.T, mt *iMoveTables, sourceKeyspace, targetKeyspace, workflowName string, targetTabs map[string]*cluster.VttabletProcess) {
tables := "customer,customer2"
+ overrides := map[string]string{
+ "vreplication_net_read_timeout": "6000",
+ "relay_log_max_items": "10000",
+ "vreplication-parallel-insert-workers": "10",
+ }
createFlags := []string{"--auto-start=false", "--defer-secondary-keys=false", "--stop-after-copy",
"--no-routing-rules", "--on-ddl", "STOP", "--exclude-tables", "customer2",
"--tablet-types", "primary,rdonly", "--tablet-types-in-preference-order=true",
"--all-cells",
+ "--config-overrides", mapToCSV(overrides),
}
completeFlags := []string{"--keep-routing-rules", "--keep-data"}
switchFlags := []string{}
@@ -117,6 +128,7 @@ func testMoveTablesFlags1(t *testing.T, mt *iMoveTables, sourceKeyspace, targetK
validateMoveTablesWorkflow(t, workflowResponse.Workflows)
// Since we used --no-routing-rules, there should be no routing rules.
confirmNoRoutingRules(t)
+ validateOverrides(t, targetTabs, overrides)
}
func getMoveTablesShowResponse(mt *iMoveTables) *vtctldatapb.GetWorkflowsResponse {
@@ -212,6 +224,91 @@ func testWorkflowList(t *testing.T, sourceKeyspace, targetKeyspace string) {
require.EqualValues(t, wfNames, workflowNames)
}
+func testWorkflowUpdateConfig(t *testing.T, mt *iMoveTables, targetTabs map[string]*cluster.VttabletProcess, targetKeyspace, workflow string) {
+ updateConfig := func(t *testing.T, overrides map[string]string) error {
+ overridesCSV := mapToCSV(overrides)
+ _, err := vc.VtctldClient.ExecuteCommandWithOutput("workflow", "--keyspace", targetKeyspace, "update",
+ "--workflow", workflow, "--config-overrides", overridesCSV)
+ return err
+ }
+ require.GreaterOrEqual(t, len(targetTabs), 1)
+ tab := maps.Values(targetTabs)[0]
+ require.NotNil(t, tab)
+ defaultConfig := vttablet.InitVReplicationConfigDefaults()
+ type testCase struct {
+ name string
+ config map[string]string
+ needError bool
+ clears bool
+ }
+ testCases := []testCase{
+ {
+ name: "reset flags",
+ config: defaultConfig.Map(),
+ clears: true,
+ },
+ {
+ name: "one value",
+ config: map[string]string{
+ "vreplication_heartbeat_update_interval": "10",
+ },
+ },
+ {
+ name: "two values",
+ config: map[string]string{
+ "vreplication_heartbeat_update_interval": "100",
+ "vreplication_store_compressed_gtid": "true",
+ },
+ },
+ {
+ name: "invalid value",
+ config: map[string]string{
+ "vreplication_heartbeat_update_interval": "12s",
+ "vreplication_store_compressed_gtid": "true",
+ },
+ needError: true,
+ },
+ {
+ name: "unknown flag",
+ config: map[string]string{
+ "vreplication_heartbeat_update_interval": "1",
+ "vreplication_store_compressed_gtid": "true",
+ "unknown": "value",
+ },
+ needError: true,
+ },
+ {
+ name: "clear flags",
+ config: map[string]string{
+ "vreplication_heartbeat_update_interval": "",
+ "vreplication_store_compressed_gtid": "",
+ },
+ clears: true,
+ },
+ }
+
+ expectedConfig, err := vttablet.NewVReplicationConfig(nil)
+ require.NoError(t, err)
+ for _, tc := range testCases {
+ t.Run(tc.name, func(t *testing.T) {
+ err := updateConfig(t, tc.config)
+ if tc.needError {
+ require.Error(t, err)
+ } else {
+ require.NoError(t, err)
+ expectedConfig, err = vttablet.NewVReplicationConfig(tc.config)
+ require.NoError(t, err)
+ }
+ config := getVReplicationConfig(t, tab)
+ if tc.clears {
+ expectedConfig, err = vttablet.NewVReplicationConfig(nil)
+ require.NoError(t, err)
+ }
+ require.EqualValues(t, expectedConfig.Map(), config)
+ })
+ }
+}
+
func createMoveTables(t *testing.T, sourceKeyspace, targetKeyspace, workflowName, tables string,
createFlags, completeFlags, switchFlags []string) iMoveTables {
mt := newMoveTables(vc, &moveTablesWorkflow{
@@ -233,9 +330,17 @@ func createMoveTables(t *testing.T, sourceKeyspace, targetKeyspace, workflowName
// reshard helpers
func splitShard(t *testing.T, keyspace, workflowName, sourceShards, targetShards string, targetTabs map[string]*cluster.VttabletProcess) {
+ overrides := map[string]string{
+ "vreplication_copy_phase_duration": "10h11m12s",
+ "vreplication_experimental_flags": "7",
+ "vreplication-parallel-insert-workers": "4",
+ "vreplication_net_read_timeout": "6000",
+ "relay_log_max_items": "10000",
+ }
createFlags := []string{"--auto-start=false", "--defer-secondary-keys=false", "--stop-after-copy",
"--on-ddl", "STOP", "--tablet-types", "primary,rdonly", "--tablet-types-in-preference-order=true",
"--all-cells", "--format=json",
+ "--config-overrides", mapToCSV(overrides),
}
rs := newReshard(vc, &reshardWorkflow{
workflowInfo: &workflowInfo{
@@ -251,6 +356,7 @@ func splitShard(t *testing.T, keyspace, workflowName, sourceShards, targetShards
ksWorkflow := fmt.Sprintf("%s.%s", keyspace, workflowName)
rs.Create()
validateReshardResponse(rs)
+ validateOverrides(t, targetTabs, overrides)
workflowResponse := getWorkflow(keyspace, workflowName)
reshardShowResponse := getReshardShowResponse(&rs)
require.EqualValues(t, reshardShowResponse, workflowResponse)
diff --git a/go/test/endtoend/vreplication/vstream_test.go b/go/test/endtoend/vreplication/vstream_test.go
index dd9a294ae4b..3f79a35b569 100644
--- a/go/test/endtoend/vreplication/vstream_test.go
+++ b/go/test/endtoend/vreplication/vstream_test.go
@@ -598,7 +598,10 @@ func TestMultiVStreamsKeyspaceReshard(t *testing.T) {
Match: "/customer.*",
}},
}
- flags := &vtgatepb.VStreamFlags{}
+ flags := &vtgatepb.VStreamFlags{
+ IncludeReshardJournalEvents: true,
+ }
+ journalEvents := 0
// Stream events but stop once we have a VGTID with positions for the old/original shards.
var newVGTID *binlogdatapb.VGtid
@@ -678,6 +681,9 @@ func TestMultiVStreamsKeyspaceReshard(t *testing.T) {
default:
require.FailNow(t, fmt.Sprintf("received event for unexpected shard: %s", shard))
}
+ case binlogdatapb.VEventType_JOURNAL:
+ require.True(t, ev.Journal.MigrationType == binlogdatapb.MigrationType_SHARDS)
+ journalEvents++
}
}
default:
@@ -694,6 +700,8 @@ func TestMultiVStreamsKeyspaceReshard(t *testing.T) {
// We should have a mix of events across the old and new shards.
require.Greater(t, oldShardRowEvents, 0)
require.Greater(t, newShardRowEvents, 0)
+ // We should have seen a reshard journal event.
+ require.Greater(t, journalEvents, 0)
// The number of row events streamed by the VStream API should match the number of rows inserted.
customerResult := execVtgateQuery(t, vtgateConn, ks, "select count(*) from customer")
diff --git a/go/test/endtoend/vtgate/queries/timeout/timeout_test.go b/go/test/endtoend/vtgate/queries/timeout/timeout_test.go
index d2f8f54151f..699b1bd675a 100644
--- a/go/test/endtoend/vtgate/queries/timeout/timeout_test.go
+++ b/go/test/endtoend/vtgate/queries/timeout/timeout_test.go
@@ -179,3 +179,30 @@ func TestQueryTimeoutWithoutVTGateDefault(t *testing.T) {
_, err = utils.ExecAllowError(t, mcmp.VtConn, "select sleep(5) from dual")
assert.Error(t, err)
}
+
+// TestOverallQueryTimeout tests that the query timeout is applied to the overall execution of a query
+// and not just individual routes.
+func TestOverallQueryTimeout(t *testing.T) {
+ utils.SkipIfBinaryIsBelowVersion(t, 21, "vtgate")
+ mcmp, closer := start(t)
+ defer closer()
+
+ mcmp.Exec("insert into t1(id1, id2) values (2,2),(3,3)")
+
+ // After inserting the rows above, if we run the following query, we will end up doing join on vtgate
+ // that issues one select query on the left side and 2 on the right side. The queries on the right side
+ // take 2 and 3 seconds each to run. If we have an overall timeout for 4 seconds, then it should fail.
+ _, err := utils.ExecAllowError(t, mcmp.VtConn, "select /*vt+ QUERY_TIMEOUT_MS=4000 */ sleep(u2.id2), u1.id2 from t1 u1 join t1 u2 where u1.id2 = u2.id1")
+ assert.Error(t, err)
+ assert.ErrorContains(t, err, "DeadlineExceeded desc = context deadline exceeded (errno 1317) (sqlstate 70100)")
+
+ // Let's also check that setting the session variable also works.
+ utils.Exec(t, mcmp.VtConn, "set query_timeout=4000")
+ _, err = utils.ExecAllowError(t, mcmp.VtConn, "select sleep(u2.id2), u1.id2 from t1 u1 join t1 u2 where u1.id2 = u2.id1")
+ assert.Error(t, err)
+ assert.ErrorContains(t, err, "DeadlineExceeded desc = context deadline exceeded (errno 1317) (sqlstate 70100)")
+
+ // Increasing the timeout should pass the query.
+ utils.Exec(t, mcmp.VtConn, "set query_timeout=10000")
+ _ = utils.Exec(t, mcmp.VtConn, "select sleep(u2.id2), u1.id2 from t1 u1 join t1 u2 where u1.id2 = u2.id1")
+}
diff --git a/go/textutil/strings.go b/go/textutil/strings.go
index 616366f0083..2a923cd3259 100644
--- a/go/textutil/strings.go
+++ b/go/textutil/strings.go
@@ -25,7 +25,6 @@ import (
"vitess.io/vitess/go/sqltypes"
- binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
topodatapb "vitess.io/vitess/go/vt/proto/topodata"
)
@@ -37,10 +36,10 @@ const (
)
var (
- delimitedListRegexp = regexp.MustCompile(`[ ,;]+`)
- SimulatedNullString = sqltypes.NULL.String()
- SimulatedNullStringSlice = []string{sqltypes.NULL.String()}
- SimulatedNullInt = -1
+ delimitedListRegexp = regexp.MustCompile(`[ ,;]+`)
+ SimulatedNullStringSlice = []string{sqltypes.NULL.String()}
+ SimulatedNullTabletTypeSlice = []topodatapb.TabletType{topodatapb.TabletType(SimulatedNullInt)}
+ SimulatedNullInt = -1
)
// SplitDelimitedList splits a given string by comma, semi-colon or space, and returns non-empty strings
@@ -91,29 +90,16 @@ func SingleWordCamel(w string) string {
return strings.ToUpper(w[0:1]) + strings.ToLower(w[1:])
}
-// ValueIsSimulatedNull returns true if the value represents
-// a NULL or unknown/unspecified value. This is used to
-// distinguish between a zero value / default and a user
-// provided value that is equivalent (e.g. an empty string
-// or slice).
+// ValueIsSimulatedNull returns true if the slice value represents
+// a NULL or unknown/unspecified value. This is used to distinguish
+// between a zero value empty slice and a user provided value of an
+// empty slice.
func ValueIsSimulatedNull(val any) bool {
switch cval := val.(type) {
- case string:
- return cval == SimulatedNullString
case []string:
return len(cval) == 1 && cval[0] == sqltypes.NULL.String()
- case binlogdatapb.OnDDLAction:
- return int32(cval) == int32(SimulatedNullInt)
- case int:
- return cval == SimulatedNullInt
- case int32:
- return int32(cval) == int32(SimulatedNullInt)
- case int64:
- return int64(cval) == int64(SimulatedNullInt)
case []topodatapb.TabletType:
return len(cval) == 1 && cval[0] == topodatapb.TabletType(SimulatedNullInt)
- case binlogdatapb.VReplicationWorkflowState:
- return int32(cval) == int32(SimulatedNullInt)
default:
return false
}
diff --git a/go/textutil/strings_test.go b/go/textutil/strings_test.go
index 2ba9851b71c..d65c187c4cb 100644
--- a/go/textutil/strings_test.go
+++ b/go/textutil/strings_test.go
@@ -23,6 +23,8 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
+ "vitess.io/vitess/go/sqltypes"
+
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
topodatapb "vitess.io/vitess/go/vt/proto/topodata"
)
@@ -131,40 +133,25 @@ func TestValueIsSimulatedNull(t *testing.T) {
val: "test",
isNull: false,
},
- {
- name: "case string true",
- val: SimulatedNullString,
- isNull: true,
- },
{
name: "case []string true",
- val: []string{SimulatedNullString},
+ val: []string{sqltypes.NULL.String()},
isNull: true,
},
{
name: "case []string false",
- val: []string{SimulatedNullString, SimulatedNullString},
+ val: []string{sqltypes.NULL.String(), sqltypes.NULL.String()},
isNull: false,
},
{
- name: "case binlogdatapb.OnDDLAction true",
- val: binlogdatapb.OnDDLAction(SimulatedNullInt),
- isNull: true,
- },
- {
- name: "case int true",
- val: SimulatedNullInt,
- isNull: true,
- },
- {
- name: "case int32 true",
- val: int32(SimulatedNullInt),
- isNull: true,
+ name: "case binlogdatapb.OnDDLAction exec",
+ val: binlogdatapb.OnDDLAction_EXEC,
+ isNull: false,
},
{
- name: "case int64 true",
- val: int64(SimulatedNullInt),
- isNull: true,
+ name: "case int false",
+ val: 1,
+ isNull: false,
},
{
name: "case []topodatapb.TabletType true",
@@ -172,12 +159,12 @@ func TestValueIsSimulatedNull(t *testing.T) {
isNull: true,
},
{
- name: "case binlogdatapb.VReplicationWorkflowState true",
- val: binlogdatapb.VReplicationWorkflowState(SimulatedNullInt),
- isNull: true,
+ name: "case binlogdatapb.VReplicationWorkflowState running",
+ val: binlogdatapb.VReplicationWorkflowState_Running,
+ isNull: false,
},
{
- name: "case default",
+ name: "case float false",
val: float64(1),
isNull: false,
},
diff --git a/go/vt/binlog/binlogplayer/binlog_player.go b/go/vt/binlog/binlogplayer/binlog_player.go
index 7936a0760c9..92718a4b5ed 100644
--- a/go/vt/binlog/binlogplayer/binlog_player.go
+++ b/go/vt/binlog/binlogplayer/binlog_player.go
@@ -25,6 +25,7 @@ import (
"context"
"encoding/binary"
"encoding/hex"
+ "encoding/json"
"fmt"
"io"
"math"
@@ -45,6 +46,7 @@ import (
"vitess.io/vitess/go/stats"
"vitess.io/vitess/go/textutil"
"vitess.io/vitess/go/vt/log"
+ "vitess.io/vitess/go/vt/proto/vtctldata"
"vitess.io/vitess/go/vt/servenv"
"vitess.io/vitess/go/vt/sqlparser"
"vitess.io/vitess/go/vt/throttler"
@@ -53,6 +55,8 @@ import (
topodatapb "vitess.io/vitess/go/vt/proto/topodata"
)
+const GetWorkflowQuery = "select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys, options from _vt.vreplication where id=%v"
+
var (
// SlowQueryThreshold will cause we logging anything that's higher than it.
SlowQueryThreshold = time.Duration(100 * time.Millisecond)
@@ -70,10 +74,12 @@ var (
// Truncate values in the middle to preserve the end of the message which
// typically contains the error text.
- TruncationLocation = textutil.TruncationLocationMiddle
-)
+ TruncationLocation = textutil.TruncationLocationMiddle
+ TruncationIndicator = fmt.Sprintf(" ... %s ... ", sqlparser.TruncationText)
-var TruncationIndicator = fmt.Sprintf(" ... %s ... ", sqlparser.TruncationText)
+ // TestGetWorkflowQueryId1 is only used in tests.
+ TestGetWorkflowQueryId1 = fmt.Sprintf(GetWorkflowQuery, 1)
+)
// Stats is the internal stats of a player. It is a different
// structure that is passed in so stats can be collected over the life
@@ -117,6 +123,8 @@ type Stats struct {
ThrottledCounts *stats.CountersWithMultiLabels // By throttler and component
DDLEventActions *stats.CountersWithSingleLabel
+
+ WorkflowConfig string
}
// RecordHeartbeat updates the time the last heartbeat from vstreamer was seen
@@ -559,11 +567,12 @@ type VRSettings struct {
WorkflowSubType binlogdatapb.VReplicationWorkflowSubType
WorkflowName string
DeferSecondaryKeys bool
+ WorkflowOptions *vtctldata.WorkflowOptions
}
// ReadVRSettings retrieves the settings for a vreplication stream.
func ReadVRSettings(dbClient DBClient, uid int32) (VRSettings, error) {
- query := fmt.Sprintf("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=%v", uid)
+ query := fmt.Sprintf(GetWorkflowQuery, uid)
qr, err := dbClient.ExecuteFetch(query, 1)
if err != nil {
return VRSettings{}, fmt.Errorf("error %v in selecting vreplication settings %v", err, query)
@@ -602,6 +611,11 @@ func ReadVRSettings(dbClient DBClient, uid int32) (VRSettings, error) {
if err != nil {
return VRSettings{}, fmt.Errorf("failed to parse defer_secondary_keys column: %v", err)
}
+ options := vrRow.AsString("options", "{}")
+ var workflowOptions vtctldata.WorkflowOptions
+ if err := json.Unmarshal([]byte(options), &workflowOptions); err != nil {
+ return VRSettings{}, fmt.Errorf("failed to parse options column: %v", err)
+ }
return VRSettings{
StartPos: startPos,
StopPos: stopPos,
@@ -612,6 +626,7 @@ func ReadVRSettings(dbClient DBClient, uid int32) (VRSettings, error) {
WorkflowName: vrRow.AsString("workflow", ""),
WorkflowSubType: binlogdatapb.VReplicationWorkflowSubType(workflowSubType),
DeferSecondaryKeys: deferSecondaryKeys,
+ WorkflowOptions: &workflowOptions,
}, nil
}
diff --git a/go/vt/binlog/binlogplayer/binlog_player_test.go b/go/vt/binlog/binlogplayer/binlog_player_test.go
index 697733a6d18..79aa9d0fa65 100644
--- a/go/vt/binlog/binlogplayer/binlog_player_test.go
+++ b/go/vt/binlog/binlogplayer/binlog_player_test.go
@@ -71,7 +71,7 @@ var (
func TestNewBinlogPlayerKeyRange(t *testing.T) {
dbClient := NewMockDBClient(t)
dbClient.ExpectRequest("update _vt.vreplication set state='Running', message='' where id=1", testDMLResponse, nil)
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", testSettingsResponse, nil)
+ dbClient.ExpectRequest(TestGetWorkflowQueryId1, testSettingsResponse, nil)
dbClient.ExpectRequest("begin", nil, nil)
dbClient.ExpectRequest("insert into t values(1)", testDMLResponse, nil)
dbClient.ExpectRequestRE("update _vt.vreplication set pos='MariaDB/0-1-1235', time_updated=.*", testDMLResponse, nil)
@@ -104,7 +104,7 @@ func TestNewBinlogPlayerKeyRange(t *testing.T) {
func TestNewBinlogPlayerTables(t *testing.T) {
dbClient := NewMockDBClient(t)
dbClient.ExpectRequest("update _vt.vreplication set state='Running', message='' where id=1", testDMLResponse, nil)
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", testSettingsResponse, nil)
+ dbClient.ExpectRequest(TestGetWorkflowQueryId1, testSettingsResponse, nil)
dbClient.ExpectRequest("begin", nil, nil)
dbClient.ExpectRequest("insert into t values(1)", testDMLResponse, nil)
dbClient.ExpectRequestRE("update _vt.vreplication set pos='MariaDB/0-1-1235', time_updated=.*", testDMLResponse, nil)
@@ -138,7 +138,7 @@ func TestNewBinlogPlayerTables(t *testing.T) {
func TestApplyEventsFail(t *testing.T) {
dbClient := NewMockDBClient(t)
dbClient.ExpectRequest("update _vt.vreplication set state='Running', message='' where id=1", testDMLResponse, nil)
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", testSettingsResponse, nil)
+ dbClient.ExpectRequest(TestGetWorkflowQueryId1, testSettingsResponse, nil)
dbClient.ExpectRequest("begin", nil, errors.New("err"))
dbClient.ExpectRequest("update _vt.vreplication set state='Error', message='error in processing binlog event failed query BEGIN, err: err' where id=1", testDMLResponse, nil)
@@ -191,7 +191,7 @@ func TestStopPosEqual(t *testing.T) {
},
},
}
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", posEqual, nil)
+ dbClient.ExpectRequest(TestGetWorkflowQueryId1, posEqual, nil)
dbClient.ExpectRequest(`update _vt.vreplication set state='Stopped', message='not starting BinlogPlayer, we\'re already at the desired position 0-1-1083' where id=1`, testDMLResponse, nil)
_ = newFakeBinlogClient()
@@ -230,7 +230,7 @@ func TestStopPosLess(t *testing.T) {
},
},
}
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", posEqual, nil)
+ dbClient.ExpectRequest(TestGetWorkflowQueryId1, posEqual, nil)
dbClient.ExpectRequest(`update _vt.vreplication set state='Stopped', message='starting point 0-1-1083 greater than stopping point 0-1-1082' where id=1`, testDMLResponse, nil)
_ = newFakeBinlogClient()
@@ -269,7 +269,7 @@ func TestStopPosGreater(t *testing.T) {
},
},
}
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", posEqual, nil)
+ dbClient.ExpectRequest(TestGetWorkflowQueryId1, posEqual, nil)
dbClient.ExpectRequest("begin", nil, nil)
dbClient.ExpectRequest("insert into t values(1)", testDMLResponse, nil)
dbClient.ExpectRequestRE("update _vt.vreplication set pos='MariaDB/0-1-1235', time_updated=.*", testDMLResponse, nil)
@@ -312,7 +312,7 @@ func TestContextCancel(t *testing.T) {
},
},
}
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", posEqual, nil)
+ dbClient.ExpectRequest(TestGetWorkflowQueryId1, posEqual, nil)
dbClient.ExpectRequest("begin", nil, nil)
dbClient.ExpectRequest("insert into t values(1)", testDMLResponse, nil)
dbClient.ExpectRequestRE("update _vt.vreplication set pos='MariaDB/0-1-1235', time_updated=.*", testDMLResponse, nil)
@@ -341,7 +341,7 @@ func TestContextCancel(t *testing.T) {
func TestRetryOnDeadlock(t *testing.T) {
dbClient := NewMockDBClient(t)
dbClient.ExpectRequest("update _vt.vreplication set state='Running', message='' where id=1", testDMLResponse, nil)
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", testSettingsResponse, nil)
+ dbClient.ExpectRequest(TestGetWorkflowQueryId1, testSettingsResponse, nil)
deadlocked := &sqlerror.SQLError{Num: 1213, Message: "deadlocked"}
dbClient.ExpectRequest("begin", nil, nil)
dbClient.ExpectRequest("insert into t values(1)", nil, deadlocked)
diff --git a/go/vt/binlog/binlogplayer/mock_dbclient.go b/go/vt/binlog/binlogplayer/mock_dbclient.go
index 03fd6232134..2135c8bf1e5 100644
--- a/go/vt/binlog/binlogplayer/mock_dbclient.go
+++ b/go/vt/binlog/binlogplayer/mock_dbclient.go
@@ -100,6 +100,14 @@ func NewMockDbaClient(t *testing.T) *MockDBClient {
}
}
+func (dc *MockDBClient) Reset() {
+ dc.expectMu.Lock()
+ defer dc.expectMu.Unlock()
+ dc.currentResult = 0
+ dc.expect = nil
+ dc.done = make(chan struct{})
+}
+
// ExpectRequest adds an expected result to the mock.
// This function should not be called conncurrently with other commands.
func (dc *MockDBClient) ExpectRequest(query string, result *sqltypes.Result, err error) {
@@ -210,7 +218,7 @@ func (dc *MockDBClient) ExecuteFetch(query string, maxrows int) (qr *sqltypes.Re
result := dc.expect[dc.currentResult]
if result.re == nil {
if query != result.query {
- msg := "DBClientMock: query: %s, want %s"
+ msg := "DBClientMock: query: \n%s, want \n%s"
if dc.Tag != "" {
msg = fmt.Sprintf("[%s] %s", dc.Tag, msg)
}
@@ -262,6 +270,15 @@ func (dc *MockDBClient) RemoveInvariant(query string) {
delete(dc.invariants, query)
}
+// RemoveInvariant can be used to customize the behavior of the mock client.
+func (dc *MockDBClient) RemoveInvariants(queries ...string) {
+ dc.expectMu.Lock()
+ defer dc.expectMu.Unlock()
+ for _, query := range queries {
+ delete(dc.invariants, query)
+ }
+}
+
func (dc *MockDBClient) SupportsCapability(capability capabilities.FlavorCapability) (bool, error) {
return false, nil
}
diff --git a/go/vt/mysqlctl/mysqlshellbackupengine.go b/go/vt/mysqlctl/mysqlshellbackupengine.go
index a4210518ac8..d1a7bd0fee0 100644
--- a/go/vt/mysqlctl/mysqlshellbackupengine.go
+++ b/go/vt/mysqlctl/mysqlshellbackupengine.go
@@ -50,7 +50,7 @@ var (
// flags passed to the Dump command, as a JSON string
mysqlShellDumpFlags = `{"threads": 4}`
// flags passed to the Load command, as a JSON string
- mysqlShellLoadFlags = `{"threads": 4, "loadUsers": true, "excludeUsers": ["'root'@'localhost'"], "updateGtidSet": "replace", "skipBinlog": true, "progressFile": ""}`
+ mysqlShellLoadFlags = `{"threads": 4, "loadUsers": true, "updateGtidSet": "replace", "skipBinlog": true, "progressFile": ""}`
// drain a tablet when taking a backup
mysqlShellBackupShouldDrain = false
// disable redo logging and double write buffer
diff --git a/go/vt/mysqlctl/s3backupstorage/retryer.go b/go/vt/mysqlctl/s3backupstorage/retryer.go
index 052b1ef26d1..9e4e87da702 100644
--- a/go/vt/mysqlctl/s3backupstorage/retryer.go
+++ b/go/vt/mysqlctl/s3backupstorage/retryer.go
@@ -1,51 +1,75 @@
+/*
+Copyright 2024 The Vitess Authors.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
package s3backupstorage
import (
+ "context"
"strings"
"time"
- "github.com/aws/aws-sdk-go/aws/awserr"
- "github.com/aws/aws-sdk-go/aws/request"
+ "github.com/aws/aws-sdk-go-v2/aws"
)
-// ClosedConnectionRetryer implements the aws request.Retryer interface
+// ClosedConnectionRetryer implements the aws.Retryer interface
// and is used to retry closed connection errors during MultipartUpload
-// operations.
+// operations. It is a simplified version of the RetryableConnectionError
+// implementation, which always retry on any type of connection error.
type ClosedConnectionRetryer struct {
- awsRetryer request.Retryer
+ awsRetryer aws.Retryer
}
-// RetryRules is part of the Retryer interface. It defers to the underlying
-// aws Retryer to compute backoff rules.
-func (retryer *ClosedConnectionRetryer) RetryRules(r *request.Request) time.Duration {
- return retryer.awsRetryer.RetryRules(r)
-}
-
-// ShouldRetry is part of the Retryer interface. It retries on errors that occur
-// due to a closed network connection, and then falls back to the underlying aws
-// Retryer for checking additional retry conditions.
-func (retryer *ClosedConnectionRetryer) ShouldRetry(r *request.Request) bool {
- if retryer.MaxRetries() == 0 {
+// IsErrorRetryable returns true if the error should be retried. We first try
+// to see if the error is due to the use of a closed connection, if it is,
+// we retry, and if not, we default to what the aws.Retryer would do.
+func (retryer *ClosedConnectionRetryer) IsErrorRetryable(err error) bool {
+ if retryer.MaxAttempts() == 0 {
return false
}
- if r.Retryable != nil {
- return *r.Retryable
- }
-
- if r.Error != nil {
- if awsErr, ok := r.Error.(awserr.Error); ok {
- if strings.Contains(awsErr.Error(), "use of closed network connection") {
- return true
- }
+ if err != nil {
+ if strings.Contains(err.Error(), "use of closed network connection") {
+ return true
}
}
- return retryer.awsRetryer.ShouldRetry(r)
+ return retryer.awsRetryer.IsErrorRetryable(err)
+}
+
+// MaxAttempts returns the maximum number of attempts that can be made for
+// an attempt before failing. A value of 0 implies that the attempt should
+// be retried until it succeeds if the errors are retryable.
+func (retryer *ClosedConnectionRetryer) MaxAttempts() int {
+ return retryer.awsRetryer.MaxAttempts()
+}
+
+// RetryDelay returns the delay that should be used before retrying the
+// attempt. Will return error if the delay could not be determined.
+func (retryer *ClosedConnectionRetryer) RetryDelay(attempt int, opErr error) (time.Duration, error) {
+ return retryer.awsRetryer.RetryDelay(attempt, opErr)
+}
+
+// GetRetryToken attempts to deduct the retry cost from the retry token pool.
+// Returning the token release function, or error.
+func (retryer *ClosedConnectionRetryer) GetRetryToken(ctx context.Context, opErr error) (releaseToken func(error) error, err error) {
+ return retryer.awsRetryer.GetRetryToken(ctx, opErr)
}
-// MaxRetries is part of the Retryer interface. It defers to the
-// underlying aws Retryer for the max number of retries.
-func (retryer *ClosedConnectionRetryer) MaxRetries() int {
- return retryer.awsRetryer.MaxRetries()
+// GetInitialToken returns the initial attempt token that can increment the
+// retry token pool if the attempt is successful.
+func (retryer *ClosedConnectionRetryer) GetInitialToken() (releaseToken func(error) error) {
+ return retryer.awsRetryer.GetInitialToken()
}
diff --git a/go/vt/mysqlctl/s3backupstorage/retryer_test.go b/go/vt/mysqlctl/s3backupstorage/retryer_test.go
index 9fe3004e6ff..666f565e7e4 100644
--- a/go/vt/mysqlctl/s3backupstorage/retryer_test.go
+++ b/go/vt/mysqlctl/s3backupstorage/retryer_test.go
@@ -1,79 +1,69 @@
+/*
+Copyright 2024 The Vitess Authors.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
package s3backupstorage
import (
+ "context"
"errors"
"testing"
"time"
- "github.com/aws/aws-sdk-go/aws"
- "github.com/aws/aws-sdk-go/aws/awserr"
- "github.com/aws/aws-sdk-go/aws/request"
"github.com/stretchr/testify/assert"
)
type testRetryer struct{ retry bool }
-func (r *testRetryer) MaxRetries() int { return 5 }
-func (r *testRetryer) RetryRules(req *request.Request) time.Duration { return time.Second }
-func (r *testRetryer) ShouldRetry(req *request.Request) bool { return r.retry }
+func (r *testRetryer) GetInitialToken() (releaseToken func(error) error) { panic("implement me") }
+func (r *testRetryer) GetRetryToken(ctx context.Context, opErr error) (releaseToken func(error) error, err error) {
+ panic("implement me")
+}
+func (r *testRetryer) IsErrorRetryable(err error) bool { return r.retry }
+func (r *testRetryer) MaxAttempts() int { return 5 }
+func (r *testRetryer) RetryDelay(attempt int, opErr error) (time.Duration, error) {
+ return time.Second, nil
+}
func TestShouldRetry(t *testing.T) {
tests := []struct {
name string
- r *request.Request
+ err error
fallbackPolicy bool
expected bool
}{
-
{
- name: "non retryable request",
- r: &request.Request{
- Retryable: aws.Bool(false),
- },
+ name: "no error",
fallbackPolicy: false,
expected: false,
},
{
- name: "retryable request",
- r: &request.Request{
- Retryable: aws.Bool(true),
- },
- fallbackPolicy: false,
- expected: true,
- },
- {
- name: "non aws error",
- r: &request.Request{
- Retryable: nil,
- Error: errors.New("some error"),
- },
+ name: "non aws error",
+ err: errors.New("some error"),
fallbackPolicy: false,
expected: false,
},
{
- name: "closed connection error",
- r: &request.Request{
- Retryable: nil,
- Error: awserr.New("5xx", "use of closed network connection", nil),
- },
- fallbackPolicy: false,
- expected: true,
- },
- {
- name: "closed connection error (non nil origError)",
- r: &request.Request{
- Retryable: nil,
- Error: awserr.New("5xx", "use of closed network connection", errors.New("some error")),
- },
+ name: "closed connection error",
+ err: errors.New("use of closed network connection"),
fallbackPolicy: false,
expected: true,
},
{
- name: "other aws error hits fallback policy",
- r: &request.Request{
- Retryable: nil,
- Error: awserr.New("code", "not a closed network connectionn", errors.New("some error")),
- },
+ name: "other aws error hits fallback policy",
+ err: errors.New("not a closed network connection"),
fallbackPolicy: true,
expected: true,
},
@@ -82,13 +72,7 @@ func TestShouldRetry(t *testing.T) {
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
retryer := &ClosedConnectionRetryer{&testRetryer{test.fallbackPolicy}}
- msg := ""
- if test.r.Error != nil {
- if awsErr, ok := test.r.Error.(awserr.Error); ok {
- msg = awsErr.Error()
- }
- }
- assert.Equal(t, test.expected, retryer.ShouldRetry(test.r), msg)
+ assert.Equal(t, test.expected, retryer.IsErrorRetryable(test.err))
})
}
}
diff --git a/go/vt/mysqlctl/s3backupstorage/s3.go b/go/vt/mysqlctl/s3backupstorage/s3.go
index 9686b4a3978..1af1362ae30 100644
--- a/go/vt/mysqlctl/s3backupstorage/s3.go
+++ b/go/vt/mysqlctl/s3backupstorage/s3.go
@@ -39,13 +39,12 @@ import (
"sync"
"time"
- "github.com/aws/aws-sdk-go/aws"
- "github.com/aws/aws-sdk-go/aws/client"
- "github.com/aws/aws-sdk-go/aws/request"
- "github.com/aws/aws-sdk-go/aws/session"
- "github.com/aws/aws-sdk-go/service/s3"
- "github.com/aws/aws-sdk-go/service/s3/s3iface"
- "github.com/aws/aws-sdk-go/service/s3/s3manager"
+ "github.com/aws/aws-sdk-go-v2/aws"
+ "github.com/aws/aws-sdk-go-v2/config"
+ "github.com/aws/aws-sdk-go-v2/feature/s3/manager"
+ "github.com/aws/aws-sdk-go-v2/service/s3"
+ "github.com/aws/aws-sdk-go-v2/service/s3/types"
+ "github.com/aws/smithy-go/middleware"
"github.com/spf13/pflag"
"vitess.io/vitess/go/vt/concurrency"
@@ -105,15 +104,24 @@ func init() {
servenv.OnParseFor("vttablet", registerFlags)
}
-type logNameToLogLevel map[string]aws.LogLevelType
+type logNameToLogLevel map[string]aws.ClientLogMode
var logNameMap logNameToLogLevel
const sseCustomerPrefix = "sse_c:"
+type iClient interface {
+ manager.UploadAPIClient
+ manager.DownloadAPIClient
+}
+
+type clientWrapper struct {
+ *s3.Client
+}
+
// S3BackupHandle implements the backupstorage.BackupHandle interface.
type S3BackupHandle struct {
- client s3iface.S3API
+ client iClient
bs *S3BackupStorage
dir string
name string
@@ -154,9 +162,9 @@ func (bh *S3BackupHandle) AddFile(ctx context.Context, filename string, filesize
}
// Calculate s3 upload part size using the source filesize
- partSizeBytes := s3manager.DefaultUploadPartSize
+ partSizeBytes := manager.DefaultUploadPartSize
if filesize > 0 {
- minimumPartSize := float64(filesize) / float64(s3manager.MaxUploadParts)
+ minimumPartSize := float64(filesize) / float64(manager.MaxUploadParts)
// Round up to ensure large enough partsize
calculatedPartSizeBytes := int64(math.Ceil(minimumPartSize))
if calculatedPartSizeBytes > partSizeBytes {
@@ -169,25 +177,32 @@ func (bh *S3BackupHandle) AddFile(ctx context.Context, filename string, filesize
go func() {
defer bh.waitGroup.Done()
- uploader := s3manager.NewUploaderWithClient(bh.client, func(u *s3manager.Uploader) {
+ uploader := manager.NewUploader(bh.client, func(u *manager.Uploader) {
u.PartSize = partSizeBytes
})
object := objName(bh.dir, bh.name, filename)
sendStats := bh.bs.params.Stats.Scope(stats.Operation("AWS:Request:Send"))
// Using UploadWithContext breaks uploading to Minio and Ceph https://github.com/vitessio/vitess/issues/14188
- _, err := uploader.Upload(&s3manager.UploadInput{
+ _, err := uploader.Upload(context.Background(), &s3.PutObjectInput{
Bucket: &bucket,
- Key: object,
+ Key: &object,
Body: reader,
ServerSideEncryption: bh.bs.s3SSE.awsAlg,
SSECustomerAlgorithm: bh.bs.s3SSE.customerAlg,
SSECustomerKey: bh.bs.s3SSE.customerKey,
SSECustomerKeyMD5: bh.bs.s3SSE.customerMd5,
- }, s3manager.WithUploaderRequestOptions(func(r *request.Request) {
- r.Handlers.CompleteAttempt.PushBack(func(r *request.Request) {
- sendStats.TimedIncrement(time.Since(r.AttemptTime))
+ }, func(u *manager.Uploader) {
+ u.ClientOptions = append(u.ClientOptions, func(o *s3.Options) {
+ o.APIOptions = append(o.APIOptions, func(stack *middleware.Stack) error {
+ return stack.Finalize.Add(middleware.FinalizeMiddlewareFunc("CompleteAttemptMiddleware", func(ctx context.Context, input middleware.FinalizeInput, next middleware.FinalizeHandler) (middleware.FinalizeOutput, middleware.Metadata, error) {
+ start := time.Now()
+ output, metadata, err := next.HandleFinalize(ctx, input)
+ sendStats.TimedIncrement(time.Since(start))
+ return output, metadata, err
+ }), middleware.Before)
+ })
})
- }))
+ })
if err != nil {
reader.CloseWithError(err)
bh.RecordError(err)
@@ -221,15 +236,20 @@ func (bh *S3BackupHandle) ReadFile(ctx context.Context, filename string) (io.Rea
}
object := objName(bh.dir, bh.name, filename)
sendStats := bh.bs.params.Stats.Scope(stats.Operation("AWS:Request:Send"))
- out, err := bh.client.GetObjectWithContext(ctx, &s3.GetObjectInput{
+ out, err := bh.client.GetObject(ctx, &s3.GetObjectInput{
Bucket: &bucket,
- Key: object,
+ Key: &object,
SSECustomerAlgorithm: bh.bs.s3SSE.customerAlg,
SSECustomerKey: bh.bs.s3SSE.customerKey,
SSECustomerKeyMD5: bh.bs.s3SSE.customerMd5,
- }, func(r *request.Request) {
- r.Handlers.CompleteAttempt.PushBack(func(r *request.Request) {
- sendStats.TimedIncrement(time.Since(r.AttemptTime))
+ }, func(o *s3.Options) {
+ o.APIOptions = append(o.APIOptions, func(stack *middleware.Stack) error {
+ return stack.Finalize.Add(middleware.FinalizeMiddlewareFunc("CompleteAttemptMiddleware", func(ctx context.Context, input middleware.FinalizeInput, next middleware.FinalizeHandler) (middleware.FinalizeOutput, middleware.Metadata, error) {
+ start := time.Now()
+ output, metadata, err := next.HandleFinalize(ctx, input)
+ sendStats.TimedIncrement(time.Since(start))
+ return output, metadata, err
+ }), middleware.Before)
})
})
if err != nil {
@@ -241,7 +261,7 @@ func (bh *S3BackupHandle) ReadFile(ctx context.Context, filename string) (io.Rea
var _ backupstorage.BackupHandle = (*S3BackupHandle)(nil)
type S3ServerSideEncryption struct {
- awsAlg *string
+ awsAlg types.ServerSideEncryption
customerAlg *string
customerKey *string
customerMd5 *string
@@ -268,13 +288,13 @@ func (s3ServerSideEncryption *S3ServerSideEncryption) init() error {
s3ServerSideEncryption.customerKey = aws.String(string(decodedKey))
s3ServerSideEncryption.customerMd5 = aws.String(base64.StdEncoding.EncodeToString(md5Hash[:]))
} else if sse != "" {
- s3ServerSideEncryption.awsAlg = &sse
+ s3ServerSideEncryption.awsAlg = types.ServerSideEncryption(sse)
}
return nil
}
func (s3ServerSideEncryption *S3ServerSideEncryption) reset() {
- s3ServerSideEncryption.awsAlg = nil
+ s3ServerSideEncryption.awsAlg = ""
s3ServerSideEncryption.customerAlg = nil
s3ServerSideEncryption.customerKey = nil
s3ServerSideEncryption.customerMd5 = nil
@@ -282,7 +302,7 @@ func (s3ServerSideEncryption *S3ServerSideEncryption) reset() {
// S3BackupStorage implements the backupstorage.BackupStorage interface.
type S3BackupStorage struct {
- _client *s3.S3
+ _client *s3.Client
mu sync.Mutex
s3SSE S3ServerSideEncryption
params backupstorage.Params
@@ -307,28 +327,28 @@ func (bs *S3BackupStorage) ListBackups(ctx context.Context, dir string) ([]backu
return nil, err
}
- var searchPrefix *string
+ var searchPrefix string
if dir == "/" {
searchPrefix = objName("")
} else {
searchPrefix = objName(dir, "")
}
- log.Infof("objName: %v", *searchPrefix)
+ log.Infof("objName: %s", searchPrefix)
query := &s3.ListObjectsV2Input{
Bucket: &bucket,
Delimiter: &delimiter,
- Prefix: searchPrefix,
+ Prefix: &searchPrefix,
}
var subdirs []string
for {
- objs, err := c.ListObjectsV2(query)
+ objs, err := c.ListObjectsV2(ctx, query)
if err != nil {
return nil, err
}
for _, prefix := range objs.CommonPrefixes {
- subdir := strings.TrimPrefix(*prefix.Prefix, *searchPrefix)
+ subdir := strings.TrimPrefix(*prefix.Prefix, searchPrefix)
subdir = strings.TrimSuffix(subdir, delimiter)
subdirs = append(subdirs, subdir)
}
@@ -345,7 +365,7 @@ func (bs *S3BackupStorage) ListBackups(ctx context.Context, dir string) ([]backu
result := make([]backupstorage.BackupHandle, 0, len(subdirs))
for _, subdir := range subdirs {
result = append(result, &S3BackupHandle{
- client: c,
+ client: &clientWrapper{Client: c},
bs: bs,
dir: dir,
name: subdir,
@@ -364,7 +384,7 @@ func (bs *S3BackupStorage) StartBackup(ctx context.Context, dir, name string) (b
}
return &S3BackupHandle{
- client: c,
+ client: &clientWrapper{Client: c},
bs: bs,
dir: dir,
name: name,
@@ -381,28 +401,29 @@ func (bs *S3BackupStorage) RemoveBackup(ctx context.Context, dir, name string) e
return err
}
+ path := objName(dir, name)
query := &s3.ListObjectsV2Input{
Bucket: &bucket,
- Prefix: objName(dir, name),
+ Prefix: &path,
}
for {
- objs, err := c.ListObjectsV2(query)
+ objs, err := c.ListObjectsV2(ctx, query)
if err != nil {
return err
}
- objIds := make([]*s3.ObjectIdentifier, 0, len(objs.Contents))
+ objIds := make([]types.ObjectIdentifier, 0, len(objs.Contents))
for _, obj := range objs.Contents {
- objIds = append(objIds, &s3.ObjectIdentifier{
+ objIds = append(objIds, types.ObjectIdentifier{
Key: obj.Key,
})
}
quiet := true // return less in the Delete response
- out, err := c.DeleteObjects(&s3.DeleteObjectsInput{
+ out, err := c.DeleteObjects(ctx, &s3.DeleteObjectsInput{
Bucket: &bucket,
- Delete: &s3.Delete{
+ Delete: &types.Delete{
Objects: objIds,
Quiet: &quiet,
},
@@ -413,7 +434,7 @@ func (bs *S3BackupStorage) RemoveBackup(ctx context.Context, dir, name string) e
}
for _, objError := range out.Errors {
- return errors.New(objError.String())
+ return errors.New(*objError.Message)
}
if objs.NextContinuationToken == nil {
@@ -442,16 +463,15 @@ func (bs *S3BackupStorage) WithParams(params backupstorage.Params) backupstorage
var _ backupstorage.BackupStorage = (*S3BackupStorage)(nil)
// getLogLevel converts the string loglevel to an aws.LogLevelType
-func getLogLevel() *aws.LogLevelType {
- l := new(aws.LogLevelType)
- *l = aws.LogOff // default setting
+func getLogLevel() aws.ClientLogMode {
+ var l aws.ClientLogMode
if level, found := logNameMap[requiredLogLevel]; found {
- *l = level // adjust as required
+ l = level // adjust as required
}
return l
}
-func (bs *S3BackupStorage) client() (*s3.S3, error) {
+func (bs *S3BackupStorage) client() (*s3.Client, error) {
bs.mu.Lock()
defer bs.mu.Unlock()
if bs._client == nil {
@@ -459,34 +479,28 @@ func (bs *S3BackupStorage) client() (*s3.S3, error) {
httpClient := &http.Client{Transport: bs.transport}
- session, err := session.NewSession()
+ cfg, err := config.LoadDefaultConfig(context.Background(),
+ config.WithRegion(region),
+ config.WithClientLogMode(logLevel),
+ config.WithHTTPClient(httpClient),
+ )
if err != nil {
return nil, err
}
- awsConfig := aws.Config{
- HTTPClient: httpClient,
- LogLevel: logLevel,
- Endpoint: aws.String(endpoint),
- Region: aws.String(region),
- S3ForcePathStyle: aws.Bool(forcePath),
- }
-
- if retryCount >= 0 {
- awsConfig = *request.WithRetryer(&awsConfig, &ClosedConnectionRetryer{
- awsRetryer: &client.DefaultRetryer{
- NumMaxRetries: retryCount,
- },
- })
- }
-
- bs._client = s3.New(session, &awsConfig)
+ bs._client = s3.NewFromConfig(cfg, func(o *s3.Options) {
+ o.UsePathStyle = forcePath
+ if retryCount >= 0 {
+ o.RetryMaxAttempts = retryCount
+ o.Retryer = &ClosedConnectionRetryer{}
+ }
+ })
if len(bucket) == 0 {
return nil, fmt.Errorf("--s3_backup_storage_bucket required")
}
- if _, err := bs._client.HeadBucket(&s3.HeadBucketInput{Bucket: &bucket}); err != nil {
+ if _, err := bs._client.HeadBucket(context.Background(), &s3.HeadBucketInput{Bucket: &bucket}); err != nil {
return nil, err
}
@@ -497,24 +511,24 @@ func (bs *S3BackupStorage) client() (*s3.S3, error) {
return bs._client, nil
}
-func objName(parts ...string) *string {
+func objName(parts ...string) string {
res := ""
if root != "" {
res += root + delimiter
}
res += strings.Join(parts, delimiter)
- return &res
+ return res
}
func init() {
backupstorage.BackupStorageMap["s3"] = newS3BackupStorage()
logNameMap = logNameToLogLevel{
- "LogOff": aws.LogOff,
- "LogDebug": aws.LogDebug,
- "LogDebugWithSigning": aws.LogDebugWithSigning,
- "LogDebugWithHTTPBody": aws.LogDebugWithHTTPBody,
- "LogDebugWithRequestRetries": aws.LogDebugWithRequestRetries,
- "LogDebugWithRequestErrors": aws.LogDebugWithRequestErrors,
+ "LogOff": 0,
+ "LogDebug": aws.LogRequest,
+ "LogDebugWithSigning": aws.LogSigning,
+ "LogDebugWithHTTPBody": aws.LogRequestWithBody,
+ "LogDebugWithRequestRetries": aws.LogRetries,
+ "LogDebugWithRequestErrors": aws.LogRequest | aws.LogRetries,
}
}
diff --git a/go/vt/mysqlctl/s3backupstorage/s3_test.go b/go/vt/mysqlctl/s3backupstorage/s3_test.go
index 6f4207a645f..1acfddcce1e 100644
--- a/go/vt/mysqlctl/s3backupstorage/s3_test.go
+++ b/go/vt/mysqlctl/s3backupstorage/s3_test.go
@@ -1,22 +1,22 @@
package s3backupstorage
import (
+ "context"
"crypto/md5"
"crypto/rand"
"encoding/base64"
"errors"
"fmt"
"net/http"
- "net/url"
"os"
"testing"
"time"
- "github.com/aws/aws-sdk-go/aws"
- "github.com/aws/aws-sdk-go/aws/client"
- "github.com/aws/aws-sdk-go/aws/request"
- "github.com/aws/aws-sdk-go/service/s3"
- "github.com/aws/aws-sdk-go/service/s3/s3iface"
+ "github.com/aws/aws-sdk-go-v2/aws"
+ "github.com/aws/aws-sdk-go-v2/service/s3"
+ "github.com/aws/aws-sdk-go-v2/service/s3/types"
+ "github.com/aws/smithy-go/middleware"
+ smithyhttp "github.com/aws/smithy-go/transport/http"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
@@ -26,29 +26,46 @@ import (
)
type s3FakeClient struct {
- s3iface.S3API
+ *s3.Client
err error
delay time.Duration
}
-func (sfc *s3FakeClient) PutObjectRequest(in *s3.PutObjectInput) (*request.Request, *s3.PutObjectOutput) {
- u, _ := url.Parse("http://localhost:1234")
- req := request.Request{
- HTTPRequest: &http.Request{ // without this we segfault \_(ツ)_/¯ (see https://github.com/aws/aws-sdk-go/blob/v1.28.8/aws/request/request_context.go#L13)
- Header: make(http.Header),
- URL: u,
- },
- Retryer: client.DefaultRetryer{},
+type fakeClientDo struct {
+ delay time.Duration
+}
+
+func (fcd fakeClientDo) Do(request *http.Request) (*http.Response, error) {
+ if fcd.delay > 0 {
+ time.Sleep(fcd.delay)
+ }
+ return nil, nil
+}
+
+func (sfc *s3FakeClient) PutObject(ctx context.Context, in *s3.PutObjectInput, optFns ...func(*s3.Options)) (*s3.PutObjectOutput, error) {
+ var o s3.Options
+ for _, fn := range optFns {
+ fn(&o)
}
- req.Handlers.Send.PushBack(func(r *request.Request) {
- r.Error = sfc.err
- if sfc.delay > 0 {
- time.Sleep(sfc.delay)
- }
- })
+ stack := middleware.NewStack("PutObject", smithyhttp.NewStackRequest)
+ for _, apiOption := range o.APIOptions {
+ _ = apiOption(stack)
+ }
- return &req, &s3.PutObjectOutput{}
+ handler := middleware.DecorateHandler(smithyhttp.NewClientHandler(&fakeClientDo{delay: sfc.delay}), stack)
+ _, _, err := handler.Handle(ctx, in)
+ if err != nil {
+ return nil, err
+ }
+
+ if sfc.err != nil {
+ return nil, sfc.err
+ }
+
+ return &s3.PutObjectOutput{
+ ETag: aws.String("fake-etag"),
+ }, nil
}
func TestAddFileError(t *testing.T) {
@@ -56,11 +73,16 @@ func TestAddFileError(t *testing.T) {
client: &s3FakeClient{err: errors.New("some error")},
bs: &S3BackupStorage{
params: backupstorage.NoParams(),
+ s3SSE: S3ServerSideEncryption{
+ customerAlg: new(string),
+ customerKey: new(string),
+ customerMd5: new(string),
+ },
},
readOnly: false,
}
- wc, err := bh.AddFile(aws.BackgroundContext(), "somefile", 100000)
+ wc, err := bh.AddFile(context.Background(), "somefile", 100000)
require.NoErrorf(t, err, "AddFile() expected no error, got %s", err)
assert.NotNil(t, wc, "AddFile() expected non-nil WriteCloser")
@@ -87,12 +109,17 @@ func TestAddFileStats(t *testing.T) {
Logger: logutil.NewMemoryLogger(),
Stats: fakeStats,
},
+ s3SSE: S3ServerSideEncryption{
+ customerAlg: new(string),
+ customerKey: new(string),
+ customerMd5: new(string),
+ },
},
readOnly: false,
}
for i := 0; i < 4; i++ {
- wc, err := bh.AddFile(aws.BackgroundContext(), fmt.Sprintf("somefile-%d", i), 100000)
+ wc, err := bh.AddFile(context.Background(), fmt.Sprintf("somefile-%d", i), 100000)
require.NoErrorf(t, err, "AddFile() expected no error, got %s", err)
assert.NotNil(t, wc, "AddFile() expected non-nil WriteCloser")
@@ -131,11 +158,16 @@ func TestAddFileErrorStats(t *testing.T) {
Logger: logutil.NewMemoryLogger(),
Stats: fakeStats,
},
+ s3SSE: S3ServerSideEncryption{
+ customerAlg: new(string),
+ customerKey: new(string),
+ customerMd5: new(string),
+ },
},
readOnly: false,
}
- wc, err := bh.AddFile(aws.BackgroundContext(), "somefile", 100000)
+ wc, err := bh.AddFile(context.Background(), "somefile", 100000)
require.NoErrorf(t, err, "AddFile() expected no error, got %s", err)
assert.NotNil(t, wc, "AddFile() expected non-nil WriteCloser")
@@ -163,7 +195,7 @@ func TestNoSSE(t *testing.T) {
err := sseData.init()
require.NoErrorf(t, err, "init() expected to succeed")
- assert.Nil(t, sseData.awsAlg, "awsAlg expected to be nil")
+ assert.Empty(t, sseData.awsAlg, "awsAlg expected to be empty")
assert.Nil(t, sseData.customerAlg, "customerAlg expected to be nil")
assert.Nil(t, sseData.customerKey, "customerKey expected to be nil")
assert.Nil(t, sseData.customerMd5, "customerMd5 expected to be nil")
@@ -178,7 +210,7 @@ func TestSSEAws(t *testing.T) {
err := sseData.init()
require.NoErrorf(t, err, "init() expected to succeed")
- assert.Equal(t, aws.String("aws:kms"), sseData.awsAlg, "awsAlg expected to be aws:kms")
+ assert.Equal(t, types.ServerSideEncryption("aws:kms"), sseData.awsAlg, "awsAlg expected to be aws:kms")
assert.Nil(t, sseData.customerAlg, "customerAlg expected to be nil")
assert.Nil(t, sseData.customerKey, "customerKey expected to be nil")
assert.Nil(t, sseData.customerMd5, "customerMd5 expected to be nil")
@@ -186,7 +218,7 @@ func TestSSEAws(t *testing.T) {
sseData.reset()
require.NoErrorf(t, err, "reset() expected to succeed")
- assert.Nil(t, sseData.awsAlg, "awsAlg expected to be nil")
+ assert.Empty(t, sseData.awsAlg, "awsAlg expected to be empty")
assert.Nil(t, sseData.customerAlg, "customerAlg expected to be nil")
assert.Nil(t, sseData.customerKey, "customerKey expected to be nil")
assert.Nil(t, sseData.customerMd5, "customerMd5 expected to be nil")
@@ -227,7 +259,7 @@ func TestSSECustomerFileBinaryKey(t *testing.T) {
err = sseData.init()
require.NoErrorf(t, err, "init() expected to succeed")
- assert.Nil(t, sseData.awsAlg, "awsAlg expected to be nil")
+ assert.Empty(t, sseData.awsAlg, "awsAlg expected to be empty")
assert.Equal(t, aws.String("AES256"), sseData.customerAlg, "customerAlg expected to be AES256")
assert.Equal(t, aws.String(string(randomKey)), sseData.customerKey, "customerKey expected to be equal to the generated randomKey")
md5Hash := md5.Sum(randomKey)
@@ -236,7 +268,7 @@ func TestSSECustomerFileBinaryKey(t *testing.T) {
sseData.reset()
require.NoErrorf(t, err, "reset() expected to succeed")
- assert.Nil(t, sseData.awsAlg, "awsAlg expected to be nil")
+ assert.Empty(t, sseData.awsAlg, "awsAlg expected to be empty")
assert.Nil(t, sseData.customerAlg, "customerAlg expected to be nil")
assert.Nil(t, sseData.customerKey, "customerKey expected to be nil")
assert.Nil(t, sseData.customerMd5, "customerMd5 expected to be nil")
@@ -262,7 +294,7 @@ func TestSSECustomerFileBase64Key(t *testing.T) {
err = sseData.init()
require.NoErrorf(t, err, "init() expected to succeed")
- assert.Nil(t, sseData.awsAlg, "awsAlg expected to be nil")
+ assert.Empty(t, sseData.awsAlg, "awsAlg expected to be empty")
assert.Equal(t, aws.String("AES256"), sseData.customerAlg, "customerAlg expected to be AES256")
assert.Equal(t, aws.String(string(randomKey)), sseData.customerKey, "customerKey expected to be equal to the generated randomKey")
md5Hash := md5.Sum(randomKey)
@@ -271,7 +303,7 @@ func TestSSECustomerFileBase64Key(t *testing.T) {
sseData.reset()
require.NoErrorf(t, err, "reset() expected to succeed")
- assert.Nil(t, sseData.awsAlg, "awsAlg expected to be nil")
+ assert.Empty(t, sseData.awsAlg, "awsAlg expected to be empty")
assert.Nil(t, sseData.customerAlg, "customerAlg expected to be nil")
assert.Nil(t, sseData.customerKey, "customerKey expected to be nil")
assert.Nil(t, sseData.customerMd5, "customerMd5 expected to be nil")
diff --git a/go/vt/mysqlctl/xtrabackupengine.go b/go/vt/mysqlctl/xtrabackupengine.go
index 9e4917abb0f..b1ede7c08fd 100644
--- a/go/vt/mysqlctl/xtrabackupengine.go
+++ b/go/vt/mysqlctl/xtrabackupengine.go
@@ -277,7 +277,7 @@ func (be *XtrabackupEngine) executeFullBackup(ctx context.Context, params Backup
if err != nil {
return BackupUnusable, vterrors.Wrapf(err, "cannot JSON encode %v", backupManifestFileName)
}
- if _, err := mwc.Write([]byte(data)); err != nil {
+ if _, err := mwc.Write(data); err != nil {
return BackupUnusable, vterrors.Wrapf(err, "cannot write %v", backupManifestFileName)
}
diff --git a/go/vt/proto/binlogdata/binlogdata.pb.go b/go/vt/proto/binlogdata/binlogdata.pb.go
index 58daae6b8f0..544a45d3656 100644
--- a/go/vt/proto/binlogdata/binlogdata.pb.go
+++ b/go/vt/proto/binlogdata/binlogdata.pb.go
@@ -2196,7 +2196,8 @@ type VStreamOptions struct {
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- InternalTables []string `protobuf:"bytes,1,rep,name=internal_tables,json=internalTables,proto3" json:"internal_tables,omitempty"`
+ InternalTables []string `protobuf:"bytes,1,rep,name=internal_tables,json=internalTables,proto3" json:"internal_tables,omitempty"`
+ ConfigOverrides map[string]string `protobuf:"bytes,2,rep,name=config_overrides,json=configOverrides,proto3" json:"config_overrides,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
}
func (x *VStreamOptions) Reset() {
@@ -2238,6 +2239,13 @@ func (x *VStreamOptions) GetInternalTables() []string {
return nil
}
+func (x *VStreamOptions) GetConfigOverrides() map[string]string {
+ if x != nil {
+ return x.ConfigOverrides
+ }
+ return nil
+}
+
// VStreamRequest is the payload for VStreamer
type VStreamRequest struct {
state protoimpl.MessageState
@@ -2393,6 +2401,7 @@ type VStreamRowsRequest struct {
Target *query.Target `protobuf:"bytes,3,opt,name=target,proto3" json:"target,omitempty"`
Query string `protobuf:"bytes,4,opt,name=query,proto3" json:"query,omitempty"`
Lastpk *query.QueryResult `protobuf:"bytes,5,opt,name=lastpk,proto3" json:"lastpk,omitempty"`
+ Options *VStreamOptions `protobuf:"bytes,6,opt,name=options,proto3" json:"options,omitempty"`
}
func (x *VStreamRowsRequest) Reset() {
@@ -2462,6 +2471,13 @@ func (x *VStreamRowsRequest) GetLastpk() *query.QueryResult {
return nil
}
+func (x *VStreamRowsRequest) GetOptions() *VStreamOptions {
+ if x != nil {
+ return x.Options
+ }
+ return nil
+}
+
// VStreamRowsResponse is the response from VStreamRows
type VStreamRowsResponse struct {
state protoimpl.MessageState
@@ -2578,6 +2594,7 @@ type VStreamTablesRequest struct {
EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId,proto3" json:"effective_caller_id,omitempty"`
ImmediateCallerId *query.VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId,proto3" json:"immediate_caller_id,omitempty"`
Target *query.Target `protobuf:"bytes,3,opt,name=target,proto3" json:"target,omitempty"`
+ Options *VStreamOptions `protobuf:"bytes,4,opt,name=options,proto3" json:"options,omitempty"`
}
func (x *VStreamTablesRequest) Reset() {
@@ -2633,6 +2650,13 @@ func (x *VStreamTablesRequest) GetTarget() *query.Target {
return nil
}
+func (x *VStreamTablesRequest) GetOptions() *VStreamOptions {
+ if x != nil {
+ return x.Options
+ }
+ return nil
+}
+
// VStreamTablesResponse is the response from VStreamTables
type VStreamTablesResponse struct {
state protoimpl.MessageState
@@ -3391,74 +3415,49 @@ var file_binlogdata_proto_rawDesc = []byte{
0x30, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x18, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x69, 0x6e,
0x69, 0x6d, 0x61, 0x6c, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x73, 0x22, 0x39, 0x0a, 0x0e, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x4f, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e,
- 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x22, 0xfd, 0x02, 0x0a,
- 0x0e, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x3f, 0x0a, 0x13, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x61, 0x6c,
- 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x76,
- 0x74, 0x72, 0x70, 0x63, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x44, 0x52, 0x11, 0x65,
- 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x64,
- 0x12, 0x45, 0x0a, 0x13, 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74, 0x65, 0x5f, 0x63, 0x61,
- 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e,
- 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x56, 0x54, 0x47, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6c, 0x6c,
- 0x65, 0x72, 0x49, 0x44, 0x52, 0x11, 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74, 0x65, 0x43,
- 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65,
- 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e,
- 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x1a,
- 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x0a, 0x06, 0x66, 0x69,
- 0x6c, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x62, 0x69, 0x6e,
- 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x06,
- 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x3e, 0x0a, 0x0f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f,
- 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x70, 0x5f, 0x6b, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32,
- 0x17, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62,
- 0x6c, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x50, 0x4b, 0x52, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x4c,
- 0x61, 0x73, 0x74, 0x50, 0x4b, 0x73, 0x12, 0x34, 0x0a, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67,
+ 0x73, 0x22, 0xd9, 0x01, 0x0a, 0x0e, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x4f, 0x70, 0x74,
+ 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
+ 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0e, 0x69,
+ 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x5a, 0x0a,
+ 0x10, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65,
+ 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67,
0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x4f, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x3d, 0x0a, 0x0f,
- 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
- 0x2a, 0x0a, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
- 0x12, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x45, 0x76,
- 0x65, 0x6e, 0x74, 0x52, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x22, 0x85, 0x02, 0x0a, 0x12,
- 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x13, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f,
- 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x0f, 0x2e, 0x76, 0x74, 0x72, 0x70, 0x63, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x44,
- 0x52, 0x11, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x65,
- 0x72, 0x49, 0x64, 0x12, 0x45, 0x0a, 0x13, 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74, 0x65,
- 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x15, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x56, 0x54, 0x47, 0x61, 0x74, 0x65, 0x43,
- 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x44, 0x52, 0x11, 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61,
- 0x74, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x06, 0x74, 0x61,
- 0x72, 0x67, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65,
- 0x74, 0x12, 0x14, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x12, 0x2a, 0x0a, 0x06, 0x6c, 0x61, 0x73, 0x74, 0x70,
- 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e,
- 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x6c, 0x61, 0x73,
- 0x74, 0x70, 0x6b, 0x22, 0xa4, 0x02, 0x0a, 0x13, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52,
- 0x6f, 0x77, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x24, 0x0a, 0x06, 0x66,
- 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x71, 0x75,
- 0x65, 0x72, 0x79, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64,
- 0x73, 0x12, 0x28, 0x0a, 0x08, 0x70, 0x6b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x02, 0x20,
- 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x46, 0x69, 0x65, 0x6c,
- 0x64, 0x52, 0x08, 0x70, 0x6b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x67,
- 0x74, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x67, 0x74, 0x69, 0x64, 0x12,
- 0x1e, 0x0a, 0x04, 0x72, 0x6f, 0x77, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0a, 0x2e,
- 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x52, 0x6f, 0x77, 0x52, 0x04, 0x72, 0x6f, 0x77, 0x73, 0x12,
- 0x22, 0x0a, 0x06, 0x6c, 0x61, 0x73, 0x74, 0x70, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x0a, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x52, 0x6f, 0x77, 0x52, 0x06, 0x6c, 0x61, 0x73,
- 0x74, 0x70, 0x6b, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64,
- 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65,
- 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x68, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x18, 0x07,
- 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x68, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x12,
- 0x29, 0x0a, 0x10, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x61,
- 0x73, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x74, 0x68, 0x72, 0x6f, 0x74,
- 0x74, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x22, 0xc5, 0x01, 0x0a, 0x14, 0x56,
- 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75,
+ 0x6f, 0x6e, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69,
+ 0x64, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
+ 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x1a, 0x42, 0x0a, 0x14, 0x43, 0x6f, 0x6e,
+ 0x66, 0x69, 0x67, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72,
+ 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
+ 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xfd, 0x02,
+ 0x0a, 0x0e, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x12, 0x3f, 0x0a, 0x13, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x61,
+ 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
+ 0x76, 0x74, 0x72, 0x70, 0x63, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x44, 0x52, 0x11,
+ 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49,
+ 0x64, 0x12, 0x45, 0x0a, 0x13, 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74, 0x65, 0x5f, 0x63,
+ 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15,
+ 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x56, 0x54, 0x47, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6c,
+ 0x6c, 0x65, 0x72, 0x49, 0x44, 0x52, 0x11, 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74, 0x65,
+ 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x06, 0x74, 0x61, 0x72, 0x67,
+ 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12,
+ 0x1a, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x0a, 0x06, 0x66,
+ 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x62, 0x69,
+ 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52,
+ 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x3e, 0x0a, 0x0f, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x70, 0x5f, 0x6b, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b,
+ 0x32, 0x17, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61,
+ 0x62, 0x6c, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x50, 0x4b, 0x52, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x4c, 0x61, 0x73, 0x74, 0x50, 0x4b, 0x73, 0x12, 0x34, 0x0a, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f,
+ 0x6e, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f,
+ 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x4f, 0x70, 0x74,
+ 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x3d, 0x0a,
+ 0x0f, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x12, 0x2a, 0x0a, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
+ 0x32, 0x12, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x45,
+ 0x76, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x22, 0xbb, 0x02, 0x0a,
+ 0x12, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x13, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65,
0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x0f, 0x2e, 0x76, 0x74, 0x72, 0x70, 0x63, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49,
@@ -3470,100 +3469,142 @@ var file_binlogdata_proto_rawDesc = []byte{
0x61, 0x74, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x06, 0x74,
0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x71, 0x75,
0x65, 0x72, 0x79, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x06, 0x74, 0x61, 0x72, 0x67,
- 0x65, 0x74, 0x22, 0xde, 0x01, 0x0a, 0x15, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x54, 0x61,
- 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x09, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x06, 0x66,
- 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x71, 0x75,
- 0x65, 0x72, 0x79, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64,
- 0x73, 0x12, 0x28, 0x0a, 0x08, 0x70, 0x6b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x03, 0x20,
- 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x46, 0x69, 0x65, 0x6c,
- 0x64, 0x52, 0x08, 0x70, 0x6b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x67,
- 0x74, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x67, 0x74, 0x69, 0x64, 0x12,
- 0x1e, 0x0a, 0x04, 0x72, 0x6f, 0x77, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0a, 0x2e,
- 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x52, 0x6f, 0x77, 0x52, 0x04, 0x72, 0x6f, 0x77, 0x73, 0x12,
- 0x22, 0x0a, 0x06, 0x6c, 0x61, 0x73, 0x74, 0x70, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x0a, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x52, 0x6f, 0x77, 0x52, 0x06, 0x6c, 0x61, 0x73,
- 0x74, 0x70, 0x6b, 0x22, 0x69, 0x0a, 0x0b, 0x4c, 0x61, 0x73, 0x74, 0x50, 0x4b, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x12, 0x3c, 0x0a, 0x0e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6c, 0x61, 0x73, 0x74,
- 0x5f, 0x70, 0x5f, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x62, 0x69, 0x6e,
- 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x61, 0x73,
- 0x74, 0x50, 0x4b, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x50, 0x4b,
- 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x08, 0x52, 0x09, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x22, 0x58,
- 0x0a, 0x0b, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x50, 0x4b, 0x12, 0x1d, 0x0a,
- 0x0a, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x09, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x06,
- 0x6c, 0x61, 0x73, 0x74, 0x70, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x71,
- 0x75, 0x65, 0x72, 0x79, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74,
- 0x52, 0x06, 0x6c, 0x61, 0x73, 0x74, 0x70, 0x6b, 0x22, 0xdc, 0x01, 0x0a, 0x15, 0x56, 0x53, 0x74,
- 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x13, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f,
- 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x0f, 0x2e, 0x76, 0x74, 0x72, 0x70, 0x63, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x44,
- 0x52, 0x11, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x65,
- 0x72, 0x49, 0x64, 0x12, 0x45, 0x0a, 0x13, 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74, 0x65,
- 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x15, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x56, 0x54, 0x47, 0x61, 0x74, 0x65, 0x43,
- 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x44, 0x52, 0x11, 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61,
- 0x74, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x06, 0x74, 0x61,
- 0x72, 0x67, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65,
- 0x74, 0x12, 0x14, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x22, 0x72, 0x0a, 0x16, 0x56, 0x53, 0x74, 0x72, 0x65,
- 0x61, 0x6d, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x12, 0x24, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
- 0x0b, 0x32, 0x0c, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52,
- 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x67, 0x74, 0x69, 0x64, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x67, 0x74, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x04, 0x72,
- 0x6f, 0x77, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x71, 0x75, 0x65, 0x72,
- 0x79, 0x2e, 0x52, 0x6f, 0x77, 0x52, 0x04, 0x72, 0x6f, 0x77, 0x73, 0x2a, 0x3e, 0x0a, 0x0b, 0x4f,
- 0x6e, 0x44, 0x44, 0x4c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0a, 0x0a, 0x06, 0x49, 0x47,
- 0x4e, 0x4f, 0x52, 0x45, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x53, 0x54, 0x4f, 0x50, 0x10, 0x01,
- 0x12, 0x08, 0x0a, 0x04, 0x45, 0x58, 0x45, 0x43, 0x10, 0x02, 0x12, 0x0f, 0x0a, 0x0b, 0x45, 0x58,
- 0x45, 0x43, 0x5f, 0x49, 0x47, 0x4e, 0x4f, 0x52, 0x45, 0x10, 0x03, 0x2a, 0x7b, 0x0a, 0x18, 0x56,
- 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66,
- 0x6c, 0x6f, 0x77, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x4d, 0x61, 0x74, 0x65, 0x72,
- 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x10, 0x00, 0x12, 0x0e, 0x0a, 0x0a, 0x4d, 0x6f, 0x76, 0x65,
- 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x10, 0x01, 0x12, 0x15, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61,
- 0x74, 0x65, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x10, 0x02, 0x12,
- 0x0b, 0x0a, 0x07, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07,
- 0x52, 0x65, 0x73, 0x68, 0x61, 0x72, 0x64, 0x10, 0x04, 0x12, 0x0d, 0x0a, 0x09, 0x4f, 0x6e, 0x6c,
- 0x69, 0x6e, 0x65, 0x44, 0x44, 0x4c, 0x10, 0x05, 0x2a, 0x44, 0x0a, 0x1b, 0x56, 0x52, 0x65, 0x70,
+ 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x12, 0x2a, 0x0a, 0x06, 0x6c, 0x61, 0x73, 0x74,
+ 0x70, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x6c, 0x61,
+ 0x73, 0x74, 0x70, 0x6b, 0x12, 0x34, 0x0a, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18,
+ 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
+ 0x73, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xa4, 0x02, 0x0a, 0x13, 0x56,
+ 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x12, 0x24, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03,
+ 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64,
+ 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x28, 0x0a, 0x08, 0x70, 0x6b, 0x66, 0x69,
+ 0x65, 0x6c, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x71, 0x75, 0x65,
+ 0x72, 0x79, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x08, 0x70, 0x6b, 0x66, 0x69, 0x65, 0x6c,
+ 0x64, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x67, 0x74, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x04, 0x67, 0x74, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x04, 0x72, 0x6f, 0x77, 0x73, 0x18, 0x04,
+ 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x52, 0x6f, 0x77,
+ 0x52, 0x04, 0x72, 0x6f, 0x77, 0x73, 0x12, 0x22, 0x0a, 0x06, 0x6c, 0x61, 0x73, 0x74, 0x70, 0x6b,
+ 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x52,
+ 0x6f, 0x77, 0x52, 0x06, 0x6c, 0x61, 0x73, 0x74, 0x70, 0x6b, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x68,
+ 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x74,
+ 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x68, 0x65, 0x61, 0x72,
+ 0x74, 0x62, 0x65, 0x61, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x68, 0x65, 0x61,
+ 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74,
+ 0x6c, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x0f, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x61, 0x73, 0x6f,
+ 0x6e, 0x22, 0xfb, 0x01, 0x0a, 0x14, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x54, 0x61, 0x62,
+ 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x13, 0x65, 0x66,
+ 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69,
+ 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x76, 0x74, 0x72, 0x70, 0x63, 0x2e,
+ 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x44, 0x52, 0x11, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74,
+ 0x69, 0x76, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x64, 0x12, 0x45, 0x0a, 0x13, 0x69,
+ 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74, 0x65, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f,
+ 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x2e, 0x56, 0x54, 0x47, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x44, 0x52,
+ 0x11, 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72,
+ 0x49, 0x64, 0x12, 0x25, 0x0a, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65,
+ 0x74, 0x52, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x34, 0x0a, 0x07, 0x6f, 0x70, 0x74,
+ 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x69, 0x6e,
+ 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x4f,
+ 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22,
+ 0xde, 0x01, 0x0a, 0x15, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x54, 0x61, 0x62, 0x6c, 0x65,
+ 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c,
+ 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x28,
+ 0x0a, 0x08, 0x70, 0x6b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
+ 0x32, 0x0c, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x08,
+ 0x70, 0x6b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x67, 0x74, 0x69, 0x64,
+ 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x67, 0x74, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x04,
+ 0x72, 0x6f, 0x77, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x71, 0x75, 0x65,
+ 0x72, 0x79, 0x2e, 0x52, 0x6f, 0x77, 0x52, 0x04, 0x72, 0x6f, 0x77, 0x73, 0x12, 0x22, 0x0a, 0x06,
+ 0x6c, 0x61, 0x73, 0x74, 0x70, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x71,
+ 0x75, 0x65, 0x72, 0x79, 0x2e, 0x52, 0x6f, 0x77, 0x52, 0x06, 0x6c, 0x61, 0x73, 0x74, 0x70, 0x6b,
+ 0x22, 0x69, 0x0a, 0x0b, 0x4c, 0x61, 0x73, 0x74, 0x50, 0x4b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12,
+ 0x3c, 0x0a, 0x0e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x70, 0x5f,
+ 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x50, 0x4b,
+ 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x50, 0x4b, 0x12, 0x1c, 0x0a,
+ 0x09, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08,
+ 0x52, 0x09, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x22, 0x58, 0x0a, 0x0b, 0x54,
+ 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x50, 0x4b, 0x12, 0x1d, 0x0a, 0x0a, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x6c, 0x61, 0x73,
+ 0x74, 0x70, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x71, 0x75, 0x65, 0x72,
+ 0x79, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x6c,
+ 0x61, 0x73, 0x74, 0x70, 0x6b, 0x22, 0xdc, 0x01, 0x0a, 0x15, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61,
+ 0x6d, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
+ 0x3f, 0x0a, 0x13, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x61, 0x6c,
+ 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x76,
+ 0x74, 0x72, 0x70, 0x63, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x44, 0x52, 0x11, 0x65,
+ 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x64,
+ 0x12, 0x45, 0x0a, 0x13, 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74, 0x65, 0x5f, 0x63, 0x61,
+ 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e,
+ 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x56, 0x54, 0x47, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6c, 0x6c,
+ 0x65, 0x72, 0x49, 0x44, 0x52, 0x11, 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74, 0x65, 0x43,
+ 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65,
+ 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e,
+ 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x14,
+ 0x0a, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x71,
+ 0x75, 0x65, 0x72, 0x79, 0x22, 0x72, 0x0a, 0x16, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52,
+ 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x24,
+ 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c,
+ 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x06, 0x66, 0x69,
+ 0x65, 0x6c, 0x64, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x67, 0x74, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x04, 0x67, 0x74, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x04, 0x72, 0x6f, 0x77, 0x73,
+ 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x52,
+ 0x6f, 0x77, 0x52, 0x04, 0x72, 0x6f, 0x77, 0x73, 0x2a, 0x3e, 0x0a, 0x0b, 0x4f, 0x6e, 0x44, 0x44,
+ 0x4c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0a, 0x0a, 0x06, 0x49, 0x47, 0x4e, 0x4f, 0x52,
+ 0x45, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x53, 0x54, 0x4f, 0x50, 0x10, 0x01, 0x12, 0x08, 0x0a,
+ 0x04, 0x45, 0x58, 0x45, 0x43, 0x10, 0x02, 0x12, 0x0f, 0x0a, 0x0b, 0x45, 0x58, 0x45, 0x43, 0x5f,
+ 0x49, 0x47, 0x4e, 0x4f, 0x52, 0x45, 0x10, 0x03, 0x2a, 0x7b, 0x0a, 0x18, 0x56, 0x52, 0x65, 0x70,
0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
- 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x6f, 0x6e, 0x65, 0x10,
- 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x10, 0x01, 0x12, 0x0e,
- 0x0a, 0x0a, 0x41, 0x74, 0x6f, 0x6d, 0x69, 0x63, 0x43, 0x6f, 0x70, 0x79, 0x10, 0x02, 0x2a, 0x71,
- 0x0a, 0x19, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f,
- 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x55,
- 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x49, 0x6e, 0x69, 0x74,
- 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x53, 0x74, 0x6f, 0x70, 0x70, 0x65, 0x64, 0x10, 0x02, 0x12,
- 0x0b, 0x0a, 0x07, 0x43, 0x6f, 0x70, 0x79, 0x69, 0x6e, 0x67, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07,
- 0x52, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x10, 0x04, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x10, 0x05, 0x12, 0x0b, 0x0a, 0x07, 0x4c, 0x61, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x10,
- 0x06, 0x2a, 0x8d, 0x02, 0x0a, 0x0a, 0x56, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65,
- 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x08, 0x0a,
- 0x04, 0x47, 0x54, 0x49, 0x44, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x42, 0x45, 0x47, 0x49, 0x4e,
- 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x43, 0x4f, 0x4d, 0x4d, 0x49, 0x54, 0x10, 0x03, 0x12, 0x0c,
- 0x0a, 0x08, 0x52, 0x4f, 0x4c, 0x4c, 0x42, 0x41, 0x43, 0x4b, 0x10, 0x04, 0x12, 0x07, 0x0a, 0x03,
- 0x44, 0x44, 0x4c, 0x10, 0x05, 0x12, 0x0a, 0x0a, 0x06, 0x49, 0x4e, 0x53, 0x45, 0x52, 0x54, 0x10,
- 0x06, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x50, 0x4c, 0x41, 0x43, 0x45, 0x10, 0x07, 0x12, 0x0a,
- 0x0a, 0x06, 0x55, 0x50, 0x44, 0x41, 0x54, 0x45, 0x10, 0x08, 0x12, 0x0a, 0x0a, 0x06, 0x44, 0x45,
- 0x4c, 0x45, 0x54, 0x45, 0x10, 0x09, 0x12, 0x07, 0x0a, 0x03, 0x53, 0x45, 0x54, 0x10, 0x0a, 0x12,
- 0x09, 0x0a, 0x05, 0x4f, 0x54, 0x48, 0x45, 0x52, 0x10, 0x0b, 0x12, 0x07, 0x0a, 0x03, 0x52, 0x4f,
- 0x57, 0x10, 0x0c, 0x12, 0x09, 0x0a, 0x05, 0x46, 0x49, 0x45, 0x4c, 0x44, 0x10, 0x0d, 0x12, 0x0d,
- 0x0a, 0x09, 0x48, 0x45, 0x41, 0x52, 0x54, 0x42, 0x45, 0x41, 0x54, 0x10, 0x0e, 0x12, 0x09, 0x0a,
- 0x05, 0x56, 0x47, 0x54, 0x49, 0x44, 0x10, 0x0f, 0x12, 0x0b, 0x0a, 0x07, 0x4a, 0x4f, 0x55, 0x52,
- 0x4e, 0x41, 0x4c, 0x10, 0x10, 0x12, 0x0b, 0x0a, 0x07, 0x56, 0x45, 0x52, 0x53, 0x49, 0x4f, 0x4e,
- 0x10, 0x11, 0x12, 0x0a, 0x0a, 0x06, 0x4c, 0x41, 0x53, 0x54, 0x50, 0x4b, 0x10, 0x12, 0x12, 0x0d,
- 0x0a, 0x09, 0x53, 0x41, 0x56, 0x45, 0x50, 0x4f, 0x49, 0x4e, 0x54, 0x10, 0x13, 0x12, 0x12, 0x0a,
- 0x0e, 0x43, 0x4f, 0x50, 0x59, 0x5f, 0x43, 0x4f, 0x4d, 0x50, 0x4c, 0x45, 0x54, 0x45, 0x44, 0x10,
- 0x14, 0x2a, 0x27, 0x0a, 0x0d, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79,
- 0x70, 0x65, 0x12, 0x0a, 0x0a, 0x06, 0x54, 0x41, 0x42, 0x4c, 0x45, 0x53, 0x10, 0x00, 0x12, 0x0a,
- 0x0a, 0x06, 0x53, 0x48, 0x41, 0x52, 0x44, 0x53, 0x10, 0x01, 0x42, 0x29, 0x5a, 0x27, 0x76, 0x69,
- 0x74, 0x65, 0x73, 0x73, 0x2e, 0x69, 0x6f, 0x2f, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2f, 0x67,
- 0x6f, 0x2f, 0x76, 0x74, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x62, 0x69, 0x6e, 0x6c, 0x6f,
- 0x67, 0x64, 0x61, 0x74, 0x61, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c,
+ 0x69, 0x7a, 0x65, 0x10, 0x00, 0x12, 0x0e, 0x0a, 0x0a, 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x61, 0x62,
+ 0x6c, 0x65, 0x73, 0x10, 0x01, 0x12, 0x15, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c,
+ 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07,
+ 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x65, 0x73,
+ 0x68, 0x61, 0x72, 0x64, 0x10, 0x04, 0x12, 0x0d, 0x0a, 0x09, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65,
+ 0x44, 0x44, 0x4c, 0x10, 0x05, 0x2a, 0x44, 0x0a, 0x1b, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x75, 0x62,
+ 0x54, 0x79, 0x70, 0x65, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x6f, 0x6e, 0x65, 0x10, 0x00, 0x12, 0x0b,
+ 0x0a, 0x07, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x10, 0x01, 0x12, 0x0e, 0x0a, 0x0a, 0x41,
+ 0x74, 0x6f, 0x6d, 0x69, 0x63, 0x43, 0x6f, 0x70, 0x79, 0x10, 0x02, 0x2a, 0x71, 0x0a, 0x19, 0x56,
+ 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66,
+ 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x6e, 0x6b, 0x6e,
+ 0x6f, 0x77, 0x6e, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x49, 0x6e, 0x69, 0x74, 0x10, 0x01, 0x12,
+ 0x0b, 0x0a, 0x07, 0x53, 0x74, 0x6f, 0x70, 0x70, 0x65, 0x64, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07,
+ 0x43, 0x6f, 0x70, 0x79, 0x69, 0x6e, 0x67, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x75, 0x6e,
+ 0x6e, 0x69, 0x6e, 0x67, 0x10, 0x04, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10,
+ 0x05, 0x12, 0x0b, 0x0a, 0x07, 0x4c, 0x61, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x10, 0x06, 0x2a, 0x8d,
+ 0x02, 0x0a, 0x0a, 0x56, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0b, 0x0a,
+ 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x47, 0x54,
+ 0x49, 0x44, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x42, 0x45, 0x47, 0x49, 0x4e, 0x10, 0x02, 0x12,
+ 0x0a, 0x0a, 0x06, 0x43, 0x4f, 0x4d, 0x4d, 0x49, 0x54, 0x10, 0x03, 0x12, 0x0c, 0x0a, 0x08, 0x52,
+ 0x4f, 0x4c, 0x4c, 0x42, 0x41, 0x43, 0x4b, 0x10, 0x04, 0x12, 0x07, 0x0a, 0x03, 0x44, 0x44, 0x4c,
+ 0x10, 0x05, 0x12, 0x0a, 0x0a, 0x06, 0x49, 0x4e, 0x53, 0x45, 0x52, 0x54, 0x10, 0x06, 0x12, 0x0b,
+ 0x0a, 0x07, 0x52, 0x45, 0x50, 0x4c, 0x41, 0x43, 0x45, 0x10, 0x07, 0x12, 0x0a, 0x0a, 0x06, 0x55,
+ 0x50, 0x44, 0x41, 0x54, 0x45, 0x10, 0x08, 0x12, 0x0a, 0x0a, 0x06, 0x44, 0x45, 0x4c, 0x45, 0x54,
+ 0x45, 0x10, 0x09, 0x12, 0x07, 0x0a, 0x03, 0x53, 0x45, 0x54, 0x10, 0x0a, 0x12, 0x09, 0x0a, 0x05,
+ 0x4f, 0x54, 0x48, 0x45, 0x52, 0x10, 0x0b, 0x12, 0x07, 0x0a, 0x03, 0x52, 0x4f, 0x57, 0x10, 0x0c,
+ 0x12, 0x09, 0x0a, 0x05, 0x46, 0x49, 0x45, 0x4c, 0x44, 0x10, 0x0d, 0x12, 0x0d, 0x0a, 0x09, 0x48,
+ 0x45, 0x41, 0x52, 0x54, 0x42, 0x45, 0x41, 0x54, 0x10, 0x0e, 0x12, 0x09, 0x0a, 0x05, 0x56, 0x47,
+ 0x54, 0x49, 0x44, 0x10, 0x0f, 0x12, 0x0b, 0x0a, 0x07, 0x4a, 0x4f, 0x55, 0x52, 0x4e, 0x41, 0x4c,
+ 0x10, 0x10, 0x12, 0x0b, 0x0a, 0x07, 0x56, 0x45, 0x52, 0x53, 0x49, 0x4f, 0x4e, 0x10, 0x11, 0x12,
+ 0x0a, 0x0a, 0x06, 0x4c, 0x41, 0x53, 0x54, 0x50, 0x4b, 0x10, 0x12, 0x12, 0x0d, 0x0a, 0x09, 0x53,
+ 0x41, 0x56, 0x45, 0x50, 0x4f, 0x49, 0x4e, 0x54, 0x10, 0x13, 0x12, 0x12, 0x0a, 0x0e, 0x43, 0x4f,
+ 0x50, 0x59, 0x5f, 0x43, 0x4f, 0x4d, 0x50, 0x4c, 0x45, 0x54, 0x45, 0x44, 0x10, 0x14, 0x2a, 0x27,
+ 0x0a, 0x0d, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12,
+ 0x0a, 0x0a, 0x06, 0x54, 0x41, 0x42, 0x4c, 0x45, 0x53, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x53,
+ 0x48, 0x41, 0x52, 0x44, 0x53, 0x10, 0x01, 0x42, 0x29, 0x5a, 0x27, 0x76, 0x69, 0x74, 0x65, 0x73,
+ 0x73, 0x2e, 0x69, 0x6f, 0x2f, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2f, 0x67, 0x6f, 0x2f, 0x76,
+ 0x74, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61,
+ 0x74, 0x61, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
@@ -3579,7 +3620,7 @@ func file_binlogdata_proto_rawDescGZIP() []byte {
}
var file_binlogdata_proto_enumTypes = make([]protoimpl.EnumInfo, 8)
-var file_binlogdata_proto_msgTypes = make([]protoimpl.MessageInfo, 36)
+var file_binlogdata_proto_msgTypes = make([]protoimpl.MessageInfo, 37)
var file_binlogdata_proto_goTypes = []any{
(OnDDLAction)(0), // 0: binlogdata.OnDDLAction
(VReplicationWorkflowType)(0), // 1: binlogdata.VReplicationWorkflowType
@@ -3625,20 +3666,21 @@ var file_binlogdata_proto_goTypes = []any{
nil, // 41: binlogdata.Rule.ConvertCharsetEntry
nil, // 42: binlogdata.Rule.ConvertIntToEnumEntry
(*RowChange_Bitmap)(nil), // 43: binlogdata.RowChange.Bitmap
- (*query.EventToken)(nil), // 44: query.EventToken
- (*topodata.KeyRange)(nil), // 45: topodata.KeyRange
- (topodata.TabletType)(0), // 46: topodata.TabletType
- (*query.Row)(nil), // 47: query.Row
- (*query.Field)(nil), // 48: query.Field
- (*vtrpc.CallerID)(nil), // 49: vtrpc.CallerID
- (*query.VTGateCallerID)(nil), // 50: query.VTGateCallerID
- (*query.Target)(nil), // 51: query.Target
- (*query.QueryResult)(nil), // 52: query.QueryResult
+ nil, // 44: binlogdata.VStreamOptions.ConfigOverridesEntry
+ (*query.EventToken)(nil), // 45: query.EventToken
+ (*topodata.KeyRange)(nil), // 46: topodata.KeyRange
+ (topodata.TabletType)(0), // 47: topodata.TabletType
+ (*query.Row)(nil), // 48: query.Row
+ (*query.Field)(nil), // 49: query.Field
+ (*vtrpc.CallerID)(nil), // 50: vtrpc.CallerID
+ (*query.VTGateCallerID)(nil), // 51: query.VTGateCallerID
+ (*query.Target)(nil), // 52: query.Target
+ (*query.QueryResult)(nil), // 53: query.QueryResult
}
var file_binlogdata_proto_depIdxs = []int32{
39, // 0: binlogdata.BinlogTransaction.statements:type_name -> binlogdata.BinlogTransaction.Statement
- 44, // 1: binlogdata.BinlogTransaction.event_token:type_name -> query.EventToken
- 45, // 2: binlogdata.StreamKeyRangeRequest.key_range:type_name -> topodata.KeyRange
+ 45, // 1: binlogdata.BinlogTransaction.event_token:type_name -> query.EventToken
+ 46, // 2: binlogdata.StreamKeyRangeRequest.key_range:type_name -> topodata.KeyRange
8, // 3: binlogdata.StreamKeyRangeRequest.charset:type_name -> binlogdata.Charset
9, // 4: binlogdata.StreamKeyRangeResponse.binlog_transaction:type_name -> binlogdata.BinlogTransaction
8, // 5: binlogdata.StreamTablesRequest.charset:type_name -> binlogdata.Charset
@@ -3648,15 +3690,15 @@ var file_binlogdata_proto_depIdxs = []int32{
42, // 9: binlogdata.Rule.convert_int_to_enum:type_name -> binlogdata.Rule.ConvertIntToEnumEntry
15, // 10: binlogdata.Filter.rules:type_name -> binlogdata.Rule
7, // 11: binlogdata.Filter.field_event_mode:type_name -> binlogdata.Filter.FieldEventMode
- 46, // 12: binlogdata.BinlogSource.tablet_type:type_name -> topodata.TabletType
- 45, // 13: binlogdata.BinlogSource.key_range:type_name -> topodata.KeyRange
+ 47, // 12: binlogdata.BinlogSource.tablet_type:type_name -> topodata.TabletType
+ 46, // 13: binlogdata.BinlogSource.key_range:type_name -> topodata.KeyRange
16, // 14: binlogdata.BinlogSource.filter:type_name -> binlogdata.Filter
0, // 15: binlogdata.BinlogSource.on_ddl:type_name -> binlogdata.OnDDLAction
- 47, // 16: binlogdata.RowChange.before:type_name -> query.Row
- 47, // 17: binlogdata.RowChange.after:type_name -> query.Row
+ 48, // 16: binlogdata.RowChange.before:type_name -> query.Row
+ 48, // 17: binlogdata.RowChange.after:type_name -> query.Row
43, // 18: binlogdata.RowChange.data_columns:type_name -> binlogdata.RowChange.Bitmap
18, // 19: binlogdata.RowEvent.row_changes:type_name -> binlogdata.RowChange
- 48, // 20: binlogdata.FieldEvent.fields:type_name -> query.Field
+ 49, // 20: binlogdata.FieldEvent.fields:type_name -> query.Field
36, // 21: binlogdata.ShardGtid.table_p_ks:type_name -> binlogdata.TableLastPK
21, // 22: binlogdata.VGtid.shard_gtids:type_name -> binlogdata.ShardGtid
5, // 23: binlogdata.Journal.migration_type:type_name -> binlogdata.MigrationType
@@ -3668,45 +3710,48 @@ var file_binlogdata_proto_depIdxs = []int32{
22, // 29: binlogdata.VEvent.vgtid:type_name -> binlogdata.VGtid
24, // 30: binlogdata.VEvent.journal:type_name -> binlogdata.Journal
35, // 31: binlogdata.VEvent.last_p_k_event:type_name -> binlogdata.LastPKEvent
- 48, // 32: binlogdata.MinimalTable.fields:type_name -> query.Field
+ 49, // 32: binlogdata.MinimalTable.fields:type_name -> query.Field
26, // 33: binlogdata.MinimalSchema.tables:type_name -> binlogdata.MinimalTable
- 49, // 34: binlogdata.VStreamRequest.effective_caller_id:type_name -> vtrpc.CallerID
- 50, // 35: binlogdata.VStreamRequest.immediate_caller_id:type_name -> query.VTGateCallerID
- 51, // 36: binlogdata.VStreamRequest.target:type_name -> query.Target
- 16, // 37: binlogdata.VStreamRequest.filter:type_name -> binlogdata.Filter
- 36, // 38: binlogdata.VStreamRequest.table_last_p_ks:type_name -> binlogdata.TableLastPK
- 28, // 39: binlogdata.VStreamRequest.options:type_name -> binlogdata.VStreamOptions
- 25, // 40: binlogdata.VStreamResponse.events:type_name -> binlogdata.VEvent
- 49, // 41: binlogdata.VStreamRowsRequest.effective_caller_id:type_name -> vtrpc.CallerID
- 50, // 42: binlogdata.VStreamRowsRequest.immediate_caller_id:type_name -> query.VTGateCallerID
- 51, // 43: binlogdata.VStreamRowsRequest.target:type_name -> query.Target
- 52, // 44: binlogdata.VStreamRowsRequest.lastpk:type_name -> query.QueryResult
- 48, // 45: binlogdata.VStreamRowsResponse.fields:type_name -> query.Field
- 48, // 46: binlogdata.VStreamRowsResponse.pkfields:type_name -> query.Field
- 47, // 47: binlogdata.VStreamRowsResponse.rows:type_name -> query.Row
- 47, // 48: binlogdata.VStreamRowsResponse.lastpk:type_name -> query.Row
- 49, // 49: binlogdata.VStreamTablesRequest.effective_caller_id:type_name -> vtrpc.CallerID
- 50, // 50: binlogdata.VStreamTablesRequest.immediate_caller_id:type_name -> query.VTGateCallerID
- 51, // 51: binlogdata.VStreamTablesRequest.target:type_name -> query.Target
- 48, // 52: binlogdata.VStreamTablesResponse.fields:type_name -> query.Field
- 48, // 53: binlogdata.VStreamTablesResponse.pkfields:type_name -> query.Field
- 47, // 54: binlogdata.VStreamTablesResponse.rows:type_name -> query.Row
- 47, // 55: binlogdata.VStreamTablesResponse.lastpk:type_name -> query.Row
- 36, // 56: binlogdata.LastPKEvent.table_last_p_k:type_name -> binlogdata.TableLastPK
- 52, // 57: binlogdata.TableLastPK.lastpk:type_name -> query.QueryResult
- 49, // 58: binlogdata.VStreamResultsRequest.effective_caller_id:type_name -> vtrpc.CallerID
- 50, // 59: binlogdata.VStreamResultsRequest.immediate_caller_id:type_name -> query.VTGateCallerID
- 51, // 60: binlogdata.VStreamResultsRequest.target:type_name -> query.Target
- 48, // 61: binlogdata.VStreamResultsResponse.fields:type_name -> query.Field
- 47, // 62: binlogdata.VStreamResultsResponse.rows:type_name -> query.Row
- 6, // 63: binlogdata.BinlogTransaction.Statement.category:type_name -> binlogdata.BinlogTransaction.Statement.Category
- 8, // 64: binlogdata.BinlogTransaction.Statement.charset:type_name -> binlogdata.Charset
- 14, // 65: binlogdata.Rule.ConvertCharsetEntry.value:type_name -> binlogdata.CharsetConversion
- 66, // [66:66] is the sub-list for method output_type
- 66, // [66:66] is the sub-list for method input_type
- 66, // [66:66] is the sub-list for extension type_name
- 66, // [66:66] is the sub-list for extension extendee
- 0, // [0:66] is the sub-list for field type_name
+ 44, // 34: binlogdata.VStreamOptions.config_overrides:type_name -> binlogdata.VStreamOptions.ConfigOverridesEntry
+ 50, // 35: binlogdata.VStreamRequest.effective_caller_id:type_name -> vtrpc.CallerID
+ 51, // 36: binlogdata.VStreamRequest.immediate_caller_id:type_name -> query.VTGateCallerID
+ 52, // 37: binlogdata.VStreamRequest.target:type_name -> query.Target
+ 16, // 38: binlogdata.VStreamRequest.filter:type_name -> binlogdata.Filter
+ 36, // 39: binlogdata.VStreamRequest.table_last_p_ks:type_name -> binlogdata.TableLastPK
+ 28, // 40: binlogdata.VStreamRequest.options:type_name -> binlogdata.VStreamOptions
+ 25, // 41: binlogdata.VStreamResponse.events:type_name -> binlogdata.VEvent
+ 50, // 42: binlogdata.VStreamRowsRequest.effective_caller_id:type_name -> vtrpc.CallerID
+ 51, // 43: binlogdata.VStreamRowsRequest.immediate_caller_id:type_name -> query.VTGateCallerID
+ 52, // 44: binlogdata.VStreamRowsRequest.target:type_name -> query.Target
+ 53, // 45: binlogdata.VStreamRowsRequest.lastpk:type_name -> query.QueryResult
+ 28, // 46: binlogdata.VStreamRowsRequest.options:type_name -> binlogdata.VStreamOptions
+ 49, // 47: binlogdata.VStreamRowsResponse.fields:type_name -> query.Field
+ 49, // 48: binlogdata.VStreamRowsResponse.pkfields:type_name -> query.Field
+ 48, // 49: binlogdata.VStreamRowsResponse.rows:type_name -> query.Row
+ 48, // 50: binlogdata.VStreamRowsResponse.lastpk:type_name -> query.Row
+ 50, // 51: binlogdata.VStreamTablesRequest.effective_caller_id:type_name -> vtrpc.CallerID
+ 51, // 52: binlogdata.VStreamTablesRequest.immediate_caller_id:type_name -> query.VTGateCallerID
+ 52, // 53: binlogdata.VStreamTablesRequest.target:type_name -> query.Target
+ 28, // 54: binlogdata.VStreamTablesRequest.options:type_name -> binlogdata.VStreamOptions
+ 49, // 55: binlogdata.VStreamTablesResponse.fields:type_name -> query.Field
+ 49, // 56: binlogdata.VStreamTablesResponse.pkfields:type_name -> query.Field
+ 48, // 57: binlogdata.VStreamTablesResponse.rows:type_name -> query.Row
+ 48, // 58: binlogdata.VStreamTablesResponse.lastpk:type_name -> query.Row
+ 36, // 59: binlogdata.LastPKEvent.table_last_p_k:type_name -> binlogdata.TableLastPK
+ 53, // 60: binlogdata.TableLastPK.lastpk:type_name -> query.QueryResult
+ 50, // 61: binlogdata.VStreamResultsRequest.effective_caller_id:type_name -> vtrpc.CallerID
+ 51, // 62: binlogdata.VStreamResultsRequest.immediate_caller_id:type_name -> query.VTGateCallerID
+ 52, // 63: binlogdata.VStreamResultsRequest.target:type_name -> query.Target
+ 49, // 64: binlogdata.VStreamResultsResponse.fields:type_name -> query.Field
+ 48, // 65: binlogdata.VStreamResultsResponse.rows:type_name -> query.Row
+ 6, // 66: binlogdata.BinlogTransaction.Statement.category:type_name -> binlogdata.BinlogTransaction.Statement.Category
+ 8, // 67: binlogdata.BinlogTransaction.Statement.charset:type_name -> binlogdata.Charset
+ 14, // 68: binlogdata.Rule.ConvertCharsetEntry.value:type_name -> binlogdata.CharsetConversion
+ 69, // [69:69] is the sub-list for method output_type
+ 69, // [69:69] is the sub-list for method input_type
+ 69, // [69:69] is the sub-list for extension type_name
+ 69, // [69:69] is the sub-list for extension extendee
+ 0, // [0:69] is the sub-list for field type_name
}
func init() { file_binlogdata_proto_init() }
@@ -4118,7 +4163,7 @@ func file_binlogdata_proto_init() {
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_binlogdata_proto_rawDesc,
NumEnums: 8,
- NumMessages: 36,
+ NumMessages: 37,
NumExtensions: 0,
NumServices: 0,
},
diff --git a/go/vt/proto/binlogdata/binlogdata_vtproto.pb.go b/go/vt/proto/binlogdata/binlogdata_vtproto.pb.go
index 097b0c2b5b2..fd76576fcb5 100644
--- a/go/vt/proto/binlogdata/binlogdata_vtproto.pb.go
+++ b/go/vt/proto/binlogdata/binlogdata_vtproto.pb.go
@@ -585,6 +585,13 @@ func (m *VStreamOptions) CloneVT() *VStreamOptions {
copy(tmpContainer, rhs)
r.InternalTables = tmpContainer
}
+ if rhs := m.ConfigOverrides; rhs != nil {
+ tmpContainer := make(map[string]string, len(rhs))
+ for k, v := range rhs {
+ tmpContainer[k] = v
+ }
+ r.ConfigOverrides = tmpContainer
+ }
if len(m.unknownFields) > 0 {
r.unknownFields = make([]byte, len(m.unknownFields))
copy(r.unknownFields, m.unknownFields)
@@ -658,6 +665,7 @@ func (m *VStreamRowsRequest) CloneVT() *VStreamRowsRequest {
r.Target = m.Target.CloneVT()
r.Query = m.Query
r.Lastpk = m.Lastpk.CloneVT()
+ r.Options = m.Options.CloneVT()
if len(m.unknownFields) > 0 {
r.unknownFields = make([]byte, len(m.unknownFields))
copy(r.unknownFields, m.unknownFields)
@@ -719,6 +727,7 @@ func (m *VStreamTablesRequest) CloneVT() *VStreamTablesRequest {
r.EffectiveCallerId = m.EffectiveCallerId.CloneVT()
r.ImmediateCallerId = m.ImmediateCallerId.CloneVT()
r.Target = m.Target.CloneVT()
+ r.Options = m.Options.CloneVT()
if len(m.unknownFields) > 0 {
r.unknownFields = make([]byte, len(m.unknownFields))
copy(r.unknownFields, m.unknownFields)
@@ -2437,6 +2446,25 @@ func (m *VStreamOptions) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
i -= len(m.unknownFields)
copy(dAtA[i:], m.unknownFields)
}
+ if len(m.ConfigOverrides) > 0 {
+ for k := range m.ConfigOverrides {
+ v := m.ConfigOverrides[k]
+ baseI := i
+ i -= len(v)
+ copy(dAtA[i:], v)
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(len(v)))
+ i--
+ dAtA[i] = 0x12
+ i -= len(k)
+ copy(dAtA[i:], k)
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(len(k)))
+ i--
+ dAtA[i] = 0xa
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(baseI-i))
+ i--
+ dAtA[i] = 0x12
+ }
+ }
if len(m.InternalTables) > 0 {
for iNdEx := len(m.InternalTables) - 1; iNdEx >= 0; iNdEx-- {
i -= len(m.InternalTables[iNdEx])
@@ -2626,6 +2654,16 @@ func (m *VStreamRowsRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
i -= len(m.unknownFields)
copy(dAtA[i:], m.unknownFields)
}
+ if m.Options != nil {
+ size, err := m.Options.MarshalToSizedBufferVT(dAtA[:i])
+ if err != nil {
+ return 0, err
+ }
+ i -= size
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(size))
+ i--
+ dAtA[i] = 0x32
+ }
if m.Lastpk != nil {
size, err := m.Lastpk.MarshalToSizedBufferVT(dAtA[:i])
if err != nil {
@@ -2819,6 +2857,16 @@ func (m *VStreamTablesRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)
i -= len(m.unknownFields)
copy(dAtA[i:], m.unknownFields)
}
+ if m.Options != nil {
+ size, err := m.Options.MarshalToSizedBufferVT(dAtA[:i])
+ if err != nil {
+ return 0, err
+ }
+ i -= size
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(size))
+ i--
+ dAtA[i] = 0x22
+ }
if m.Target != nil {
size, err := m.Target.MarshalToSizedBufferVT(dAtA[:i])
if err != nil {
@@ -3891,6 +3939,14 @@ func (m *VStreamOptions) SizeVT() (n int) {
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
}
}
+ if len(m.ConfigOverrides) > 0 {
+ for k, v := range m.ConfigOverrides {
+ _ = k
+ _ = v
+ mapEntrySize := 1 + len(k) + protohelpers.SizeOfVarint(uint64(len(k))) + 1 + len(v) + protohelpers.SizeOfVarint(uint64(len(v)))
+ n += mapEntrySize + 1 + protohelpers.SizeOfVarint(uint64(mapEntrySize))
+ }
+ }
n += len(m.unknownFields)
return n
}
@@ -3977,6 +4033,10 @@ func (m *VStreamRowsRequest) SizeVT() (n int) {
l = m.Lastpk.SizeVT()
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
}
+ if m.Options != nil {
+ l = m.Options.SizeVT()
+ n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
+ }
n += len(m.unknownFields)
return n
}
@@ -4045,6 +4105,10 @@ func (m *VStreamTablesRequest) SizeVT() (n int) {
l = m.Target.SizeVT()
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
}
+ if m.Options != nil {
+ l = m.Options.SizeVT()
+ n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
+ }
n += len(m.unknownFields)
return n
}
@@ -8523,6 +8587,133 @@ func (m *VStreamOptions) UnmarshalVT(dAtA []byte) error {
}
m.InternalTables = append(m.InternalTables, string(dAtA[iNdEx:postIndex]))
iNdEx = postIndex
+ case 2:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field ConfigOverrides", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ if msglen < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ if m.ConfigOverrides == nil {
+ m.ConfigOverrides = make(map[string]string)
+ }
+ var mapkey string
+ var mapvalue string
+ for iNdEx < postIndex {
+ entryPreIndex := iNdEx
+ var wire uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ wire |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ fieldNum := int32(wire >> 3)
+ if fieldNum == 1 {
+ var stringLenmapkey uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLenmapkey |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLenmapkey := int(stringLenmapkey)
+ if intStringLenmapkey < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postStringIndexmapkey := iNdEx + intStringLenmapkey
+ if postStringIndexmapkey < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postStringIndexmapkey > l {
+ return io.ErrUnexpectedEOF
+ }
+ mapkey = string(dAtA[iNdEx:postStringIndexmapkey])
+ iNdEx = postStringIndexmapkey
+ } else if fieldNum == 2 {
+ var stringLenmapvalue uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLenmapvalue |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLenmapvalue := int(stringLenmapvalue)
+ if intStringLenmapvalue < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postStringIndexmapvalue := iNdEx + intStringLenmapvalue
+ if postStringIndexmapvalue < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postStringIndexmapvalue > l {
+ return io.ErrUnexpectedEOF
+ }
+ mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])
+ iNdEx = postStringIndexmapvalue
+ } else {
+ iNdEx = entryPreIndex
+ skippy, err := protohelpers.Skip(dAtA[iNdEx:])
+ if err != nil {
+ return err
+ }
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if (iNdEx + skippy) > postIndex {
+ return io.ErrUnexpectedEOF
+ }
+ iNdEx += skippy
+ }
+ }
+ m.ConfigOverrides[mapkey] = mapvalue
+ iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
@@ -9132,6 +9323,42 @@ func (m *VStreamRowsRequest) UnmarshalVT(dAtA []byte) error {
return err
}
iNdEx = postIndex
+ case 6:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Options", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ if msglen < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ if m.Options == nil {
+ m.Options = &VStreamOptions{}
+ }
+ if err := m.Options.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {
+ return err
+ }
+ iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
@@ -9605,6 +9832,42 @@ func (m *VStreamTablesRequest) UnmarshalVT(dAtA []byte) error {
return err
}
iNdEx = postIndex
+ case 4:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Options", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ if msglen < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ if m.Options == nil {
+ m.Options = &VStreamOptions{}
+ }
+ if err := m.Options.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {
+ return err
+ }
+ iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
diff --git a/go/vt/proto/tabletmanagerdata/tabletmanagerdata.pb.go b/go/vt/proto/tabletmanagerdata/tabletmanagerdata.pb.go
index beb3e2c3e1d..66632313702 100644
--- a/go/vt/proto/tabletmanagerdata/tabletmanagerdata.pb.go
+++ b/go/vt/proto/tabletmanagerdata/tabletmanagerdata.pb.go
@@ -2773,6 +2773,99 @@ func (x *GetUnresolvedTransactionsResponse) GetTransactions() []*query.Transacti
return nil
}
+type ConcludeTransactionRequest struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
+ Dtid string `protobuf:"bytes,1,opt,name=dtid,proto3" json:"dtid,omitempty"`
+ Mm bool `protobuf:"varint,2,opt,name=mm,proto3" json:"mm,omitempty"`
+}
+
+func (x *ConcludeTransactionRequest) Reset() {
+ *x = ConcludeTransactionRequest{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_tabletmanagerdata_proto_msgTypes[50]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *ConcludeTransactionRequest) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ConcludeTransactionRequest) ProtoMessage() {}
+
+func (x *ConcludeTransactionRequest) ProtoReflect() protoreflect.Message {
+ mi := &file_tabletmanagerdata_proto_msgTypes[50]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use ConcludeTransactionRequest.ProtoReflect.Descriptor instead.
+func (*ConcludeTransactionRequest) Descriptor() ([]byte, []int) {
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{50}
+}
+
+func (x *ConcludeTransactionRequest) GetDtid() string {
+ if x != nil {
+ return x.Dtid
+ }
+ return ""
+}
+
+func (x *ConcludeTransactionRequest) GetMm() bool {
+ if x != nil {
+ return x.Mm
+ }
+ return false
+}
+
+type ConcludeTransactionResponse struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+}
+
+func (x *ConcludeTransactionResponse) Reset() {
+ *x = ConcludeTransactionResponse{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_tabletmanagerdata_proto_msgTypes[51]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *ConcludeTransactionResponse) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ConcludeTransactionResponse) ProtoMessage() {}
+
+func (x *ConcludeTransactionResponse) ProtoReflect() protoreflect.Message {
+ mi := &file_tabletmanagerdata_proto_msgTypes[51]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use ConcludeTransactionResponse.ProtoReflect.Descriptor instead.
+func (*ConcludeTransactionResponse) Descriptor() ([]byte, []int) {
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{51}
+}
+
type ReplicationStatusRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2782,7 +2875,7 @@ type ReplicationStatusRequest struct {
func (x *ReplicationStatusRequest) Reset() {
*x = ReplicationStatusRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[50]
+ mi := &file_tabletmanagerdata_proto_msgTypes[52]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2795,7 +2888,7 @@ func (x *ReplicationStatusRequest) String() string {
func (*ReplicationStatusRequest) ProtoMessage() {}
func (x *ReplicationStatusRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[50]
+ mi := &file_tabletmanagerdata_proto_msgTypes[52]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2808,7 +2901,7 @@ func (x *ReplicationStatusRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReplicationStatusRequest.ProtoReflect.Descriptor instead.
func (*ReplicationStatusRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{50}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{52}
}
type ReplicationStatusResponse struct {
@@ -2822,7 +2915,7 @@ type ReplicationStatusResponse struct {
func (x *ReplicationStatusResponse) Reset() {
*x = ReplicationStatusResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[51]
+ mi := &file_tabletmanagerdata_proto_msgTypes[53]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2835,7 +2928,7 @@ func (x *ReplicationStatusResponse) String() string {
func (*ReplicationStatusResponse) ProtoMessage() {}
func (x *ReplicationStatusResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[51]
+ mi := &file_tabletmanagerdata_proto_msgTypes[53]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2848,7 +2941,7 @@ func (x *ReplicationStatusResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReplicationStatusResponse.ProtoReflect.Descriptor instead.
func (*ReplicationStatusResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{51}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{53}
}
func (x *ReplicationStatusResponse) GetStatus() *replicationdata.Status {
@@ -2867,7 +2960,7 @@ type PrimaryStatusRequest struct {
func (x *PrimaryStatusRequest) Reset() {
*x = PrimaryStatusRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[52]
+ mi := &file_tabletmanagerdata_proto_msgTypes[54]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2880,7 +2973,7 @@ func (x *PrimaryStatusRequest) String() string {
func (*PrimaryStatusRequest) ProtoMessage() {}
func (x *PrimaryStatusRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[52]
+ mi := &file_tabletmanagerdata_proto_msgTypes[54]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2893,7 +2986,7 @@ func (x *PrimaryStatusRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use PrimaryStatusRequest.ProtoReflect.Descriptor instead.
func (*PrimaryStatusRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{52}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{54}
}
type PrimaryStatusResponse struct {
@@ -2907,7 +3000,7 @@ type PrimaryStatusResponse struct {
func (x *PrimaryStatusResponse) Reset() {
*x = PrimaryStatusResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[53]
+ mi := &file_tabletmanagerdata_proto_msgTypes[55]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2920,7 +3013,7 @@ func (x *PrimaryStatusResponse) String() string {
func (*PrimaryStatusResponse) ProtoMessage() {}
func (x *PrimaryStatusResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[53]
+ mi := &file_tabletmanagerdata_proto_msgTypes[55]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2933,7 +3026,7 @@ func (x *PrimaryStatusResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use PrimaryStatusResponse.ProtoReflect.Descriptor instead.
func (*PrimaryStatusResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{53}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{55}
}
func (x *PrimaryStatusResponse) GetStatus() *replicationdata.PrimaryStatus {
@@ -2952,7 +3045,7 @@ type PrimaryPositionRequest struct {
func (x *PrimaryPositionRequest) Reset() {
*x = PrimaryPositionRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[54]
+ mi := &file_tabletmanagerdata_proto_msgTypes[56]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2965,7 +3058,7 @@ func (x *PrimaryPositionRequest) String() string {
func (*PrimaryPositionRequest) ProtoMessage() {}
func (x *PrimaryPositionRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[54]
+ mi := &file_tabletmanagerdata_proto_msgTypes[56]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2978,7 +3071,7 @@ func (x *PrimaryPositionRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use PrimaryPositionRequest.ProtoReflect.Descriptor instead.
func (*PrimaryPositionRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{54}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{56}
}
type PrimaryPositionResponse struct {
@@ -2992,7 +3085,7 @@ type PrimaryPositionResponse struct {
func (x *PrimaryPositionResponse) Reset() {
*x = PrimaryPositionResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[55]
+ mi := &file_tabletmanagerdata_proto_msgTypes[57]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3005,7 +3098,7 @@ func (x *PrimaryPositionResponse) String() string {
func (*PrimaryPositionResponse) ProtoMessage() {}
func (x *PrimaryPositionResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[55]
+ mi := &file_tabletmanagerdata_proto_msgTypes[57]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3018,7 +3111,7 @@ func (x *PrimaryPositionResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use PrimaryPositionResponse.ProtoReflect.Descriptor instead.
func (*PrimaryPositionResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{55}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{57}
}
func (x *PrimaryPositionResponse) GetPosition() string {
@@ -3039,7 +3132,7 @@ type WaitForPositionRequest struct {
func (x *WaitForPositionRequest) Reset() {
*x = WaitForPositionRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[56]
+ mi := &file_tabletmanagerdata_proto_msgTypes[58]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3052,7 +3145,7 @@ func (x *WaitForPositionRequest) String() string {
func (*WaitForPositionRequest) ProtoMessage() {}
func (x *WaitForPositionRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[56]
+ mi := &file_tabletmanagerdata_proto_msgTypes[58]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3065,7 +3158,7 @@ func (x *WaitForPositionRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use WaitForPositionRequest.ProtoReflect.Descriptor instead.
func (*WaitForPositionRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{56}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{58}
}
func (x *WaitForPositionRequest) GetPosition() string {
@@ -3084,7 +3177,7 @@ type WaitForPositionResponse struct {
func (x *WaitForPositionResponse) Reset() {
*x = WaitForPositionResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[57]
+ mi := &file_tabletmanagerdata_proto_msgTypes[59]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3097,7 +3190,7 @@ func (x *WaitForPositionResponse) String() string {
func (*WaitForPositionResponse) ProtoMessage() {}
func (x *WaitForPositionResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[57]
+ mi := &file_tabletmanagerdata_proto_msgTypes[59]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3110,7 +3203,7 @@ func (x *WaitForPositionResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use WaitForPositionResponse.ProtoReflect.Descriptor instead.
func (*WaitForPositionResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{57}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{59}
}
type StopReplicationRequest struct {
@@ -3122,7 +3215,7 @@ type StopReplicationRequest struct {
func (x *StopReplicationRequest) Reset() {
*x = StopReplicationRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[58]
+ mi := &file_tabletmanagerdata_proto_msgTypes[60]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3135,7 +3228,7 @@ func (x *StopReplicationRequest) String() string {
func (*StopReplicationRequest) ProtoMessage() {}
func (x *StopReplicationRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[58]
+ mi := &file_tabletmanagerdata_proto_msgTypes[60]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3148,7 +3241,7 @@ func (x *StopReplicationRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use StopReplicationRequest.ProtoReflect.Descriptor instead.
func (*StopReplicationRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{58}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{60}
}
type StopReplicationResponse struct {
@@ -3160,7 +3253,7 @@ type StopReplicationResponse struct {
func (x *StopReplicationResponse) Reset() {
*x = StopReplicationResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[59]
+ mi := &file_tabletmanagerdata_proto_msgTypes[61]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3173,7 +3266,7 @@ func (x *StopReplicationResponse) String() string {
func (*StopReplicationResponse) ProtoMessage() {}
func (x *StopReplicationResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[59]
+ mi := &file_tabletmanagerdata_proto_msgTypes[61]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3186,7 +3279,7 @@ func (x *StopReplicationResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use StopReplicationResponse.ProtoReflect.Descriptor instead.
func (*StopReplicationResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{59}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{61}
}
type StopReplicationMinimumRequest struct {
@@ -3201,7 +3294,7 @@ type StopReplicationMinimumRequest struct {
func (x *StopReplicationMinimumRequest) Reset() {
*x = StopReplicationMinimumRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[60]
+ mi := &file_tabletmanagerdata_proto_msgTypes[62]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3214,7 +3307,7 @@ func (x *StopReplicationMinimumRequest) String() string {
func (*StopReplicationMinimumRequest) ProtoMessage() {}
func (x *StopReplicationMinimumRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[60]
+ mi := &file_tabletmanagerdata_proto_msgTypes[62]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3227,7 +3320,7 @@ func (x *StopReplicationMinimumRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use StopReplicationMinimumRequest.ProtoReflect.Descriptor instead.
func (*StopReplicationMinimumRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{60}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{62}
}
func (x *StopReplicationMinimumRequest) GetPosition() string {
@@ -3255,7 +3348,7 @@ type StopReplicationMinimumResponse struct {
func (x *StopReplicationMinimumResponse) Reset() {
*x = StopReplicationMinimumResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[61]
+ mi := &file_tabletmanagerdata_proto_msgTypes[63]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3268,7 +3361,7 @@ func (x *StopReplicationMinimumResponse) String() string {
func (*StopReplicationMinimumResponse) ProtoMessage() {}
func (x *StopReplicationMinimumResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[61]
+ mi := &file_tabletmanagerdata_proto_msgTypes[63]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3281,7 +3374,7 @@ func (x *StopReplicationMinimumResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use StopReplicationMinimumResponse.ProtoReflect.Descriptor instead.
func (*StopReplicationMinimumResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{61}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{63}
}
func (x *StopReplicationMinimumResponse) GetPosition() string {
@@ -3302,7 +3395,7 @@ type StartReplicationRequest struct {
func (x *StartReplicationRequest) Reset() {
*x = StartReplicationRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[62]
+ mi := &file_tabletmanagerdata_proto_msgTypes[64]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3315,7 +3408,7 @@ func (x *StartReplicationRequest) String() string {
func (*StartReplicationRequest) ProtoMessage() {}
func (x *StartReplicationRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[62]
+ mi := &file_tabletmanagerdata_proto_msgTypes[64]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3328,7 +3421,7 @@ func (x *StartReplicationRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use StartReplicationRequest.ProtoReflect.Descriptor instead.
func (*StartReplicationRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{62}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{64}
}
func (x *StartReplicationRequest) GetSemiSync() bool {
@@ -3347,7 +3440,7 @@ type StartReplicationResponse struct {
func (x *StartReplicationResponse) Reset() {
*x = StartReplicationResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[63]
+ mi := &file_tabletmanagerdata_proto_msgTypes[65]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3360,7 +3453,7 @@ func (x *StartReplicationResponse) String() string {
func (*StartReplicationResponse) ProtoMessage() {}
func (x *StartReplicationResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[63]
+ mi := &file_tabletmanagerdata_proto_msgTypes[65]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3373,7 +3466,7 @@ func (x *StartReplicationResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use StartReplicationResponse.ProtoReflect.Descriptor instead.
func (*StartReplicationResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{63}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{65}
}
type StartReplicationUntilAfterRequest struct {
@@ -3388,7 +3481,7 @@ type StartReplicationUntilAfterRequest struct {
func (x *StartReplicationUntilAfterRequest) Reset() {
*x = StartReplicationUntilAfterRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[64]
+ mi := &file_tabletmanagerdata_proto_msgTypes[66]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3401,7 +3494,7 @@ func (x *StartReplicationUntilAfterRequest) String() string {
func (*StartReplicationUntilAfterRequest) ProtoMessage() {}
func (x *StartReplicationUntilAfterRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[64]
+ mi := &file_tabletmanagerdata_proto_msgTypes[66]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3414,7 +3507,7 @@ func (x *StartReplicationUntilAfterRequest) ProtoReflect() protoreflect.Message
// Deprecated: Use StartReplicationUntilAfterRequest.ProtoReflect.Descriptor instead.
func (*StartReplicationUntilAfterRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{64}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{66}
}
func (x *StartReplicationUntilAfterRequest) GetPosition() string {
@@ -3440,7 +3533,7 @@ type StartReplicationUntilAfterResponse struct {
func (x *StartReplicationUntilAfterResponse) Reset() {
*x = StartReplicationUntilAfterResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[65]
+ mi := &file_tabletmanagerdata_proto_msgTypes[67]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3453,7 +3546,7 @@ func (x *StartReplicationUntilAfterResponse) String() string {
func (*StartReplicationUntilAfterResponse) ProtoMessage() {}
func (x *StartReplicationUntilAfterResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[65]
+ mi := &file_tabletmanagerdata_proto_msgTypes[67]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3466,7 +3559,7 @@ func (x *StartReplicationUntilAfterResponse) ProtoReflect() protoreflect.Message
// Deprecated: Use StartReplicationUntilAfterResponse.ProtoReflect.Descriptor instead.
func (*StartReplicationUntilAfterResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{65}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{67}
}
type GetReplicasRequest struct {
@@ -3478,7 +3571,7 @@ type GetReplicasRequest struct {
func (x *GetReplicasRequest) Reset() {
*x = GetReplicasRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[66]
+ mi := &file_tabletmanagerdata_proto_msgTypes[68]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3491,7 +3584,7 @@ func (x *GetReplicasRequest) String() string {
func (*GetReplicasRequest) ProtoMessage() {}
func (x *GetReplicasRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[66]
+ mi := &file_tabletmanagerdata_proto_msgTypes[68]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3504,7 +3597,7 @@ func (x *GetReplicasRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetReplicasRequest.ProtoReflect.Descriptor instead.
func (*GetReplicasRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{66}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{68}
}
type GetReplicasResponse struct {
@@ -3518,7 +3611,7 @@ type GetReplicasResponse struct {
func (x *GetReplicasResponse) Reset() {
*x = GetReplicasResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[67]
+ mi := &file_tabletmanagerdata_proto_msgTypes[69]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3531,7 +3624,7 @@ func (x *GetReplicasResponse) String() string {
func (*GetReplicasResponse) ProtoMessage() {}
func (x *GetReplicasResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[67]
+ mi := &file_tabletmanagerdata_proto_msgTypes[69]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3544,7 +3637,7 @@ func (x *GetReplicasResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetReplicasResponse.ProtoReflect.Descriptor instead.
func (*GetReplicasResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{67}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{69}
}
func (x *GetReplicasResponse) GetAddrs() []string {
@@ -3563,7 +3656,7 @@ type ResetReplicationRequest struct {
func (x *ResetReplicationRequest) Reset() {
*x = ResetReplicationRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[68]
+ mi := &file_tabletmanagerdata_proto_msgTypes[70]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3576,7 +3669,7 @@ func (x *ResetReplicationRequest) String() string {
func (*ResetReplicationRequest) ProtoMessage() {}
func (x *ResetReplicationRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[68]
+ mi := &file_tabletmanagerdata_proto_msgTypes[70]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3589,7 +3682,7 @@ func (x *ResetReplicationRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ResetReplicationRequest.ProtoReflect.Descriptor instead.
func (*ResetReplicationRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{68}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{70}
}
type ResetReplicationResponse struct {
@@ -3601,7 +3694,7 @@ type ResetReplicationResponse struct {
func (x *ResetReplicationResponse) Reset() {
*x = ResetReplicationResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[69]
+ mi := &file_tabletmanagerdata_proto_msgTypes[71]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3614,7 +3707,7 @@ func (x *ResetReplicationResponse) String() string {
func (*ResetReplicationResponse) ProtoMessage() {}
func (x *ResetReplicationResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[69]
+ mi := &file_tabletmanagerdata_proto_msgTypes[71]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3627,7 +3720,7 @@ func (x *ResetReplicationResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ResetReplicationResponse.ProtoReflect.Descriptor instead.
func (*ResetReplicationResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{69}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{71}
}
type VReplicationExecRequest struct {
@@ -3641,7 +3734,7 @@ type VReplicationExecRequest struct {
func (x *VReplicationExecRequest) Reset() {
*x = VReplicationExecRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[70]
+ mi := &file_tabletmanagerdata_proto_msgTypes[72]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3654,7 +3747,7 @@ func (x *VReplicationExecRequest) String() string {
func (*VReplicationExecRequest) ProtoMessage() {}
func (x *VReplicationExecRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[70]
+ mi := &file_tabletmanagerdata_proto_msgTypes[72]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3667,7 +3760,7 @@ func (x *VReplicationExecRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use VReplicationExecRequest.ProtoReflect.Descriptor instead.
func (*VReplicationExecRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{70}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{72}
}
func (x *VReplicationExecRequest) GetQuery() string {
@@ -3688,7 +3781,7 @@ type VReplicationExecResponse struct {
func (x *VReplicationExecResponse) Reset() {
*x = VReplicationExecResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[71]
+ mi := &file_tabletmanagerdata_proto_msgTypes[73]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3701,7 +3794,7 @@ func (x *VReplicationExecResponse) String() string {
func (*VReplicationExecResponse) ProtoMessage() {}
func (x *VReplicationExecResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[71]
+ mi := &file_tabletmanagerdata_proto_msgTypes[73]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3714,7 +3807,7 @@ func (x *VReplicationExecResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use VReplicationExecResponse.ProtoReflect.Descriptor instead.
func (*VReplicationExecResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{71}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{73}
}
func (x *VReplicationExecResponse) GetResult() *query.QueryResult {
@@ -3736,7 +3829,7 @@ type VReplicationWaitForPosRequest struct {
func (x *VReplicationWaitForPosRequest) Reset() {
*x = VReplicationWaitForPosRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[72]
+ mi := &file_tabletmanagerdata_proto_msgTypes[74]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3749,7 +3842,7 @@ func (x *VReplicationWaitForPosRequest) String() string {
func (*VReplicationWaitForPosRequest) ProtoMessage() {}
func (x *VReplicationWaitForPosRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[72]
+ mi := &file_tabletmanagerdata_proto_msgTypes[74]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3762,7 +3855,7 @@ func (x *VReplicationWaitForPosRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use VReplicationWaitForPosRequest.ProtoReflect.Descriptor instead.
func (*VReplicationWaitForPosRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{72}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{74}
}
func (x *VReplicationWaitForPosRequest) GetId() int32 {
@@ -3788,7 +3881,7 @@ type VReplicationWaitForPosResponse struct {
func (x *VReplicationWaitForPosResponse) Reset() {
*x = VReplicationWaitForPosResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[73]
+ mi := &file_tabletmanagerdata_proto_msgTypes[75]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3801,7 +3894,7 @@ func (x *VReplicationWaitForPosResponse) String() string {
func (*VReplicationWaitForPosResponse) ProtoMessage() {}
func (x *VReplicationWaitForPosResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[73]
+ mi := &file_tabletmanagerdata_proto_msgTypes[75]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3814,7 +3907,7 @@ func (x *VReplicationWaitForPosResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use VReplicationWaitForPosResponse.ProtoReflect.Descriptor instead.
func (*VReplicationWaitForPosResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{73}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{75}
}
type InitPrimaryRequest struct {
@@ -3828,7 +3921,7 @@ type InitPrimaryRequest struct {
func (x *InitPrimaryRequest) Reset() {
*x = InitPrimaryRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[74]
+ mi := &file_tabletmanagerdata_proto_msgTypes[76]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3841,7 +3934,7 @@ func (x *InitPrimaryRequest) String() string {
func (*InitPrimaryRequest) ProtoMessage() {}
func (x *InitPrimaryRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[74]
+ mi := &file_tabletmanagerdata_proto_msgTypes[76]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3854,7 +3947,7 @@ func (x *InitPrimaryRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use InitPrimaryRequest.ProtoReflect.Descriptor instead.
func (*InitPrimaryRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{74}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{76}
}
func (x *InitPrimaryRequest) GetSemiSync() bool {
@@ -3875,7 +3968,7 @@ type InitPrimaryResponse struct {
func (x *InitPrimaryResponse) Reset() {
*x = InitPrimaryResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[75]
+ mi := &file_tabletmanagerdata_proto_msgTypes[77]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3888,7 +3981,7 @@ func (x *InitPrimaryResponse) String() string {
func (*InitPrimaryResponse) ProtoMessage() {}
func (x *InitPrimaryResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[75]
+ mi := &file_tabletmanagerdata_proto_msgTypes[77]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3901,7 +3994,7 @@ func (x *InitPrimaryResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use InitPrimaryResponse.ProtoReflect.Descriptor instead.
func (*InitPrimaryResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{75}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{77}
}
func (x *InitPrimaryResponse) GetPosition() string {
@@ -3925,7 +4018,7 @@ type PopulateReparentJournalRequest struct {
func (x *PopulateReparentJournalRequest) Reset() {
*x = PopulateReparentJournalRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[76]
+ mi := &file_tabletmanagerdata_proto_msgTypes[78]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3938,7 +4031,7 @@ func (x *PopulateReparentJournalRequest) String() string {
func (*PopulateReparentJournalRequest) ProtoMessage() {}
func (x *PopulateReparentJournalRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[76]
+ mi := &file_tabletmanagerdata_proto_msgTypes[78]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3951,7 +4044,7 @@ func (x *PopulateReparentJournalRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use PopulateReparentJournalRequest.ProtoReflect.Descriptor instead.
func (*PopulateReparentJournalRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{76}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{78}
}
func (x *PopulateReparentJournalRequest) GetTimeCreatedNs() int64 {
@@ -3991,7 +4084,7 @@ type PopulateReparentJournalResponse struct {
func (x *PopulateReparentJournalResponse) Reset() {
*x = PopulateReparentJournalResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[77]
+ mi := &file_tabletmanagerdata_proto_msgTypes[79]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4004,7 +4097,7 @@ func (x *PopulateReparentJournalResponse) String() string {
func (*PopulateReparentJournalResponse) ProtoMessage() {}
func (x *PopulateReparentJournalResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[77]
+ mi := &file_tabletmanagerdata_proto_msgTypes[79]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4017,7 +4110,7 @@ func (x *PopulateReparentJournalResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use PopulateReparentJournalResponse.ProtoReflect.Descriptor instead.
func (*PopulateReparentJournalResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{77}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{79}
}
type InitReplicaRequest struct {
@@ -4034,7 +4127,7 @@ type InitReplicaRequest struct {
func (x *InitReplicaRequest) Reset() {
*x = InitReplicaRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[78]
+ mi := &file_tabletmanagerdata_proto_msgTypes[80]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4047,7 +4140,7 @@ func (x *InitReplicaRequest) String() string {
func (*InitReplicaRequest) ProtoMessage() {}
func (x *InitReplicaRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[78]
+ mi := &file_tabletmanagerdata_proto_msgTypes[80]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4060,7 +4153,7 @@ func (x *InitReplicaRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use InitReplicaRequest.ProtoReflect.Descriptor instead.
func (*InitReplicaRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{78}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{80}
}
func (x *InitReplicaRequest) GetParent() *topodata.TabletAlias {
@@ -4100,7 +4193,7 @@ type InitReplicaResponse struct {
func (x *InitReplicaResponse) Reset() {
*x = InitReplicaResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[79]
+ mi := &file_tabletmanagerdata_proto_msgTypes[81]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4113,7 +4206,7 @@ func (x *InitReplicaResponse) String() string {
func (*InitReplicaResponse) ProtoMessage() {}
func (x *InitReplicaResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[79]
+ mi := &file_tabletmanagerdata_proto_msgTypes[81]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4126,7 +4219,7 @@ func (x *InitReplicaResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use InitReplicaResponse.ProtoReflect.Descriptor instead.
func (*InitReplicaResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{79}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{81}
}
type DemotePrimaryRequest struct {
@@ -4138,7 +4231,7 @@ type DemotePrimaryRequest struct {
func (x *DemotePrimaryRequest) Reset() {
*x = DemotePrimaryRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[80]
+ mi := &file_tabletmanagerdata_proto_msgTypes[82]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4151,7 +4244,7 @@ func (x *DemotePrimaryRequest) String() string {
func (*DemotePrimaryRequest) ProtoMessage() {}
func (x *DemotePrimaryRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[80]
+ mi := &file_tabletmanagerdata_proto_msgTypes[82]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4164,7 +4257,7 @@ func (x *DemotePrimaryRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use DemotePrimaryRequest.ProtoReflect.Descriptor instead.
func (*DemotePrimaryRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{80}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{82}
}
type DemotePrimaryResponse struct {
@@ -4179,7 +4272,7 @@ type DemotePrimaryResponse struct {
func (x *DemotePrimaryResponse) Reset() {
*x = DemotePrimaryResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[81]
+ mi := &file_tabletmanagerdata_proto_msgTypes[83]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4192,7 +4285,7 @@ func (x *DemotePrimaryResponse) String() string {
func (*DemotePrimaryResponse) ProtoMessage() {}
func (x *DemotePrimaryResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[81]
+ mi := &file_tabletmanagerdata_proto_msgTypes[83]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4205,7 +4298,7 @@ func (x *DemotePrimaryResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use DemotePrimaryResponse.ProtoReflect.Descriptor instead.
func (*DemotePrimaryResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{81}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{83}
}
func (x *DemotePrimaryResponse) GetPrimaryStatus() *replicationdata.PrimaryStatus {
@@ -4226,7 +4319,7 @@ type UndoDemotePrimaryRequest struct {
func (x *UndoDemotePrimaryRequest) Reset() {
*x = UndoDemotePrimaryRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[82]
+ mi := &file_tabletmanagerdata_proto_msgTypes[84]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4239,7 +4332,7 @@ func (x *UndoDemotePrimaryRequest) String() string {
func (*UndoDemotePrimaryRequest) ProtoMessage() {}
func (x *UndoDemotePrimaryRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[82]
+ mi := &file_tabletmanagerdata_proto_msgTypes[84]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4252,7 +4345,7 @@ func (x *UndoDemotePrimaryRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use UndoDemotePrimaryRequest.ProtoReflect.Descriptor instead.
func (*UndoDemotePrimaryRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{82}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{84}
}
func (x *UndoDemotePrimaryRequest) GetSemiSync() bool {
@@ -4271,7 +4364,7 @@ type UndoDemotePrimaryResponse struct {
func (x *UndoDemotePrimaryResponse) Reset() {
*x = UndoDemotePrimaryResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[83]
+ mi := &file_tabletmanagerdata_proto_msgTypes[85]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4284,7 +4377,7 @@ func (x *UndoDemotePrimaryResponse) String() string {
func (*UndoDemotePrimaryResponse) ProtoMessage() {}
func (x *UndoDemotePrimaryResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[83]
+ mi := &file_tabletmanagerdata_proto_msgTypes[85]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4297,7 +4390,7 @@ func (x *UndoDemotePrimaryResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use UndoDemotePrimaryResponse.ProtoReflect.Descriptor instead.
func (*UndoDemotePrimaryResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{83}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{85}
}
type ReplicaWasPromotedRequest struct {
@@ -4309,7 +4402,7 @@ type ReplicaWasPromotedRequest struct {
func (x *ReplicaWasPromotedRequest) Reset() {
*x = ReplicaWasPromotedRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[84]
+ mi := &file_tabletmanagerdata_proto_msgTypes[86]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4322,7 +4415,7 @@ func (x *ReplicaWasPromotedRequest) String() string {
func (*ReplicaWasPromotedRequest) ProtoMessage() {}
func (x *ReplicaWasPromotedRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[84]
+ mi := &file_tabletmanagerdata_proto_msgTypes[86]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4335,7 +4428,7 @@ func (x *ReplicaWasPromotedRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReplicaWasPromotedRequest.ProtoReflect.Descriptor instead.
func (*ReplicaWasPromotedRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{84}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{86}
}
type ReplicaWasPromotedResponse struct {
@@ -4347,7 +4440,7 @@ type ReplicaWasPromotedResponse struct {
func (x *ReplicaWasPromotedResponse) Reset() {
*x = ReplicaWasPromotedResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[85]
+ mi := &file_tabletmanagerdata_proto_msgTypes[87]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4360,7 +4453,7 @@ func (x *ReplicaWasPromotedResponse) String() string {
func (*ReplicaWasPromotedResponse) ProtoMessage() {}
func (x *ReplicaWasPromotedResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[85]
+ mi := &file_tabletmanagerdata_proto_msgTypes[87]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4373,7 +4466,7 @@ func (x *ReplicaWasPromotedResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReplicaWasPromotedResponse.ProtoReflect.Descriptor instead.
func (*ReplicaWasPromotedResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{85}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{87}
}
type ResetReplicationParametersRequest struct {
@@ -4385,7 +4478,7 @@ type ResetReplicationParametersRequest struct {
func (x *ResetReplicationParametersRequest) Reset() {
*x = ResetReplicationParametersRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[86]
+ mi := &file_tabletmanagerdata_proto_msgTypes[88]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4398,7 +4491,7 @@ func (x *ResetReplicationParametersRequest) String() string {
func (*ResetReplicationParametersRequest) ProtoMessage() {}
func (x *ResetReplicationParametersRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[86]
+ mi := &file_tabletmanagerdata_proto_msgTypes[88]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4411,7 +4504,7 @@ func (x *ResetReplicationParametersRequest) ProtoReflect() protoreflect.Message
// Deprecated: Use ResetReplicationParametersRequest.ProtoReflect.Descriptor instead.
func (*ResetReplicationParametersRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{86}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{88}
}
type ResetReplicationParametersResponse struct {
@@ -4423,7 +4516,7 @@ type ResetReplicationParametersResponse struct {
func (x *ResetReplicationParametersResponse) Reset() {
*x = ResetReplicationParametersResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[87]
+ mi := &file_tabletmanagerdata_proto_msgTypes[89]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4436,7 +4529,7 @@ func (x *ResetReplicationParametersResponse) String() string {
func (*ResetReplicationParametersResponse) ProtoMessage() {}
func (x *ResetReplicationParametersResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[87]
+ mi := &file_tabletmanagerdata_proto_msgTypes[89]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4449,7 +4542,7 @@ func (x *ResetReplicationParametersResponse) ProtoReflect() protoreflect.Message
// Deprecated: Use ResetReplicationParametersResponse.ProtoReflect.Descriptor instead.
func (*ResetReplicationParametersResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{87}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{89}
}
type FullStatusRequest struct {
@@ -4461,7 +4554,7 @@ type FullStatusRequest struct {
func (x *FullStatusRequest) Reset() {
*x = FullStatusRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[88]
+ mi := &file_tabletmanagerdata_proto_msgTypes[90]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4474,7 +4567,7 @@ func (x *FullStatusRequest) String() string {
func (*FullStatusRequest) ProtoMessage() {}
func (x *FullStatusRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[88]
+ mi := &file_tabletmanagerdata_proto_msgTypes[90]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4487,7 +4580,7 @@ func (x *FullStatusRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use FullStatusRequest.ProtoReflect.Descriptor instead.
func (*FullStatusRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{88}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{90}
}
type FullStatusResponse struct {
@@ -4501,7 +4594,7 @@ type FullStatusResponse struct {
func (x *FullStatusResponse) Reset() {
*x = FullStatusResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[89]
+ mi := &file_tabletmanagerdata_proto_msgTypes[91]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4514,7 +4607,7 @@ func (x *FullStatusResponse) String() string {
func (*FullStatusResponse) ProtoMessage() {}
func (x *FullStatusResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[89]
+ mi := &file_tabletmanagerdata_proto_msgTypes[91]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4527,7 +4620,7 @@ func (x *FullStatusResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use FullStatusResponse.ProtoReflect.Descriptor instead.
func (*FullStatusResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{89}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{91}
}
func (x *FullStatusResponse) GetStatus() *replicationdata.FullStatus {
@@ -4553,7 +4646,7 @@ type SetReplicationSourceRequest struct {
func (x *SetReplicationSourceRequest) Reset() {
*x = SetReplicationSourceRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[90]
+ mi := &file_tabletmanagerdata_proto_msgTypes[92]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4566,7 +4659,7 @@ func (x *SetReplicationSourceRequest) String() string {
func (*SetReplicationSourceRequest) ProtoMessage() {}
func (x *SetReplicationSourceRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[90]
+ mi := &file_tabletmanagerdata_proto_msgTypes[92]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4579,7 +4672,7 @@ func (x *SetReplicationSourceRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use SetReplicationSourceRequest.ProtoReflect.Descriptor instead.
func (*SetReplicationSourceRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{90}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{92}
}
func (x *SetReplicationSourceRequest) GetParent() *topodata.TabletAlias {
@@ -4633,7 +4726,7 @@ type SetReplicationSourceResponse struct {
func (x *SetReplicationSourceResponse) Reset() {
*x = SetReplicationSourceResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[91]
+ mi := &file_tabletmanagerdata_proto_msgTypes[93]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4646,7 +4739,7 @@ func (x *SetReplicationSourceResponse) String() string {
func (*SetReplicationSourceResponse) ProtoMessage() {}
func (x *SetReplicationSourceResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[91]
+ mi := &file_tabletmanagerdata_proto_msgTypes[93]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4659,7 +4752,7 @@ func (x *SetReplicationSourceResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use SetReplicationSourceResponse.ProtoReflect.Descriptor instead.
func (*SetReplicationSourceResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{91}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{93}
}
type ReplicaWasRestartedRequest struct {
@@ -4674,7 +4767,7 @@ type ReplicaWasRestartedRequest struct {
func (x *ReplicaWasRestartedRequest) Reset() {
*x = ReplicaWasRestartedRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[92]
+ mi := &file_tabletmanagerdata_proto_msgTypes[94]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4687,7 +4780,7 @@ func (x *ReplicaWasRestartedRequest) String() string {
func (*ReplicaWasRestartedRequest) ProtoMessage() {}
func (x *ReplicaWasRestartedRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[92]
+ mi := &file_tabletmanagerdata_proto_msgTypes[94]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4700,7 +4793,7 @@ func (x *ReplicaWasRestartedRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReplicaWasRestartedRequest.ProtoReflect.Descriptor instead.
func (*ReplicaWasRestartedRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{92}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{94}
}
func (x *ReplicaWasRestartedRequest) GetParent() *topodata.TabletAlias {
@@ -4719,7 +4812,7 @@ type ReplicaWasRestartedResponse struct {
func (x *ReplicaWasRestartedResponse) Reset() {
*x = ReplicaWasRestartedResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[93]
+ mi := &file_tabletmanagerdata_proto_msgTypes[95]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4732,7 +4825,7 @@ func (x *ReplicaWasRestartedResponse) String() string {
func (*ReplicaWasRestartedResponse) ProtoMessage() {}
func (x *ReplicaWasRestartedResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[93]
+ mi := &file_tabletmanagerdata_proto_msgTypes[95]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4745,7 +4838,7 @@ func (x *ReplicaWasRestartedResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReplicaWasRestartedResponse.ProtoReflect.Descriptor instead.
func (*ReplicaWasRestartedResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{93}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{95}
}
type StopReplicationAndGetStatusRequest struct {
@@ -4759,7 +4852,7 @@ type StopReplicationAndGetStatusRequest struct {
func (x *StopReplicationAndGetStatusRequest) Reset() {
*x = StopReplicationAndGetStatusRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[94]
+ mi := &file_tabletmanagerdata_proto_msgTypes[96]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4772,7 +4865,7 @@ func (x *StopReplicationAndGetStatusRequest) String() string {
func (*StopReplicationAndGetStatusRequest) ProtoMessage() {}
func (x *StopReplicationAndGetStatusRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[94]
+ mi := &file_tabletmanagerdata_proto_msgTypes[96]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4785,7 +4878,7 @@ func (x *StopReplicationAndGetStatusRequest) ProtoReflect() protoreflect.Message
// Deprecated: Use StopReplicationAndGetStatusRequest.ProtoReflect.Descriptor instead.
func (*StopReplicationAndGetStatusRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{94}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{96}
}
func (x *StopReplicationAndGetStatusRequest) GetStopReplicationMode() replicationdata.StopReplicationMode {
@@ -4807,7 +4900,7 @@ type StopReplicationAndGetStatusResponse struct {
func (x *StopReplicationAndGetStatusResponse) Reset() {
*x = StopReplicationAndGetStatusResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[95]
+ mi := &file_tabletmanagerdata_proto_msgTypes[97]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4820,7 +4913,7 @@ func (x *StopReplicationAndGetStatusResponse) String() string {
func (*StopReplicationAndGetStatusResponse) ProtoMessage() {}
func (x *StopReplicationAndGetStatusResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[95]
+ mi := &file_tabletmanagerdata_proto_msgTypes[97]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4833,7 +4926,7 @@ func (x *StopReplicationAndGetStatusResponse) ProtoReflect() protoreflect.Messag
// Deprecated: Use StopReplicationAndGetStatusResponse.ProtoReflect.Descriptor instead.
func (*StopReplicationAndGetStatusResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{95}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{97}
}
func (x *StopReplicationAndGetStatusResponse) GetStatus() *replicationdata.StopReplicationStatus {
@@ -4854,7 +4947,7 @@ type PromoteReplicaRequest struct {
func (x *PromoteReplicaRequest) Reset() {
*x = PromoteReplicaRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[96]
+ mi := &file_tabletmanagerdata_proto_msgTypes[98]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4867,7 +4960,7 @@ func (x *PromoteReplicaRequest) String() string {
func (*PromoteReplicaRequest) ProtoMessage() {}
func (x *PromoteReplicaRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[96]
+ mi := &file_tabletmanagerdata_proto_msgTypes[98]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4880,7 +4973,7 @@ func (x *PromoteReplicaRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use PromoteReplicaRequest.ProtoReflect.Descriptor instead.
func (*PromoteReplicaRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{96}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{98}
}
func (x *PromoteReplicaRequest) GetSemiSync() bool {
@@ -4901,7 +4994,7 @@ type PromoteReplicaResponse struct {
func (x *PromoteReplicaResponse) Reset() {
*x = PromoteReplicaResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[97]
+ mi := &file_tabletmanagerdata_proto_msgTypes[99]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4914,7 +5007,7 @@ func (x *PromoteReplicaResponse) String() string {
func (*PromoteReplicaResponse) ProtoMessage() {}
func (x *PromoteReplicaResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[97]
+ mi := &file_tabletmanagerdata_proto_msgTypes[99]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4927,7 +5020,7 @@ func (x *PromoteReplicaResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use PromoteReplicaResponse.ProtoReflect.Descriptor instead.
func (*PromoteReplicaResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{97}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{99}
}
func (x *PromoteReplicaResponse) GetPosition() string {
@@ -4955,7 +5048,7 @@ type BackupRequest struct {
func (x *BackupRequest) Reset() {
*x = BackupRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[98]
+ mi := &file_tabletmanagerdata_proto_msgTypes[100]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4968,7 +5061,7 @@ func (x *BackupRequest) String() string {
func (*BackupRequest) ProtoMessage() {}
func (x *BackupRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[98]
+ mi := &file_tabletmanagerdata_proto_msgTypes[100]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4981,7 +5074,7 @@ func (x *BackupRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use BackupRequest.ProtoReflect.Descriptor instead.
func (*BackupRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{98}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{100}
}
func (x *BackupRequest) GetConcurrency() int32 {
@@ -5023,7 +5116,7 @@ type BackupResponse struct {
func (x *BackupResponse) Reset() {
*x = BackupResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[99]
+ mi := &file_tabletmanagerdata_proto_msgTypes[101]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5036,7 +5129,7 @@ func (x *BackupResponse) String() string {
func (*BackupResponse) ProtoMessage() {}
func (x *BackupResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[99]
+ mi := &file_tabletmanagerdata_proto_msgTypes[101]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5049,7 +5142,7 @@ func (x *BackupResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use BackupResponse.ProtoReflect.Descriptor instead.
func (*BackupResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{99}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{101}
}
func (x *BackupResponse) GetEvent() *logutil.Event {
@@ -5079,7 +5172,7 @@ type RestoreFromBackupRequest struct {
func (x *RestoreFromBackupRequest) Reset() {
*x = RestoreFromBackupRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[100]
+ mi := &file_tabletmanagerdata_proto_msgTypes[102]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5092,7 +5185,7 @@ func (x *RestoreFromBackupRequest) String() string {
func (*RestoreFromBackupRequest) ProtoMessage() {}
func (x *RestoreFromBackupRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[100]
+ mi := &file_tabletmanagerdata_proto_msgTypes[102]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5105,7 +5198,7 @@ func (x *RestoreFromBackupRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use RestoreFromBackupRequest.ProtoReflect.Descriptor instead.
func (*RestoreFromBackupRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{100}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{102}
}
func (x *RestoreFromBackupRequest) GetBackupTime() *vttime.Time {
@@ -5147,7 +5240,7 @@ type RestoreFromBackupResponse struct {
func (x *RestoreFromBackupResponse) Reset() {
*x = RestoreFromBackupResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[101]
+ mi := &file_tabletmanagerdata_proto_msgTypes[103]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5160,7 +5253,7 @@ func (x *RestoreFromBackupResponse) String() string {
func (*RestoreFromBackupResponse) ProtoMessage() {}
func (x *RestoreFromBackupResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[101]
+ mi := &file_tabletmanagerdata_proto_msgTypes[103]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5173,7 +5266,7 @@ func (x *RestoreFromBackupResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use RestoreFromBackupResponse.ProtoReflect.Descriptor instead.
func (*RestoreFromBackupResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{101}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{103}
}
func (x *RestoreFromBackupResponse) GetEvent() *logutil.Event {
@@ -5210,7 +5303,7 @@ type CreateVReplicationWorkflowRequest struct {
func (x *CreateVReplicationWorkflowRequest) Reset() {
*x = CreateVReplicationWorkflowRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[102]
+ mi := &file_tabletmanagerdata_proto_msgTypes[104]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5223,7 +5316,7 @@ func (x *CreateVReplicationWorkflowRequest) String() string {
func (*CreateVReplicationWorkflowRequest) ProtoMessage() {}
func (x *CreateVReplicationWorkflowRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[102]
+ mi := &file_tabletmanagerdata_proto_msgTypes[104]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5236,7 +5329,7 @@ func (x *CreateVReplicationWorkflowRequest) ProtoReflect() protoreflect.Message
// Deprecated: Use CreateVReplicationWorkflowRequest.ProtoReflect.Descriptor instead.
func (*CreateVReplicationWorkflowRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{102}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{104}
}
func (x *CreateVReplicationWorkflowRequest) GetWorkflow() string {
@@ -5327,7 +5420,7 @@ type CreateVReplicationWorkflowResponse struct {
func (x *CreateVReplicationWorkflowResponse) Reset() {
*x = CreateVReplicationWorkflowResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[103]
+ mi := &file_tabletmanagerdata_proto_msgTypes[105]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5340,7 +5433,7 @@ func (x *CreateVReplicationWorkflowResponse) String() string {
func (*CreateVReplicationWorkflowResponse) ProtoMessage() {}
func (x *CreateVReplicationWorkflowResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[103]
+ mi := &file_tabletmanagerdata_proto_msgTypes[105]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5353,7 +5446,7 @@ func (x *CreateVReplicationWorkflowResponse) ProtoReflect() protoreflect.Message
// Deprecated: Use CreateVReplicationWorkflowResponse.ProtoReflect.Descriptor instead.
func (*CreateVReplicationWorkflowResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{103}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{105}
}
func (x *CreateVReplicationWorkflowResponse) GetResult() *query.QueryResult {
@@ -5374,7 +5467,7 @@ type DeleteVReplicationWorkflowRequest struct {
func (x *DeleteVReplicationWorkflowRequest) Reset() {
*x = DeleteVReplicationWorkflowRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[104]
+ mi := &file_tabletmanagerdata_proto_msgTypes[106]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5387,7 +5480,7 @@ func (x *DeleteVReplicationWorkflowRequest) String() string {
func (*DeleteVReplicationWorkflowRequest) ProtoMessage() {}
func (x *DeleteVReplicationWorkflowRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[104]
+ mi := &file_tabletmanagerdata_proto_msgTypes[106]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5400,7 +5493,7 @@ func (x *DeleteVReplicationWorkflowRequest) ProtoReflect() protoreflect.Message
// Deprecated: Use DeleteVReplicationWorkflowRequest.ProtoReflect.Descriptor instead.
func (*DeleteVReplicationWorkflowRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{104}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{106}
}
func (x *DeleteVReplicationWorkflowRequest) GetWorkflow() string {
@@ -5421,7 +5514,7 @@ type DeleteVReplicationWorkflowResponse struct {
func (x *DeleteVReplicationWorkflowResponse) Reset() {
*x = DeleteVReplicationWorkflowResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[105]
+ mi := &file_tabletmanagerdata_proto_msgTypes[107]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5434,7 +5527,7 @@ func (x *DeleteVReplicationWorkflowResponse) String() string {
func (*DeleteVReplicationWorkflowResponse) ProtoMessage() {}
func (x *DeleteVReplicationWorkflowResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[105]
+ mi := &file_tabletmanagerdata_proto_msgTypes[107]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5447,7 +5540,7 @@ func (x *DeleteVReplicationWorkflowResponse) ProtoReflect() protoreflect.Message
// Deprecated: Use DeleteVReplicationWorkflowResponse.ProtoReflect.Descriptor instead.
func (*DeleteVReplicationWorkflowResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{105}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{107}
}
func (x *DeleteVReplicationWorkflowResponse) GetResult() *query.QueryResult {
@@ -5466,7 +5559,7 @@ type HasVReplicationWorkflowsRequest struct {
func (x *HasVReplicationWorkflowsRequest) Reset() {
*x = HasVReplicationWorkflowsRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[106]
+ mi := &file_tabletmanagerdata_proto_msgTypes[108]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5479,7 +5572,7 @@ func (x *HasVReplicationWorkflowsRequest) String() string {
func (*HasVReplicationWorkflowsRequest) ProtoMessage() {}
func (x *HasVReplicationWorkflowsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[106]
+ mi := &file_tabletmanagerdata_proto_msgTypes[108]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5492,7 +5585,7 @@ func (x *HasVReplicationWorkflowsRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use HasVReplicationWorkflowsRequest.ProtoReflect.Descriptor instead.
func (*HasVReplicationWorkflowsRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{106}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{108}
}
type HasVReplicationWorkflowsResponse struct {
@@ -5506,7 +5599,7 @@ type HasVReplicationWorkflowsResponse struct {
func (x *HasVReplicationWorkflowsResponse) Reset() {
*x = HasVReplicationWorkflowsResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[107]
+ mi := &file_tabletmanagerdata_proto_msgTypes[109]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5519,7 +5612,7 @@ func (x *HasVReplicationWorkflowsResponse) String() string {
func (*HasVReplicationWorkflowsResponse) ProtoMessage() {}
func (x *HasVReplicationWorkflowsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[107]
+ mi := &file_tabletmanagerdata_proto_msgTypes[109]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5532,7 +5625,7 @@ func (x *HasVReplicationWorkflowsResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use HasVReplicationWorkflowsResponse.ProtoReflect.Descriptor instead.
func (*HasVReplicationWorkflowsResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{107}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{109}
}
func (x *HasVReplicationWorkflowsResponse) GetHas() bool {
@@ -5558,7 +5651,7 @@ type ReadVReplicationWorkflowsRequest struct {
func (x *ReadVReplicationWorkflowsRequest) Reset() {
*x = ReadVReplicationWorkflowsRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[108]
+ mi := &file_tabletmanagerdata_proto_msgTypes[110]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5571,7 +5664,7 @@ func (x *ReadVReplicationWorkflowsRequest) String() string {
func (*ReadVReplicationWorkflowsRequest) ProtoMessage() {}
func (x *ReadVReplicationWorkflowsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[108]
+ mi := &file_tabletmanagerdata_proto_msgTypes[110]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5584,7 +5677,7 @@ func (x *ReadVReplicationWorkflowsRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReadVReplicationWorkflowsRequest.ProtoReflect.Descriptor instead.
func (*ReadVReplicationWorkflowsRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{108}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{110}
}
func (x *ReadVReplicationWorkflowsRequest) GetIncludeIds() []int32 {
@@ -5640,7 +5733,7 @@ type ReadVReplicationWorkflowsResponse struct {
func (x *ReadVReplicationWorkflowsResponse) Reset() {
*x = ReadVReplicationWorkflowsResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[109]
+ mi := &file_tabletmanagerdata_proto_msgTypes[111]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5653,7 +5746,7 @@ func (x *ReadVReplicationWorkflowsResponse) String() string {
func (*ReadVReplicationWorkflowsResponse) ProtoMessage() {}
func (x *ReadVReplicationWorkflowsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[109]
+ mi := &file_tabletmanagerdata_proto_msgTypes[111]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5666,7 +5759,7 @@ func (x *ReadVReplicationWorkflowsResponse) ProtoReflect() protoreflect.Message
// Deprecated: Use ReadVReplicationWorkflowsResponse.ProtoReflect.Descriptor instead.
func (*ReadVReplicationWorkflowsResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{109}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{111}
}
func (x *ReadVReplicationWorkflowsResponse) GetWorkflows() []*ReadVReplicationWorkflowResponse {
@@ -5687,7 +5780,7 @@ type ReadVReplicationWorkflowRequest struct {
func (x *ReadVReplicationWorkflowRequest) Reset() {
*x = ReadVReplicationWorkflowRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[110]
+ mi := &file_tabletmanagerdata_proto_msgTypes[112]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5700,7 +5793,7 @@ func (x *ReadVReplicationWorkflowRequest) String() string {
func (*ReadVReplicationWorkflowRequest) ProtoMessage() {}
func (x *ReadVReplicationWorkflowRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[110]
+ mi := &file_tabletmanagerdata_proto_msgTypes[112]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5713,7 +5806,7 @@ func (x *ReadVReplicationWorkflowRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReadVReplicationWorkflowRequest.ProtoReflect.Descriptor instead.
func (*ReadVReplicationWorkflowRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{110}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{112}
}
func (x *ReadVReplicationWorkflowRequest) GetWorkflow() string {
@@ -5739,12 +5832,13 @@ type ReadVReplicationWorkflowResponse struct {
DeferSecondaryKeys bool `protobuf:"varint,10,opt,name=defer_secondary_keys,json=deferSecondaryKeys,proto3" json:"defer_secondary_keys,omitempty"`
Streams []*ReadVReplicationWorkflowResponse_Stream `protobuf:"bytes,11,rep,name=streams,proto3" json:"streams,omitempty"`
Options string `protobuf:"bytes,12,opt,name=options,proto3" json:"options,omitempty"`
+ ConfigOverrides map[string]string `protobuf:"bytes,13,rep,name=config_overrides,json=configOverrides,proto3" json:"config_overrides,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
}
func (x *ReadVReplicationWorkflowResponse) Reset() {
*x = ReadVReplicationWorkflowResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[111]
+ mi := &file_tabletmanagerdata_proto_msgTypes[113]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5757,7 +5851,7 @@ func (x *ReadVReplicationWorkflowResponse) String() string {
func (*ReadVReplicationWorkflowResponse) ProtoMessage() {}
func (x *ReadVReplicationWorkflowResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[111]
+ mi := &file_tabletmanagerdata_proto_msgTypes[113]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5770,7 +5864,7 @@ func (x *ReadVReplicationWorkflowResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReadVReplicationWorkflowResponse.ProtoReflect.Descriptor instead.
func (*ReadVReplicationWorkflowResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{111}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{113}
}
func (x *ReadVReplicationWorkflowResponse) GetWorkflow() string {
@@ -5850,6 +5944,13 @@ func (x *ReadVReplicationWorkflowResponse) GetOptions() string {
return ""
}
+func (x *ReadVReplicationWorkflowResponse) GetConfigOverrides() map[string]string {
+ if x != nil {
+ return x.ConfigOverrides
+ }
+ return nil
+}
+
type VDiffRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -5866,7 +5967,7 @@ type VDiffRequest struct {
func (x *VDiffRequest) Reset() {
*x = VDiffRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[112]
+ mi := &file_tabletmanagerdata_proto_msgTypes[114]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5879,7 +5980,7 @@ func (x *VDiffRequest) String() string {
func (*VDiffRequest) ProtoMessage() {}
func (x *VDiffRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[112]
+ mi := &file_tabletmanagerdata_proto_msgTypes[114]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5892,7 +5993,7 @@ func (x *VDiffRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use VDiffRequest.ProtoReflect.Descriptor instead.
func (*VDiffRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{112}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{114}
}
func (x *VDiffRequest) GetKeyspace() string {
@@ -5950,7 +6051,7 @@ type VDiffResponse struct {
func (x *VDiffResponse) Reset() {
*x = VDiffResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[113]
+ mi := &file_tabletmanagerdata_proto_msgTypes[115]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -5963,7 +6064,7 @@ func (x *VDiffResponse) String() string {
func (*VDiffResponse) ProtoMessage() {}
func (x *VDiffResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[113]
+ mi := &file_tabletmanagerdata_proto_msgTypes[115]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -5976,7 +6077,7 @@ func (x *VDiffResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use VDiffResponse.ProtoReflect.Descriptor instead.
func (*VDiffResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{113}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{115}
}
func (x *VDiffResponse) GetId() int64 {
@@ -6014,7 +6115,7 @@ type VDiffPickerOptions struct {
func (x *VDiffPickerOptions) Reset() {
*x = VDiffPickerOptions{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[114]
+ mi := &file_tabletmanagerdata_proto_msgTypes[116]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6027,7 +6128,7 @@ func (x *VDiffPickerOptions) String() string {
func (*VDiffPickerOptions) ProtoMessage() {}
func (x *VDiffPickerOptions) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[114]
+ mi := &file_tabletmanagerdata_proto_msgTypes[116]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6040,7 +6141,7 @@ func (x *VDiffPickerOptions) ProtoReflect() protoreflect.Message {
// Deprecated: Use VDiffPickerOptions.ProtoReflect.Descriptor instead.
func (*VDiffPickerOptions) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{114}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{116}
}
func (x *VDiffPickerOptions) GetTabletTypes() string {
@@ -6080,7 +6181,7 @@ type VDiffReportOptions struct {
func (x *VDiffReportOptions) Reset() {
*x = VDiffReportOptions{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[115]
+ mi := &file_tabletmanagerdata_proto_msgTypes[117]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6093,7 +6194,7 @@ func (x *VDiffReportOptions) String() string {
func (*VDiffReportOptions) ProtoMessage() {}
func (x *VDiffReportOptions) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[115]
+ mi := &file_tabletmanagerdata_proto_msgTypes[117]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6106,7 +6207,7 @@ func (x *VDiffReportOptions) ProtoReflect() protoreflect.Message {
// Deprecated: Use VDiffReportOptions.ProtoReflect.Descriptor instead.
func (*VDiffReportOptions) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{115}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{117}
}
func (x *VDiffReportOptions) GetOnlyPks() bool {
@@ -6164,7 +6265,7 @@ type VDiffCoreOptions struct {
func (x *VDiffCoreOptions) Reset() {
*x = VDiffCoreOptions{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[116]
+ mi := &file_tabletmanagerdata_proto_msgTypes[118]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6177,7 +6278,7 @@ func (x *VDiffCoreOptions) String() string {
func (*VDiffCoreOptions) ProtoMessage() {}
func (x *VDiffCoreOptions) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[116]
+ mi := &file_tabletmanagerdata_proto_msgTypes[118]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6190,7 +6291,7 @@ func (x *VDiffCoreOptions) ProtoReflect() protoreflect.Message {
// Deprecated: Use VDiffCoreOptions.ProtoReflect.Descriptor instead.
func (*VDiffCoreOptions) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{116}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{118}
}
func (x *VDiffCoreOptions) GetTables() string {
@@ -6276,7 +6377,7 @@ type VDiffOptions struct {
func (x *VDiffOptions) Reset() {
*x = VDiffOptions{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[117]
+ mi := &file_tabletmanagerdata_proto_msgTypes[119]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6289,7 +6390,7 @@ func (x *VDiffOptions) String() string {
func (*VDiffOptions) ProtoMessage() {}
func (x *VDiffOptions) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[117]
+ mi := &file_tabletmanagerdata_proto_msgTypes[119]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6302,7 +6403,7 @@ func (x *VDiffOptions) ProtoReflect() protoreflect.Message {
// Deprecated: Use VDiffOptions.ProtoReflect.Descriptor instead.
func (*VDiffOptions) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{117}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{119}
}
func (x *VDiffOptions) GetPickerOptions() *VDiffPickerOptions {
@@ -6337,18 +6438,19 @@ type UpdateVReplicationWorkflowRequest struct {
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- Workflow string `protobuf:"bytes,1,opt,name=workflow,proto3" json:"workflow,omitempty"`
- Cells []string `protobuf:"bytes,2,rep,name=cells,proto3" json:"cells,omitempty"`
- TabletTypes []topodata.TabletType `protobuf:"varint,3,rep,packed,name=tablet_types,json=tabletTypes,proto3,enum=topodata.TabletType" json:"tablet_types,omitempty"`
- TabletSelectionPreference TabletSelectionPreference `protobuf:"varint,4,opt,name=tablet_selection_preference,json=tabletSelectionPreference,proto3,enum=tabletmanagerdata.TabletSelectionPreference" json:"tablet_selection_preference,omitempty"`
- OnDdl binlogdata.OnDDLAction `protobuf:"varint,5,opt,name=on_ddl,json=onDdl,proto3,enum=binlogdata.OnDDLAction" json:"on_ddl,omitempty"`
- State binlogdata.VReplicationWorkflowState `protobuf:"varint,6,opt,name=state,proto3,enum=binlogdata.VReplicationWorkflowState" json:"state,omitempty"`
+ Workflow string `protobuf:"bytes,1,opt,name=workflow,proto3" json:"workflow,omitempty"`
+ Cells []string `protobuf:"bytes,2,rep,name=cells,proto3" json:"cells,omitempty"`
+ TabletTypes []topodata.TabletType `protobuf:"varint,3,rep,packed,name=tablet_types,json=tabletTypes,proto3,enum=topodata.TabletType" json:"tablet_types,omitempty"`
+ TabletSelectionPreference *TabletSelectionPreference `protobuf:"varint,4,opt,name=tablet_selection_preference,json=tabletSelectionPreference,proto3,enum=tabletmanagerdata.TabletSelectionPreference,oneof" json:"tablet_selection_preference,omitempty"`
+ OnDdl *binlogdata.OnDDLAction `protobuf:"varint,5,opt,name=on_ddl,json=onDdl,proto3,enum=binlogdata.OnDDLAction,oneof" json:"on_ddl,omitempty"`
+ State *binlogdata.VReplicationWorkflowState `protobuf:"varint,6,opt,name=state,proto3,enum=binlogdata.VReplicationWorkflowState,oneof" json:"state,omitempty"`
+ ConfigOverrides map[string]string `protobuf:"bytes,8,rep,name=config_overrides,json=configOverrides,proto3" json:"config_overrides,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
}
func (x *UpdateVReplicationWorkflowRequest) Reset() {
*x = UpdateVReplicationWorkflowRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[118]
+ mi := &file_tabletmanagerdata_proto_msgTypes[120]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6361,7 +6463,7 @@ func (x *UpdateVReplicationWorkflowRequest) String() string {
func (*UpdateVReplicationWorkflowRequest) ProtoMessage() {}
func (x *UpdateVReplicationWorkflowRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[118]
+ mi := &file_tabletmanagerdata_proto_msgTypes[120]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6374,7 +6476,7 @@ func (x *UpdateVReplicationWorkflowRequest) ProtoReflect() protoreflect.Message
// Deprecated: Use UpdateVReplicationWorkflowRequest.ProtoReflect.Descriptor instead.
func (*UpdateVReplicationWorkflowRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{118}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{120}
}
func (x *UpdateVReplicationWorkflowRequest) GetWorkflow() string {
@@ -6399,26 +6501,33 @@ func (x *UpdateVReplicationWorkflowRequest) GetTabletTypes() []topodata.TabletTy
}
func (x *UpdateVReplicationWorkflowRequest) GetTabletSelectionPreference() TabletSelectionPreference {
- if x != nil {
- return x.TabletSelectionPreference
+ if x != nil && x.TabletSelectionPreference != nil {
+ return *x.TabletSelectionPreference
}
return TabletSelectionPreference_ANY
}
func (x *UpdateVReplicationWorkflowRequest) GetOnDdl() binlogdata.OnDDLAction {
- if x != nil {
- return x.OnDdl
+ if x != nil && x.OnDdl != nil {
+ return *x.OnDdl
}
return binlogdata.OnDDLAction(0)
}
func (x *UpdateVReplicationWorkflowRequest) GetState() binlogdata.VReplicationWorkflowState {
- if x != nil {
- return x.State
+ if x != nil && x.State != nil {
+ return *x.State
}
return binlogdata.VReplicationWorkflowState(0)
}
+func (x *UpdateVReplicationWorkflowRequest) GetConfigOverrides() map[string]string {
+ if x != nil {
+ return x.ConfigOverrides
+ }
+ return nil
+}
+
type UpdateVReplicationWorkflowResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -6430,7 +6539,7 @@ type UpdateVReplicationWorkflowResponse struct {
func (x *UpdateVReplicationWorkflowResponse) Reset() {
*x = UpdateVReplicationWorkflowResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[119]
+ mi := &file_tabletmanagerdata_proto_msgTypes[121]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6443,7 +6552,7 @@ func (x *UpdateVReplicationWorkflowResponse) String() string {
func (*UpdateVReplicationWorkflowResponse) ProtoMessage() {}
func (x *UpdateVReplicationWorkflowResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[119]
+ mi := &file_tabletmanagerdata_proto_msgTypes[121]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6456,7 +6565,7 @@ func (x *UpdateVReplicationWorkflowResponse) ProtoReflect() protoreflect.Message
// Deprecated: Use UpdateVReplicationWorkflowResponse.ProtoReflect.Descriptor instead.
func (*UpdateVReplicationWorkflowResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{119}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{121}
}
func (x *UpdateVReplicationWorkflowResponse) GetResult() *query.QueryResult {
@@ -6477,18 +6586,18 @@ type UpdateVReplicationWorkflowsRequest struct {
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- AllWorkflows bool `protobuf:"varint,1,opt,name=all_workflows,json=allWorkflows,proto3" json:"all_workflows,omitempty"`
- IncludeWorkflows []string `protobuf:"bytes,2,rep,name=include_workflows,json=includeWorkflows,proto3" json:"include_workflows,omitempty"`
- ExcludeWorkflows []string `protobuf:"bytes,3,rep,name=exclude_workflows,json=excludeWorkflows,proto3" json:"exclude_workflows,omitempty"`
- State binlogdata.VReplicationWorkflowState `protobuf:"varint,4,opt,name=state,proto3,enum=binlogdata.VReplicationWorkflowState" json:"state,omitempty"`
- Message string `protobuf:"bytes,5,opt,name=message,proto3" json:"message,omitempty"`
- StopPosition string `protobuf:"bytes,6,opt,name=stop_position,json=stopPosition,proto3" json:"stop_position,omitempty"`
+ AllWorkflows bool `protobuf:"varint,1,opt,name=all_workflows,json=allWorkflows,proto3" json:"all_workflows,omitempty"`
+ IncludeWorkflows []string `protobuf:"bytes,2,rep,name=include_workflows,json=includeWorkflows,proto3" json:"include_workflows,omitempty"`
+ ExcludeWorkflows []string `protobuf:"bytes,3,rep,name=exclude_workflows,json=excludeWorkflows,proto3" json:"exclude_workflows,omitempty"`
+ State *binlogdata.VReplicationWorkflowState `protobuf:"varint,4,opt,name=state,proto3,enum=binlogdata.VReplicationWorkflowState,oneof" json:"state,omitempty"`
+ Message *string `protobuf:"bytes,5,opt,name=message,proto3,oneof" json:"message,omitempty"`
+ StopPosition *string `protobuf:"bytes,6,opt,name=stop_position,json=stopPosition,proto3,oneof" json:"stop_position,omitempty"`
}
func (x *UpdateVReplicationWorkflowsRequest) Reset() {
*x = UpdateVReplicationWorkflowsRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[120]
+ mi := &file_tabletmanagerdata_proto_msgTypes[122]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6501,7 +6610,7 @@ func (x *UpdateVReplicationWorkflowsRequest) String() string {
func (*UpdateVReplicationWorkflowsRequest) ProtoMessage() {}
func (x *UpdateVReplicationWorkflowsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[120]
+ mi := &file_tabletmanagerdata_proto_msgTypes[122]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6514,7 +6623,7 @@ func (x *UpdateVReplicationWorkflowsRequest) ProtoReflect() protoreflect.Message
// Deprecated: Use UpdateVReplicationWorkflowsRequest.ProtoReflect.Descriptor instead.
func (*UpdateVReplicationWorkflowsRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{120}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{122}
}
func (x *UpdateVReplicationWorkflowsRequest) GetAllWorkflows() bool {
@@ -6539,22 +6648,22 @@ func (x *UpdateVReplicationWorkflowsRequest) GetExcludeWorkflows() []string {
}
func (x *UpdateVReplicationWorkflowsRequest) GetState() binlogdata.VReplicationWorkflowState {
- if x != nil {
- return x.State
+ if x != nil && x.State != nil {
+ return *x.State
}
return binlogdata.VReplicationWorkflowState(0)
}
func (x *UpdateVReplicationWorkflowsRequest) GetMessage() string {
- if x != nil {
- return x.Message
+ if x != nil && x.Message != nil {
+ return *x.Message
}
return ""
}
func (x *UpdateVReplicationWorkflowsRequest) GetStopPosition() string {
- if x != nil {
- return x.StopPosition
+ if x != nil && x.StopPosition != nil {
+ return *x.StopPosition
}
return ""
}
@@ -6570,7 +6679,7 @@ type UpdateVReplicationWorkflowsResponse struct {
func (x *UpdateVReplicationWorkflowsResponse) Reset() {
*x = UpdateVReplicationWorkflowsResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[121]
+ mi := &file_tabletmanagerdata_proto_msgTypes[123]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6583,7 +6692,7 @@ func (x *UpdateVReplicationWorkflowsResponse) String() string {
func (*UpdateVReplicationWorkflowsResponse) ProtoMessage() {}
func (x *UpdateVReplicationWorkflowsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[121]
+ mi := &file_tabletmanagerdata_proto_msgTypes[123]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6596,7 +6705,7 @@ func (x *UpdateVReplicationWorkflowsResponse) ProtoReflect() protoreflect.Messag
// Deprecated: Use UpdateVReplicationWorkflowsResponse.ProtoReflect.Descriptor instead.
func (*UpdateVReplicationWorkflowsResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{121}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{123}
}
func (x *UpdateVReplicationWorkflowsResponse) GetResult() *query.QueryResult {
@@ -6617,7 +6726,7 @@ type ResetSequencesRequest struct {
func (x *ResetSequencesRequest) Reset() {
*x = ResetSequencesRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[122]
+ mi := &file_tabletmanagerdata_proto_msgTypes[124]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6630,7 +6739,7 @@ func (x *ResetSequencesRequest) String() string {
func (*ResetSequencesRequest) ProtoMessage() {}
func (x *ResetSequencesRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[122]
+ mi := &file_tabletmanagerdata_proto_msgTypes[124]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6643,7 +6752,7 @@ func (x *ResetSequencesRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ResetSequencesRequest.ProtoReflect.Descriptor instead.
func (*ResetSequencesRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{122}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{124}
}
func (x *ResetSequencesRequest) GetTables() []string {
@@ -6662,7 +6771,7 @@ type ResetSequencesResponse struct {
func (x *ResetSequencesResponse) Reset() {
*x = ResetSequencesResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[123]
+ mi := &file_tabletmanagerdata_proto_msgTypes[125]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6675,7 +6784,7 @@ func (x *ResetSequencesResponse) String() string {
func (*ResetSequencesResponse) ProtoMessage() {}
func (x *ResetSequencesResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[123]
+ mi := &file_tabletmanagerdata_proto_msgTypes[125]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6688,7 +6797,7 @@ func (x *ResetSequencesResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ResetSequencesResponse.ProtoReflect.Descriptor instead.
func (*ResetSequencesResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{123}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{125}
}
type CheckThrottlerRequest struct {
@@ -6710,7 +6819,7 @@ type CheckThrottlerRequest struct {
func (x *CheckThrottlerRequest) Reset() {
*x = CheckThrottlerRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[124]
+ mi := &file_tabletmanagerdata_proto_msgTypes[126]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6723,7 +6832,7 @@ func (x *CheckThrottlerRequest) String() string {
func (*CheckThrottlerRequest) ProtoMessage() {}
func (x *CheckThrottlerRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[124]
+ mi := &file_tabletmanagerdata_proto_msgTypes[126]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6736,7 +6845,7 @@ func (x *CheckThrottlerRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use CheckThrottlerRequest.ProtoReflect.Descriptor instead.
func (*CheckThrottlerRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{124}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{126}
}
func (x *CheckThrottlerRequest) GetAppName() string {
@@ -6806,7 +6915,7 @@ type CheckThrottlerResponse struct {
func (x *CheckThrottlerResponse) Reset() {
*x = CheckThrottlerResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[125]
+ mi := &file_tabletmanagerdata_proto_msgTypes[127]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6819,7 +6928,7 @@ func (x *CheckThrottlerResponse) String() string {
func (*CheckThrottlerResponse) ProtoMessage() {}
func (x *CheckThrottlerResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[125]
+ mi := &file_tabletmanagerdata_proto_msgTypes[127]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6832,7 +6941,7 @@ func (x *CheckThrottlerResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use CheckThrottlerResponse.ProtoReflect.Descriptor instead.
func (*CheckThrottlerResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{125}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{127}
}
func (x *CheckThrottlerResponse) GetStatusCode() int32 {
@@ -6914,7 +7023,7 @@ type GetThrottlerStatusRequest struct {
func (x *GetThrottlerStatusRequest) Reset() {
*x = GetThrottlerStatusRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[126]
+ mi := &file_tabletmanagerdata_proto_msgTypes[128]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -6927,7 +7036,7 @@ func (x *GetThrottlerStatusRequest) String() string {
func (*GetThrottlerStatusRequest) ProtoMessage() {}
func (x *GetThrottlerStatusRequest) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[126]
+ mi := &file_tabletmanagerdata_proto_msgTypes[128]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -6940,7 +7049,7 @@ func (x *GetThrottlerStatusRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetThrottlerStatusRequest.ProtoReflect.Descriptor instead.
func (*GetThrottlerStatusRequest) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{126}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{128}
}
type GetThrottlerStatusResponse struct {
@@ -6989,7 +7098,7 @@ type GetThrottlerStatusResponse struct {
func (x *GetThrottlerStatusResponse) Reset() {
*x = GetThrottlerStatusResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[127]
+ mi := &file_tabletmanagerdata_proto_msgTypes[129]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7002,7 +7111,7 @@ func (x *GetThrottlerStatusResponse) String() string {
func (*GetThrottlerStatusResponse) ProtoMessage() {}
func (x *GetThrottlerStatusResponse) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[127]
+ mi := &file_tabletmanagerdata_proto_msgTypes[129]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7015,7 +7124,7 @@ func (x *GetThrottlerStatusResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetThrottlerStatusResponse.ProtoReflect.Descriptor instead.
func (*GetThrottlerStatusResponse) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{127}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{129}
}
func (x *GetThrottlerStatusResponse) GetTabletAlias() string {
@@ -7168,7 +7277,7 @@ type ReadVReplicationWorkflowResponse_Stream struct {
func (x *ReadVReplicationWorkflowResponse_Stream) Reset() {
*x = ReadVReplicationWorkflowResponse_Stream{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[132]
+ mi := &file_tabletmanagerdata_proto_msgTypes[134]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7181,7 +7290,7 @@ func (x *ReadVReplicationWorkflowResponse_Stream) String() string {
func (*ReadVReplicationWorkflowResponse_Stream) ProtoMessage() {}
func (x *ReadVReplicationWorkflowResponse_Stream) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[132]
+ mi := &file_tabletmanagerdata_proto_msgTypes[134]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7194,7 +7303,7 @@ func (x *ReadVReplicationWorkflowResponse_Stream) ProtoReflect() protoreflect.Me
// Deprecated: Use ReadVReplicationWorkflowResponse_Stream.ProtoReflect.Descriptor instead.
func (*ReadVReplicationWorkflowResponse_Stream) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{111, 0}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{113, 0}
}
func (x *ReadVReplicationWorkflowResponse_Stream) GetId() int32 {
@@ -7321,7 +7430,7 @@ type CheckThrottlerResponse_Metric struct {
func (x *CheckThrottlerResponse_Metric) Reset() {
*x = CheckThrottlerResponse_Metric{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[133]
+ mi := &file_tabletmanagerdata_proto_msgTypes[137]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7334,7 +7443,7 @@ func (x *CheckThrottlerResponse_Metric) String() string {
func (*CheckThrottlerResponse_Metric) ProtoMessage() {}
func (x *CheckThrottlerResponse_Metric) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[133]
+ mi := &file_tabletmanagerdata_proto_msgTypes[137]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7347,7 +7456,7 @@ func (x *CheckThrottlerResponse_Metric) ProtoReflect() protoreflect.Message {
// Deprecated: Use CheckThrottlerResponse_Metric.ProtoReflect.Descriptor instead.
func (*CheckThrottlerResponse_Metric) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{125, 0}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{127, 0}
}
func (x *CheckThrottlerResponse_Metric) GetName() string {
@@ -7418,7 +7527,7 @@ type GetThrottlerStatusResponse_MetricResult struct {
func (x *GetThrottlerStatusResponse_MetricResult) Reset() {
*x = GetThrottlerStatusResponse_MetricResult{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[135]
+ mi := &file_tabletmanagerdata_proto_msgTypes[139]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7431,7 +7540,7 @@ func (x *GetThrottlerStatusResponse_MetricResult) String() string {
func (*GetThrottlerStatusResponse_MetricResult) ProtoMessage() {}
func (x *GetThrottlerStatusResponse_MetricResult) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[135]
+ mi := &file_tabletmanagerdata_proto_msgTypes[139]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7444,7 +7553,7 @@ func (x *GetThrottlerStatusResponse_MetricResult) ProtoReflect() protoreflect.Me
// Deprecated: Use GetThrottlerStatusResponse_MetricResult.ProtoReflect.Descriptor instead.
func (*GetThrottlerStatusResponse_MetricResult) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{127, 0}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{129, 0}
}
func (x *GetThrottlerStatusResponse_MetricResult) GetValue() float64 {
@@ -7473,7 +7582,7 @@ type GetThrottlerStatusResponse_MetricHealth struct {
func (x *GetThrottlerStatusResponse_MetricHealth) Reset() {
*x = GetThrottlerStatusResponse_MetricHealth{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[138]
+ mi := &file_tabletmanagerdata_proto_msgTypes[142]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7486,7 +7595,7 @@ func (x *GetThrottlerStatusResponse_MetricHealth) String() string {
func (*GetThrottlerStatusResponse_MetricHealth) ProtoMessage() {}
func (x *GetThrottlerStatusResponse_MetricHealth) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[138]
+ mi := &file_tabletmanagerdata_proto_msgTypes[142]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7499,7 +7608,7 @@ func (x *GetThrottlerStatusResponse_MetricHealth) ProtoReflect() protoreflect.Me
// Deprecated: Use GetThrottlerStatusResponse_MetricHealth.ProtoReflect.Descriptor instead.
func (*GetThrottlerStatusResponse_MetricHealth) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{127, 3}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{129, 3}
}
func (x *GetThrottlerStatusResponse_MetricHealth) GetLastHealthyAt() *vttime.Time {
@@ -7530,7 +7639,7 @@ type GetThrottlerStatusResponse_RecentApp struct {
func (x *GetThrottlerStatusResponse_RecentApp) Reset() {
*x = GetThrottlerStatusResponse_RecentApp{}
if protoimpl.UnsafeEnabled {
- mi := &file_tabletmanagerdata_proto_msgTypes[142]
+ mi := &file_tabletmanagerdata_proto_msgTypes[146]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7543,7 +7652,7 @@ func (x *GetThrottlerStatusResponse_RecentApp) String() string {
func (*GetThrottlerStatusResponse_RecentApp) ProtoMessage() {}
func (x *GetThrottlerStatusResponse_RecentApp) ProtoReflect() protoreflect.Message {
- mi := &file_tabletmanagerdata_proto_msgTypes[142]
+ mi := &file_tabletmanagerdata_proto_msgTypes[146]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7556,7 +7665,7 @@ func (x *GetThrottlerStatusResponse_RecentApp) ProtoReflect() protoreflect.Messa
// Deprecated: Use GetThrottlerStatusResponse_RecentApp.ProtoReflect.Descriptor instead.
func (*GetThrottlerStatusResponse_RecentApp) Descriptor() ([]byte, []int) {
- return file_tabletmanagerdata_proto_rawDescGZIP(), []int{127, 7}
+ return file_tabletmanagerdata_proto_rawDescGZIP(), []int{129, 7}
}
func (x *GetThrottlerStatusResponse_RecentApp) GetCheckedAt() *vttime.Time {
@@ -7897,740 +8006,777 @@ var file_tabletmanagerdata_proto_rawDesc = []byte{
0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79,
0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x74, 0x61,
0x64, 0x61, 0x74, 0x61, 0x52, 0x0c, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f,
- 0x6e, 0x73, 0x22, 0x1a, 0x0a, 0x18, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x4c,
- 0x0a, 0x19, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f, 0x0a, 0x06, 0x73,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x72, 0x65,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x16, 0x0a, 0x14,
- 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x22, 0x4f, 0x0a, 0x15, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x36, 0x0a,
- 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e,
- 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x18, 0x0a, 0x16, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79,
- 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22,
- 0x35, 0x0a, 0x17, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69,
- 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6f,
- 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6f,
- 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x34, 0x0a, 0x16, 0x57, 0x61, 0x69, 0x74, 0x46, 0x6f,
- 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x19, 0x0a, 0x17,
- 0x57, 0x61, 0x69, 0x74, 0x46, 0x6f, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x18, 0x0a, 0x16, 0x53, 0x74, 0x6f, 0x70, 0x52,
- 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x22, 0x19, 0x0a, 0x17, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5e, 0x0a, 0x1d,
- 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d,
- 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a,
- 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x21, 0x0a, 0x0c, 0x77, 0x61, 0x69,
- 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x0b, 0x77, 0x61, 0x69, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x22, 0x3c, 0x0a, 0x1e,
- 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d,
- 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a,
+ 0x6e, 0x73, 0x22, 0x40, 0x0a, 0x1a, 0x43, 0x6f, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54, 0x72,
+ 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x12, 0x12, 0x0a, 0x04, 0x64, 0x74, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
+ 0x64, 0x74, 0x69, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x6d, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08,
+ 0x52, 0x02, 0x6d, 0x6d, 0x22, 0x1d, 0x0a, 0x1b, 0x43, 0x6f, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65,
+ 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x22, 0x1a, 0x0a, 0x18, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22,
+ 0x4c, 0x0a, 0x19, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
+ 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f, 0x0a, 0x06,
+ 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x72,
+ 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53,
+ 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x16, 0x0a,
+ 0x14, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x4f, 0x0a, 0x15, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79,
+ 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x36,
+ 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e,
+ 0x2e, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06,
+ 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x18, 0x0a, 0x16, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72,
+ 0x79, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x22, 0x35, 0x0a, 0x17, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x50, 0x6f, 0x73, 0x69, 0x74,
+ 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70,
+ 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
+ 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x34, 0x0a, 0x16, 0x57, 0x61, 0x69, 0x74, 0x46,
+ 0x6f, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x19, 0x0a,
+ 0x17, 0x57, 0x61, 0x69, 0x74, 0x46, 0x6f, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x18, 0x0a, 0x16, 0x53, 0x74, 0x6f, 0x70,
+ 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x22, 0x19, 0x0a, 0x17, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5e, 0x0a,
+ 0x1d, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x4d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a,
0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x35, 0x0a, 0x17, 0x53, 0x74,
- 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e,
- 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x73, 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e,
- 0x63, 0x22, 0x1a, 0x0a, 0x18, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x62, 0x0a,
- 0x21, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x55, 0x6e, 0x74, 0x69, 0x6c, 0x41, 0x66, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x21,
- 0x0a, 0x0c, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x77, 0x61, 0x69, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75,
- 0x74, 0x22, 0x24, 0x0a, 0x22, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x6e, 0x74, 0x69, 0x6c, 0x41, 0x66, 0x74, 0x65, 0x72, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x14, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x52, 0x65,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x2b, 0x0a,
- 0x13, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x64, 0x64, 0x72, 0x73, 0x18, 0x01, 0x20,
- 0x03, 0x28, 0x09, 0x52, 0x05, 0x61, 0x64, 0x64, 0x72, 0x73, 0x22, 0x19, 0x0a, 0x17, 0x52, 0x65,
- 0x73, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x1a, 0x0a, 0x18, 0x52, 0x65, 0x73, 0x65, 0x74, 0x52, 0x65,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x22, 0x2f, 0x0a, 0x17, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x45, 0x78, 0x65, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05,
- 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x22, 0x46, 0x0a, 0x18, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x45, 0x78, 0x65, 0x63, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a,
- 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12,
- 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75,
- 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x4b, 0x0a, 0x1d, 0x56, 0x52,
- 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x61, 0x69, 0x74, 0x46, 0x6f,
- 0x72, 0x50, 0x6f, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70,
- 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
- 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x52, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x61, 0x69, 0x74, 0x46, 0x6f, 0x72, 0x50, 0x6f,
- 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x30, 0x0a, 0x12, 0x49, 0x6e, 0x69,
- 0x74, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x08, 0x73, 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x22, 0x31, 0x0a, 0x13, 0x49,
- 0x6e, 0x69, 0x74, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xd8,
- 0x01, 0x0a, 0x1e, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65, 0x70, 0x61, 0x72,
- 0x65, 0x6e, 0x74, 0x4a, 0x6f, 0x75, 0x72, 0x6e, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
- 0x64, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x74, 0x69, 0x6d, 0x65,
- 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
- 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3a, 0x0a, 0x0d, 0x70, 0x72,
- 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0c, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72,
- 0x79, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x31, 0x0a, 0x14, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x13, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x21, 0x0a, 0x1f, 0x50, 0x6f, 0x70,
- 0x75, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x4a, 0x6f, 0x75,
- 0x72, 0x6e, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xba, 0x01, 0x0a,
- 0x12, 0x49, 0x6e, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x12, 0x2d, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65,
- 0x6e, 0x74, 0x12, 0x31, 0x0a, 0x14, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x13, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x73,
- 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x63, 0x72,
- 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d,
- 0x74, 0x69, 0x6d, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x73, 0x12, 0x1a, 0x0a,
- 0x08, 0x73, 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x08, 0x73, 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x22, 0x15, 0x0a, 0x13, 0x49, 0x6e, 0x69,
- 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x22, 0x16, 0x0a, 0x14, 0x44, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72,
- 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x64, 0x0a, 0x15, 0x44, 0x65, 0x6d, 0x6f,
- 0x74, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x12, 0x45, 0x0a, 0x0e, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x72, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x69, 0x6d,
- 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0d, 0x70, 0x72, 0x69, 0x6d, 0x61,
- 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4a, 0x04, 0x08, 0x01, 0x10, 0x02, 0x22, 0x36,
- 0x0a, 0x18, 0x55, 0x6e, 0x64, 0x6f, 0x44, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50, 0x72, 0x69, 0x6d,
- 0x61, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65,
- 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x73, 0x65,
- 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x22, 0x1b, 0x0a, 0x19, 0x55, 0x6e, 0x64, 0x6f, 0x44, 0x65,
- 0x6d, 0x6f, 0x74, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x22, 0x1b, 0x0a, 0x19, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x57, 0x61,
- 0x73, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x22, 0x1c, 0x0a, 0x1a, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x57, 0x61, 0x73, 0x50, 0x72,
- 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x23,
- 0x0a, 0x21, 0x52, 0x65, 0x73, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x22, 0x24, 0x0a, 0x22, 0x52, 0x65, 0x73, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72,
- 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x13, 0x0a, 0x11, 0x46, 0x75, 0x6c,
- 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x49,
- 0x0a, 0x12, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75,
- 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x9c, 0x02, 0x0a, 0x1b, 0x53, 0x65,
- 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75, 0x72,
- 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2d, 0x0a, 0x06, 0x70, 0x61, 0x72,
- 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73,
- 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x74, 0x69, 0x6d, 0x65,
- 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x03, 0x52, 0x0d, 0x74, 0x69, 0x6d, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x73,
- 0x12, 0x36, 0x0a, 0x17, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f,
- 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x15, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x77, 0x61, 0x69, 0x74,
- 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x0c, 0x77, 0x61, 0x69, 0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a,
- 0x08, 0x73, 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x08, 0x73, 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x12, 0x2d, 0x0a, 0x12, 0x68, 0x65, 0x61,
- 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18,
- 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x11, 0x68, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74,
- 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x22, 0x1e, 0x0a, 0x1c, 0x53, 0x65, 0x74, 0x52,
- 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4b, 0x0a, 0x1a, 0x52, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x57, 0x61, 0x73, 0x52, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2d, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x06, 0x70,
- 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, 0x1d, 0x0a, 0x1b, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x57, 0x61, 0x73, 0x52, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x7e, 0x0a, 0x22, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x6e, 0x64, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x58, 0x0a, 0x15, 0x73, 0x74,
- 0x6f, 0x70, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d,
- 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x72, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x6f, 0x70,
- 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x52,
- 0x13, 0x73, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x4d, 0x6f, 0x64, 0x65, 0x22, 0x6b, 0x0a, 0x23, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x6e, 0x64, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3e, 0x0a, 0x06, 0x73,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x72, 0x65,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74,
- 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4a, 0x04, 0x08, 0x01, 0x10,
- 0x02, 0x22, 0x33, 0x0a, 0x15, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65,
- 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x73, 0x65,
- 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x22, 0x34, 0x0a, 0x16, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74,
- 0x65, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xab, 0x01, 0x0a,
- 0x0d, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x20,
- 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79,
- 0x12, 0x23, 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72,
- 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x50, 0x72,
- 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x70, 0x6f, 0x73, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x12, 0x69, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c,
- 0x46, 0x72, 0x6f, 0x6d, 0x50, 0x6f, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x75, 0x70, 0x67, 0x72, 0x61,
- 0x64, 0x65, 0x5f, 0x73, 0x61, 0x66, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x75,
- 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x53, 0x61, 0x66, 0x65, 0x22, 0x36, 0x0a, 0x0e, 0x42, 0x61,
- 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x24, 0x0a, 0x05,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c, 0x6f,
- 0x67, 0x75, 0x74, 0x69, 0x6c, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x05, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x22, 0xc8, 0x01, 0x0a, 0x18, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x46, 0x72,
- 0x6f, 0x6d, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x2d, 0x0a, 0x0b, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69,
- 0x6d, 0x65, 0x52, 0x0a, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x24,
- 0x0a, 0x0e, 0x72, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x74, 0x6f, 0x5f, 0x70, 0x6f, 0x73,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x54,
- 0x6f, 0x50, 0x6f, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x72, 0x79, 0x5f, 0x72, 0x75, 0x6e, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x64, 0x72, 0x79, 0x52, 0x75, 0x6e, 0x12, 0x3e, 0x0a,
- 0x14, 0x72, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x74, 0x6f, 0x5f, 0x74, 0x69, 0x6d, 0x65,
- 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74,
- 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x12, 0x72, 0x65, 0x73, 0x74, 0x6f,
- 0x72, 0x65, 0x54, 0x6f, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x41, 0x0a,
- 0x19, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x61, 0x63, 0x6b,
- 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x24, 0x0a, 0x05, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c, 0x6f, 0x67, 0x75,
- 0x74, 0x69, 0x6c, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x22, 0xee, 0x04, 0x0a, 0x21, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
- 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
- 0x6f, 0x77, 0x12, 0x3d, 0x0a, 0x0d, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x5f, 0x73, 0x6f, 0x75,
- 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x62, 0x69, 0x6e, 0x6c,
- 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x42, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x53, 0x6f, 0x75,
- 0x72, 0x63, 0x65, 0x52, 0x0c, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63,
- 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x14, 0x2e,
- 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54,
- 0x79, 0x70, 0x65, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73,
- 0x12, 0x6c, 0x0a, 0x1b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18,
- 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65,
- 0x6e, 0x63, 0x65, 0x52, 0x19, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x49,
- 0x0a, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
- 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61,
+ 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x21, 0x0a, 0x0c, 0x77, 0x61,
+ 0x69, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
+ 0x52, 0x0b, 0x77, 0x61, 0x69, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x22, 0x3c, 0x0a,
+ 0x1e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x4d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
+ 0x1a, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x35, 0x0a, 0x17, 0x53,
+ 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6d, 0x69, 0x53, 0x79,
+ 0x6e, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x73, 0x65, 0x6d, 0x69, 0x53, 0x79,
+ 0x6e, 0x63, 0x22, 0x1a, 0x0a, 0x18, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x62,
+ 0x0a, 0x21, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x55, 0x6e, 0x74, 0x69, 0x6c, 0x41, 0x66, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,
+ 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12,
+ 0x21, 0x0a, 0x0c, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18,
+ 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x77, 0x61, 0x69, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x6f,
+ 0x75, 0x74, 0x22, 0x24, 0x0a, 0x22, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x6e, 0x74, 0x69, 0x6c, 0x41, 0x66, 0x74, 0x65, 0x72,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x14, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x52,
+ 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x2b,
+ 0x0a, 0x13, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x64, 0x64, 0x72, 0x73, 0x18, 0x01,
+ 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x61, 0x64, 0x64, 0x72, 0x73, 0x22, 0x19, 0x0a, 0x17, 0x52,
+ 0x65, 0x73, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x1a, 0x0a, 0x18, 0x52, 0x65, 0x73, 0x65, 0x74, 0x52,
+ 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x22, 0x2f, 0x0a, 0x17, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x45, 0x78, 0x65, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a,
+ 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x71, 0x75,
+ 0x65, 0x72, 0x79, 0x22, 0x46, 0x0a, 0x18, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x45, 0x78, 0x65, 0x63, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
+ 0x2a, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
+ 0x12, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73,
+ 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x4b, 0x0a, 0x1d, 0x56,
+ 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x61, 0x69, 0x74, 0x46,
+ 0x6f, 0x72, 0x50, 0x6f, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02,
+ 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08,
+ 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
+ 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x52, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x61, 0x69, 0x74, 0x46, 0x6f, 0x72, 0x50,
+ 0x6f, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x30, 0x0a, 0x12, 0x49, 0x6e,
+ 0x69, 0x74, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x18, 0x01, 0x20, 0x01,
+ 0x28, 0x08, 0x52, 0x08, 0x73, 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x22, 0x31, 0x0a, 0x13,
+ 0x49, 0x6e, 0x69, 0x74, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22,
+ 0xd8, 0x01, 0x0a, 0x1e, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65, 0x70, 0x61,
+ 0x72, 0x65, 0x6e, 0x74, 0x4a, 0x6f, 0x75, 0x72, 0x6e, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74,
+ 0x65, 0x64, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x74, 0x69, 0x6d,
+ 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x0a, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3a, 0x0a, 0x0d, 0x70,
+ 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x03, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0c, 0x70, 0x72, 0x69, 0x6d, 0x61,
+ 0x72, 0x79, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x31, 0x0a, 0x14, 0x72, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18,
+ 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x13, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x21, 0x0a, 0x1f, 0x50, 0x6f,
+ 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x4a, 0x6f,
+ 0x75, 0x72, 0x6e, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xba, 0x01,
+ 0x0a, 0x12, 0x49, 0x6e, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x12, 0x2d, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x06, 0x70, 0x61, 0x72,
+ 0x65, 0x6e, 0x74, 0x12, 0x31, 0x0a, 0x14, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x13, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f,
+ 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x63,
+ 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
+ 0x0d, 0x74, 0x69, 0x6d, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x73, 0x12, 0x1a,
+ 0x0a, 0x08, 0x73, 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08,
+ 0x52, 0x08, 0x73, 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x22, 0x15, 0x0a, 0x13, 0x49, 0x6e,
+ 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x22, 0x16, 0x0a, 0x14, 0x44, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61,
+ 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x64, 0x0a, 0x15, 0x44, 0x65, 0x6d,
+ 0x6f, 0x74, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x12, 0x45, 0x0a, 0x0e, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74,
+ 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x72, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x69,
+ 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0d, 0x70, 0x72, 0x69, 0x6d,
+ 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4a, 0x04, 0x08, 0x01, 0x10, 0x02, 0x22,
+ 0x36, 0x0a, 0x18, 0x55, 0x6e, 0x64, 0x6f, 0x44, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50, 0x72, 0x69,
+ 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x73,
+ 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x73,
+ 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x22, 0x1b, 0x0a, 0x19, 0x55, 0x6e, 0x64, 0x6f, 0x44,
+ 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1b, 0x0a, 0x19, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x57,
+ 0x61, 0x73, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x74, 0x22, 0x1c, 0x0a, 0x1a, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x57, 0x61, 0x73, 0x50,
+ 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
+ 0x23, 0x0a, 0x21, 0x52, 0x65, 0x73, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x22, 0x24, 0x0a, 0x22, 0x52, 0x65, 0x73, 0x65, 0x74, 0x52, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65,
+ 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x13, 0x0a, 0x11, 0x46, 0x75,
+ 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22,
+ 0x49, 0x0a, 0x12, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74,
+ 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x9c, 0x02, 0x0a, 0x1b, 0x53,
+ 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75,
+ 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2d, 0x0a, 0x06, 0x70, 0x61,
+ 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70,
+ 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61,
+ 0x73, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x74, 0x69, 0x6d,
+ 0x65, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01,
+ 0x28, 0x03, 0x52, 0x0d, 0x74, 0x69, 0x6d, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e,
+ 0x73, 0x12, 0x36, 0x0a, 0x17, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74,
+ 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01,
+ 0x28, 0x08, 0x52, 0x15, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65,
+ 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x77, 0x61, 0x69,
+ 0x74, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x0c, 0x77, 0x61, 0x69, 0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a,
+ 0x0a, 0x08, 0x73, 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08,
+ 0x52, 0x08, 0x73, 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x12, 0x2d, 0x0a, 0x12, 0x68, 0x65,
+ 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c,
+ 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x11, 0x68, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61,
+ 0x74, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x22, 0x1e, 0x0a, 0x1c, 0x53, 0x65, 0x74,
+ 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75, 0x72, 0x63,
+ 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4b, 0x0a, 0x1a, 0x52, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x57, 0x61, 0x73, 0x52, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2d, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e,
+ 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x06,
+ 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, 0x1d, 0x0a, 0x1b, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
+ 0x61, 0x57, 0x61, 0x73, 0x52, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x7e, 0x0a, 0x22, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x6e, 0x64, 0x47, 0x65, 0x74, 0x53, 0x74,
+ 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x58, 0x0a, 0x15, 0x73,
+ 0x74, 0x6f, 0x70, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
+ 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x72, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x6f,
+ 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65,
+ 0x52, 0x13, 0x73, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x22, 0x6b, 0x0a, 0x23, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x6e, 0x64, 0x47, 0x65, 0x74, 0x53, 0x74,
+ 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3e, 0x0a, 0x06,
+ 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x72,
+ 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53,
+ 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
+ 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4a, 0x04, 0x08, 0x01,
+ 0x10, 0x02, 0x22, 0x33, 0x0a, 0x15, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x73,
+ 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x73,
+ 0x65, 0x6d, 0x69, 0x53, 0x79, 0x6e, 0x63, 0x22, 0x34, 0x0a, 0x16, 0x50, 0x72, 0x6f, 0x6d, 0x6f,
+ 0x74, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xab, 0x01,
+ 0x0a, 0x0d, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
+ 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63,
+ 0x79, 0x12, 0x23, 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61,
+ 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x50,
+ 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x6e, 0x63, 0x72, 0x65, 0x6d,
+ 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x70, 0x6f, 0x73, 0x18, 0x03,
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x69, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61,
+ 0x6c, 0x46, 0x72, 0x6f, 0x6d, 0x50, 0x6f, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x75, 0x70, 0x67, 0x72,
+ 0x61, 0x64, 0x65, 0x5f, 0x73, 0x61, 0x66, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b,
+ 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x53, 0x61, 0x66, 0x65, 0x22, 0x36, 0x0a, 0x0e, 0x42,
+ 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x24, 0x0a,
+ 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x75, 0x74, 0x69, 0x6c, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x05, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x22, 0xc8, 0x01, 0x0a, 0x18, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x46,
+ 0x72, 0x6f, 0x6d, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x12, 0x2d, 0x0a, 0x0b, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54,
+ 0x69, 0x6d, 0x65, 0x52, 0x0a, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x54, 0x69, 0x6d, 0x65, 0x12,
+ 0x24, 0x0a, 0x0e, 0x72, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x74, 0x6f, 0x5f, 0x70, 0x6f,
+ 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65,
+ 0x54, 0x6f, 0x50, 0x6f, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x72, 0x79, 0x5f, 0x72, 0x75, 0x6e,
+ 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x64, 0x72, 0x79, 0x52, 0x75, 0x6e, 0x12, 0x3e,
+ 0x0a, 0x14, 0x72, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x74, 0x6f, 0x5f, 0x74, 0x69, 0x6d,
+ 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76,
+ 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x12, 0x72, 0x65, 0x73, 0x74,
+ 0x6f, 0x72, 0x65, 0x54, 0x6f, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x41,
+ 0x0a, 0x19, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x61, 0x63,
+ 0x6b, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x24, 0x0a, 0x05, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c, 0x6f, 0x67,
+ 0x75, 0x74, 0x69, 0x6c, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x05, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x22, 0xee, 0x04, 0x0a, 0x21, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66,
+ 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66,
+ 0x6c, 0x6f, 0x77, 0x12, 0x3d, 0x0a, 0x0d, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x5f, 0x73, 0x6f,
+ 0x75, 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x62, 0x69, 0x6e,
+ 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x42, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x53, 0x6f,
+ 0x75, 0x72, 0x63, 0x65, 0x52, 0x0c, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x53, 0x6f, 0x75, 0x72,
+ 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
+ 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x14,
+ 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65,
+ 0x73, 0x12, 0x6c, 0x0a, 0x1b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x6c, 0x65,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65,
+ 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d,
+ 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72,
+ 0x65, 0x6e, 0x63, 0x65, 0x52, 0x19, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x12,
+ 0x49, 0x0a, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x74, 0x79, 0x70, 0x65,
+ 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0c, 0x77, 0x6f,
+ 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x54, 0x79, 0x70, 0x65, 0x12, 0x53, 0x0a, 0x11, 0x77, 0x6f,
+ 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x73, 0x75, 0x62, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
+ 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61,
0x74, 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57,
- 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0c, 0x77, 0x6f, 0x72,
- 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x54, 0x79, 0x70, 0x65, 0x12, 0x53, 0x0a, 0x11, 0x77, 0x6f, 0x72,
- 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x73, 0x75, 0x62, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f,
- 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0f, 0x77,
- 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x12, 0x30,
- 0x0a, 0x14, 0x64, 0x65, 0x66, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72,
- 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x64, 0x65,
- 0x66, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x4b, 0x65, 0x79, 0x73,
- 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x09,
- 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x61, 0x75, 0x74, 0x6f, 0x53, 0x74, 0x61, 0x72, 0x74, 0x12,
- 0x26, 0x0a, 0x0f, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x61, 0x66, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x6f,
- 0x70, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x73, 0x74, 0x6f, 0x70, 0x41, 0x66,
- 0x74, 0x65, 0x72, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x73, 0x22, 0x50, 0x0a, 0x22, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c,
- 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e,
- 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73,
- 0x75, 0x6c, 0x74, 0x22, 0x3f, 0x0a, 0x21, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x56, 0x52, 0x65,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
- 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b,
- 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b,
- 0x66, 0x6c, 0x6f, 0x77, 0x22, 0x50, 0x0a, 0x22, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x56, 0x52,
+ 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0f,
+ 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x12,
+ 0x30, 0x0a, 0x14, 0x64, 0x65, 0x66, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61,
+ 0x72, 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x64,
+ 0x65, 0x66, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x4b, 0x65, 0x79,
+ 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18,
+ 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x61, 0x75, 0x74, 0x6f, 0x53, 0x74, 0x61, 0x72, 0x74,
+ 0x12, 0x26, 0x0a, 0x0f, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x61, 0x66, 0x74, 0x65, 0x72, 0x5f, 0x63,
+ 0x6f, 0x70, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x73, 0x74, 0x6f, 0x70, 0x41,
+ 0x66, 0x74, 0x65, 0x72, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x74, 0x69,
+ 0x6f, 0x6e, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f,
+ 0x6e, 0x73, 0x22, 0x50, 0x0a, 0x22, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75,
+ 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65,
+ 0x73, 0x75, 0x6c, 0x74, 0x22, 0x3f, 0x0a, 0x21, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x56, 0x52,
0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
- 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x72, 0x65,
- 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06,
- 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x21, 0x0a, 0x1f, 0x48, 0x61, 0x73, 0x56, 0x52, 0x65,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
- 0x77, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x34, 0x0a, 0x20, 0x48, 0x61, 0x73,
- 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b,
- 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a,
- 0x03, 0x68, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x68, 0x61, 0x73, 0x22,
- 0xe0, 0x02, 0x0a, 0x20, 0x52, 0x65, 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f,
- 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0a, 0x69, 0x6e, 0x63, 0x6c, 0x75,
- 0x64, 0x65, 0x49, 0x64, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65,
- 0x5f, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x10, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
- 0x77, 0x73, 0x12, 0x4c, 0x0a, 0x0e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x73, 0x74,
- 0x61, 0x74, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x62, 0x69, 0x6e,
- 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74,
- 0x65, 0x52, 0x0d, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x73,
- 0x12, 0x2b, 0x0a, 0x11, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x77, 0x6f, 0x72, 0x6b,
- 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x10, 0x65, 0x78, 0x63,
- 0x6c, 0x75, 0x64, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x4c, 0x0a,
- 0x0e, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x73, 0x18,
- 0x05, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57,
- 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x0d, 0x65, 0x78,
- 0x63, 0x6c, 0x75, 0x64, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x65,
- 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x18, 0x06, 0x20,
- 0x01, 0x28, 0x08, 0x52, 0x0d, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x46, 0x72, 0x6f, 0x7a,
- 0x65, 0x6e, 0x22, 0x76, 0x0a, 0x21, 0x52, 0x65, 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66,
- 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52,
- 0x65, 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57,
- 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52,
- 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x22, 0x3d, 0x0a, 0x1f, 0x52, 0x65,
- 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f,
- 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a,
- 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x22, 0xae, 0x09, 0x0a, 0x20, 0x52, 0x65,
- 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f,
- 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a,
- 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65,
- 0x6c, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73,
- 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73,
- 0x18, 0x04, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x6c, 0x0a, 0x1b, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72,
- 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c,
- 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x19, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65,
- 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x62, 0x5f, 0x6e, 0x61,
- 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x62, 0x4e, 0x61, 0x6d, 0x65,
- 0x12, 0x12, 0x0a, 0x04, 0x74, 0x61, 0x67, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
- 0x74, 0x61, 0x67, 0x73, 0x12, 0x49, 0x0a, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
- 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62, 0x69,
+ 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72,
+ 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72,
+ 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x22, 0x50, 0x0a, 0x22, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x56,
+ 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66,
+ 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x72,
+ 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x71, 0x75,
+ 0x65, 0x72, 0x79, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52,
+ 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x21, 0x0a, 0x1f, 0x48, 0x61, 0x73, 0x56, 0x52,
+ 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
+ 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x34, 0x0a, 0x20, 0x48, 0x61,
+ 0x73, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72,
+ 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10,
+ 0x0a, 0x03, 0x68, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x68, 0x61, 0x73,
+ 0x22, 0xe0, 0x02, 0x0a, 0x20, 0x52, 0x65, 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65,
+ 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0a, 0x69, 0x6e, 0x63, 0x6c,
+ 0x75, 0x64, 0x65, 0x49, 0x64, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64,
+ 0x65, 0x5f, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28,
+ 0x09, 0x52, 0x10, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
+ 0x6f, 0x77, 0x73, 0x12, 0x4c, 0x0a, 0x0e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x73,
+ 0x74, 0x61, 0x74, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x62, 0x69,
0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x54, 0x79, 0x70,
- 0x65, 0x52, 0x0c, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x54, 0x79, 0x70, 0x65, 0x12,
- 0x53, 0x0a, 0x11, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x73, 0x75, 0x62, 0x5f,
- 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x62, 0x69, 0x6e,
- 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x75, 0x62, 0x54,
- 0x79, 0x70, 0x65, 0x52, 0x0f, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x75, 0x62,
- 0x54, 0x79, 0x70, 0x65, 0x12, 0x30, 0x0a, 0x14, 0x64, 0x65, 0x66, 0x65, 0x72, 0x5f, 0x73, 0x65,
- 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x0a, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x12, 0x64, 0x65, 0x66, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61,
- 0x72, 0x79, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x54, 0x0a, 0x07, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d,
- 0x73, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x61, 0x64,
- 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b,
- 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x72,
- 0x65, 0x61, 0x6d, 0x52, 0x07, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x18, 0x0a, 0x07,
- 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f,
- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0xc1, 0x04, 0x0a, 0x06, 0x53, 0x74, 0x72, 0x65, 0x61,
- 0x6d, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69,
- 0x64, 0x12, 0x2a, 0x0a, 0x03, 0x62, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18,
- 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x42, 0x69, 0x6e, 0x6c,
- 0x6f, 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x03, 0x62, 0x6c, 0x73, 0x12, 0x10, 0x0a,
- 0x03, 0x70, 0x6f, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x70, 0x6f, 0x73, 0x12,
- 0x19, 0x0a, 0x08, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x6f, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x07, 0x73, 0x74, 0x6f, 0x70, 0x50, 0x6f, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x61,
- 0x78, 0x5f, 0x74, 0x70, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d, 0x61, 0x78,
- 0x54, 0x70, 0x73, 0x12, 0x2e, 0x0a, 0x13, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x67, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03,
- 0x52, 0x11, 0x6d, 0x61, 0x78, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x4c, 0x61, 0x67, 0x12, 0x2f, 0x0a, 0x0c, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x75, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69,
- 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x0b, 0x74, 0x69, 0x6d, 0x65, 0x55, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x64, 0x12, 0x41, 0x0a, 0x15, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x08, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d,
- 0x65, 0x52, 0x14, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69,
- 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x3b, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65,
- 0x18, 0x09, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61,
+ 0x74, 0x65, 0x52, 0x0d, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65,
+ 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x77, 0x6f, 0x72,
+ 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x10, 0x65, 0x78,
+ 0x63, 0x6c, 0x75, 0x64, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x4c,
+ 0x0a, 0x0e, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x73,
+ 0x18, 0x05, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64,
0x61, 0x74, 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18,
- 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1f,
- 0x0a, 0x0b, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x63, 0x6f, 0x70, 0x69, 0x65, 0x64, 0x18, 0x0b, 0x20,
- 0x01, 0x28, 0x03, 0x52, 0x0a, 0x72, 0x6f, 0x77, 0x73, 0x43, 0x6f, 0x70, 0x69, 0x65, 0x64, 0x12,
- 0x33, 0x0a, 0x0e, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61,
- 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65,
- 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x0d, 0x74, 0x69, 0x6d, 0x65, 0x48, 0x65, 0x61, 0x72, 0x74,
- 0x62, 0x65, 0x61, 0x74, 0x12, 0x33, 0x0a, 0x0e, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x68, 0x72,
- 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76,
- 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x0d, 0x74, 0x69, 0x6d, 0x65,
- 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x12, 0x2f, 0x0a, 0x13, 0x63, 0x6f, 0x6d,
- 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64,
- 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e,
- 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x22, 0xd7, 0x01, 0x0a, 0x0c, 0x56,
- 0x44, 0x69, 0x66, 0x66, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b,
- 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b,
- 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66,
- 0x6c, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66,
- 0x6c, 0x6f, 0x77, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x61,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x09, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x72, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x64,
- 0x69, 0x66, 0x66, 0x5f, 0x75, 0x75, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
- 0x76, 0x64, 0x69, 0x66, 0x66, 0x55, 0x75, 0x69, 0x64, 0x12, 0x39, 0x0a, 0x07, 0x6f, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56,
- 0x44, 0x69, 0x66, 0x66, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x07, 0x6f, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x6a, 0x0a, 0x0d, 0x56, 0x44, 0x69, 0x66, 0x66, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x2a, 0x0a, 0x06, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x51, 0x75,
- 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x6f, 0x75, 0x74, 0x70, 0x75,
- 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x64, 0x69, 0x66, 0x66, 0x5f, 0x75, 0x75, 0x69, 0x64, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x76, 0x64, 0x69, 0x66, 0x66, 0x55, 0x75, 0x69, 0x64,
- 0x22, 0x79, 0x0a, 0x12, 0x56, 0x44, 0x69, 0x66, 0x66, 0x50, 0x69, 0x63, 0x6b, 0x65, 0x72, 0x4f,
- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x6f, 0x75,
- 0x72, 0x63, 0x65, 0x5f, 0x63, 0x65, 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
- 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x61,
- 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x65, 0x6c, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x0a, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x22, 0xce, 0x01, 0x0a, 0x12,
- 0x56, 0x44, 0x69, 0x66, 0x66, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x6e, 0x6c, 0x79, 0x5f, 0x70, 0x6b, 0x73, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x6f, 0x6e, 0x6c, 0x79, 0x50, 0x6b, 0x73, 0x12, 0x1f, 0x0a,
- 0x0b, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x0a, 0x64, 0x65, 0x62, 0x75, 0x67, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x16,
- 0x0a, 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
- 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x61,
- 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x72, 0x6f, 0x77, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x0d, 0x6d, 0x61, 0x78, 0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x73, 0x12, 0x3c,
- 0x0a, 0x1b, 0x72, 0x6f, 0x77, 0x5f, 0x64, 0x69, 0x66, 0x66, 0x5f, 0x63, 0x6f, 0x6c, 0x75, 0x6d,
- 0x6e, 0x5f, 0x74, 0x72, 0x75, 0x6e, 0x63, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x74, 0x18, 0x05, 0x20,
- 0x01, 0x28, 0x03, 0x52, 0x17, 0x72, 0x6f, 0x77, 0x44, 0x69, 0x66, 0x66, 0x43, 0x6f, 0x6c, 0x75,
- 0x6d, 0x6e, 0x54, 0x72, 0x75, 0x6e, 0x63, 0x61, 0x74, 0x65, 0x41, 0x74, 0x22, 0x8d, 0x03, 0x0a,
- 0x10, 0x56, 0x44, 0x69, 0x66, 0x66, 0x43, 0x6f, 0x72, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x73, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x75, 0x74,
- 0x6f, 0x5f, 0x72, 0x65, 0x74, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x61,
- 0x75, 0x74, 0x6f, 0x52, 0x65, 0x74, 0x72, 0x79, 0x12, 0x19, 0x0a, 0x08, 0x6d, 0x61, 0x78, 0x5f,
- 0x72, 0x6f, 0x77, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x61, 0x78, 0x52,
- 0x6f, 0x77, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x73, 0x75, 0x6d, 0x18,
- 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x73, 0x75, 0x6d, 0x12,
- 0x1d, 0x0a, 0x0a, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x70, 0x63, 0x74, 0x18, 0x05, 0x20,
- 0x01, 0x28, 0x03, 0x52, 0x09, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x63, 0x74, 0x12, 0x27,
- 0x0a, 0x0f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
- 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74,
- 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x38, 0x0a, 0x19, 0x6d, 0x61, 0x78, 0x5f, 0x65,
- 0x78, 0x74, 0x72, 0x61, 0x5f, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x74, 0x6f, 0x5f, 0x63, 0x6f, 0x6d,
- 0x70, 0x61, 0x72, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x15, 0x6d, 0x61, 0x78, 0x45,
- 0x78, 0x74, 0x72, 0x61, 0x52, 0x6f, 0x77, 0x73, 0x54, 0x6f, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72,
- 0x65, 0x12, 0x2c, 0x0a, 0x12, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x75,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x12,
- 0x28, 0x0a, 0x10, 0x6d, 0x61, 0x78, 0x5f, 0x64, 0x69, 0x66, 0x66, 0x5f, 0x73, 0x65, 0x63, 0x6f,
- 0x6e, 0x64, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x6d, 0x61, 0x78, 0x44, 0x69,
- 0x66, 0x66, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0a, 0x61, 0x75, 0x74,
- 0x6f, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52,
- 0x09, 0x61, 0x75, 0x74, 0x6f, 0x53, 0x74, 0x61, 0x72, 0x74, 0x88, 0x01, 0x01, 0x42, 0x0d, 0x0a,
- 0x0b, 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x22, 0xf2, 0x01, 0x0a,
- 0x0c, 0x56, 0x44, 0x69, 0x66, 0x66, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x4c, 0x0a,
- 0x0e, 0x70, 0x69, 0x63, 0x6b, 0x65, 0x72, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x50,
- 0x69, 0x63, 0x6b, 0x65, 0x72, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x0d, 0x70, 0x69,
- 0x63, 0x6b, 0x65, 0x72, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x46, 0x0a, 0x0c, 0x63,
- 0x6f, 0x72, 0x65, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x23, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x43, 0x6f, 0x72, 0x65, 0x4f,
- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x0b, 0x63, 0x6f, 0x72, 0x65, 0x4f, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x12, 0x4c, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x6f, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x74, 0x61,
+ 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x0d, 0x65,
+ 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0e,
+ 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x18, 0x06,
+ 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x46, 0x72, 0x6f,
+ 0x7a, 0x65, 0x6e, 0x22, 0x76, 0x0a, 0x21, 0x52, 0x65, 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c,
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x6b,
+ 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x74, 0x61,
0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x56, 0x44, 0x69, 0x66, 0x66, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x73, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x73, 0x22, 0xef, 0x02, 0x0a, 0x21, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66,
- 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66,
- 0x6c, 0x6f, 0x77, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03,
- 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0e, 0x32,
- 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70,
- 0x65, 0x73, 0x12, 0x6c, 0x0a, 0x1b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x6c,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63,
- 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65,
- 0x72, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x19, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65,
- 0x12, 0x2e, 0x0a, 0x06, 0x6f, 0x6e, 0x5f, 0x64, 0x64, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x17, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4f, 0x6e,
- 0x44, 0x44, 0x4c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x05, 0x6f, 0x6e, 0x44, 0x64, 0x6c,
- 0x12, 0x3b, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x25, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x52, 0x65,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
- 0x77, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x4a, 0x04, 0x08,
- 0x07, 0x10, 0x08, 0x22, 0x50, 0x0a, 0x22, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
- 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x72, 0x65, 0x73,
- 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x71, 0x75, 0x65, 0x72,
- 0x79, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72,
- 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x9f, 0x02, 0x0a, 0x22, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
+ 0x52, 0x65, 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x52, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x22, 0x3d, 0x0a, 0x1f, 0x52,
+ 0x65, 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57,
+ 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a,
+ 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x22, 0xe7, 0x0a, 0x0a, 0x20, 0x52,
+ 0x65, 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57,
+ 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
+ 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x14, 0x0a, 0x05, 0x63,
+ 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c,
+ 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65,
+ 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x6c, 0x0a, 0x1b, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70,
+ 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32,
+ 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x19, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72,
+ 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x62, 0x5f, 0x6e,
+ 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x62, 0x4e, 0x61, 0x6d,
+ 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x61, 0x67, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x04, 0x74, 0x61, 0x67, 0x73, 0x12, 0x49, 0x0a, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
+ 0x77, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62,
+ 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x54, 0x79,
+ 0x70, 0x65, 0x52, 0x0c, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x54, 0x79, 0x70, 0x65,
+ 0x12, 0x53, 0x0a, 0x11, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x73, 0x75, 0x62,
+ 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x62, 0x69,
+ 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x75, 0x62,
+ 0x54, 0x79, 0x70, 0x65, 0x52, 0x0f, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x75,
+ 0x62, 0x54, 0x79, 0x70, 0x65, 0x12, 0x30, 0x0a, 0x14, 0x64, 0x65, 0x66, 0x65, 0x72, 0x5f, 0x73,
+ 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x0a, 0x20,
+ 0x01, 0x28, 0x08, 0x52, 0x12, 0x64, 0x65, 0x66, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64,
+ 0x61, 0x72, 0x79, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x54, 0x0a, 0x07, 0x73, 0x74, 0x72, 0x65, 0x61,
+ 0x6d, 0x73, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x61,
+ 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72,
+ 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x74,
+ 0x72, 0x65, 0x61, 0x6d, 0x52, 0x07, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x18, 0x0a,
+ 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
+ 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x73, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x66, 0x69,
+ 0x67, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x18, 0x0d, 0x20, 0x03, 0x28,
+ 0x0b, 0x32, 0x48, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
+ 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4f, 0x76, 0x65,
+ 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x63, 0x6f, 0x6e,
+ 0x66, 0x69, 0x67, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x1a, 0xc1, 0x04, 0x0a,
+ 0x06, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x2a, 0x0a, 0x03, 0x62, 0x6c, 0x73, 0x18, 0x02,
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x42, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x03,
+ 0x62, 0x6c, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x6f, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x03, 0x70, 0x6f, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x6f,
+ 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x74, 0x6f, 0x70, 0x50, 0x6f, 0x73,
+ 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x61, 0x78, 0x5f, 0x74, 0x70, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28,
+ 0x03, 0x52, 0x06, 0x6d, 0x61, 0x78, 0x54, 0x70, 0x73, 0x12, 0x2e, 0x0a, 0x13, 0x6d, 0x61, 0x78,
+ 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x67,
+ 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x6d, 0x61, 0x78, 0x52, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x67, 0x12, 0x2f, 0x0a, 0x0c, 0x74, 0x69, 0x6d,
+ 0x65, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32,
+ 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x0b, 0x74,
+ 0x69, 0x6d, 0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x12, 0x41, 0x0a, 0x15, 0x74, 0x72,
+ 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74,
+ 0x61, 0x6d, 0x70, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69,
+ 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x14, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x3b, 0x0a,
+ 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x62,
+ 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74,
+ 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65,
+ 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73,
+ 0x73, 0x61, 0x67, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x63, 0x6f, 0x70,
+ 0x69, 0x65, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x72, 0x6f, 0x77, 0x73, 0x43,
+ 0x6f, 0x70, 0x69, 0x65, 0x64, 0x12, 0x33, 0x0a, 0x0e, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x68, 0x65,
+ 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e,
+ 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x0d, 0x74, 0x69, 0x6d,
+ 0x65, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x12, 0x33, 0x0a, 0x0e, 0x74, 0x69,
+ 0x6d, 0x65, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x18, 0x0d, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65,
+ 0x52, 0x0d, 0x74, 0x69, 0x6d, 0x65, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x12,
+ 0x2f, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x68, 0x72,
+ 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x63, 0x6f,
+ 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64,
+ 0x1a, 0x42, 0x0a, 0x14, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69,
+ 0x64, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
+ 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
+ 0x3a, 0x02, 0x38, 0x01, 0x22, 0xd7, 0x01, 0x0a, 0x0c, 0x56, 0x44, 0x69, 0x66, 0x66, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x02, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x16, 0x0a,
+ 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
+ 0x61, 0x72, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x41, 0x72, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x64, 0x69, 0x66, 0x66, 0x5f, 0x75, 0x75,
+ 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x76, 0x64, 0x69, 0x66, 0x66, 0x55,
+ 0x75, 0x69, 0x64, 0x12, 0x39, 0x0a, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x06,
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e,
+ 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x4f, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x6a,
+ 0x0a, 0x0d, 0x56, 0x44, 0x69, 0x66, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
+ 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12,
+ 0x2a, 0x0a, 0x06, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
+ 0x12, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73,
+ 0x75, 0x6c, 0x74, 0x52, 0x06, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x76,
+ 0x64, 0x69, 0x66, 0x66, 0x5f, 0x75, 0x75, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x09, 0x76, 0x64, 0x69, 0x66, 0x66, 0x55, 0x75, 0x69, 0x64, 0x22, 0x79, 0x0a, 0x12, 0x56, 0x44,
+ 0x69, 0x66, 0x66, 0x50, 0x69, 0x63, 0x6b, 0x65, 0x72, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
+ 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79,
+ 0x70, 0x65, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x65,
+ 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
+ 0x43, 0x65, 0x6c, 0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63,
+ 0x65, 0x6c, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x61, 0x72, 0x67, 0x65,
+ 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x22, 0xce, 0x01, 0x0a, 0x12, 0x56, 0x44, 0x69, 0x66, 0x66, 0x52,
+ 0x65, 0x70, 0x6f, 0x72, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x19, 0x0a, 0x08,
+ 0x6f, 0x6e, 0x6c, 0x79, 0x5f, 0x70, 0x6b, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,
+ 0x6f, 0x6e, 0x6c, 0x79, 0x50, 0x6b, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x62, 0x75, 0x67,
+ 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x64, 0x65,
+ 0x62, 0x75, 0x67, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x6f, 0x72, 0x6d,
+ 0x61, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
+ 0x12, 0x26, 0x0a, 0x0f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x72,
+ 0x6f, 0x77, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6d, 0x61, 0x78, 0x53, 0x61,
+ 0x6d, 0x70, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x73, 0x12, 0x3c, 0x0a, 0x1b, 0x72, 0x6f, 0x77, 0x5f,
+ 0x64, 0x69, 0x66, 0x66, 0x5f, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x5f, 0x74, 0x72, 0x75, 0x6e,
+ 0x63, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x17, 0x72,
+ 0x6f, 0x77, 0x44, 0x69, 0x66, 0x66, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x54, 0x72, 0x75, 0x6e,
+ 0x63, 0x61, 0x74, 0x65, 0x41, 0x74, 0x22, 0x8d, 0x03, 0x0a, 0x10, 0x56, 0x44, 0x69, 0x66, 0x66,
+ 0x43, 0x6f, 0x72, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x72, 0x65, 0x74, 0x72,
+ 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x61, 0x75, 0x74, 0x6f, 0x52, 0x65, 0x74,
+ 0x72, 0x79, 0x12, 0x19, 0x0a, 0x08, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x6f, 0x77, 0x73, 0x18, 0x03,
+ 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x61, 0x78, 0x52, 0x6f, 0x77, 0x73, 0x12, 0x1a, 0x0a,
+ 0x08, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x73, 0x75, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52,
+ 0x08, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x73, 0x75, 0x6d, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x61, 0x6d,
+ 0x70, 0x6c, 0x65, 0x5f, 0x70, 0x63, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x73,
+ 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x63, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x74, 0x69, 0x6d, 0x65,
+ 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28,
+ 0x03, 0x52, 0x0e, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64,
+ 0x73, 0x12, 0x38, 0x0a, 0x19, 0x6d, 0x61, 0x78, 0x5f, 0x65, 0x78, 0x74, 0x72, 0x61, 0x5f, 0x72,
+ 0x6f, 0x77, 0x73, 0x5f, 0x74, 0x6f, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x65, 0x18, 0x07,
+ 0x20, 0x01, 0x28, 0x03, 0x52, 0x15, 0x6d, 0x61, 0x78, 0x45, 0x78, 0x74, 0x72, 0x61, 0x52, 0x6f,
+ 0x77, 0x73, 0x54, 0x6f, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x65, 0x12, 0x2c, 0x0a, 0x12, 0x75,
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74,
+ 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54,
+ 0x61, 0x62, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x12, 0x28, 0x0a, 0x10, 0x6d, 0x61, 0x78,
+ 0x5f, 0x64, 0x69, 0x66, 0x66, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x09, 0x20,
+ 0x01, 0x28, 0x03, 0x52, 0x0e, 0x6d, 0x61, 0x78, 0x44, 0x69, 0x66, 0x66, 0x53, 0x65, 0x63, 0x6f,
+ 0x6e, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x73, 0x74, 0x61, 0x72,
+ 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x09, 0x61, 0x75, 0x74, 0x6f, 0x53,
+ 0x74, 0x61, 0x72, 0x74, 0x88, 0x01, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x61, 0x75, 0x74, 0x6f,
+ 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x22, 0xf2, 0x01, 0x0a, 0x0c, 0x56, 0x44, 0x69, 0x66, 0x66,
+ 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x4c, 0x0a, 0x0e, 0x70, 0x69, 0x63, 0x6b, 0x65,
+ 0x72, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
+ 0x25, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x50, 0x69, 0x63, 0x6b, 0x65, 0x72, 0x4f,
+ 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x0d, 0x70, 0x69, 0x63, 0x6b, 0x65, 0x72, 0x4f, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x46, 0x0a, 0x0c, 0x63, 0x6f, 0x72, 0x65, 0x5f, 0x6f, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x56, 0x44, 0x69, 0x66, 0x66, 0x43, 0x6f, 0x72, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
+ 0x52, 0x0b, 0x63, 0x6f, 0x72, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x4c, 0x0a,
+ 0x0e, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18,
+ 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
+ 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x52,
+ 0x65, 0x70, 0x6f, 0x72, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x0d, 0x72, 0x65,
+ 0x70, 0x6f, 0x72, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xed, 0x04, 0x0a, 0x21,
+ 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x14, 0x0a,
+ 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65,
+ 0x6c, 0x6c, 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79,
+ 0x70, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52,
+ 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x71, 0x0a, 0x1b,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
+ 0x0e, 0x32, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
+ 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x48,
+ 0x00, 0x52, 0x19, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x88, 0x01, 0x01, 0x12,
+ 0x33, 0x0a, 0x06, 0x6f, 0x6e, 0x5f, 0x64, 0x64, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32,
+ 0x17, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4f, 0x6e, 0x44,
+ 0x44, 0x4c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x01, 0x52, 0x05, 0x6f, 0x6e, 0x44, 0x64,
+ 0x6c, 0x88, 0x01, 0x01, 0x12, 0x40, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20,
+ 0x01, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72,
+ 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x65, 0x48, 0x02, 0x52, 0x05, 0x73, 0x74,
+ 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x74, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
+ 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b,
+ 0x32, 0x49, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c,
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52,
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4f, 0x76, 0x65,
+ 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x63, 0x6f, 0x6e,
+ 0x66, 0x69, 0x67, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x1a, 0x42, 0x0a, 0x14,
+ 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x45,
+ 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
+ 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
+ 0x42, 0x1e, 0x0a, 0x1c, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x6c, 0x65,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65,
+ 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x6f, 0x6e, 0x5f, 0x64, 0x64, 0x6c, 0x42, 0x08, 0x0a, 0x06, 0x5f,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x4a, 0x04, 0x08, 0x07, 0x10, 0x08, 0x22, 0x50, 0x0a, 0x22, 0x55,
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
+ 0x0b, 0x32, 0x12, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
+ 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0xd6, 0x02,
+ 0x0a, 0x22, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x12, 0x23, 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x5f, 0x77, 0x6f, 0x72, 0x6b,
+ 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61, 0x6c, 0x6c,
+ 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x69, 0x6e, 0x63,
+ 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x02,
+ 0x20, 0x03, 0x28, 0x09, 0x52, 0x10, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x57, 0x6f, 0x72,
+ 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64,
+ 0x65, 0x5f, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
+ 0x09, 0x52, 0x10, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
+ 0x6f, 0x77, 0x73, 0x12, 0x40, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01,
+ 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e,
0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b,
- 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x23, 0x0a, 0x0d,
- 0x61, 0x6c, 0x6c, 0x5f, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61, 0x6c, 0x6c, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
- 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x77, 0x6f, 0x72,
- 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x10, 0x69, 0x6e,
- 0x63, 0x6c, 0x75, 0x64, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x2b,
- 0x0a, 0x11, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
- 0x6f, 0x77, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x10, 0x65, 0x78, 0x63, 0x6c, 0x75,
- 0x64, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x3b, 0x0a, 0x05, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x62, 0x69, 0x6e,
- 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74,
- 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73,
- 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61,
- 0x67, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74,
- 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x74, 0x6f, 0x70, 0x50,
- 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x51, 0x0a, 0x23, 0x55, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72,
- 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a,
- 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12,
- 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75,
- 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x2f, 0x0a, 0x15, 0x52, 0x65,
- 0x73, 0x65, 0x74, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20,
- 0x03, 0x28, 0x09, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x22, 0x18, 0x0a, 0x16, 0x52,
- 0x65, 0x73, 0x65, 0x74, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xdd, 0x01, 0x0a, 0x15, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54,
- 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x63,
- 0x6f, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65,
- 0x12, 0x36, 0x0a, 0x17, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x5f, 0x68, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x15, 0x73, 0x6b, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x65,
- 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x73, 0x12, 0x27, 0x0a, 0x10, 0x6f, 0x6b, 0x5f, 0x69,
- 0x66, 0x5f, 0x6e, 0x6f, 0x74, 0x5f, 0x65, 0x78, 0x69, 0x73, 0x74, 0x73, 0x18, 0x04, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x0d, 0x6f, 0x6b, 0x49, 0x66, 0x4e, 0x6f, 0x74, 0x45, 0x78, 0x69, 0x73, 0x74,
- 0x73, 0x12, 0x32, 0x0a, 0x15, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69,
- 0x63, 0x73, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x13, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x45, 0x6e,
- 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x9f, 0x06, 0x0a, 0x16, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54,
- 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x43, 0x6f, 0x64,
- 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01,
- 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x68, 0x72, 0x65, 0x73,
- 0x68, 0x6f, 0x6c, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x74, 0x68, 0x72, 0x65,
- 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x04,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x6d,
- 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65,
- 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x6c,
- 0x79, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x0f, 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x6c, 0x79, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64,
- 0x12, 0x50, 0x0a, 0x07, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28,
- 0x0b, 0x32, 0x36, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74,
- 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x65, 0x74,
- 0x72, 0x69, 0x63, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x6d, 0x65, 0x74, 0x72, 0x69,
- 0x63, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a,
- 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
- 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x52, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d,
- 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65,
- 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x0c, 0x72,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x1a, 0x8b, 0x02, 0x0a, 0x06,
- 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
- 0x0a, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
- 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x18, 0x04,
- 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x74, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x12,
- 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
- 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12,
- 0x14, 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
- 0x73, 0x63, 0x6f, 0x70, 0x65, 0x12, 0x52, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x0c, 0x72, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x1a, 0x6c, 0x0a, 0x0c, 0x4d, 0x65, 0x74,
- 0x72, 0x69, 0x63, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x46, 0x0a, 0x05, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43,
- 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x52, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x1b, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x54, 0x68,
- 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x22, 0xb6, 0x10, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f,
- 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c,
- 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
- 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
- 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x6c,
- 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x4c,
- 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x17, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x6f, 0x70, 0x65, 0x6e,
- 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x12, 0x1d,
- 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x1d, 0x0a,
- 0x0a, 0x69, 0x73, 0x5f, 0x64, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x09, 0x69, 0x73, 0x44, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x74, 0x12, 0x28, 0x0a, 0x10,
- 0x6c, 0x61, 0x67, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79,
- 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6c, 0x61, 0x67, 0x4d, 0x65, 0x74, 0x72, 0x69,
- 0x63, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x2e, 0x0a, 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d,
- 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x09, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x11, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x4d, 0x65, 0x74, 0x72, 0x69,
- 0x63, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x2b, 0x0a, 0x11, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
- 0x74, 0x5f, 0x74, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28,
- 0x01, 0x52, 0x10, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x54, 0x68, 0x72, 0x65, 0x73, 0x68,
- 0x6f, 0x6c, 0x64, 0x12, 0x3c, 0x0a, 0x1b, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x6e, 0x61,
- 0x6d, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75,
- 0x6c, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x17, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63,
- 0x4e, 0x61, 0x6d, 0x65, 0x55, 0x73, 0x65, 0x64, 0x41, 0x73, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c,
- 0x74, 0x12, 0x73, 0x0a, 0x12, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x64, 0x5f,
- 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x44, 0x2e,
+ 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x65, 0x48, 0x00, 0x52, 0x05, 0x73, 0x74, 0x61,
+ 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
+ 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
+ 0x65, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x6f, 0x73,
+ 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x0c, 0x73,
+ 0x74, 0x6f, 0x70, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x42, 0x08,
+ 0x0a, 0x06, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x65, 0x73,
+ 0x73, 0x61, 0x67, 0x65, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x6f,
+ 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x51, 0x0a, 0x23, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
+ 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b,
+ 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a,
+ 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e,
+ 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c,
+ 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x2f, 0x0a, 0x15, 0x52, 0x65, 0x73,
+ 0x65, 0x74, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03,
+ 0x28, 0x09, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x22, 0x18, 0x0a, 0x16, 0x52, 0x65,
+ 0x73, 0x65, 0x74, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xdd, 0x01, 0x0a, 0x15, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68,
+ 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19,
+ 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x63, 0x6f,
+ 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x12,
+ 0x36, 0x0a, 0x17, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f,
+ 0x68, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08,
+ 0x52, 0x15, 0x73, 0x6b, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x65, 0x61,
+ 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x73, 0x12, 0x27, 0x0a, 0x10, 0x6f, 0x6b, 0x5f, 0x69, 0x66,
+ 0x5f, 0x6e, 0x6f, 0x74, 0x5f, 0x65, 0x78, 0x69, 0x73, 0x74, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28,
+ 0x08, 0x52, 0x0d, 0x6f, 0x6b, 0x49, 0x66, 0x4e, 0x6f, 0x74, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73,
+ 0x12, 0x32, 0x0a, 0x15, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63,
+ 0x73, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52,
+ 0x13, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x45, 0x6e, 0x61,
+ 0x62, 0x6c, 0x65, 0x64, 0x22, 0x9f, 0x06, 0x0a, 0x16, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68,
+ 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
+ 0x1f, 0x0a, 0x0b, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x43, 0x6f, 0x64, 0x65,
+ 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52,
+ 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x68, 0x72, 0x65, 0x73, 0x68,
+ 0x6f, 0x6c, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x74, 0x68, 0x72, 0x65, 0x73,
+ 0x68, 0x6f, 0x6c, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x04, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65,
+ 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73,
+ 0x73, 0x61, 0x67, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x6c, 0x79,
+ 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f,
+ 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x6c, 0x79, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x12,
+ 0x50, 0x0a, 0x07, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b,
+ 0x32, 0x36, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74,
+ 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72,
+ 0x69, 0x63, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63,
+ 0x73, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07,
+ 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73,
+ 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x52, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e,
0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x41, 0x67, 0x67,
- 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x45, 0x6e,
- 0x74, 0x72, 0x79, 0x52, 0x11, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x64, 0x4d,
- 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x70, 0x0a, 0x11, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63,
- 0x5f, 0x74, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x73, 0x18, 0x0d, 0x20, 0x03, 0x28,
- 0x0b, 0x32, 0x43, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c,
- 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x54, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64,
- 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x10, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x54, 0x68,
- 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x73, 0x12, 0x67, 0x0a, 0x0e, 0x6d, 0x65, 0x74, 0x72,
- 0x69, 0x63, 0x73, 0x5f, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x18, 0x0e, 0x20, 0x03, 0x28, 0x0b,
- 0x32, 0x40, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65,
- 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e,
- 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x45, 0x6e, 0x74,
- 0x72, 0x79, 0x52, 0x0d, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x48, 0x65, 0x61, 0x6c, 0x74,
- 0x68, 0x12, 0x67, 0x0a, 0x0e, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x5f, 0x61,
- 0x70, 0x70, 0x73, 0x18, 0x0f, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x40, 0x2e, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65,
- 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c,
- 0x65, 0x64, 0x41, 0x70, 0x70, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d, 0x74, 0x68, 0x72,
- 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x41, 0x70, 0x70, 0x73, 0x12, 0x74, 0x0a, 0x13, 0x61, 0x70,
- 0x70, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63,
- 0x73, 0x18, 0x10, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x44, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54,
- 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x41, 0x70, 0x70, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x65,
- 0x64, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x11, 0x61,
- 0x70, 0x70, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73,
- 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x6c, 0x79, 0x5f, 0x63, 0x68, 0x65,
- 0x63, 0x6b, 0x65, 0x64, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x65,
- 0x6e, 0x74, 0x6c, 0x79, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x12, 0x5e, 0x0a, 0x0b, 0x72,
- 0x65, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x70, 0x70, 0x73, 0x18, 0x12, 0x20, 0x03, 0x28, 0x0b,
- 0x32, 0x3d, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
+ 0x61, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x0c, 0x72, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x1a, 0x8b, 0x02, 0x0a, 0x06, 0x4d,
+ 0x65, 0x74, 0x72, 0x69, 0x63, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x74, 0x61,
+ 0x74, 0x75, 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a,
+ 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
+ 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
+ 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x18, 0x04, 0x20,
+ 0x01, 0x28, 0x01, 0x52, 0x09, 0x74, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x12, 0x14,
+ 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18,
+ 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x14,
+ 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73,
+ 0x63, 0x6f, 0x70, 0x65, 0x12, 0x52, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x1a, 0x6c, 0x0a, 0x0c, 0x4d, 0x65, 0x74, 0x72,
+ 0x69, 0x63, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x46, 0x0a, 0x05, 0x76, 0x61,
+ 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x68,
+ 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x52, 0x05, 0x76, 0x61, 0x6c,
+ 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x1b, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72,
+ 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75,
+ 0x65, 0x73, 0x74, 0x22, 0xb6, 0x10, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74,
+ 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69,
+ 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x6c, 0x65,
+ 0x61, 0x64, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x4c, 0x65,
+ 0x61, 0x64, 0x65, 0x72, 0x12, 0x17, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x18,
+ 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x12, 0x1d, 0x0a,
+ 0x0a, 0x69, 0x73, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28,
+ 0x08, 0x52, 0x09, 0x69, 0x73, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x1d, 0x0a, 0x0a,
+ 0x69, 0x73, 0x5f, 0x64, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08,
+ 0x52, 0x09, 0x69, 0x73, 0x44, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x6c,
+ 0x61, 0x67, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18,
+ 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6c, 0x61, 0x67, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63,
+ 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x2e, 0x0a, 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f,
+ 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x09, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x11, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63,
+ 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x2b, 0x0a, 0x11, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
+ 0x5f, 0x74, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01,
+ 0x52, 0x10, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x54, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f,
+ 0x6c, 0x64, 0x12, 0x3c, 0x0a, 0x1b, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x6e, 0x61, 0x6d,
+ 0x65, 0x5f, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
+ 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x17, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x4e,
+ 0x61, 0x6d, 0x65, 0x55, 0x73, 0x65, 0x64, 0x41, 0x73, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
+ 0x12, 0x73, 0x0a, 0x12, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6d,
+ 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x44, 0x2e, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61,
+ 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x41, 0x67, 0x67, 0x72,
+ 0x65, 0x67, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x45, 0x6e, 0x74,
+ 0x72, 0x79, 0x52, 0x11, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65,
+ 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x70, 0x0a, 0x11, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f,
+ 0x74, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x73, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0b,
+ 0x32, 0x43, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65,
0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e,
- 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x41, 0x70, 0x70, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
- 0x0a, 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x41, 0x70, 0x70, 0x73, 0x1a, 0x3a, 0x0a, 0x0c, 0x4d,
- 0x65, 0x74, 0x72, 0x69, 0x63, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
- 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x1a, 0x80, 0x01, 0x0a, 0x16, 0x41, 0x67, 0x67, 0x72,
- 0x65, 0x67, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x45, 0x6e, 0x74,
+ 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x54, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x73,
+ 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x10, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x54, 0x68, 0x72,
+ 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x73, 0x12, 0x67, 0x0a, 0x0e, 0x6d, 0x65, 0x74, 0x72, 0x69,
+ 0x63, 0x73, 0x5f, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x18, 0x0e, 0x20, 0x03, 0x28, 0x0b, 0x32,
+ 0x40, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72,
+ 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4d,
+ 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x45, 0x6e, 0x74, 0x72,
+ 0x79, 0x52, 0x0d, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68,
+ 0x12, 0x67, 0x0a, 0x0e, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x5f, 0x61, 0x70,
+ 0x70, 0x73, 0x18, 0x0f, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x40, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74,
+ 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65,
+ 0x64, 0x41, 0x70, 0x70, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d, 0x74, 0x68, 0x72, 0x6f,
+ 0x74, 0x74, 0x6c, 0x65, 0x64, 0x41, 0x70, 0x70, 0x73, 0x12, 0x74, 0x0a, 0x13, 0x61, 0x70, 0x70,
+ 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73,
+ 0x18, 0x10, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x44, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d,
+ 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68,
+ 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x41, 0x70, 0x70, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64,
+ 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x11, 0x61, 0x70,
+ 0x70, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12,
+ 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x6c, 0x79, 0x5f, 0x63, 0x68, 0x65, 0x63,
+ 0x6b, 0x65, 0x64, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x65, 0x6e,
+ 0x74, 0x6c, 0x79, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x12, 0x5e, 0x0a, 0x0b, 0x72, 0x65,
+ 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x70, 0x70, 0x73, 0x18, 0x12, 0x20, 0x03, 0x28, 0x0b, 0x32,
+ 0x3d, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72,
+ 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52,
+ 0x65, 0x63, 0x65, 0x6e, 0x74, 0x41, 0x70, 0x70, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a,
+ 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x41, 0x70, 0x70, 0x73, 0x1a, 0x3a, 0x0a, 0x0c, 0x4d, 0x65,
+ 0x74, 0x72, 0x69, 0x63, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
+ 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
+ 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x1a, 0x80, 0x01, 0x0a, 0x16, 0x41, 0x67, 0x67, 0x72, 0x65,
+ 0x67, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x45, 0x6e, 0x74, 0x72,
+ 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
+ 0x6b, 0x65, 0x79, 0x12, 0x50, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67,
+ 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74,
+ 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x05,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x43, 0x0a, 0x15, 0x4d, 0x65, 0x74,
+ 0x72, 0x69, 0x63, 0x54, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x73, 0x45, 0x6e, 0x74,
0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x03, 0x6b, 0x65, 0x79, 0x12, 0x50, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74,
- 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52,
- 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x43, 0x0a, 0x15, 0x4d, 0x65,
- 0x74, 0x72, 0x69, 0x63, 0x54, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x73, 0x45, 0x6e,
- 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a,
- 0x81, 0x01, 0x0a, 0x0c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68,
- 0x12, 0x34, 0x0a, 0x0f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x79,
- 0x5f, 0x61, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69,
- 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x48, 0x65, 0x61,
- 0x6c, 0x74, 0x68, 0x79, 0x41, 0x74, 0x12, 0x3b, 0x0a, 0x1a, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
- 0x73, 0x5f, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x68, 0x65, 0x61,
- 0x6c, 0x74, 0x68, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x17, 0x73, 0x65, 0x63, 0x6f,
- 0x6e, 0x64, 0x73, 0x53, 0x69, 0x6e, 0x63, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x48, 0x65, 0x61, 0x6c,
- 0x74, 0x68, 0x79, 0x1a, 0x7c, 0x0a, 0x12, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x48, 0x65,
- 0x61, 0x6c, 0x74, 0x68, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x50, 0x0a, 0x05, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47,
- 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75,
- 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63,
- 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
- 0x01, 0x1a, 0x5c, 0x0a, 0x12, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x41, 0x70,
- 0x70, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x30, 0x0a, 0x05, 0x76, 0x61, 0x6c,
- 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x41, 0x70, 0x70,
- 0x52, 0x75, 0x6c, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a,
- 0x44, 0x0a, 0x16, 0x41, 0x70, 0x70, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x4d, 0x65, 0x74,
- 0x72, 0x69, 0x63, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
- 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0xad, 0x01, 0x0a, 0x09, 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74,
- 0x41, 0x70, 0x70, 0x12, 0x2b, 0x0a, 0x0a, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x61,
- 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65,
- 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x09, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x41, 0x74,
- 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x43, 0x6f, 0x64,
- 0x65, 0x12, 0x52, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f,
- 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x68, 0x65,
- 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x43, 0x6f, 0x64, 0x65, 0x1a, 0x76, 0x0a, 0x0f, 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x41,
- 0x70, 0x70, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x4d, 0x0a, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x74, 0x61, 0x62, 0x6c,
+ 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
+ 0x01, 0x28, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x81,
+ 0x01, 0x0a, 0x0c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x12,
+ 0x34, 0x0a, 0x0f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x79, 0x5f,
+ 0x61, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d,
+ 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x48, 0x65, 0x61, 0x6c,
+ 0x74, 0x68, 0x79, 0x41, 0x74, 0x12, 0x3b, 0x0a, 0x1a, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73,
+ 0x5f, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x68, 0x65, 0x61, 0x6c,
+ 0x74, 0x68, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x17, 0x73, 0x65, 0x63, 0x6f, 0x6e,
+ 0x64, 0x73, 0x53, 0x69, 0x6e, 0x63, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x48, 0x65, 0x61, 0x6c, 0x74,
+ 0x68, 0x79, 0x1a, 0x7c, 0x0a, 0x12, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x48, 0x65, 0x61,
+ 0x6c, 0x74, 0x68, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x50, 0x0a, 0x05, 0x76, 0x61,
+ 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x74, 0x61, 0x62, 0x6c,
0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65,
0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x41,
- 0x70, 0x70, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x2a, 0x3e, 0x0a,
- 0x19, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x4e,
- 0x59, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x4f, 0x52, 0x44, 0x45, 0x52, 0x10, 0x01,
- 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x03, 0x2a, 0x83, 0x01,
- 0x0a, 0x1a, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x0d, 0x0a, 0x09,
- 0x55, 0x4e, 0x44, 0x45, 0x46, 0x49, 0x4e, 0x45, 0x44, 0x10, 0x00, 0x12, 0x06, 0x0a, 0x02, 0x4f,
- 0x4b, 0x10, 0x01, 0x12, 0x16, 0x0a, 0x12, 0x54, 0x48, 0x52, 0x45, 0x53, 0x48, 0x4f, 0x4c, 0x44,
- 0x5f, 0x45, 0x58, 0x43, 0x45, 0x45, 0x44, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x41,
- 0x50, 0x50, 0x5f, 0x44, 0x45, 0x4e, 0x49, 0x45, 0x44, 0x10, 0x03, 0x12, 0x12, 0x0a, 0x0e, 0x55,
- 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f, 0x4d, 0x45, 0x54, 0x52, 0x49, 0x43, 0x10, 0x04, 0x12,
- 0x12, 0x0a, 0x0e, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x4e, 0x41, 0x4c, 0x5f, 0x45, 0x52, 0x52, 0x4f,
- 0x52, 0x10, 0x05, 0x42, 0x30, 0x5a, 0x2e, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2e, 0x69, 0x6f,
- 0x2f, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2f, 0x67, 0x6f, 0x2f, 0x76, 0x74, 0x2f, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x2f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x72, 0x64, 0x61, 0x74, 0x61, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x48,
+ 0x65, 0x61, 0x6c, 0x74, 0x68, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
+ 0x1a, 0x5c, 0x0a, 0x12, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x41, 0x70, 0x70,
+ 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x30, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
+ 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x41, 0x70, 0x70, 0x52,
+ 0x75, 0x6c, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x44,
+ 0x0a, 0x16, 0x41, 0x70, 0x70, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x4d, 0x65, 0x74, 0x72,
+ 0x69, 0x63, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
+ 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
+ 0x3a, 0x02, 0x38, 0x01, 0x1a, 0xad, 0x01, 0x0a, 0x09, 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x41,
+ 0x70, 0x70, 0x12, 0x2b, 0x0a, 0x0a, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x61, 0x74,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e,
+ 0x54, 0x69, 0x6d, 0x65, 0x52, 0x09, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x41, 0x74, 0x12,
+ 0x1f, 0x0a, 0x0b, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02,
+ 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x43, 0x6f, 0x64, 0x65,
+ 0x12, 0x52, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x64,
+ 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x68, 0x65, 0x63,
+ 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x43, 0x6f, 0x64, 0x65, 0x1a, 0x76, 0x0a, 0x0f, 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x41, 0x70,
+ 0x70, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x4d, 0x0a, 0x05, 0x76, 0x61, 0x6c,
+ 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74,
+ 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x41, 0x70,
+ 0x70, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x2a, 0x3e, 0x0a, 0x19,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50,
+ 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x4e, 0x59,
+ 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x4f, 0x52, 0x44, 0x45, 0x52, 0x10, 0x01, 0x12,
+ 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x03, 0x2a, 0x83, 0x01, 0x0a,
+ 0x1a, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x0d, 0x0a, 0x09, 0x55,
+ 0x4e, 0x44, 0x45, 0x46, 0x49, 0x4e, 0x45, 0x44, 0x10, 0x00, 0x12, 0x06, 0x0a, 0x02, 0x4f, 0x4b,
+ 0x10, 0x01, 0x12, 0x16, 0x0a, 0x12, 0x54, 0x48, 0x52, 0x45, 0x53, 0x48, 0x4f, 0x4c, 0x44, 0x5f,
+ 0x45, 0x58, 0x43, 0x45, 0x45, 0x44, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x41, 0x50,
+ 0x50, 0x5f, 0x44, 0x45, 0x4e, 0x49, 0x45, 0x44, 0x10, 0x03, 0x12, 0x12, 0x0a, 0x0e, 0x55, 0x4e,
+ 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f, 0x4d, 0x45, 0x54, 0x52, 0x49, 0x43, 0x10, 0x04, 0x12, 0x12,
+ 0x0a, 0x0e, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x4e, 0x41, 0x4c, 0x5f, 0x45, 0x52, 0x52, 0x4f, 0x52,
+ 0x10, 0x05, 0x42, 0x30, 0x5a, 0x2e, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2e, 0x69, 0x6f, 0x2f,
+ 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2f, 0x67, 0x6f, 0x2f, 0x76, 0x74, 0x2f, 0x70, 0x72, 0x6f,
+ 0x74, 0x6f, 0x2f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
+ 0x64, 0x61, 0x74, 0x61, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
@@ -8646,7 +8792,7 @@ func file_tabletmanagerdata_proto_rawDescGZIP() []byte {
}
var file_tabletmanagerdata_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
-var file_tabletmanagerdata_proto_msgTypes = make([]protoimpl.MessageInfo, 144)
+var file_tabletmanagerdata_proto_msgTypes = make([]protoimpl.MessageInfo, 148)
var file_tabletmanagerdata_proto_goTypes = []any{
(TabletSelectionPreference)(0), // 0: tabletmanagerdata.TabletSelectionPreference
(CheckThrottlerResponseCode)(0), // 1: tabletmanagerdata.CheckThrottlerResponseCode
@@ -8700,216 +8846,222 @@ var file_tabletmanagerdata_proto_goTypes = []any{
(*ExecuteFetchAsAppResponse)(nil), // 49: tabletmanagerdata.ExecuteFetchAsAppResponse
(*GetUnresolvedTransactionsRequest)(nil), // 50: tabletmanagerdata.GetUnresolvedTransactionsRequest
(*GetUnresolvedTransactionsResponse)(nil), // 51: tabletmanagerdata.GetUnresolvedTransactionsResponse
- (*ReplicationStatusRequest)(nil), // 52: tabletmanagerdata.ReplicationStatusRequest
- (*ReplicationStatusResponse)(nil), // 53: tabletmanagerdata.ReplicationStatusResponse
- (*PrimaryStatusRequest)(nil), // 54: tabletmanagerdata.PrimaryStatusRequest
- (*PrimaryStatusResponse)(nil), // 55: tabletmanagerdata.PrimaryStatusResponse
- (*PrimaryPositionRequest)(nil), // 56: tabletmanagerdata.PrimaryPositionRequest
- (*PrimaryPositionResponse)(nil), // 57: tabletmanagerdata.PrimaryPositionResponse
- (*WaitForPositionRequest)(nil), // 58: tabletmanagerdata.WaitForPositionRequest
- (*WaitForPositionResponse)(nil), // 59: tabletmanagerdata.WaitForPositionResponse
- (*StopReplicationRequest)(nil), // 60: tabletmanagerdata.StopReplicationRequest
- (*StopReplicationResponse)(nil), // 61: tabletmanagerdata.StopReplicationResponse
- (*StopReplicationMinimumRequest)(nil), // 62: tabletmanagerdata.StopReplicationMinimumRequest
- (*StopReplicationMinimumResponse)(nil), // 63: tabletmanagerdata.StopReplicationMinimumResponse
- (*StartReplicationRequest)(nil), // 64: tabletmanagerdata.StartReplicationRequest
- (*StartReplicationResponse)(nil), // 65: tabletmanagerdata.StartReplicationResponse
- (*StartReplicationUntilAfterRequest)(nil), // 66: tabletmanagerdata.StartReplicationUntilAfterRequest
- (*StartReplicationUntilAfterResponse)(nil), // 67: tabletmanagerdata.StartReplicationUntilAfterResponse
- (*GetReplicasRequest)(nil), // 68: tabletmanagerdata.GetReplicasRequest
- (*GetReplicasResponse)(nil), // 69: tabletmanagerdata.GetReplicasResponse
- (*ResetReplicationRequest)(nil), // 70: tabletmanagerdata.ResetReplicationRequest
- (*ResetReplicationResponse)(nil), // 71: tabletmanagerdata.ResetReplicationResponse
- (*VReplicationExecRequest)(nil), // 72: tabletmanagerdata.VReplicationExecRequest
- (*VReplicationExecResponse)(nil), // 73: tabletmanagerdata.VReplicationExecResponse
- (*VReplicationWaitForPosRequest)(nil), // 74: tabletmanagerdata.VReplicationWaitForPosRequest
- (*VReplicationWaitForPosResponse)(nil), // 75: tabletmanagerdata.VReplicationWaitForPosResponse
- (*InitPrimaryRequest)(nil), // 76: tabletmanagerdata.InitPrimaryRequest
- (*InitPrimaryResponse)(nil), // 77: tabletmanagerdata.InitPrimaryResponse
- (*PopulateReparentJournalRequest)(nil), // 78: tabletmanagerdata.PopulateReparentJournalRequest
- (*PopulateReparentJournalResponse)(nil), // 79: tabletmanagerdata.PopulateReparentJournalResponse
- (*InitReplicaRequest)(nil), // 80: tabletmanagerdata.InitReplicaRequest
- (*InitReplicaResponse)(nil), // 81: tabletmanagerdata.InitReplicaResponse
- (*DemotePrimaryRequest)(nil), // 82: tabletmanagerdata.DemotePrimaryRequest
- (*DemotePrimaryResponse)(nil), // 83: tabletmanagerdata.DemotePrimaryResponse
- (*UndoDemotePrimaryRequest)(nil), // 84: tabletmanagerdata.UndoDemotePrimaryRequest
- (*UndoDemotePrimaryResponse)(nil), // 85: tabletmanagerdata.UndoDemotePrimaryResponse
- (*ReplicaWasPromotedRequest)(nil), // 86: tabletmanagerdata.ReplicaWasPromotedRequest
- (*ReplicaWasPromotedResponse)(nil), // 87: tabletmanagerdata.ReplicaWasPromotedResponse
- (*ResetReplicationParametersRequest)(nil), // 88: tabletmanagerdata.ResetReplicationParametersRequest
- (*ResetReplicationParametersResponse)(nil), // 89: tabletmanagerdata.ResetReplicationParametersResponse
- (*FullStatusRequest)(nil), // 90: tabletmanagerdata.FullStatusRequest
- (*FullStatusResponse)(nil), // 91: tabletmanagerdata.FullStatusResponse
- (*SetReplicationSourceRequest)(nil), // 92: tabletmanagerdata.SetReplicationSourceRequest
- (*SetReplicationSourceResponse)(nil), // 93: tabletmanagerdata.SetReplicationSourceResponse
- (*ReplicaWasRestartedRequest)(nil), // 94: tabletmanagerdata.ReplicaWasRestartedRequest
- (*ReplicaWasRestartedResponse)(nil), // 95: tabletmanagerdata.ReplicaWasRestartedResponse
- (*StopReplicationAndGetStatusRequest)(nil), // 96: tabletmanagerdata.StopReplicationAndGetStatusRequest
- (*StopReplicationAndGetStatusResponse)(nil), // 97: tabletmanagerdata.StopReplicationAndGetStatusResponse
- (*PromoteReplicaRequest)(nil), // 98: tabletmanagerdata.PromoteReplicaRequest
- (*PromoteReplicaResponse)(nil), // 99: tabletmanagerdata.PromoteReplicaResponse
- (*BackupRequest)(nil), // 100: tabletmanagerdata.BackupRequest
- (*BackupResponse)(nil), // 101: tabletmanagerdata.BackupResponse
- (*RestoreFromBackupRequest)(nil), // 102: tabletmanagerdata.RestoreFromBackupRequest
- (*RestoreFromBackupResponse)(nil), // 103: tabletmanagerdata.RestoreFromBackupResponse
- (*CreateVReplicationWorkflowRequest)(nil), // 104: tabletmanagerdata.CreateVReplicationWorkflowRequest
- (*CreateVReplicationWorkflowResponse)(nil), // 105: tabletmanagerdata.CreateVReplicationWorkflowResponse
- (*DeleteVReplicationWorkflowRequest)(nil), // 106: tabletmanagerdata.DeleteVReplicationWorkflowRequest
- (*DeleteVReplicationWorkflowResponse)(nil), // 107: tabletmanagerdata.DeleteVReplicationWorkflowResponse
- (*HasVReplicationWorkflowsRequest)(nil), // 108: tabletmanagerdata.HasVReplicationWorkflowsRequest
- (*HasVReplicationWorkflowsResponse)(nil), // 109: tabletmanagerdata.HasVReplicationWorkflowsResponse
- (*ReadVReplicationWorkflowsRequest)(nil), // 110: tabletmanagerdata.ReadVReplicationWorkflowsRequest
- (*ReadVReplicationWorkflowsResponse)(nil), // 111: tabletmanagerdata.ReadVReplicationWorkflowsResponse
- (*ReadVReplicationWorkflowRequest)(nil), // 112: tabletmanagerdata.ReadVReplicationWorkflowRequest
- (*ReadVReplicationWorkflowResponse)(nil), // 113: tabletmanagerdata.ReadVReplicationWorkflowResponse
- (*VDiffRequest)(nil), // 114: tabletmanagerdata.VDiffRequest
- (*VDiffResponse)(nil), // 115: tabletmanagerdata.VDiffResponse
- (*VDiffPickerOptions)(nil), // 116: tabletmanagerdata.VDiffPickerOptions
- (*VDiffReportOptions)(nil), // 117: tabletmanagerdata.VDiffReportOptions
- (*VDiffCoreOptions)(nil), // 118: tabletmanagerdata.VDiffCoreOptions
- (*VDiffOptions)(nil), // 119: tabletmanagerdata.VDiffOptions
- (*UpdateVReplicationWorkflowRequest)(nil), // 120: tabletmanagerdata.UpdateVReplicationWorkflowRequest
- (*UpdateVReplicationWorkflowResponse)(nil), // 121: tabletmanagerdata.UpdateVReplicationWorkflowResponse
- (*UpdateVReplicationWorkflowsRequest)(nil), // 122: tabletmanagerdata.UpdateVReplicationWorkflowsRequest
- (*UpdateVReplicationWorkflowsResponse)(nil), // 123: tabletmanagerdata.UpdateVReplicationWorkflowsResponse
- (*ResetSequencesRequest)(nil), // 124: tabletmanagerdata.ResetSequencesRequest
- (*ResetSequencesResponse)(nil), // 125: tabletmanagerdata.ResetSequencesResponse
- (*CheckThrottlerRequest)(nil), // 126: tabletmanagerdata.CheckThrottlerRequest
- (*CheckThrottlerResponse)(nil), // 127: tabletmanagerdata.CheckThrottlerResponse
- (*GetThrottlerStatusRequest)(nil), // 128: tabletmanagerdata.GetThrottlerStatusRequest
- (*GetThrottlerStatusResponse)(nil), // 129: tabletmanagerdata.GetThrottlerStatusResponse
- nil, // 130: tabletmanagerdata.UserPermission.PrivilegesEntry
- nil, // 131: tabletmanagerdata.DbPermission.PrivilegesEntry
- nil, // 132: tabletmanagerdata.ExecuteHookRequest.ExtraEnvEntry
- nil, // 133: tabletmanagerdata.GetGlobalStatusVarsResponse.StatusValuesEntry
- (*ReadVReplicationWorkflowResponse_Stream)(nil), // 134: tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream
- (*CheckThrottlerResponse_Metric)(nil), // 135: tabletmanagerdata.CheckThrottlerResponse.Metric
- nil, // 136: tabletmanagerdata.CheckThrottlerResponse.MetricsEntry
- (*GetThrottlerStatusResponse_MetricResult)(nil), // 137: tabletmanagerdata.GetThrottlerStatusResponse.MetricResult
- nil, // 138: tabletmanagerdata.GetThrottlerStatusResponse.AggregatedMetricsEntry
- nil, // 139: tabletmanagerdata.GetThrottlerStatusResponse.MetricThresholdsEntry
- (*GetThrottlerStatusResponse_MetricHealth)(nil), // 140: tabletmanagerdata.GetThrottlerStatusResponse.MetricHealth
- nil, // 141: tabletmanagerdata.GetThrottlerStatusResponse.MetricsHealthEntry
- nil, // 142: tabletmanagerdata.GetThrottlerStatusResponse.ThrottledAppsEntry
- nil, // 143: tabletmanagerdata.GetThrottlerStatusResponse.AppCheckedMetricsEntry
- (*GetThrottlerStatusResponse_RecentApp)(nil), // 144: tabletmanagerdata.GetThrottlerStatusResponse.RecentApp
- nil, // 145: tabletmanagerdata.GetThrottlerStatusResponse.RecentAppsEntry
- (*query.Field)(nil), // 146: query.Field
- (topodata.TabletType)(0), // 147: topodata.TabletType
- (*vtrpc.CallerID)(nil), // 148: vtrpc.CallerID
- (*query.QueryResult)(nil), // 149: query.QueryResult
- (*query.TransactionMetadata)(nil), // 150: query.TransactionMetadata
- (*replicationdata.Status)(nil), // 151: replicationdata.Status
- (*replicationdata.PrimaryStatus)(nil), // 152: replicationdata.PrimaryStatus
- (*topodata.TabletAlias)(nil), // 153: topodata.TabletAlias
- (*replicationdata.FullStatus)(nil), // 154: replicationdata.FullStatus
- (replicationdata.StopReplicationMode)(0), // 155: replicationdata.StopReplicationMode
- (*replicationdata.StopReplicationStatus)(nil), // 156: replicationdata.StopReplicationStatus
- (*logutil.Event)(nil), // 157: logutil.Event
- (*vttime.Time)(nil), // 158: vttime.Time
- (*binlogdata.BinlogSource)(nil), // 159: binlogdata.BinlogSource
- (binlogdata.VReplicationWorkflowType)(0), // 160: binlogdata.VReplicationWorkflowType
- (binlogdata.VReplicationWorkflowSubType)(0), // 161: binlogdata.VReplicationWorkflowSubType
- (binlogdata.VReplicationWorkflowState)(0), // 162: binlogdata.VReplicationWorkflowState
- (binlogdata.OnDDLAction)(0), // 163: binlogdata.OnDDLAction
- (*topodata.ThrottledAppRule)(nil), // 164: topodata.ThrottledAppRule
+ (*ConcludeTransactionRequest)(nil), // 52: tabletmanagerdata.ConcludeTransactionRequest
+ (*ConcludeTransactionResponse)(nil), // 53: tabletmanagerdata.ConcludeTransactionResponse
+ (*ReplicationStatusRequest)(nil), // 54: tabletmanagerdata.ReplicationStatusRequest
+ (*ReplicationStatusResponse)(nil), // 55: tabletmanagerdata.ReplicationStatusResponse
+ (*PrimaryStatusRequest)(nil), // 56: tabletmanagerdata.PrimaryStatusRequest
+ (*PrimaryStatusResponse)(nil), // 57: tabletmanagerdata.PrimaryStatusResponse
+ (*PrimaryPositionRequest)(nil), // 58: tabletmanagerdata.PrimaryPositionRequest
+ (*PrimaryPositionResponse)(nil), // 59: tabletmanagerdata.PrimaryPositionResponse
+ (*WaitForPositionRequest)(nil), // 60: tabletmanagerdata.WaitForPositionRequest
+ (*WaitForPositionResponse)(nil), // 61: tabletmanagerdata.WaitForPositionResponse
+ (*StopReplicationRequest)(nil), // 62: tabletmanagerdata.StopReplicationRequest
+ (*StopReplicationResponse)(nil), // 63: tabletmanagerdata.StopReplicationResponse
+ (*StopReplicationMinimumRequest)(nil), // 64: tabletmanagerdata.StopReplicationMinimumRequest
+ (*StopReplicationMinimumResponse)(nil), // 65: tabletmanagerdata.StopReplicationMinimumResponse
+ (*StartReplicationRequest)(nil), // 66: tabletmanagerdata.StartReplicationRequest
+ (*StartReplicationResponse)(nil), // 67: tabletmanagerdata.StartReplicationResponse
+ (*StartReplicationUntilAfterRequest)(nil), // 68: tabletmanagerdata.StartReplicationUntilAfterRequest
+ (*StartReplicationUntilAfterResponse)(nil), // 69: tabletmanagerdata.StartReplicationUntilAfterResponse
+ (*GetReplicasRequest)(nil), // 70: tabletmanagerdata.GetReplicasRequest
+ (*GetReplicasResponse)(nil), // 71: tabletmanagerdata.GetReplicasResponse
+ (*ResetReplicationRequest)(nil), // 72: tabletmanagerdata.ResetReplicationRequest
+ (*ResetReplicationResponse)(nil), // 73: tabletmanagerdata.ResetReplicationResponse
+ (*VReplicationExecRequest)(nil), // 74: tabletmanagerdata.VReplicationExecRequest
+ (*VReplicationExecResponse)(nil), // 75: tabletmanagerdata.VReplicationExecResponse
+ (*VReplicationWaitForPosRequest)(nil), // 76: tabletmanagerdata.VReplicationWaitForPosRequest
+ (*VReplicationWaitForPosResponse)(nil), // 77: tabletmanagerdata.VReplicationWaitForPosResponse
+ (*InitPrimaryRequest)(nil), // 78: tabletmanagerdata.InitPrimaryRequest
+ (*InitPrimaryResponse)(nil), // 79: tabletmanagerdata.InitPrimaryResponse
+ (*PopulateReparentJournalRequest)(nil), // 80: tabletmanagerdata.PopulateReparentJournalRequest
+ (*PopulateReparentJournalResponse)(nil), // 81: tabletmanagerdata.PopulateReparentJournalResponse
+ (*InitReplicaRequest)(nil), // 82: tabletmanagerdata.InitReplicaRequest
+ (*InitReplicaResponse)(nil), // 83: tabletmanagerdata.InitReplicaResponse
+ (*DemotePrimaryRequest)(nil), // 84: tabletmanagerdata.DemotePrimaryRequest
+ (*DemotePrimaryResponse)(nil), // 85: tabletmanagerdata.DemotePrimaryResponse
+ (*UndoDemotePrimaryRequest)(nil), // 86: tabletmanagerdata.UndoDemotePrimaryRequest
+ (*UndoDemotePrimaryResponse)(nil), // 87: tabletmanagerdata.UndoDemotePrimaryResponse
+ (*ReplicaWasPromotedRequest)(nil), // 88: tabletmanagerdata.ReplicaWasPromotedRequest
+ (*ReplicaWasPromotedResponse)(nil), // 89: tabletmanagerdata.ReplicaWasPromotedResponse
+ (*ResetReplicationParametersRequest)(nil), // 90: tabletmanagerdata.ResetReplicationParametersRequest
+ (*ResetReplicationParametersResponse)(nil), // 91: tabletmanagerdata.ResetReplicationParametersResponse
+ (*FullStatusRequest)(nil), // 92: tabletmanagerdata.FullStatusRequest
+ (*FullStatusResponse)(nil), // 93: tabletmanagerdata.FullStatusResponse
+ (*SetReplicationSourceRequest)(nil), // 94: tabletmanagerdata.SetReplicationSourceRequest
+ (*SetReplicationSourceResponse)(nil), // 95: tabletmanagerdata.SetReplicationSourceResponse
+ (*ReplicaWasRestartedRequest)(nil), // 96: tabletmanagerdata.ReplicaWasRestartedRequest
+ (*ReplicaWasRestartedResponse)(nil), // 97: tabletmanagerdata.ReplicaWasRestartedResponse
+ (*StopReplicationAndGetStatusRequest)(nil), // 98: tabletmanagerdata.StopReplicationAndGetStatusRequest
+ (*StopReplicationAndGetStatusResponse)(nil), // 99: tabletmanagerdata.StopReplicationAndGetStatusResponse
+ (*PromoteReplicaRequest)(nil), // 100: tabletmanagerdata.PromoteReplicaRequest
+ (*PromoteReplicaResponse)(nil), // 101: tabletmanagerdata.PromoteReplicaResponse
+ (*BackupRequest)(nil), // 102: tabletmanagerdata.BackupRequest
+ (*BackupResponse)(nil), // 103: tabletmanagerdata.BackupResponse
+ (*RestoreFromBackupRequest)(nil), // 104: tabletmanagerdata.RestoreFromBackupRequest
+ (*RestoreFromBackupResponse)(nil), // 105: tabletmanagerdata.RestoreFromBackupResponse
+ (*CreateVReplicationWorkflowRequest)(nil), // 106: tabletmanagerdata.CreateVReplicationWorkflowRequest
+ (*CreateVReplicationWorkflowResponse)(nil), // 107: tabletmanagerdata.CreateVReplicationWorkflowResponse
+ (*DeleteVReplicationWorkflowRequest)(nil), // 108: tabletmanagerdata.DeleteVReplicationWorkflowRequest
+ (*DeleteVReplicationWorkflowResponse)(nil), // 109: tabletmanagerdata.DeleteVReplicationWorkflowResponse
+ (*HasVReplicationWorkflowsRequest)(nil), // 110: tabletmanagerdata.HasVReplicationWorkflowsRequest
+ (*HasVReplicationWorkflowsResponse)(nil), // 111: tabletmanagerdata.HasVReplicationWorkflowsResponse
+ (*ReadVReplicationWorkflowsRequest)(nil), // 112: tabletmanagerdata.ReadVReplicationWorkflowsRequest
+ (*ReadVReplicationWorkflowsResponse)(nil), // 113: tabletmanagerdata.ReadVReplicationWorkflowsResponse
+ (*ReadVReplicationWorkflowRequest)(nil), // 114: tabletmanagerdata.ReadVReplicationWorkflowRequest
+ (*ReadVReplicationWorkflowResponse)(nil), // 115: tabletmanagerdata.ReadVReplicationWorkflowResponse
+ (*VDiffRequest)(nil), // 116: tabletmanagerdata.VDiffRequest
+ (*VDiffResponse)(nil), // 117: tabletmanagerdata.VDiffResponse
+ (*VDiffPickerOptions)(nil), // 118: tabletmanagerdata.VDiffPickerOptions
+ (*VDiffReportOptions)(nil), // 119: tabletmanagerdata.VDiffReportOptions
+ (*VDiffCoreOptions)(nil), // 120: tabletmanagerdata.VDiffCoreOptions
+ (*VDiffOptions)(nil), // 121: tabletmanagerdata.VDiffOptions
+ (*UpdateVReplicationWorkflowRequest)(nil), // 122: tabletmanagerdata.UpdateVReplicationWorkflowRequest
+ (*UpdateVReplicationWorkflowResponse)(nil), // 123: tabletmanagerdata.UpdateVReplicationWorkflowResponse
+ (*UpdateVReplicationWorkflowsRequest)(nil), // 124: tabletmanagerdata.UpdateVReplicationWorkflowsRequest
+ (*UpdateVReplicationWorkflowsResponse)(nil), // 125: tabletmanagerdata.UpdateVReplicationWorkflowsResponse
+ (*ResetSequencesRequest)(nil), // 126: tabletmanagerdata.ResetSequencesRequest
+ (*ResetSequencesResponse)(nil), // 127: tabletmanagerdata.ResetSequencesResponse
+ (*CheckThrottlerRequest)(nil), // 128: tabletmanagerdata.CheckThrottlerRequest
+ (*CheckThrottlerResponse)(nil), // 129: tabletmanagerdata.CheckThrottlerResponse
+ (*GetThrottlerStatusRequest)(nil), // 130: tabletmanagerdata.GetThrottlerStatusRequest
+ (*GetThrottlerStatusResponse)(nil), // 131: tabletmanagerdata.GetThrottlerStatusResponse
+ nil, // 132: tabletmanagerdata.UserPermission.PrivilegesEntry
+ nil, // 133: tabletmanagerdata.DbPermission.PrivilegesEntry
+ nil, // 134: tabletmanagerdata.ExecuteHookRequest.ExtraEnvEntry
+ nil, // 135: tabletmanagerdata.GetGlobalStatusVarsResponse.StatusValuesEntry
+ (*ReadVReplicationWorkflowResponse_Stream)(nil), // 136: tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream
+ nil, // 137: tabletmanagerdata.ReadVReplicationWorkflowResponse.ConfigOverridesEntry
+ nil, // 138: tabletmanagerdata.UpdateVReplicationWorkflowRequest.ConfigOverridesEntry
+ (*CheckThrottlerResponse_Metric)(nil), // 139: tabletmanagerdata.CheckThrottlerResponse.Metric
+ nil, // 140: tabletmanagerdata.CheckThrottlerResponse.MetricsEntry
+ (*GetThrottlerStatusResponse_MetricResult)(nil), // 141: tabletmanagerdata.GetThrottlerStatusResponse.MetricResult
+ nil, // 142: tabletmanagerdata.GetThrottlerStatusResponse.AggregatedMetricsEntry
+ nil, // 143: tabletmanagerdata.GetThrottlerStatusResponse.MetricThresholdsEntry
+ (*GetThrottlerStatusResponse_MetricHealth)(nil), // 144: tabletmanagerdata.GetThrottlerStatusResponse.MetricHealth
+ nil, // 145: tabletmanagerdata.GetThrottlerStatusResponse.MetricsHealthEntry
+ nil, // 146: tabletmanagerdata.GetThrottlerStatusResponse.ThrottledAppsEntry
+ nil, // 147: tabletmanagerdata.GetThrottlerStatusResponse.AppCheckedMetricsEntry
+ (*GetThrottlerStatusResponse_RecentApp)(nil), // 148: tabletmanagerdata.GetThrottlerStatusResponse.RecentApp
+ nil, // 149: tabletmanagerdata.GetThrottlerStatusResponse.RecentAppsEntry
+ (*query.Field)(nil), // 150: query.Field
+ (topodata.TabletType)(0), // 151: topodata.TabletType
+ (*vtrpc.CallerID)(nil), // 152: vtrpc.CallerID
+ (*query.QueryResult)(nil), // 153: query.QueryResult
+ (*query.TransactionMetadata)(nil), // 154: query.TransactionMetadata
+ (*replicationdata.Status)(nil), // 155: replicationdata.Status
+ (*replicationdata.PrimaryStatus)(nil), // 156: replicationdata.PrimaryStatus
+ (*topodata.TabletAlias)(nil), // 157: topodata.TabletAlias
+ (*replicationdata.FullStatus)(nil), // 158: replicationdata.FullStatus
+ (replicationdata.StopReplicationMode)(0), // 159: replicationdata.StopReplicationMode
+ (*replicationdata.StopReplicationStatus)(nil), // 160: replicationdata.StopReplicationStatus
+ (*logutil.Event)(nil), // 161: logutil.Event
+ (*vttime.Time)(nil), // 162: vttime.Time
+ (*binlogdata.BinlogSource)(nil), // 163: binlogdata.BinlogSource
+ (binlogdata.VReplicationWorkflowType)(0), // 164: binlogdata.VReplicationWorkflowType
+ (binlogdata.VReplicationWorkflowSubType)(0), // 165: binlogdata.VReplicationWorkflowSubType
+ (binlogdata.VReplicationWorkflowState)(0), // 166: binlogdata.VReplicationWorkflowState
+ (binlogdata.OnDDLAction)(0), // 167: binlogdata.OnDDLAction
+ (*topodata.ThrottledAppRule)(nil), // 168: topodata.ThrottledAppRule
}
var file_tabletmanagerdata_proto_depIdxs = []int32{
- 146, // 0: tabletmanagerdata.TableDefinition.fields:type_name -> query.Field
+ 150, // 0: tabletmanagerdata.TableDefinition.fields:type_name -> query.Field
2, // 1: tabletmanagerdata.SchemaDefinition.table_definitions:type_name -> tabletmanagerdata.TableDefinition
3, // 2: tabletmanagerdata.SchemaChangeResult.before_schema:type_name -> tabletmanagerdata.SchemaDefinition
3, // 3: tabletmanagerdata.SchemaChangeResult.after_schema:type_name -> tabletmanagerdata.SchemaDefinition
- 130, // 4: tabletmanagerdata.UserPermission.privileges:type_name -> tabletmanagerdata.UserPermission.PrivilegesEntry
- 131, // 5: tabletmanagerdata.DbPermission.privileges:type_name -> tabletmanagerdata.DbPermission.PrivilegesEntry
+ 132, // 4: tabletmanagerdata.UserPermission.privileges:type_name -> tabletmanagerdata.UserPermission.PrivilegesEntry
+ 133, // 5: tabletmanagerdata.DbPermission.privileges:type_name -> tabletmanagerdata.DbPermission.PrivilegesEntry
5, // 6: tabletmanagerdata.Permissions.user_permissions:type_name -> tabletmanagerdata.UserPermission
6, // 7: tabletmanagerdata.Permissions.db_permissions:type_name -> tabletmanagerdata.DbPermission
- 132, // 8: tabletmanagerdata.ExecuteHookRequest.extra_env:type_name -> tabletmanagerdata.ExecuteHookRequest.ExtraEnvEntry
+ 134, // 8: tabletmanagerdata.ExecuteHookRequest.extra_env:type_name -> tabletmanagerdata.ExecuteHookRequest.ExtraEnvEntry
3, // 9: tabletmanagerdata.GetSchemaResponse.schema_definition:type_name -> tabletmanagerdata.SchemaDefinition
7, // 10: tabletmanagerdata.GetPermissionsResponse.permissions:type_name -> tabletmanagerdata.Permissions
- 133, // 11: tabletmanagerdata.GetGlobalStatusVarsResponse.status_values:type_name -> tabletmanagerdata.GetGlobalStatusVarsResponse.StatusValuesEntry
- 147, // 12: tabletmanagerdata.ChangeTypeRequest.tablet_type:type_name -> topodata.TabletType
+ 135, // 11: tabletmanagerdata.GetGlobalStatusVarsResponse.status_values:type_name -> tabletmanagerdata.GetGlobalStatusVarsResponse.StatusValuesEntry
+ 151, // 12: tabletmanagerdata.ChangeTypeRequest.tablet_type:type_name -> topodata.TabletType
4, // 13: tabletmanagerdata.PreflightSchemaResponse.change_results:type_name -> tabletmanagerdata.SchemaChangeResult
3, // 14: tabletmanagerdata.ApplySchemaRequest.before_schema:type_name -> tabletmanagerdata.SchemaDefinition
3, // 15: tabletmanagerdata.ApplySchemaRequest.after_schema:type_name -> tabletmanagerdata.SchemaDefinition
3, // 16: tabletmanagerdata.ApplySchemaResponse.before_schema:type_name -> tabletmanagerdata.SchemaDefinition
3, // 17: tabletmanagerdata.ApplySchemaResponse.after_schema:type_name -> tabletmanagerdata.SchemaDefinition
- 148, // 18: tabletmanagerdata.ExecuteQueryRequest.caller_id:type_name -> vtrpc.CallerID
- 149, // 19: tabletmanagerdata.ExecuteQueryResponse.result:type_name -> query.QueryResult
- 149, // 20: tabletmanagerdata.ExecuteFetchAsDbaResponse.result:type_name -> query.QueryResult
- 149, // 21: tabletmanagerdata.ExecuteMultiFetchAsDbaResponse.results:type_name -> query.QueryResult
- 149, // 22: tabletmanagerdata.ExecuteFetchAsAllPrivsResponse.result:type_name -> query.QueryResult
- 149, // 23: tabletmanagerdata.ExecuteFetchAsAppResponse.result:type_name -> query.QueryResult
- 150, // 24: tabletmanagerdata.GetUnresolvedTransactionsResponse.transactions:type_name -> query.TransactionMetadata
- 151, // 25: tabletmanagerdata.ReplicationStatusResponse.status:type_name -> replicationdata.Status
- 152, // 26: tabletmanagerdata.PrimaryStatusResponse.status:type_name -> replicationdata.PrimaryStatus
- 149, // 27: tabletmanagerdata.VReplicationExecResponse.result:type_name -> query.QueryResult
- 153, // 28: tabletmanagerdata.PopulateReparentJournalRequest.primary_alias:type_name -> topodata.TabletAlias
- 153, // 29: tabletmanagerdata.InitReplicaRequest.parent:type_name -> topodata.TabletAlias
- 152, // 30: tabletmanagerdata.DemotePrimaryResponse.primary_status:type_name -> replicationdata.PrimaryStatus
- 154, // 31: tabletmanagerdata.FullStatusResponse.status:type_name -> replicationdata.FullStatus
- 153, // 32: tabletmanagerdata.SetReplicationSourceRequest.parent:type_name -> topodata.TabletAlias
- 153, // 33: tabletmanagerdata.ReplicaWasRestartedRequest.parent:type_name -> topodata.TabletAlias
- 155, // 34: tabletmanagerdata.StopReplicationAndGetStatusRequest.stop_replication_mode:type_name -> replicationdata.StopReplicationMode
- 156, // 35: tabletmanagerdata.StopReplicationAndGetStatusResponse.status:type_name -> replicationdata.StopReplicationStatus
- 157, // 36: tabletmanagerdata.BackupResponse.event:type_name -> logutil.Event
- 158, // 37: tabletmanagerdata.RestoreFromBackupRequest.backup_time:type_name -> vttime.Time
- 158, // 38: tabletmanagerdata.RestoreFromBackupRequest.restore_to_timestamp:type_name -> vttime.Time
- 157, // 39: tabletmanagerdata.RestoreFromBackupResponse.event:type_name -> logutil.Event
- 159, // 40: tabletmanagerdata.CreateVReplicationWorkflowRequest.binlog_source:type_name -> binlogdata.BinlogSource
- 147, // 41: tabletmanagerdata.CreateVReplicationWorkflowRequest.tablet_types:type_name -> topodata.TabletType
+ 152, // 18: tabletmanagerdata.ExecuteQueryRequest.caller_id:type_name -> vtrpc.CallerID
+ 153, // 19: tabletmanagerdata.ExecuteQueryResponse.result:type_name -> query.QueryResult
+ 153, // 20: tabletmanagerdata.ExecuteFetchAsDbaResponse.result:type_name -> query.QueryResult
+ 153, // 21: tabletmanagerdata.ExecuteMultiFetchAsDbaResponse.results:type_name -> query.QueryResult
+ 153, // 22: tabletmanagerdata.ExecuteFetchAsAllPrivsResponse.result:type_name -> query.QueryResult
+ 153, // 23: tabletmanagerdata.ExecuteFetchAsAppResponse.result:type_name -> query.QueryResult
+ 154, // 24: tabletmanagerdata.GetUnresolvedTransactionsResponse.transactions:type_name -> query.TransactionMetadata
+ 155, // 25: tabletmanagerdata.ReplicationStatusResponse.status:type_name -> replicationdata.Status
+ 156, // 26: tabletmanagerdata.PrimaryStatusResponse.status:type_name -> replicationdata.PrimaryStatus
+ 153, // 27: tabletmanagerdata.VReplicationExecResponse.result:type_name -> query.QueryResult
+ 157, // 28: tabletmanagerdata.PopulateReparentJournalRequest.primary_alias:type_name -> topodata.TabletAlias
+ 157, // 29: tabletmanagerdata.InitReplicaRequest.parent:type_name -> topodata.TabletAlias
+ 156, // 30: tabletmanagerdata.DemotePrimaryResponse.primary_status:type_name -> replicationdata.PrimaryStatus
+ 158, // 31: tabletmanagerdata.FullStatusResponse.status:type_name -> replicationdata.FullStatus
+ 157, // 32: tabletmanagerdata.SetReplicationSourceRequest.parent:type_name -> topodata.TabletAlias
+ 157, // 33: tabletmanagerdata.ReplicaWasRestartedRequest.parent:type_name -> topodata.TabletAlias
+ 159, // 34: tabletmanagerdata.StopReplicationAndGetStatusRequest.stop_replication_mode:type_name -> replicationdata.StopReplicationMode
+ 160, // 35: tabletmanagerdata.StopReplicationAndGetStatusResponse.status:type_name -> replicationdata.StopReplicationStatus
+ 161, // 36: tabletmanagerdata.BackupResponse.event:type_name -> logutil.Event
+ 162, // 37: tabletmanagerdata.RestoreFromBackupRequest.backup_time:type_name -> vttime.Time
+ 162, // 38: tabletmanagerdata.RestoreFromBackupRequest.restore_to_timestamp:type_name -> vttime.Time
+ 161, // 39: tabletmanagerdata.RestoreFromBackupResponse.event:type_name -> logutil.Event
+ 163, // 40: tabletmanagerdata.CreateVReplicationWorkflowRequest.binlog_source:type_name -> binlogdata.BinlogSource
+ 151, // 41: tabletmanagerdata.CreateVReplicationWorkflowRequest.tablet_types:type_name -> topodata.TabletType
0, // 42: tabletmanagerdata.CreateVReplicationWorkflowRequest.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
- 160, // 43: tabletmanagerdata.CreateVReplicationWorkflowRequest.workflow_type:type_name -> binlogdata.VReplicationWorkflowType
- 161, // 44: tabletmanagerdata.CreateVReplicationWorkflowRequest.workflow_sub_type:type_name -> binlogdata.VReplicationWorkflowSubType
- 149, // 45: tabletmanagerdata.CreateVReplicationWorkflowResponse.result:type_name -> query.QueryResult
- 149, // 46: tabletmanagerdata.DeleteVReplicationWorkflowResponse.result:type_name -> query.QueryResult
- 162, // 47: tabletmanagerdata.ReadVReplicationWorkflowsRequest.include_states:type_name -> binlogdata.VReplicationWorkflowState
- 162, // 48: tabletmanagerdata.ReadVReplicationWorkflowsRequest.exclude_states:type_name -> binlogdata.VReplicationWorkflowState
- 113, // 49: tabletmanagerdata.ReadVReplicationWorkflowsResponse.workflows:type_name -> tabletmanagerdata.ReadVReplicationWorkflowResponse
- 147, // 50: tabletmanagerdata.ReadVReplicationWorkflowResponse.tablet_types:type_name -> topodata.TabletType
+ 164, // 43: tabletmanagerdata.CreateVReplicationWorkflowRequest.workflow_type:type_name -> binlogdata.VReplicationWorkflowType
+ 165, // 44: tabletmanagerdata.CreateVReplicationWorkflowRequest.workflow_sub_type:type_name -> binlogdata.VReplicationWorkflowSubType
+ 153, // 45: tabletmanagerdata.CreateVReplicationWorkflowResponse.result:type_name -> query.QueryResult
+ 153, // 46: tabletmanagerdata.DeleteVReplicationWorkflowResponse.result:type_name -> query.QueryResult
+ 166, // 47: tabletmanagerdata.ReadVReplicationWorkflowsRequest.include_states:type_name -> binlogdata.VReplicationWorkflowState
+ 166, // 48: tabletmanagerdata.ReadVReplicationWorkflowsRequest.exclude_states:type_name -> binlogdata.VReplicationWorkflowState
+ 115, // 49: tabletmanagerdata.ReadVReplicationWorkflowsResponse.workflows:type_name -> tabletmanagerdata.ReadVReplicationWorkflowResponse
+ 151, // 50: tabletmanagerdata.ReadVReplicationWorkflowResponse.tablet_types:type_name -> topodata.TabletType
0, // 51: tabletmanagerdata.ReadVReplicationWorkflowResponse.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
- 160, // 52: tabletmanagerdata.ReadVReplicationWorkflowResponse.workflow_type:type_name -> binlogdata.VReplicationWorkflowType
- 161, // 53: tabletmanagerdata.ReadVReplicationWorkflowResponse.workflow_sub_type:type_name -> binlogdata.VReplicationWorkflowSubType
- 134, // 54: tabletmanagerdata.ReadVReplicationWorkflowResponse.streams:type_name -> tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream
- 119, // 55: tabletmanagerdata.VDiffRequest.options:type_name -> tabletmanagerdata.VDiffOptions
- 149, // 56: tabletmanagerdata.VDiffResponse.output:type_name -> query.QueryResult
- 116, // 57: tabletmanagerdata.VDiffOptions.picker_options:type_name -> tabletmanagerdata.VDiffPickerOptions
- 118, // 58: tabletmanagerdata.VDiffOptions.core_options:type_name -> tabletmanagerdata.VDiffCoreOptions
- 117, // 59: tabletmanagerdata.VDiffOptions.report_options:type_name -> tabletmanagerdata.VDiffReportOptions
- 147, // 60: tabletmanagerdata.UpdateVReplicationWorkflowRequest.tablet_types:type_name -> topodata.TabletType
- 0, // 61: tabletmanagerdata.UpdateVReplicationWorkflowRequest.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
- 163, // 62: tabletmanagerdata.UpdateVReplicationWorkflowRequest.on_ddl:type_name -> binlogdata.OnDDLAction
- 162, // 63: tabletmanagerdata.UpdateVReplicationWorkflowRequest.state:type_name -> binlogdata.VReplicationWorkflowState
- 149, // 64: tabletmanagerdata.UpdateVReplicationWorkflowResponse.result:type_name -> query.QueryResult
- 162, // 65: tabletmanagerdata.UpdateVReplicationWorkflowsRequest.state:type_name -> binlogdata.VReplicationWorkflowState
- 149, // 66: tabletmanagerdata.UpdateVReplicationWorkflowsResponse.result:type_name -> query.QueryResult
- 136, // 67: tabletmanagerdata.CheckThrottlerResponse.metrics:type_name -> tabletmanagerdata.CheckThrottlerResponse.MetricsEntry
- 1, // 68: tabletmanagerdata.CheckThrottlerResponse.response_code:type_name -> tabletmanagerdata.CheckThrottlerResponseCode
- 138, // 69: tabletmanagerdata.GetThrottlerStatusResponse.aggregated_metrics:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.AggregatedMetricsEntry
- 139, // 70: tabletmanagerdata.GetThrottlerStatusResponse.metric_thresholds:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.MetricThresholdsEntry
- 141, // 71: tabletmanagerdata.GetThrottlerStatusResponse.metrics_health:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.MetricsHealthEntry
- 142, // 72: tabletmanagerdata.GetThrottlerStatusResponse.throttled_apps:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.ThrottledAppsEntry
- 143, // 73: tabletmanagerdata.GetThrottlerStatusResponse.app_checked_metrics:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.AppCheckedMetricsEntry
- 145, // 74: tabletmanagerdata.GetThrottlerStatusResponse.recent_apps:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.RecentAppsEntry
- 159, // 75: tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream.bls:type_name -> binlogdata.BinlogSource
- 158, // 76: tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream.time_updated:type_name -> vttime.Time
- 158, // 77: tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream.transaction_timestamp:type_name -> vttime.Time
- 162, // 78: tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream.state:type_name -> binlogdata.VReplicationWorkflowState
- 158, // 79: tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream.time_heartbeat:type_name -> vttime.Time
- 158, // 80: tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream.time_throttled:type_name -> vttime.Time
- 1, // 81: tabletmanagerdata.CheckThrottlerResponse.Metric.response_code:type_name -> tabletmanagerdata.CheckThrottlerResponseCode
- 135, // 82: tabletmanagerdata.CheckThrottlerResponse.MetricsEntry.value:type_name -> tabletmanagerdata.CheckThrottlerResponse.Metric
- 137, // 83: tabletmanagerdata.GetThrottlerStatusResponse.AggregatedMetricsEntry.value:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.MetricResult
- 158, // 84: tabletmanagerdata.GetThrottlerStatusResponse.MetricHealth.last_healthy_at:type_name -> vttime.Time
- 140, // 85: tabletmanagerdata.GetThrottlerStatusResponse.MetricsHealthEntry.value:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.MetricHealth
- 164, // 86: tabletmanagerdata.GetThrottlerStatusResponse.ThrottledAppsEntry.value:type_name -> topodata.ThrottledAppRule
- 158, // 87: tabletmanagerdata.GetThrottlerStatusResponse.RecentApp.checked_at:type_name -> vttime.Time
- 1, // 88: tabletmanagerdata.GetThrottlerStatusResponse.RecentApp.response_code:type_name -> tabletmanagerdata.CheckThrottlerResponseCode
- 144, // 89: tabletmanagerdata.GetThrottlerStatusResponse.RecentAppsEntry.value:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.RecentApp
- 90, // [90:90] is the sub-list for method output_type
- 90, // [90:90] is the sub-list for method input_type
- 90, // [90:90] is the sub-list for extension type_name
- 90, // [90:90] is the sub-list for extension extendee
- 0, // [0:90] is the sub-list for field type_name
+ 164, // 52: tabletmanagerdata.ReadVReplicationWorkflowResponse.workflow_type:type_name -> binlogdata.VReplicationWorkflowType
+ 165, // 53: tabletmanagerdata.ReadVReplicationWorkflowResponse.workflow_sub_type:type_name -> binlogdata.VReplicationWorkflowSubType
+ 136, // 54: tabletmanagerdata.ReadVReplicationWorkflowResponse.streams:type_name -> tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream
+ 137, // 55: tabletmanagerdata.ReadVReplicationWorkflowResponse.config_overrides:type_name -> tabletmanagerdata.ReadVReplicationWorkflowResponse.ConfigOverridesEntry
+ 121, // 56: tabletmanagerdata.VDiffRequest.options:type_name -> tabletmanagerdata.VDiffOptions
+ 153, // 57: tabletmanagerdata.VDiffResponse.output:type_name -> query.QueryResult
+ 118, // 58: tabletmanagerdata.VDiffOptions.picker_options:type_name -> tabletmanagerdata.VDiffPickerOptions
+ 120, // 59: tabletmanagerdata.VDiffOptions.core_options:type_name -> tabletmanagerdata.VDiffCoreOptions
+ 119, // 60: tabletmanagerdata.VDiffOptions.report_options:type_name -> tabletmanagerdata.VDiffReportOptions
+ 151, // 61: tabletmanagerdata.UpdateVReplicationWorkflowRequest.tablet_types:type_name -> topodata.TabletType
+ 0, // 62: tabletmanagerdata.UpdateVReplicationWorkflowRequest.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
+ 167, // 63: tabletmanagerdata.UpdateVReplicationWorkflowRequest.on_ddl:type_name -> binlogdata.OnDDLAction
+ 166, // 64: tabletmanagerdata.UpdateVReplicationWorkflowRequest.state:type_name -> binlogdata.VReplicationWorkflowState
+ 138, // 65: tabletmanagerdata.UpdateVReplicationWorkflowRequest.config_overrides:type_name -> tabletmanagerdata.UpdateVReplicationWorkflowRequest.ConfigOverridesEntry
+ 153, // 66: tabletmanagerdata.UpdateVReplicationWorkflowResponse.result:type_name -> query.QueryResult
+ 166, // 67: tabletmanagerdata.UpdateVReplicationWorkflowsRequest.state:type_name -> binlogdata.VReplicationWorkflowState
+ 153, // 68: tabletmanagerdata.UpdateVReplicationWorkflowsResponse.result:type_name -> query.QueryResult
+ 140, // 69: tabletmanagerdata.CheckThrottlerResponse.metrics:type_name -> tabletmanagerdata.CheckThrottlerResponse.MetricsEntry
+ 1, // 70: tabletmanagerdata.CheckThrottlerResponse.response_code:type_name -> tabletmanagerdata.CheckThrottlerResponseCode
+ 142, // 71: tabletmanagerdata.GetThrottlerStatusResponse.aggregated_metrics:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.AggregatedMetricsEntry
+ 143, // 72: tabletmanagerdata.GetThrottlerStatusResponse.metric_thresholds:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.MetricThresholdsEntry
+ 145, // 73: tabletmanagerdata.GetThrottlerStatusResponse.metrics_health:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.MetricsHealthEntry
+ 146, // 74: tabletmanagerdata.GetThrottlerStatusResponse.throttled_apps:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.ThrottledAppsEntry
+ 147, // 75: tabletmanagerdata.GetThrottlerStatusResponse.app_checked_metrics:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.AppCheckedMetricsEntry
+ 149, // 76: tabletmanagerdata.GetThrottlerStatusResponse.recent_apps:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.RecentAppsEntry
+ 163, // 77: tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream.bls:type_name -> binlogdata.BinlogSource
+ 162, // 78: tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream.time_updated:type_name -> vttime.Time
+ 162, // 79: tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream.transaction_timestamp:type_name -> vttime.Time
+ 166, // 80: tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream.state:type_name -> binlogdata.VReplicationWorkflowState
+ 162, // 81: tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream.time_heartbeat:type_name -> vttime.Time
+ 162, // 82: tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream.time_throttled:type_name -> vttime.Time
+ 1, // 83: tabletmanagerdata.CheckThrottlerResponse.Metric.response_code:type_name -> tabletmanagerdata.CheckThrottlerResponseCode
+ 139, // 84: tabletmanagerdata.CheckThrottlerResponse.MetricsEntry.value:type_name -> tabletmanagerdata.CheckThrottlerResponse.Metric
+ 141, // 85: tabletmanagerdata.GetThrottlerStatusResponse.AggregatedMetricsEntry.value:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.MetricResult
+ 162, // 86: tabletmanagerdata.GetThrottlerStatusResponse.MetricHealth.last_healthy_at:type_name -> vttime.Time
+ 144, // 87: tabletmanagerdata.GetThrottlerStatusResponse.MetricsHealthEntry.value:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.MetricHealth
+ 168, // 88: tabletmanagerdata.GetThrottlerStatusResponse.ThrottledAppsEntry.value:type_name -> topodata.ThrottledAppRule
+ 162, // 89: tabletmanagerdata.GetThrottlerStatusResponse.RecentApp.checked_at:type_name -> vttime.Time
+ 1, // 90: tabletmanagerdata.GetThrottlerStatusResponse.RecentApp.response_code:type_name -> tabletmanagerdata.CheckThrottlerResponseCode
+ 148, // 91: tabletmanagerdata.GetThrottlerStatusResponse.RecentAppsEntry.value:type_name -> tabletmanagerdata.GetThrottlerStatusResponse.RecentApp
+ 92, // [92:92] is the sub-list for method output_type
+ 92, // [92:92] is the sub-list for method input_type
+ 92, // [92:92] is the sub-list for extension type_name
+ 92, // [92:92] is the sub-list for extension extendee
+ 0, // [0:92] is the sub-list for field type_name
}
func init() { file_tabletmanagerdata_proto_init() }
@@ -9519,7 +9671,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[50].Exporter = func(v any, i int) any {
- switch v := v.(*ReplicationStatusRequest); i {
+ switch v := v.(*ConcludeTransactionRequest); i {
case 0:
return &v.state
case 1:
@@ -9531,7 +9683,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[51].Exporter = func(v any, i int) any {
- switch v := v.(*ReplicationStatusResponse); i {
+ switch v := v.(*ConcludeTransactionResponse); i {
case 0:
return &v.state
case 1:
@@ -9543,7 +9695,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[52].Exporter = func(v any, i int) any {
- switch v := v.(*PrimaryStatusRequest); i {
+ switch v := v.(*ReplicationStatusRequest); i {
case 0:
return &v.state
case 1:
@@ -9555,7 +9707,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[53].Exporter = func(v any, i int) any {
- switch v := v.(*PrimaryStatusResponse); i {
+ switch v := v.(*ReplicationStatusResponse); i {
case 0:
return &v.state
case 1:
@@ -9567,7 +9719,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[54].Exporter = func(v any, i int) any {
- switch v := v.(*PrimaryPositionRequest); i {
+ switch v := v.(*PrimaryStatusRequest); i {
case 0:
return &v.state
case 1:
@@ -9579,7 +9731,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[55].Exporter = func(v any, i int) any {
- switch v := v.(*PrimaryPositionResponse); i {
+ switch v := v.(*PrimaryStatusResponse); i {
case 0:
return &v.state
case 1:
@@ -9591,7 +9743,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[56].Exporter = func(v any, i int) any {
- switch v := v.(*WaitForPositionRequest); i {
+ switch v := v.(*PrimaryPositionRequest); i {
case 0:
return &v.state
case 1:
@@ -9603,7 +9755,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[57].Exporter = func(v any, i int) any {
- switch v := v.(*WaitForPositionResponse); i {
+ switch v := v.(*PrimaryPositionResponse); i {
case 0:
return &v.state
case 1:
@@ -9615,7 +9767,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[58].Exporter = func(v any, i int) any {
- switch v := v.(*StopReplicationRequest); i {
+ switch v := v.(*WaitForPositionRequest); i {
case 0:
return &v.state
case 1:
@@ -9627,7 +9779,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[59].Exporter = func(v any, i int) any {
- switch v := v.(*StopReplicationResponse); i {
+ switch v := v.(*WaitForPositionResponse); i {
case 0:
return &v.state
case 1:
@@ -9639,7 +9791,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[60].Exporter = func(v any, i int) any {
- switch v := v.(*StopReplicationMinimumRequest); i {
+ switch v := v.(*StopReplicationRequest); i {
case 0:
return &v.state
case 1:
@@ -9651,7 +9803,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[61].Exporter = func(v any, i int) any {
- switch v := v.(*StopReplicationMinimumResponse); i {
+ switch v := v.(*StopReplicationResponse); i {
case 0:
return &v.state
case 1:
@@ -9663,7 +9815,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[62].Exporter = func(v any, i int) any {
- switch v := v.(*StartReplicationRequest); i {
+ switch v := v.(*StopReplicationMinimumRequest); i {
case 0:
return &v.state
case 1:
@@ -9675,7 +9827,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[63].Exporter = func(v any, i int) any {
- switch v := v.(*StartReplicationResponse); i {
+ switch v := v.(*StopReplicationMinimumResponse); i {
case 0:
return &v.state
case 1:
@@ -9687,7 +9839,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[64].Exporter = func(v any, i int) any {
- switch v := v.(*StartReplicationUntilAfterRequest); i {
+ switch v := v.(*StartReplicationRequest); i {
case 0:
return &v.state
case 1:
@@ -9699,7 +9851,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[65].Exporter = func(v any, i int) any {
- switch v := v.(*StartReplicationUntilAfterResponse); i {
+ switch v := v.(*StartReplicationResponse); i {
case 0:
return &v.state
case 1:
@@ -9711,7 +9863,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[66].Exporter = func(v any, i int) any {
- switch v := v.(*GetReplicasRequest); i {
+ switch v := v.(*StartReplicationUntilAfterRequest); i {
case 0:
return &v.state
case 1:
@@ -9723,7 +9875,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[67].Exporter = func(v any, i int) any {
- switch v := v.(*GetReplicasResponse); i {
+ switch v := v.(*StartReplicationUntilAfterResponse); i {
case 0:
return &v.state
case 1:
@@ -9735,7 +9887,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[68].Exporter = func(v any, i int) any {
- switch v := v.(*ResetReplicationRequest); i {
+ switch v := v.(*GetReplicasRequest); i {
case 0:
return &v.state
case 1:
@@ -9747,7 +9899,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[69].Exporter = func(v any, i int) any {
- switch v := v.(*ResetReplicationResponse); i {
+ switch v := v.(*GetReplicasResponse); i {
case 0:
return &v.state
case 1:
@@ -9759,7 +9911,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[70].Exporter = func(v any, i int) any {
- switch v := v.(*VReplicationExecRequest); i {
+ switch v := v.(*ResetReplicationRequest); i {
case 0:
return &v.state
case 1:
@@ -9771,7 +9923,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[71].Exporter = func(v any, i int) any {
- switch v := v.(*VReplicationExecResponse); i {
+ switch v := v.(*ResetReplicationResponse); i {
case 0:
return &v.state
case 1:
@@ -9783,7 +9935,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[72].Exporter = func(v any, i int) any {
- switch v := v.(*VReplicationWaitForPosRequest); i {
+ switch v := v.(*VReplicationExecRequest); i {
case 0:
return &v.state
case 1:
@@ -9795,7 +9947,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[73].Exporter = func(v any, i int) any {
- switch v := v.(*VReplicationWaitForPosResponse); i {
+ switch v := v.(*VReplicationExecResponse); i {
case 0:
return &v.state
case 1:
@@ -9807,7 +9959,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[74].Exporter = func(v any, i int) any {
- switch v := v.(*InitPrimaryRequest); i {
+ switch v := v.(*VReplicationWaitForPosRequest); i {
case 0:
return &v.state
case 1:
@@ -9819,7 +9971,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[75].Exporter = func(v any, i int) any {
- switch v := v.(*InitPrimaryResponse); i {
+ switch v := v.(*VReplicationWaitForPosResponse); i {
case 0:
return &v.state
case 1:
@@ -9831,7 +9983,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[76].Exporter = func(v any, i int) any {
- switch v := v.(*PopulateReparentJournalRequest); i {
+ switch v := v.(*InitPrimaryRequest); i {
case 0:
return &v.state
case 1:
@@ -9843,7 +9995,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[77].Exporter = func(v any, i int) any {
- switch v := v.(*PopulateReparentJournalResponse); i {
+ switch v := v.(*InitPrimaryResponse); i {
case 0:
return &v.state
case 1:
@@ -9855,7 +10007,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[78].Exporter = func(v any, i int) any {
- switch v := v.(*InitReplicaRequest); i {
+ switch v := v.(*PopulateReparentJournalRequest); i {
case 0:
return &v.state
case 1:
@@ -9867,7 +10019,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[79].Exporter = func(v any, i int) any {
- switch v := v.(*InitReplicaResponse); i {
+ switch v := v.(*PopulateReparentJournalResponse); i {
case 0:
return &v.state
case 1:
@@ -9879,7 +10031,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[80].Exporter = func(v any, i int) any {
- switch v := v.(*DemotePrimaryRequest); i {
+ switch v := v.(*InitReplicaRequest); i {
case 0:
return &v.state
case 1:
@@ -9891,7 +10043,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[81].Exporter = func(v any, i int) any {
- switch v := v.(*DemotePrimaryResponse); i {
+ switch v := v.(*InitReplicaResponse); i {
case 0:
return &v.state
case 1:
@@ -9903,7 +10055,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[82].Exporter = func(v any, i int) any {
- switch v := v.(*UndoDemotePrimaryRequest); i {
+ switch v := v.(*DemotePrimaryRequest); i {
case 0:
return &v.state
case 1:
@@ -9915,7 +10067,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[83].Exporter = func(v any, i int) any {
- switch v := v.(*UndoDemotePrimaryResponse); i {
+ switch v := v.(*DemotePrimaryResponse); i {
case 0:
return &v.state
case 1:
@@ -9927,7 +10079,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[84].Exporter = func(v any, i int) any {
- switch v := v.(*ReplicaWasPromotedRequest); i {
+ switch v := v.(*UndoDemotePrimaryRequest); i {
case 0:
return &v.state
case 1:
@@ -9939,7 +10091,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[85].Exporter = func(v any, i int) any {
- switch v := v.(*ReplicaWasPromotedResponse); i {
+ switch v := v.(*UndoDemotePrimaryResponse); i {
case 0:
return &v.state
case 1:
@@ -9951,7 +10103,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[86].Exporter = func(v any, i int) any {
- switch v := v.(*ResetReplicationParametersRequest); i {
+ switch v := v.(*ReplicaWasPromotedRequest); i {
case 0:
return &v.state
case 1:
@@ -9963,7 +10115,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[87].Exporter = func(v any, i int) any {
- switch v := v.(*ResetReplicationParametersResponse); i {
+ switch v := v.(*ReplicaWasPromotedResponse); i {
case 0:
return &v.state
case 1:
@@ -9975,7 +10127,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[88].Exporter = func(v any, i int) any {
- switch v := v.(*FullStatusRequest); i {
+ switch v := v.(*ResetReplicationParametersRequest); i {
case 0:
return &v.state
case 1:
@@ -9987,7 +10139,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[89].Exporter = func(v any, i int) any {
- switch v := v.(*FullStatusResponse); i {
+ switch v := v.(*ResetReplicationParametersResponse); i {
case 0:
return &v.state
case 1:
@@ -9999,7 +10151,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[90].Exporter = func(v any, i int) any {
- switch v := v.(*SetReplicationSourceRequest); i {
+ switch v := v.(*FullStatusRequest); i {
case 0:
return &v.state
case 1:
@@ -10011,7 +10163,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[91].Exporter = func(v any, i int) any {
- switch v := v.(*SetReplicationSourceResponse); i {
+ switch v := v.(*FullStatusResponse); i {
case 0:
return &v.state
case 1:
@@ -10023,7 +10175,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[92].Exporter = func(v any, i int) any {
- switch v := v.(*ReplicaWasRestartedRequest); i {
+ switch v := v.(*SetReplicationSourceRequest); i {
case 0:
return &v.state
case 1:
@@ -10035,7 +10187,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[93].Exporter = func(v any, i int) any {
- switch v := v.(*ReplicaWasRestartedResponse); i {
+ switch v := v.(*SetReplicationSourceResponse); i {
case 0:
return &v.state
case 1:
@@ -10047,7 +10199,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[94].Exporter = func(v any, i int) any {
- switch v := v.(*StopReplicationAndGetStatusRequest); i {
+ switch v := v.(*ReplicaWasRestartedRequest); i {
case 0:
return &v.state
case 1:
@@ -10059,7 +10211,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[95].Exporter = func(v any, i int) any {
- switch v := v.(*StopReplicationAndGetStatusResponse); i {
+ switch v := v.(*ReplicaWasRestartedResponse); i {
case 0:
return &v.state
case 1:
@@ -10071,7 +10223,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[96].Exporter = func(v any, i int) any {
- switch v := v.(*PromoteReplicaRequest); i {
+ switch v := v.(*StopReplicationAndGetStatusRequest); i {
case 0:
return &v.state
case 1:
@@ -10083,7 +10235,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[97].Exporter = func(v any, i int) any {
- switch v := v.(*PromoteReplicaResponse); i {
+ switch v := v.(*StopReplicationAndGetStatusResponse); i {
case 0:
return &v.state
case 1:
@@ -10095,7 +10247,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[98].Exporter = func(v any, i int) any {
- switch v := v.(*BackupRequest); i {
+ switch v := v.(*PromoteReplicaRequest); i {
case 0:
return &v.state
case 1:
@@ -10107,7 +10259,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[99].Exporter = func(v any, i int) any {
- switch v := v.(*BackupResponse); i {
+ switch v := v.(*PromoteReplicaResponse); i {
case 0:
return &v.state
case 1:
@@ -10119,7 +10271,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[100].Exporter = func(v any, i int) any {
- switch v := v.(*RestoreFromBackupRequest); i {
+ switch v := v.(*BackupRequest); i {
case 0:
return &v.state
case 1:
@@ -10131,7 +10283,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[101].Exporter = func(v any, i int) any {
- switch v := v.(*RestoreFromBackupResponse); i {
+ switch v := v.(*BackupResponse); i {
case 0:
return &v.state
case 1:
@@ -10143,7 +10295,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[102].Exporter = func(v any, i int) any {
- switch v := v.(*CreateVReplicationWorkflowRequest); i {
+ switch v := v.(*RestoreFromBackupRequest); i {
case 0:
return &v.state
case 1:
@@ -10155,7 +10307,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[103].Exporter = func(v any, i int) any {
- switch v := v.(*CreateVReplicationWorkflowResponse); i {
+ switch v := v.(*RestoreFromBackupResponse); i {
case 0:
return &v.state
case 1:
@@ -10167,7 +10319,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[104].Exporter = func(v any, i int) any {
- switch v := v.(*DeleteVReplicationWorkflowRequest); i {
+ switch v := v.(*CreateVReplicationWorkflowRequest); i {
case 0:
return &v.state
case 1:
@@ -10179,7 +10331,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[105].Exporter = func(v any, i int) any {
- switch v := v.(*DeleteVReplicationWorkflowResponse); i {
+ switch v := v.(*CreateVReplicationWorkflowResponse); i {
case 0:
return &v.state
case 1:
@@ -10191,7 +10343,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[106].Exporter = func(v any, i int) any {
- switch v := v.(*HasVReplicationWorkflowsRequest); i {
+ switch v := v.(*DeleteVReplicationWorkflowRequest); i {
case 0:
return &v.state
case 1:
@@ -10203,7 +10355,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[107].Exporter = func(v any, i int) any {
- switch v := v.(*HasVReplicationWorkflowsResponse); i {
+ switch v := v.(*DeleteVReplicationWorkflowResponse); i {
case 0:
return &v.state
case 1:
@@ -10215,7 +10367,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[108].Exporter = func(v any, i int) any {
- switch v := v.(*ReadVReplicationWorkflowsRequest); i {
+ switch v := v.(*HasVReplicationWorkflowsRequest); i {
case 0:
return &v.state
case 1:
@@ -10227,7 +10379,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[109].Exporter = func(v any, i int) any {
- switch v := v.(*ReadVReplicationWorkflowsResponse); i {
+ switch v := v.(*HasVReplicationWorkflowsResponse); i {
case 0:
return &v.state
case 1:
@@ -10239,7 +10391,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[110].Exporter = func(v any, i int) any {
- switch v := v.(*ReadVReplicationWorkflowRequest); i {
+ switch v := v.(*ReadVReplicationWorkflowsRequest); i {
case 0:
return &v.state
case 1:
@@ -10251,7 +10403,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[111].Exporter = func(v any, i int) any {
- switch v := v.(*ReadVReplicationWorkflowResponse); i {
+ switch v := v.(*ReadVReplicationWorkflowsResponse); i {
case 0:
return &v.state
case 1:
@@ -10263,7 +10415,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[112].Exporter = func(v any, i int) any {
- switch v := v.(*VDiffRequest); i {
+ switch v := v.(*ReadVReplicationWorkflowRequest); i {
case 0:
return &v.state
case 1:
@@ -10275,7 +10427,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[113].Exporter = func(v any, i int) any {
- switch v := v.(*VDiffResponse); i {
+ switch v := v.(*ReadVReplicationWorkflowResponse); i {
case 0:
return &v.state
case 1:
@@ -10287,7 +10439,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[114].Exporter = func(v any, i int) any {
- switch v := v.(*VDiffPickerOptions); i {
+ switch v := v.(*VDiffRequest); i {
case 0:
return &v.state
case 1:
@@ -10299,7 +10451,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[115].Exporter = func(v any, i int) any {
- switch v := v.(*VDiffReportOptions); i {
+ switch v := v.(*VDiffResponse); i {
case 0:
return &v.state
case 1:
@@ -10311,7 +10463,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[116].Exporter = func(v any, i int) any {
- switch v := v.(*VDiffCoreOptions); i {
+ switch v := v.(*VDiffPickerOptions); i {
case 0:
return &v.state
case 1:
@@ -10323,7 +10475,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[117].Exporter = func(v any, i int) any {
- switch v := v.(*VDiffOptions); i {
+ switch v := v.(*VDiffReportOptions); i {
case 0:
return &v.state
case 1:
@@ -10335,7 +10487,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[118].Exporter = func(v any, i int) any {
- switch v := v.(*UpdateVReplicationWorkflowRequest); i {
+ switch v := v.(*VDiffCoreOptions); i {
case 0:
return &v.state
case 1:
@@ -10347,7 +10499,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[119].Exporter = func(v any, i int) any {
- switch v := v.(*UpdateVReplicationWorkflowResponse); i {
+ switch v := v.(*VDiffOptions); i {
case 0:
return &v.state
case 1:
@@ -10359,7 +10511,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[120].Exporter = func(v any, i int) any {
- switch v := v.(*UpdateVReplicationWorkflowsRequest); i {
+ switch v := v.(*UpdateVReplicationWorkflowRequest); i {
case 0:
return &v.state
case 1:
@@ -10371,7 +10523,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[121].Exporter = func(v any, i int) any {
- switch v := v.(*UpdateVReplicationWorkflowsResponse); i {
+ switch v := v.(*UpdateVReplicationWorkflowResponse); i {
case 0:
return &v.state
case 1:
@@ -10383,7 +10535,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[122].Exporter = func(v any, i int) any {
- switch v := v.(*ResetSequencesRequest); i {
+ switch v := v.(*UpdateVReplicationWorkflowsRequest); i {
case 0:
return &v.state
case 1:
@@ -10395,7 +10547,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[123].Exporter = func(v any, i int) any {
- switch v := v.(*ResetSequencesResponse); i {
+ switch v := v.(*UpdateVReplicationWorkflowsResponse); i {
case 0:
return &v.state
case 1:
@@ -10407,7 +10559,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[124].Exporter = func(v any, i int) any {
- switch v := v.(*CheckThrottlerRequest); i {
+ switch v := v.(*ResetSequencesRequest); i {
case 0:
return &v.state
case 1:
@@ -10419,7 +10571,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[125].Exporter = func(v any, i int) any {
- switch v := v.(*CheckThrottlerResponse); i {
+ switch v := v.(*ResetSequencesResponse); i {
case 0:
return &v.state
case 1:
@@ -10431,7 +10583,7 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[126].Exporter = func(v any, i int) any {
- switch v := v.(*GetThrottlerStatusRequest); i {
+ switch v := v.(*CheckThrottlerRequest); i {
case 0:
return &v.state
case 1:
@@ -10443,6 +10595,30 @@ func file_tabletmanagerdata_proto_init() {
}
}
file_tabletmanagerdata_proto_msgTypes[127].Exporter = func(v any, i int) any {
+ switch v := v.(*CheckThrottlerResponse); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_tabletmanagerdata_proto_msgTypes[128].Exporter = func(v any, i int) any {
+ switch v := v.(*GetThrottlerStatusRequest); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_tabletmanagerdata_proto_msgTypes[129].Exporter = func(v any, i int) any {
switch v := v.(*GetThrottlerStatusResponse); i {
case 0:
return &v.state
@@ -10454,7 +10630,7 @@ func file_tabletmanagerdata_proto_init() {
return nil
}
}
- file_tabletmanagerdata_proto_msgTypes[132].Exporter = func(v any, i int) any {
+ file_tabletmanagerdata_proto_msgTypes[134].Exporter = func(v any, i int) any {
switch v := v.(*ReadVReplicationWorkflowResponse_Stream); i {
case 0:
return &v.state
@@ -10466,7 +10642,7 @@ func file_tabletmanagerdata_proto_init() {
return nil
}
}
- file_tabletmanagerdata_proto_msgTypes[133].Exporter = func(v any, i int) any {
+ file_tabletmanagerdata_proto_msgTypes[137].Exporter = func(v any, i int) any {
switch v := v.(*CheckThrottlerResponse_Metric); i {
case 0:
return &v.state
@@ -10478,7 +10654,7 @@ func file_tabletmanagerdata_proto_init() {
return nil
}
}
- file_tabletmanagerdata_proto_msgTypes[135].Exporter = func(v any, i int) any {
+ file_tabletmanagerdata_proto_msgTypes[139].Exporter = func(v any, i int) any {
switch v := v.(*GetThrottlerStatusResponse_MetricResult); i {
case 0:
return &v.state
@@ -10490,7 +10666,7 @@ func file_tabletmanagerdata_proto_init() {
return nil
}
}
- file_tabletmanagerdata_proto_msgTypes[138].Exporter = func(v any, i int) any {
+ file_tabletmanagerdata_proto_msgTypes[142].Exporter = func(v any, i int) any {
switch v := v.(*GetThrottlerStatusResponse_MetricHealth); i {
case 0:
return &v.state
@@ -10502,7 +10678,7 @@ func file_tabletmanagerdata_proto_init() {
return nil
}
}
- file_tabletmanagerdata_proto_msgTypes[142].Exporter = func(v any, i int) any {
+ file_tabletmanagerdata_proto_msgTypes[146].Exporter = func(v any, i int) any {
switch v := v.(*GetThrottlerStatusResponse_RecentApp); i {
case 0:
return &v.state
@@ -10515,14 +10691,16 @@ func file_tabletmanagerdata_proto_init() {
}
}
}
- file_tabletmanagerdata_proto_msgTypes[116].OneofWrappers = []any{}
+ file_tabletmanagerdata_proto_msgTypes[118].OneofWrappers = []any{}
+ file_tabletmanagerdata_proto_msgTypes[120].OneofWrappers = []any{}
+ file_tabletmanagerdata_proto_msgTypes[122].OneofWrappers = []any{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_tabletmanagerdata_proto_rawDesc,
NumEnums: 2,
- NumMessages: 144,
+ NumMessages: 148,
NumExtensions: 0,
NumServices: 0,
},
diff --git a/go/vt/proto/tabletmanagerdata/tabletmanagerdata_vtproto.pb.go b/go/vt/proto/tabletmanagerdata/tabletmanagerdata_vtproto.pb.go
index 536e9c177f8..323ddcebe47 100644
--- a/go/vt/proto/tabletmanagerdata/tabletmanagerdata_vtproto.pb.go
+++ b/go/vt/proto/tabletmanagerdata/tabletmanagerdata_vtproto.pb.go
@@ -1024,6 +1024,40 @@ func (m *GetUnresolvedTransactionsResponse) CloneMessageVT() proto.Message {
return m.CloneVT()
}
+func (m *ConcludeTransactionRequest) CloneVT() *ConcludeTransactionRequest {
+ if m == nil {
+ return (*ConcludeTransactionRequest)(nil)
+ }
+ r := new(ConcludeTransactionRequest)
+ r.Dtid = m.Dtid
+ r.Mm = m.Mm
+ if len(m.unknownFields) > 0 {
+ r.unknownFields = make([]byte, len(m.unknownFields))
+ copy(r.unknownFields, m.unknownFields)
+ }
+ return r
+}
+
+func (m *ConcludeTransactionRequest) CloneMessageVT() proto.Message {
+ return m.CloneVT()
+}
+
+func (m *ConcludeTransactionResponse) CloneVT() *ConcludeTransactionResponse {
+ if m == nil {
+ return (*ConcludeTransactionResponse)(nil)
+ }
+ r := new(ConcludeTransactionResponse)
+ if len(m.unknownFields) > 0 {
+ r.unknownFields = make([]byte, len(m.unknownFields))
+ copy(r.unknownFields, m.unknownFields)
+ }
+ return r
+}
+
+func (m *ConcludeTransactionResponse) CloneMessageVT() proto.Message {
+ return m.CloneVT()
+}
+
func (m *ReplicationStatusRequest) CloneVT() *ReplicationStatusRequest {
if m == nil {
return (*ReplicationStatusRequest)(nil)
@@ -2172,6 +2206,13 @@ func (m *ReadVReplicationWorkflowResponse) CloneVT() *ReadVReplicationWorkflowRe
}
r.Streams = tmpContainer
}
+ if rhs := m.ConfigOverrides; rhs != nil {
+ tmpContainer := make(map[string]string, len(rhs))
+ for k, v := range rhs {
+ tmpContainer[k] = v
+ }
+ r.ConfigOverrides = tmpContainer
+ }
if len(m.unknownFields) > 0 {
r.unknownFields = make([]byte, len(m.unknownFields))
copy(r.unknownFields, m.unknownFields)
@@ -2318,9 +2359,6 @@ func (m *UpdateVReplicationWorkflowRequest) CloneVT() *UpdateVReplicationWorkflo
}
r := new(UpdateVReplicationWorkflowRequest)
r.Workflow = m.Workflow
- r.TabletSelectionPreference = m.TabletSelectionPreference
- r.OnDdl = m.OnDdl
- r.State = m.State
if rhs := m.Cells; rhs != nil {
tmpContainer := make([]string, len(rhs))
copy(tmpContainer, rhs)
@@ -2331,6 +2369,25 @@ func (m *UpdateVReplicationWorkflowRequest) CloneVT() *UpdateVReplicationWorkflo
copy(tmpContainer, rhs)
r.TabletTypes = tmpContainer
}
+ if rhs := m.TabletSelectionPreference; rhs != nil {
+ tmpVal := *rhs
+ r.TabletSelectionPreference = &tmpVal
+ }
+ if rhs := m.OnDdl; rhs != nil {
+ tmpVal := *rhs
+ r.OnDdl = &tmpVal
+ }
+ if rhs := m.State; rhs != nil {
+ tmpVal := *rhs
+ r.State = &tmpVal
+ }
+ if rhs := m.ConfigOverrides; rhs != nil {
+ tmpContainer := make(map[string]string, len(rhs))
+ for k, v := range rhs {
+ tmpContainer[k] = v
+ }
+ r.ConfigOverrides = tmpContainer
+ }
if len(m.unknownFields) > 0 {
r.unknownFields = make([]byte, len(m.unknownFields))
copy(r.unknownFields, m.unknownFields)
@@ -2365,9 +2422,6 @@ func (m *UpdateVReplicationWorkflowsRequest) CloneVT() *UpdateVReplicationWorkfl
}
r := new(UpdateVReplicationWorkflowsRequest)
r.AllWorkflows = m.AllWorkflows
- r.State = m.State
- r.Message = m.Message
- r.StopPosition = m.StopPosition
if rhs := m.IncludeWorkflows; rhs != nil {
tmpContainer := make([]string, len(rhs))
copy(tmpContainer, rhs)
@@ -2378,6 +2432,18 @@ func (m *UpdateVReplicationWorkflowsRequest) CloneVT() *UpdateVReplicationWorkfl
copy(tmpContainer, rhs)
r.ExcludeWorkflows = tmpContainer
}
+ if rhs := m.State; rhs != nil {
+ tmpVal := *rhs
+ r.State = &tmpVal
+ }
+ if rhs := m.Message; rhs != nil {
+ tmpVal := *rhs
+ r.Message = &tmpVal
+ }
+ if rhs := m.StopPosition; rhs != nil {
+ tmpVal := *rhs
+ r.StopPosition = &tmpVal
+ }
if len(m.unknownFields) > 0 {
r.unknownFields = make([]byte, len(m.unknownFields))
copy(r.unknownFields, m.unknownFields)
@@ -5036,6 +5102,89 @@ func (m *GetUnresolvedTransactionsResponse) MarshalToSizedBufferVT(dAtA []byte)
return len(dAtA) - i, nil
}
+func (m *ConcludeTransactionRequest) MarshalVT() (dAtA []byte, err error) {
+ if m == nil {
+ return nil, nil
+ }
+ size := m.SizeVT()
+ dAtA = make([]byte, size)
+ n, err := m.MarshalToSizedBufferVT(dAtA[:size])
+ if err != nil {
+ return nil, err
+ }
+ return dAtA[:n], nil
+}
+
+func (m *ConcludeTransactionRequest) MarshalToVT(dAtA []byte) (int, error) {
+ size := m.SizeVT()
+ return m.MarshalToSizedBufferVT(dAtA[:size])
+}
+
+func (m *ConcludeTransactionRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
+ if m == nil {
+ return 0, nil
+ }
+ i := len(dAtA)
+ _ = i
+ var l int
+ _ = l
+ if m.unknownFields != nil {
+ i -= len(m.unknownFields)
+ copy(dAtA[i:], m.unknownFields)
+ }
+ if m.Mm {
+ i--
+ if m.Mm {
+ dAtA[i] = 1
+ } else {
+ dAtA[i] = 0
+ }
+ i--
+ dAtA[i] = 0x10
+ }
+ if len(m.Dtid) > 0 {
+ i -= len(m.Dtid)
+ copy(dAtA[i:], m.Dtid)
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.Dtid)))
+ i--
+ dAtA[i] = 0xa
+ }
+ return len(dAtA) - i, nil
+}
+
+func (m *ConcludeTransactionResponse) MarshalVT() (dAtA []byte, err error) {
+ if m == nil {
+ return nil, nil
+ }
+ size := m.SizeVT()
+ dAtA = make([]byte, size)
+ n, err := m.MarshalToSizedBufferVT(dAtA[:size])
+ if err != nil {
+ return nil, err
+ }
+ return dAtA[:n], nil
+}
+
+func (m *ConcludeTransactionResponse) MarshalToVT(dAtA []byte) (int, error) {
+ size := m.SizeVT()
+ return m.MarshalToSizedBufferVT(dAtA[:size])
+}
+
+func (m *ConcludeTransactionResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
+ if m == nil {
+ return 0, nil
+ }
+ i := len(dAtA)
+ _ = i
+ var l int
+ _ = l
+ if m.unknownFields != nil {
+ i -= len(m.unknownFields)
+ copy(dAtA[i:], m.unknownFields)
+ }
+ return len(dAtA) - i, nil
+}
+
func (m *ReplicationStatusRequest) MarshalVT() (dAtA []byte, err error) {
if m == nil {
return nil, nil
@@ -7863,6 +8012,25 @@ func (m *ReadVReplicationWorkflowResponse) MarshalToSizedBufferVT(dAtA []byte) (
i -= len(m.unknownFields)
copy(dAtA[i:], m.unknownFields)
}
+ if len(m.ConfigOverrides) > 0 {
+ for k := range m.ConfigOverrides {
+ v := m.ConfigOverrides[k]
+ baseI := i
+ i -= len(v)
+ copy(dAtA[i:], v)
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(len(v)))
+ i--
+ dAtA[i] = 0x12
+ i -= len(k)
+ copy(dAtA[i:], k)
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(len(k)))
+ i--
+ dAtA[i] = 0xa
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(baseI-i))
+ i--
+ dAtA[i] = 0x6a
+ }
+ }
if len(m.Options) > 0 {
i -= len(m.Options)
copy(dAtA[i:], m.Options)
@@ -8414,18 +8582,37 @@ func (m *UpdateVReplicationWorkflowRequest) MarshalToSizedBufferVT(dAtA []byte)
i -= len(m.unknownFields)
copy(dAtA[i:], m.unknownFields)
}
- if m.State != 0 {
- i = protohelpers.EncodeVarint(dAtA, i, uint64(m.State))
+ if len(m.ConfigOverrides) > 0 {
+ for k := range m.ConfigOverrides {
+ v := m.ConfigOverrides[k]
+ baseI := i
+ i -= len(v)
+ copy(dAtA[i:], v)
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(len(v)))
+ i--
+ dAtA[i] = 0x12
+ i -= len(k)
+ copy(dAtA[i:], k)
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(len(k)))
+ i--
+ dAtA[i] = 0xa
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(baseI-i))
+ i--
+ dAtA[i] = 0x42
+ }
+ }
+ if m.State != nil {
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(*m.State))
i--
dAtA[i] = 0x30
}
- if m.OnDdl != 0 {
- i = protohelpers.EncodeVarint(dAtA, i, uint64(m.OnDdl))
+ if m.OnDdl != nil {
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(*m.OnDdl))
i--
dAtA[i] = 0x28
}
- if m.TabletSelectionPreference != 0 {
- i = protohelpers.EncodeVarint(dAtA, i, uint64(m.TabletSelectionPreference))
+ if m.TabletSelectionPreference != nil {
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(*m.TabletSelectionPreference))
i--
dAtA[i] = 0x20
}
@@ -8542,22 +8729,22 @@ func (m *UpdateVReplicationWorkflowsRequest) MarshalToSizedBufferVT(dAtA []byte)
i -= len(m.unknownFields)
copy(dAtA[i:], m.unknownFields)
}
- if len(m.StopPosition) > 0 {
- i -= len(m.StopPosition)
- copy(dAtA[i:], m.StopPosition)
- i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.StopPosition)))
+ if m.StopPosition != nil {
+ i -= len(*m.StopPosition)
+ copy(dAtA[i:], *m.StopPosition)
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(len(*m.StopPosition)))
i--
dAtA[i] = 0x32
}
- if len(m.Message) > 0 {
- i -= len(m.Message)
- copy(dAtA[i:], m.Message)
- i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.Message)))
+ if m.Message != nil {
+ i -= len(*m.Message)
+ copy(dAtA[i:], *m.Message)
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(len(*m.Message)))
i--
dAtA[i] = 0x2a
}
- if m.State != 0 {
- i = protohelpers.EncodeVarint(dAtA, i, uint64(m.State))
+ if m.State != nil {
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(*m.State))
i--
dAtA[i] = 0x20
}
@@ -10274,6 +10461,33 @@ func (m *GetUnresolvedTransactionsResponse) SizeVT() (n int) {
return n
}
+func (m *ConcludeTransactionRequest) SizeVT() (n int) {
+ if m == nil {
+ return 0
+ }
+ var l int
+ _ = l
+ l = len(m.Dtid)
+ if l > 0 {
+ n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
+ }
+ if m.Mm {
+ n += 2
+ }
+ n += len(m.unknownFields)
+ return n
+}
+
+func (m *ConcludeTransactionResponse) SizeVT() (n int) {
+ if m == nil {
+ return 0
+ }
+ var l int
+ _ = l
+ n += len(m.unknownFields)
+ return n
+}
+
func (m *ReplicationStatusRequest) SizeVT() (n int) {
if m == nil {
return 0
@@ -11281,6 +11495,14 @@ func (m *ReadVReplicationWorkflowResponse) SizeVT() (n int) {
if l > 0 {
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
}
+ if len(m.ConfigOverrides) > 0 {
+ for k, v := range m.ConfigOverrides {
+ _ = k
+ _ = v
+ mapEntrySize := 1 + len(k) + protohelpers.SizeOfVarint(uint64(len(k))) + 1 + len(v) + protohelpers.SizeOfVarint(uint64(len(v)))
+ n += mapEntrySize + 1 + protohelpers.SizeOfVarint(uint64(mapEntrySize))
+ }
+ }
n += len(m.unknownFields)
return n
}
@@ -11474,14 +11696,22 @@ func (m *UpdateVReplicationWorkflowRequest) SizeVT() (n int) {
}
n += 1 + protohelpers.SizeOfVarint(uint64(l)) + l
}
- if m.TabletSelectionPreference != 0 {
- n += 1 + protohelpers.SizeOfVarint(uint64(m.TabletSelectionPreference))
+ if m.TabletSelectionPreference != nil {
+ n += 1 + protohelpers.SizeOfVarint(uint64(*m.TabletSelectionPreference))
}
- if m.OnDdl != 0 {
- n += 1 + protohelpers.SizeOfVarint(uint64(m.OnDdl))
+ if m.OnDdl != nil {
+ n += 1 + protohelpers.SizeOfVarint(uint64(*m.OnDdl))
}
- if m.State != 0 {
- n += 1 + protohelpers.SizeOfVarint(uint64(m.State))
+ if m.State != nil {
+ n += 1 + protohelpers.SizeOfVarint(uint64(*m.State))
+ }
+ if len(m.ConfigOverrides) > 0 {
+ for k, v := range m.ConfigOverrides {
+ _ = k
+ _ = v
+ mapEntrySize := 1 + len(k) + protohelpers.SizeOfVarint(uint64(len(k))) + 1 + len(v) + protohelpers.SizeOfVarint(uint64(len(v)))
+ n += mapEntrySize + 1 + protohelpers.SizeOfVarint(uint64(mapEntrySize))
+ }
}
n += len(m.unknownFields)
return n
@@ -11522,15 +11752,15 @@ func (m *UpdateVReplicationWorkflowsRequest) SizeVT() (n int) {
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
}
}
- if m.State != 0 {
- n += 1 + protohelpers.SizeOfVarint(uint64(m.State))
+ if m.State != nil {
+ n += 1 + protohelpers.SizeOfVarint(uint64(*m.State))
}
- l = len(m.Message)
- if l > 0 {
+ if m.Message != nil {
+ l = len(*m.Message)
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
}
- l = len(m.StopPosition)
- if l > 0 {
+ if m.StopPosition != nil {
+ l = len(*m.StopPosition)
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
}
n += len(m.unknownFields)
@@ -17198,7 +17428,7 @@ func (m *GetUnresolvedTransactionsResponse) UnmarshalVT(dAtA []byte) error {
}
return nil
}
-func (m *ReplicationStatusRequest) UnmarshalVT(dAtA []byte) error {
+func (m *ConcludeTransactionRequest) UnmarshalVT(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
@@ -17221,39 +17451,193 @@ func (m *ReplicationStatusRequest) UnmarshalVT(dAtA []byte) error {
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
- return fmt.Errorf("proto: ReplicationStatusRequest: wiretype end group for non-group")
+ return fmt.Errorf("proto: ConcludeTransactionRequest: wiretype end group for non-group")
}
if fieldNum <= 0 {
- return fmt.Errorf("proto: ReplicationStatusRequest: illegal tag %d (wire type %d)", fieldNum, wire)
+ return fmt.Errorf("proto: ConcludeTransactionRequest: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
- default:
- iNdEx = preIndex
- skippy, err := protohelpers.Skip(dAtA[iNdEx:])
- if err != nil {
- return err
+ case 1:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Dtid", wireType)
}
- if (skippy < 0) || (iNdEx+skippy) < 0 {
+ var stringLen uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLen |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLen := int(stringLen)
+ if intStringLen < 0 {
return protohelpers.ErrInvalidLength
}
- if (iNdEx + skippy) > l {
+ postIndex := iNdEx + intStringLen
+ if postIndex < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postIndex > l {
return io.ErrUnexpectedEOF
}
- m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
- iNdEx += skippy
- }
- }
-
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
-}
-func (m *ReplicationStatusResponse) UnmarshalVT(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
+ m.Dtid = string(dAtA[iNdEx:postIndex])
+ iNdEx = postIndex
+ case 2:
+ if wireType != 0 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Mm", wireType)
+ }
+ var v int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ v |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ m.Mm = bool(v != 0)
+ default:
+ iNdEx = preIndex
+ skippy, err := protohelpers.Skip(dAtA[iNdEx:])
+ if err != nil {
+ return err
+ }
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if (iNdEx + skippy) > l {
+ return io.ErrUnexpectedEOF
+ }
+ m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
+ iNdEx += skippy
+ }
+ }
+
+ if iNdEx > l {
+ return io.ErrUnexpectedEOF
+ }
+ return nil
+}
+func (m *ConcludeTransactionResponse) UnmarshalVT(dAtA []byte) error {
+ l := len(dAtA)
+ iNdEx := 0
+ for iNdEx < l {
+ preIndex := iNdEx
+ var wire uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ wire |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ fieldNum := int32(wire >> 3)
+ wireType := int(wire & 0x7)
+ if wireType == 4 {
+ return fmt.Errorf("proto: ConcludeTransactionResponse: wiretype end group for non-group")
+ }
+ if fieldNum <= 0 {
+ return fmt.Errorf("proto: ConcludeTransactionResponse: illegal tag %d (wire type %d)", fieldNum, wire)
+ }
+ switch fieldNum {
+ default:
+ iNdEx = preIndex
+ skippy, err := protohelpers.Skip(dAtA[iNdEx:])
+ if err != nil {
+ return err
+ }
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if (iNdEx + skippy) > l {
+ return io.ErrUnexpectedEOF
+ }
+ m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
+ iNdEx += skippy
+ }
+ }
+
+ if iNdEx > l {
+ return io.ErrUnexpectedEOF
+ }
+ return nil
+}
+func (m *ReplicationStatusRequest) UnmarshalVT(dAtA []byte) error {
+ l := len(dAtA)
+ iNdEx := 0
+ for iNdEx < l {
+ preIndex := iNdEx
+ var wire uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ wire |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ fieldNum := int32(wire >> 3)
+ wireType := int(wire & 0x7)
+ if wireType == 4 {
+ return fmt.Errorf("proto: ReplicationStatusRequest: wiretype end group for non-group")
+ }
+ if fieldNum <= 0 {
+ return fmt.Errorf("proto: ReplicationStatusRequest: illegal tag %d (wire type %d)", fieldNum, wire)
+ }
+ switch fieldNum {
+ default:
+ iNdEx = preIndex
+ skippy, err := protohelpers.Skip(dAtA[iNdEx:])
+ if err != nil {
+ return err
+ }
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if (iNdEx + skippy) > l {
+ return io.ErrUnexpectedEOF
+ }
+ m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
+ iNdEx += skippy
+ }
+ }
+
+ if iNdEx > l {
+ return io.ErrUnexpectedEOF
+ }
+ return nil
+}
+func (m *ReplicationStatusResponse) UnmarshalVT(dAtA []byte) error {
+ l := len(dAtA)
+ iNdEx := 0
+ for iNdEx < l {
+ preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
@@ -23315,6 +23699,133 @@ func (m *ReadVReplicationWorkflowResponse) UnmarshalVT(dAtA []byte) error {
}
m.Options = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
+ case 13:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field ConfigOverrides", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ if msglen < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ if m.ConfigOverrides == nil {
+ m.ConfigOverrides = make(map[string]string)
+ }
+ var mapkey string
+ var mapvalue string
+ for iNdEx < postIndex {
+ entryPreIndex := iNdEx
+ var wire uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ wire |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ fieldNum := int32(wire >> 3)
+ if fieldNum == 1 {
+ var stringLenmapkey uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLenmapkey |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLenmapkey := int(stringLenmapkey)
+ if intStringLenmapkey < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postStringIndexmapkey := iNdEx + intStringLenmapkey
+ if postStringIndexmapkey < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postStringIndexmapkey > l {
+ return io.ErrUnexpectedEOF
+ }
+ mapkey = string(dAtA[iNdEx:postStringIndexmapkey])
+ iNdEx = postStringIndexmapkey
+ } else if fieldNum == 2 {
+ var stringLenmapvalue uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLenmapvalue |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLenmapvalue := int(stringLenmapvalue)
+ if intStringLenmapvalue < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postStringIndexmapvalue := iNdEx + intStringLenmapvalue
+ if postStringIndexmapvalue < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postStringIndexmapvalue > l {
+ return io.ErrUnexpectedEOF
+ }
+ mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])
+ iNdEx = postStringIndexmapvalue
+ } else {
+ iNdEx = entryPreIndex
+ skippy, err := protohelpers.Skip(dAtA[iNdEx:])
+ if err != nil {
+ return err
+ }
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if (iNdEx + skippy) > postIndex {
+ return io.ErrUnexpectedEOF
+ }
+ iNdEx += skippy
+ }
+ }
+ m.ConfigOverrides[mapkey] = mapvalue
+ iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
@@ -24614,7 +25125,7 @@ func (m *UpdateVReplicationWorkflowRequest) UnmarshalVT(dAtA []byte) error {
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field TabletSelectionPreference", wireType)
}
- m.TabletSelectionPreference = 0
+ var v TabletSelectionPreference
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return protohelpers.ErrIntOverflow
@@ -24624,16 +25135,17 @@ func (m *UpdateVReplicationWorkflowRequest) UnmarshalVT(dAtA []byte) error {
}
b := dAtA[iNdEx]
iNdEx++
- m.TabletSelectionPreference |= TabletSelectionPreference(b&0x7F) << shift
+ v |= TabletSelectionPreference(b&0x7F) << shift
if b < 0x80 {
break
}
}
+ m.TabletSelectionPreference = &v
case 5:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field OnDdl", wireType)
}
- m.OnDdl = 0
+ var v binlogdata.OnDDLAction
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return protohelpers.ErrIntOverflow
@@ -24643,16 +25155,17 @@ func (m *UpdateVReplicationWorkflowRequest) UnmarshalVT(dAtA []byte) error {
}
b := dAtA[iNdEx]
iNdEx++
- m.OnDdl |= binlogdata.OnDDLAction(b&0x7F) << shift
+ v |= binlogdata.OnDDLAction(b&0x7F) << shift
if b < 0x80 {
break
}
}
+ m.OnDdl = &v
case 6:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field State", wireType)
}
- m.State = 0
+ var v binlogdata.VReplicationWorkflowState
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return protohelpers.ErrIntOverflow
@@ -24662,11 +25175,139 @@ func (m *UpdateVReplicationWorkflowRequest) UnmarshalVT(dAtA []byte) error {
}
b := dAtA[iNdEx]
iNdEx++
- m.State |= binlogdata.VReplicationWorkflowState(b&0x7F) << shift
+ v |= binlogdata.VReplicationWorkflowState(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ m.State = &v
+ case 8:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field ConfigOverrides", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
+ if msglen < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ if m.ConfigOverrides == nil {
+ m.ConfigOverrides = make(map[string]string)
+ }
+ var mapkey string
+ var mapvalue string
+ for iNdEx < postIndex {
+ entryPreIndex := iNdEx
+ var wire uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ wire |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ fieldNum := int32(wire >> 3)
+ if fieldNum == 1 {
+ var stringLenmapkey uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLenmapkey |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLenmapkey := int(stringLenmapkey)
+ if intStringLenmapkey < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postStringIndexmapkey := iNdEx + intStringLenmapkey
+ if postStringIndexmapkey < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postStringIndexmapkey > l {
+ return io.ErrUnexpectedEOF
+ }
+ mapkey = string(dAtA[iNdEx:postStringIndexmapkey])
+ iNdEx = postStringIndexmapkey
+ } else if fieldNum == 2 {
+ var stringLenmapvalue uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLenmapvalue |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLenmapvalue := int(stringLenmapvalue)
+ if intStringLenmapvalue < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postStringIndexmapvalue := iNdEx + intStringLenmapvalue
+ if postStringIndexmapvalue < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postStringIndexmapvalue > l {
+ return io.ErrUnexpectedEOF
+ }
+ mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])
+ iNdEx = postStringIndexmapvalue
+ } else {
+ iNdEx = entryPreIndex
+ skippy, err := protohelpers.Skip(dAtA[iNdEx:])
+ if err != nil {
+ return err
+ }
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if (iNdEx + skippy) > postIndex {
+ return io.ErrUnexpectedEOF
+ }
+ iNdEx += skippy
+ }
+ }
+ m.ConfigOverrides[mapkey] = mapvalue
+ iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
@@ -24893,7 +25534,7 @@ func (m *UpdateVReplicationWorkflowsRequest) UnmarshalVT(dAtA []byte) error {
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field State", wireType)
}
- m.State = 0
+ var v binlogdata.VReplicationWorkflowState
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return protohelpers.ErrIntOverflow
@@ -24903,11 +25544,12 @@ func (m *UpdateVReplicationWorkflowsRequest) UnmarshalVT(dAtA []byte) error {
}
b := dAtA[iNdEx]
iNdEx++
- m.State |= binlogdata.VReplicationWorkflowState(b&0x7F) << shift
+ v |= binlogdata.VReplicationWorkflowState(b&0x7F) << shift
if b < 0x80 {
break
}
}
+ m.State = &v
case 5:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Message", wireType)
@@ -24938,7 +25580,8 @@ func (m *UpdateVReplicationWorkflowsRequest) UnmarshalVT(dAtA []byte) error {
if postIndex > l {
return io.ErrUnexpectedEOF
}
- m.Message = string(dAtA[iNdEx:postIndex])
+ s := string(dAtA[iNdEx:postIndex])
+ m.Message = &s
iNdEx = postIndex
case 6:
if wireType != 2 {
@@ -24970,7 +25613,8 @@ func (m *UpdateVReplicationWorkflowsRequest) UnmarshalVT(dAtA []byte) error {
if postIndex > l {
return io.ErrUnexpectedEOF
}
- m.StopPosition = string(dAtA[iNdEx:postIndex])
+ s := string(dAtA[iNdEx:postIndex])
+ m.StopPosition = &s
iNdEx = postIndex
default:
iNdEx = preIndex
diff --git a/go/vt/proto/tabletmanagerservice/tabletmanagerservice.pb.go b/go/vt/proto/tabletmanagerservice/tabletmanagerservice.pb.go
index 39bd6de56fd..9db8170e1cf 100644
--- a/go/vt/proto/tabletmanagerservice/tabletmanagerservice.pb.go
+++ b/go/vt/proto/tabletmanagerservice/tabletmanagerservice.pb.go
@@ -45,7 +45,7 @@ var file_tabletmanagerservice_proto_rawDesc = []byte{
0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x14, 0x74, 0x61,
0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x73, 0x65, 0x72, 0x76, 0x69,
0x63, 0x65, 0x1a, 0x17, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0xe7, 0x33, 0x0a, 0x0d,
+ 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0xdf, 0x34, 0x0a, 0x0d,
0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x12, 0x49, 0x0a,
0x04, 0x50, 0x69, 0x6e, 0x67, 0x12, 0x1e, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65,
@@ -195,276 +195,283 @@ var file_tabletmanagerservice_proto_rawDesc = []byte{
0x74, 0x1a, 0x34, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x73, 0x6f, 0x6c,
0x76, 0x65, 0x64, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x70, 0x0a, 0x11, 0x52, 0x65, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b,
- 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75,
- 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x64, 0x0a, 0x0d, 0x50,
- 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x27, 0x2e, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72,
- 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
- 0x00, 0x12, 0x6a, 0x0a, 0x0f, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x50, 0x6f, 0x73, 0x69,
- 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x76, 0x0a, 0x13, 0x43, 0x6f, 0x6e,
+ 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x12, 0x2d, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x6f, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54, 0x72, 0x61,
+ 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
+ 0x2e, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x43, 0x6f, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54, 0x72, 0x61, 0x6e,
+ 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
+ 0x00, 0x12, 0x70, 0x0a, 0x11, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d,
+ 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75,
+ 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61,
+ 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x22, 0x00, 0x12, 0x64, 0x0a, 0x0d, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74,
+ 0x61, 0x74, 0x75, 0x73, 0x12, 0x27, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e,
0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79,
- 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x2a, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x50, 0x6f, 0x73, 0x69, 0x74,
- 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6a, 0x0a,
- 0x0f, 0x57, 0x61, 0x69, 0x74, 0x46, 0x6f, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
- 0x12, 0x29, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x61, 0x69, 0x74, 0x46, 0x6f, 0x72, 0x50, 0x6f, 0x73, 0x69,
- 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x57, 0x61, 0x69, 0x74, 0x46, 0x6f, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6a, 0x0a, 0x0f, 0x53, 0x74, 0x6f,
- 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x2e, 0x74,
+ 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6a, 0x0a, 0x0f, 0x50, 0x72, 0x69,
+ 0x6d, 0x61, 0x72, 0x79, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x2e, 0x74,
0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x2e, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x6f, 0x70,
- 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7f, 0x0a, 0x16, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x12,
- 0x30, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64,
+ 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x69, 0x6d,
+ 0x61, 0x72, 0x79, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6a, 0x0a, 0x0f, 0x57, 0x61, 0x69, 0x74, 0x46, 0x6f, 0x72,
+ 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x61, 0x69,
+ 0x74, 0x46, 0x6f, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75,
+ 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61,
+ 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x61, 0x69, 0x74, 0x46, 0x6f, 0x72, 0x50,
+ 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
+ 0x00, 0x12, 0x6a, 0x0a, 0x0f, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e,
+ 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
+ 0x2a, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64,
0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x4d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x31, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6d, 0x0a, 0x10, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52,
- 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53,
- 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x61, 0x72, 0x74,
- 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x1a, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52,
- 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x6e, 0x74, 0x69, 0x6c, 0x41,
- 0x66, 0x74, 0x65, 0x72, 0x12, 0x34, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x6e, 0x74, 0x69, 0x6c, 0x41, 0x66,
- 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53,
- 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55,
- 0x6e, 0x74, 0x69, 0x6c, 0x41, 0x66, 0x74, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x22, 0x00, 0x12, 0x5e, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x73, 0x12, 0x25, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65,
- 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x1a, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x56, 0x52,
- 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
- 0x6f, 0x77, 0x12, 0x34, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
- 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57,
- 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
- 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x1a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
- 0x12, 0x34, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c,
+ 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7f, 0x0a,
+ 0x16, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x4d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x12, 0x30, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x6f, 0x70,
+ 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x69, 0x6e, 0x69, 0x6d,
+ 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74,
+ 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x69, 0x6e,
+ 0x69, 0x6d, 0x75, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6d,
+ 0x0a, 0x10, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67,
+ 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c,
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b,
+ 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8b, 0x01,
+ 0x0a, 0x1a, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x55, 0x6e, 0x74, 0x69, 0x6c, 0x41, 0x66, 0x74, 0x65, 0x72, 0x12, 0x34, 0x2e, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x55, 0x6e, 0x74, 0x69, 0x6c, 0x41, 0x66, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67,
+ 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c,
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x6e, 0x74, 0x69, 0x6c, 0x41, 0x66, 0x74, 0x65,
+ 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5e, 0x0a, 0x0b, 0x47,
+ 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x12, 0x25, 0x2e, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47,
+ 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x74, 0x1a, 0x26, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
+ 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
+ 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x1a,
+ 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x34, 0x2e, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43,
+ 0x72, 0x65, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x1a, 0x35, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c,
0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74,
- 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72,
- 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
- 0x85, 0x01, 0x0a, 0x18, 0x48, 0x61, 0x73, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x32, 0x2e, 0x74,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x1a, 0x44, 0x65,
+ 0x6c, 0x65, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x34, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c,
+ 0x65, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57,
+ 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35,
+ 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x85, 0x01, 0x0a, 0x18, 0x48, 0x61, 0x73, 0x56,
+ 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66,
+ 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x32, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e,
+ 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x48, 0x61, 0x73, 0x56, 0x52, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
+ 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x48, 0x61, 0x73,
+ 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b,
+ 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
+ 0x85, 0x01, 0x0a, 0x18, 0x52, 0x65, 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x32, 0x2e, 0x74,
0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x48, 0x61, 0x73, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
0x1a, 0x33, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x48, 0x61, 0x73, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x85, 0x01, 0x0a, 0x18, 0x52, 0x65, 0x61, 0x64,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x88, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x61, 0x64,
0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b,
- 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x32, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56, 0x52, 0x65,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
- 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x61,
- 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72,
- 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
- 0x88, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x33, 0x2e,
+ 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x33, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
+ 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56, 0x52,
+ 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
+ 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52,
+ 0x65, 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57,
+ 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x22, 0x00, 0x12, 0x6d, 0x0a, 0x10, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x45, 0x78, 0x65, 0x63, 0x12, 0x2a, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d,
+ 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c,
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x78, 0x65, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67,
+ 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x45, 0x78, 0x65, 0x63, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
+ 0x00, 0x12, 0x7f, 0x0a, 0x16, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x57, 0x61, 0x69, 0x74, 0x46, 0x6f, 0x72, 0x50, 0x6f, 0x73, 0x12, 0x30, 0x2e, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x61, 0x69, 0x74,
+ 0x46, 0x6f, 0x72, 0x50, 0x6f, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e,
0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56, 0x52, 0x65, 0x70, 0x6c,
+ 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x61,
+ 0x69, 0x74, 0x46, 0x6f, 0x72, 0x50, 0x6f, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x1a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65,
+ 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
+ 0x77, 0x12, 0x34, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
+ 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61,
+ 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f,
+ 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
+ 0x12, 0x8e, 0x01, 0x0a, 0x1b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c,
0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6d, 0x0a, 0x10, 0x56, 0x52,
- 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x78, 0x65, 0x63, 0x12, 0x2a,
- 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
- 0x78, 0x65, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x74, 0x61, 0x62,
+ 0x12, 0x35, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c,
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61,
+ 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f,
+ 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
+ 0x00, 0x12, 0x4c, 0x0a, 0x05, 0x56, 0x44, 0x69, 0x66, 0x66, 0x12, 0x1f, 0x2e, 0x74, 0x61, 0x62,
0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56,
- 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x78, 0x65, 0x63, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7f, 0x0a, 0x16, 0x56, 0x52, 0x65,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x61, 0x69, 0x74, 0x46, 0x6f, 0x72,
- 0x50, 0x6f, 0x73, 0x12, 0x30, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x61, 0x69, 0x74, 0x46, 0x6f, 0x72, 0x50, 0x6f, 0x73, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x61, 0x69, 0x74, 0x46, 0x6f, 0x72, 0x50, 0x6f, 0x73,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x1a, 0x55,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x34, 0x2e, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x35, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8e, 0x01, 0x0a, 0x1b, 0x55, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57,
- 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x35, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57,
- 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x36, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x05, 0x56, 0x44, 0x69,
- 0x66, 0x66, 0x12, 0x1f, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6d, 0x0a, 0x10, 0x52, 0x65, 0x73, 0x65, 0x74,
- 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x74, 0x61,
+ 0x44, 0x69, 0x66, 0x66, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x74, 0x61,
0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x52, 0x65, 0x73, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x65,
- 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5e, 0x0a, 0x0b, 0x49, 0x6e, 0x69, 0x74, 0x50, 0x72,
- 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x25, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x50, 0x72,
- 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x82, 0x01, 0x0a, 0x17, 0x50, 0x6f, 0x70, 0x75, 0x6c,
- 0x61, 0x74, 0x65, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x4a, 0x6f, 0x75, 0x72, 0x6e,
- 0x61, 0x6c, 0x12, 0x31, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x52,
- 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x4a, 0x6f, 0x75, 0x72, 0x6e, 0x61, 0x6c, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61,
- 0x74, 0x65, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x4a, 0x6f, 0x75, 0x72, 0x6e, 0x61,
- 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5e, 0x0a, 0x0b, 0x49,
- 0x6e, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x12, 0x25, 0x2e, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x49,
- 0x6e, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x26, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x64, 0x0a, 0x0d, 0x44,
- 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x27, 0x2e, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x44, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6d, 0x6f, 0x74, 0x65,
- 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
- 0x00, 0x12, 0x70, 0x0a, 0x11, 0x55, 0x6e, 0x64, 0x6f, 0x44, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50,
- 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x2b, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x6e, 0x64, 0x6f, 0x44,
- 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x6e, 0x64, 0x6f, 0x44, 0x65, 0x6d, 0x6f,
- 0x74, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x22, 0x00, 0x12, 0x73, 0x0a, 0x12, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x57, 0x61,
- 0x73, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x12, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x57, 0x61, 0x73, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x57, 0x61, 0x73, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x1a, 0x52, 0x65, 0x73,
- 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72,
- 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x34, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x65,
- 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61,
- 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e,
+ 0x56, 0x44, 0x69, 0x66, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
+ 0x6d, 0x0a, 0x10, 0x52, 0x65, 0x73, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61,
+ 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x74, 0x52, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
+ 0x2b, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5e,
+ 0x0a, 0x0b, 0x49, 0x6e, 0x69, 0x74, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x25, 0x2e,
0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5b, 0x0a, 0x0a, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x12, 0x24, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46,
- 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x22, 0x00, 0x12, 0x79, 0x0a, 0x14, 0x53, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x2e, 0x2e, 0x74, 0x61,
+ 0x61, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e,
+ 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x50, 0x72, 0x69,
+ 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x82,
+ 0x01, 0x0a, 0x17, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65, 0x70, 0x61, 0x72,
+ 0x65, 0x6e, 0x74, 0x4a, 0x6f, 0x75, 0x72, 0x6e, 0x61, 0x6c, 0x12, 0x31, 0x2e, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50,
+ 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x4a,
+ 0x6f, 0x75, 0x72, 0x6e, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65,
+ 0x6e, 0x74, 0x4a, 0x6f, 0x75, 0x72, 0x6e, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x22, 0x00, 0x12, 0x5e, 0x0a, 0x0b, 0x49, 0x6e, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x12, 0x25, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67,
+ 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x49, 0x6e,
+ 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x22, 0x00, 0x12, 0x64, 0x0a, 0x0d, 0x44, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50, 0x72, 0x69,
+ 0x6d, 0x61, 0x72, 0x79, 0x12, 0x27, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e,
+ 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50,
+ 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x44, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x70, 0x0a, 0x11, 0x55, 0x6e, 0x64,
+ 0x6f, 0x44, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x2b,
+ 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x55, 0x6e, 0x64, 0x6f, 0x44, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50, 0x72, 0x69,
+ 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x74, 0x61,
0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x53, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f,
- 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x74, 0x61,
+ 0x55, 0x6e, 0x64, 0x6f, 0x44, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72,
+ 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x73, 0x0a, 0x12, 0x52,
+ 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x57, 0x61, 0x73, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65,
+ 0x64, 0x12, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
+ 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x57, 0x61, 0x73,
+ 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
+ 0x2d, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x57, 0x61, 0x73, 0x50, 0x72,
+ 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
+ 0x12, 0x8b, 0x01, 0x0a, 0x1a, 0x52, 0x65, 0x73, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12,
+ 0x34, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
+ 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x74, 0x52,
+ 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65,
+ 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5b,
+ 0x0a, 0x0a, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x24, 0x2e, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67,
+ 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75,
+ 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x79, 0x0a, 0x14, 0x53,
+ 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75,
+ 0x72, 0x63, 0x65, 0x12, 0x2e, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61,
+ 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75,
+ 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61,
+ 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x76, 0x0a, 0x13, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
+ 0x61, 0x57, 0x61, 0x73, 0x52, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x12, 0x2d, 0x2e,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x57, 0x61, 0x73, 0x52, 0x65, 0x73, 0x74,
+ 0x61, 0x72, 0x74, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x57, 0x61, 0x73, 0x52, 0x65, 0x73, 0x74, 0x61,
+ 0x72, 0x74, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8e,
+ 0x01, 0x0a, 0x1b, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x41, 0x6e, 0x64, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x35,
+ 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x41, 0x6e, 0x64, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
+ 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65,
+ 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x6e, 0x64, 0x47, 0x65, 0x74, 0x53,
+ 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
+ 0x67, 0x0a, 0x0e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
+ 0x61, 0x12, 0x28, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
+ 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x74, 0x61,
0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x53, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f,
- 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x76,
- 0x0a, 0x13, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x57, 0x61, 0x73, 0x52, 0x65, 0x73, 0x74,
- 0x61, 0x72, 0x74, 0x65, 0x64, 0x12, 0x2d, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x57, 0x61, 0x73, 0x52, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x57, 0x61, 0x73, 0x52, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8e, 0x01, 0x0a, 0x1b, 0x53, 0x74, 0x6f, 0x70, 0x52,
- 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x6e, 0x64, 0x47, 0x65, 0x74,
- 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x35, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52,
- 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x6e, 0x64, 0x47, 0x65, 0x74,
- 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e,
+ 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x06, 0x42, 0x61, 0x63, 0x6b,
+ 0x75, 0x70, 0x12, 0x20, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67,
+ 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e,
+ 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x72, 0x0a, 0x11, 0x52,
+ 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70,
+ 0x12, 0x2b, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x46, 0x72, 0x6f, 0x6d,
+ 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e,
0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x41, 0x6e, 0x64, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x67, 0x0a, 0x0e, 0x50, 0x72, 0x6f, 0x6d, 0x6f,
- 0x74, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x12, 0x28, 0x2e, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50, 0x72,
- 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x52,
- 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
- 0x12, 0x51, 0x0a, 0x06, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x12, 0x20, 0x2e, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x42,
- 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x74,
+ 0x61, 0x2e, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x61, 0x63,
+ 0x6b, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12,
+ 0x67, 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65,
+ 0x72, 0x12, 0x28, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
+ 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74,
+ 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x73, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x54,
+ 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2c,
+ 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53,
+ 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x74,
0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
- 0x00, 0x30, 0x01, 0x12, 0x72, 0x0a, 0x11, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x46, 0x72,
- 0x6f, 0x6d, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x12, 0x2b, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73,
- 0x74, 0x6f, 0x72, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72,
- 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x67, 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b,
- 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x12, 0x28, 0x2e, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x68,
- 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72,
- 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
- 0x12, 0x73, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72,
- 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68,
- 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f,
- 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x33, 0x5a, 0x31, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2e,
- 0x69, 0x6f, 0x2f, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2f, 0x67, 0x6f, 0x2f, 0x76, 0x74, 0x2f,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x72, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x33,
+ 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61,
+ 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x33, 0x5a,
+ 0x31, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2e, 0x69, 0x6f, 0x2f, 0x76, 0x69, 0x74, 0x65, 0x73,
+ 0x73, 0x2f, 0x67, 0x6f, 0x2f, 0x76, 0x74, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x73, 0x65, 0x72, 0x76, 0x69,
+ 0x63, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var file_tabletmanagerservice_proto_goTypes = []any{
@@ -491,101 +498,103 @@ var file_tabletmanagerservice_proto_goTypes = []any{
(*tabletmanagerdata.ExecuteFetchAsAllPrivsRequest)(nil), // 20: tabletmanagerdata.ExecuteFetchAsAllPrivsRequest
(*tabletmanagerdata.ExecuteFetchAsAppRequest)(nil), // 21: tabletmanagerdata.ExecuteFetchAsAppRequest
(*tabletmanagerdata.GetUnresolvedTransactionsRequest)(nil), // 22: tabletmanagerdata.GetUnresolvedTransactionsRequest
- (*tabletmanagerdata.ReplicationStatusRequest)(nil), // 23: tabletmanagerdata.ReplicationStatusRequest
- (*tabletmanagerdata.PrimaryStatusRequest)(nil), // 24: tabletmanagerdata.PrimaryStatusRequest
- (*tabletmanagerdata.PrimaryPositionRequest)(nil), // 25: tabletmanagerdata.PrimaryPositionRequest
- (*tabletmanagerdata.WaitForPositionRequest)(nil), // 26: tabletmanagerdata.WaitForPositionRequest
- (*tabletmanagerdata.StopReplicationRequest)(nil), // 27: tabletmanagerdata.StopReplicationRequest
- (*tabletmanagerdata.StopReplicationMinimumRequest)(nil), // 28: tabletmanagerdata.StopReplicationMinimumRequest
- (*tabletmanagerdata.StartReplicationRequest)(nil), // 29: tabletmanagerdata.StartReplicationRequest
- (*tabletmanagerdata.StartReplicationUntilAfterRequest)(nil), // 30: tabletmanagerdata.StartReplicationUntilAfterRequest
- (*tabletmanagerdata.GetReplicasRequest)(nil), // 31: tabletmanagerdata.GetReplicasRequest
- (*tabletmanagerdata.CreateVReplicationWorkflowRequest)(nil), // 32: tabletmanagerdata.CreateVReplicationWorkflowRequest
- (*tabletmanagerdata.DeleteVReplicationWorkflowRequest)(nil), // 33: tabletmanagerdata.DeleteVReplicationWorkflowRequest
- (*tabletmanagerdata.HasVReplicationWorkflowsRequest)(nil), // 34: tabletmanagerdata.HasVReplicationWorkflowsRequest
- (*tabletmanagerdata.ReadVReplicationWorkflowRequest)(nil), // 35: tabletmanagerdata.ReadVReplicationWorkflowRequest
- (*tabletmanagerdata.ReadVReplicationWorkflowsRequest)(nil), // 36: tabletmanagerdata.ReadVReplicationWorkflowsRequest
- (*tabletmanagerdata.VReplicationExecRequest)(nil), // 37: tabletmanagerdata.VReplicationExecRequest
- (*tabletmanagerdata.VReplicationWaitForPosRequest)(nil), // 38: tabletmanagerdata.VReplicationWaitForPosRequest
- (*tabletmanagerdata.UpdateVReplicationWorkflowRequest)(nil), // 39: tabletmanagerdata.UpdateVReplicationWorkflowRequest
- (*tabletmanagerdata.UpdateVReplicationWorkflowsRequest)(nil), // 40: tabletmanagerdata.UpdateVReplicationWorkflowsRequest
- (*tabletmanagerdata.VDiffRequest)(nil), // 41: tabletmanagerdata.VDiffRequest
- (*tabletmanagerdata.ResetReplicationRequest)(nil), // 42: tabletmanagerdata.ResetReplicationRequest
- (*tabletmanagerdata.InitPrimaryRequest)(nil), // 43: tabletmanagerdata.InitPrimaryRequest
- (*tabletmanagerdata.PopulateReparentJournalRequest)(nil), // 44: tabletmanagerdata.PopulateReparentJournalRequest
- (*tabletmanagerdata.InitReplicaRequest)(nil), // 45: tabletmanagerdata.InitReplicaRequest
- (*tabletmanagerdata.DemotePrimaryRequest)(nil), // 46: tabletmanagerdata.DemotePrimaryRequest
- (*tabletmanagerdata.UndoDemotePrimaryRequest)(nil), // 47: tabletmanagerdata.UndoDemotePrimaryRequest
- (*tabletmanagerdata.ReplicaWasPromotedRequest)(nil), // 48: tabletmanagerdata.ReplicaWasPromotedRequest
- (*tabletmanagerdata.ResetReplicationParametersRequest)(nil), // 49: tabletmanagerdata.ResetReplicationParametersRequest
- (*tabletmanagerdata.FullStatusRequest)(nil), // 50: tabletmanagerdata.FullStatusRequest
- (*tabletmanagerdata.SetReplicationSourceRequest)(nil), // 51: tabletmanagerdata.SetReplicationSourceRequest
- (*tabletmanagerdata.ReplicaWasRestartedRequest)(nil), // 52: tabletmanagerdata.ReplicaWasRestartedRequest
- (*tabletmanagerdata.StopReplicationAndGetStatusRequest)(nil), // 53: tabletmanagerdata.StopReplicationAndGetStatusRequest
- (*tabletmanagerdata.PromoteReplicaRequest)(nil), // 54: tabletmanagerdata.PromoteReplicaRequest
- (*tabletmanagerdata.BackupRequest)(nil), // 55: tabletmanagerdata.BackupRequest
- (*tabletmanagerdata.RestoreFromBackupRequest)(nil), // 56: tabletmanagerdata.RestoreFromBackupRequest
- (*tabletmanagerdata.CheckThrottlerRequest)(nil), // 57: tabletmanagerdata.CheckThrottlerRequest
- (*tabletmanagerdata.GetThrottlerStatusRequest)(nil), // 58: tabletmanagerdata.GetThrottlerStatusRequest
- (*tabletmanagerdata.PingResponse)(nil), // 59: tabletmanagerdata.PingResponse
- (*tabletmanagerdata.SleepResponse)(nil), // 60: tabletmanagerdata.SleepResponse
- (*tabletmanagerdata.ExecuteHookResponse)(nil), // 61: tabletmanagerdata.ExecuteHookResponse
- (*tabletmanagerdata.GetSchemaResponse)(nil), // 62: tabletmanagerdata.GetSchemaResponse
- (*tabletmanagerdata.GetPermissionsResponse)(nil), // 63: tabletmanagerdata.GetPermissionsResponse
- (*tabletmanagerdata.GetGlobalStatusVarsResponse)(nil), // 64: tabletmanagerdata.GetGlobalStatusVarsResponse
- (*tabletmanagerdata.SetReadOnlyResponse)(nil), // 65: tabletmanagerdata.SetReadOnlyResponse
- (*tabletmanagerdata.SetReadWriteResponse)(nil), // 66: tabletmanagerdata.SetReadWriteResponse
- (*tabletmanagerdata.ChangeTypeResponse)(nil), // 67: tabletmanagerdata.ChangeTypeResponse
- (*tabletmanagerdata.RefreshStateResponse)(nil), // 68: tabletmanagerdata.RefreshStateResponse
- (*tabletmanagerdata.RunHealthCheckResponse)(nil), // 69: tabletmanagerdata.RunHealthCheckResponse
- (*tabletmanagerdata.ReloadSchemaResponse)(nil), // 70: tabletmanagerdata.ReloadSchemaResponse
- (*tabletmanagerdata.PreflightSchemaResponse)(nil), // 71: tabletmanagerdata.PreflightSchemaResponse
- (*tabletmanagerdata.ApplySchemaResponse)(nil), // 72: tabletmanagerdata.ApplySchemaResponse
- (*tabletmanagerdata.ResetSequencesResponse)(nil), // 73: tabletmanagerdata.ResetSequencesResponse
- (*tabletmanagerdata.LockTablesResponse)(nil), // 74: tabletmanagerdata.LockTablesResponse
- (*tabletmanagerdata.UnlockTablesResponse)(nil), // 75: tabletmanagerdata.UnlockTablesResponse
- (*tabletmanagerdata.ExecuteQueryResponse)(nil), // 76: tabletmanagerdata.ExecuteQueryResponse
- (*tabletmanagerdata.ExecuteFetchAsDbaResponse)(nil), // 77: tabletmanagerdata.ExecuteFetchAsDbaResponse
- (*tabletmanagerdata.ExecuteMultiFetchAsDbaResponse)(nil), // 78: tabletmanagerdata.ExecuteMultiFetchAsDbaResponse
- (*tabletmanagerdata.ExecuteFetchAsAllPrivsResponse)(nil), // 79: tabletmanagerdata.ExecuteFetchAsAllPrivsResponse
- (*tabletmanagerdata.ExecuteFetchAsAppResponse)(nil), // 80: tabletmanagerdata.ExecuteFetchAsAppResponse
- (*tabletmanagerdata.GetUnresolvedTransactionsResponse)(nil), // 81: tabletmanagerdata.GetUnresolvedTransactionsResponse
- (*tabletmanagerdata.ReplicationStatusResponse)(nil), // 82: tabletmanagerdata.ReplicationStatusResponse
- (*tabletmanagerdata.PrimaryStatusResponse)(nil), // 83: tabletmanagerdata.PrimaryStatusResponse
- (*tabletmanagerdata.PrimaryPositionResponse)(nil), // 84: tabletmanagerdata.PrimaryPositionResponse
- (*tabletmanagerdata.WaitForPositionResponse)(nil), // 85: tabletmanagerdata.WaitForPositionResponse
- (*tabletmanagerdata.StopReplicationResponse)(nil), // 86: tabletmanagerdata.StopReplicationResponse
- (*tabletmanagerdata.StopReplicationMinimumResponse)(nil), // 87: tabletmanagerdata.StopReplicationMinimumResponse
- (*tabletmanagerdata.StartReplicationResponse)(nil), // 88: tabletmanagerdata.StartReplicationResponse
- (*tabletmanagerdata.StartReplicationUntilAfterResponse)(nil), // 89: tabletmanagerdata.StartReplicationUntilAfterResponse
- (*tabletmanagerdata.GetReplicasResponse)(nil), // 90: tabletmanagerdata.GetReplicasResponse
- (*tabletmanagerdata.CreateVReplicationWorkflowResponse)(nil), // 91: tabletmanagerdata.CreateVReplicationWorkflowResponse
- (*tabletmanagerdata.DeleteVReplicationWorkflowResponse)(nil), // 92: tabletmanagerdata.DeleteVReplicationWorkflowResponse
- (*tabletmanagerdata.HasVReplicationWorkflowsResponse)(nil), // 93: tabletmanagerdata.HasVReplicationWorkflowsResponse
- (*tabletmanagerdata.ReadVReplicationWorkflowResponse)(nil), // 94: tabletmanagerdata.ReadVReplicationWorkflowResponse
- (*tabletmanagerdata.ReadVReplicationWorkflowsResponse)(nil), // 95: tabletmanagerdata.ReadVReplicationWorkflowsResponse
- (*tabletmanagerdata.VReplicationExecResponse)(nil), // 96: tabletmanagerdata.VReplicationExecResponse
- (*tabletmanagerdata.VReplicationWaitForPosResponse)(nil), // 97: tabletmanagerdata.VReplicationWaitForPosResponse
- (*tabletmanagerdata.UpdateVReplicationWorkflowResponse)(nil), // 98: tabletmanagerdata.UpdateVReplicationWorkflowResponse
- (*tabletmanagerdata.UpdateVReplicationWorkflowsResponse)(nil), // 99: tabletmanagerdata.UpdateVReplicationWorkflowsResponse
- (*tabletmanagerdata.VDiffResponse)(nil), // 100: tabletmanagerdata.VDiffResponse
- (*tabletmanagerdata.ResetReplicationResponse)(nil), // 101: tabletmanagerdata.ResetReplicationResponse
- (*tabletmanagerdata.InitPrimaryResponse)(nil), // 102: tabletmanagerdata.InitPrimaryResponse
- (*tabletmanagerdata.PopulateReparentJournalResponse)(nil), // 103: tabletmanagerdata.PopulateReparentJournalResponse
- (*tabletmanagerdata.InitReplicaResponse)(nil), // 104: tabletmanagerdata.InitReplicaResponse
- (*tabletmanagerdata.DemotePrimaryResponse)(nil), // 105: tabletmanagerdata.DemotePrimaryResponse
- (*tabletmanagerdata.UndoDemotePrimaryResponse)(nil), // 106: tabletmanagerdata.UndoDemotePrimaryResponse
- (*tabletmanagerdata.ReplicaWasPromotedResponse)(nil), // 107: tabletmanagerdata.ReplicaWasPromotedResponse
- (*tabletmanagerdata.ResetReplicationParametersResponse)(nil), // 108: tabletmanagerdata.ResetReplicationParametersResponse
- (*tabletmanagerdata.FullStatusResponse)(nil), // 109: tabletmanagerdata.FullStatusResponse
- (*tabletmanagerdata.SetReplicationSourceResponse)(nil), // 110: tabletmanagerdata.SetReplicationSourceResponse
- (*tabletmanagerdata.ReplicaWasRestartedResponse)(nil), // 111: tabletmanagerdata.ReplicaWasRestartedResponse
- (*tabletmanagerdata.StopReplicationAndGetStatusResponse)(nil), // 112: tabletmanagerdata.StopReplicationAndGetStatusResponse
- (*tabletmanagerdata.PromoteReplicaResponse)(nil), // 113: tabletmanagerdata.PromoteReplicaResponse
- (*tabletmanagerdata.BackupResponse)(nil), // 114: tabletmanagerdata.BackupResponse
- (*tabletmanagerdata.RestoreFromBackupResponse)(nil), // 115: tabletmanagerdata.RestoreFromBackupResponse
- (*tabletmanagerdata.CheckThrottlerResponse)(nil), // 116: tabletmanagerdata.CheckThrottlerResponse
- (*tabletmanagerdata.GetThrottlerStatusResponse)(nil), // 117: tabletmanagerdata.GetThrottlerStatusResponse
+ (*tabletmanagerdata.ConcludeTransactionRequest)(nil), // 23: tabletmanagerdata.ConcludeTransactionRequest
+ (*tabletmanagerdata.ReplicationStatusRequest)(nil), // 24: tabletmanagerdata.ReplicationStatusRequest
+ (*tabletmanagerdata.PrimaryStatusRequest)(nil), // 25: tabletmanagerdata.PrimaryStatusRequest
+ (*tabletmanagerdata.PrimaryPositionRequest)(nil), // 26: tabletmanagerdata.PrimaryPositionRequest
+ (*tabletmanagerdata.WaitForPositionRequest)(nil), // 27: tabletmanagerdata.WaitForPositionRequest
+ (*tabletmanagerdata.StopReplicationRequest)(nil), // 28: tabletmanagerdata.StopReplicationRequest
+ (*tabletmanagerdata.StopReplicationMinimumRequest)(nil), // 29: tabletmanagerdata.StopReplicationMinimumRequest
+ (*tabletmanagerdata.StartReplicationRequest)(nil), // 30: tabletmanagerdata.StartReplicationRequest
+ (*tabletmanagerdata.StartReplicationUntilAfterRequest)(nil), // 31: tabletmanagerdata.StartReplicationUntilAfterRequest
+ (*tabletmanagerdata.GetReplicasRequest)(nil), // 32: tabletmanagerdata.GetReplicasRequest
+ (*tabletmanagerdata.CreateVReplicationWorkflowRequest)(nil), // 33: tabletmanagerdata.CreateVReplicationWorkflowRequest
+ (*tabletmanagerdata.DeleteVReplicationWorkflowRequest)(nil), // 34: tabletmanagerdata.DeleteVReplicationWorkflowRequest
+ (*tabletmanagerdata.HasVReplicationWorkflowsRequest)(nil), // 35: tabletmanagerdata.HasVReplicationWorkflowsRequest
+ (*tabletmanagerdata.ReadVReplicationWorkflowRequest)(nil), // 36: tabletmanagerdata.ReadVReplicationWorkflowRequest
+ (*tabletmanagerdata.ReadVReplicationWorkflowsRequest)(nil), // 37: tabletmanagerdata.ReadVReplicationWorkflowsRequest
+ (*tabletmanagerdata.VReplicationExecRequest)(nil), // 38: tabletmanagerdata.VReplicationExecRequest
+ (*tabletmanagerdata.VReplicationWaitForPosRequest)(nil), // 39: tabletmanagerdata.VReplicationWaitForPosRequest
+ (*tabletmanagerdata.UpdateVReplicationWorkflowRequest)(nil), // 40: tabletmanagerdata.UpdateVReplicationWorkflowRequest
+ (*tabletmanagerdata.UpdateVReplicationWorkflowsRequest)(nil), // 41: tabletmanagerdata.UpdateVReplicationWorkflowsRequest
+ (*tabletmanagerdata.VDiffRequest)(nil), // 42: tabletmanagerdata.VDiffRequest
+ (*tabletmanagerdata.ResetReplicationRequest)(nil), // 43: tabletmanagerdata.ResetReplicationRequest
+ (*tabletmanagerdata.InitPrimaryRequest)(nil), // 44: tabletmanagerdata.InitPrimaryRequest
+ (*tabletmanagerdata.PopulateReparentJournalRequest)(nil), // 45: tabletmanagerdata.PopulateReparentJournalRequest
+ (*tabletmanagerdata.InitReplicaRequest)(nil), // 46: tabletmanagerdata.InitReplicaRequest
+ (*tabletmanagerdata.DemotePrimaryRequest)(nil), // 47: tabletmanagerdata.DemotePrimaryRequest
+ (*tabletmanagerdata.UndoDemotePrimaryRequest)(nil), // 48: tabletmanagerdata.UndoDemotePrimaryRequest
+ (*tabletmanagerdata.ReplicaWasPromotedRequest)(nil), // 49: tabletmanagerdata.ReplicaWasPromotedRequest
+ (*tabletmanagerdata.ResetReplicationParametersRequest)(nil), // 50: tabletmanagerdata.ResetReplicationParametersRequest
+ (*tabletmanagerdata.FullStatusRequest)(nil), // 51: tabletmanagerdata.FullStatusRequest
+ (*tabletmanagerdata.SetReplicationSourceRequest)(nil), // 52: tabletmanagerdata.SetReplicationSourceRequest
+ (*tabletmanagerdata.ReplicaWasRestartedRequest)(nil), // 53: tabletmanagerdata.ReplicaWasRestartedRequest
+ (*tabletmanagerdata.StopReplicationAndGetStatusRequest)(nil), // 54: tabletmanagerdata.StopReplicationAndGetStatusRequest
+ (*tabletmanagerdata.PromoteReplicaRequest)(nil), // 55: tabletmanagerdata.PromoteReplicaRequest
+ (*tabletmanagerdata.BackupRequest)(nil), // 56: tabletmanagerdata.BackupRequest
+ (*tabletmanagerdata.RestoreFromBackupRequest)(nil), // 57: tabletmanagerdata.RestoreFromBackupRequest
+ (*tabletmanagerdata.CheckThrottlerRequest)(nil), // 58: tabletmanagerdata.CheckThrottlerRequest
+ (*tabletmanagerdata.GetThrottlerStatusRequest)(nil), // 59: tabletmanagerdata.GetThrottlerStatusRequest
+ (*tabletmanagerdata.PingResponse)(nil), // 60: tabletmanagerdata.PingResponse
+ (*tabletmanagerdata.SleepResponse)(nil), // 61: tabletmanagerdata.SleepResponse
+ (*tabletmanagerdata.ExecuteHookResponse)(nil), // 62: tabletmanagerdata.ExecuteHookResponse
+ (*tabletmanagerdata.GetSchemaResponse)(nil), // 63: tabletmanagerdata.GetSchemaResponse
+ (*tabletmanagerdata.GetPermissionsResponse)(nil), // 64: tabletmanagerdata.GetPermissionsResponse
+ (*tabletmanagerdata.GetGlobalStatusVarsResponse)(nil), // 65: tabletmanagerdata.GetGlobalStatusVarsResponse
+ (*tabletmanagerdata.SetReadOnlyResponse)(nil), // 66: tabletmanagerdata.SetReadOnlyResponse
+ (*tabletmanagerdata.SetReadWriteResponse)(nil), // 67: tabletmanagerdata.SetReadWriteResponse
+ (*tabletmanagerdata.ChangeTypeResponse)(nil), // 68: tabletmanagerdata.ChangeTypeResponse
+ (*tabletmanagerdata.RefreshStateResponse)(nil), // 69: tabletmanagerdata.RefreshStateResponse
+ (*tabletmanagerdata.RunHealthCheckResponse)(nil), // 70: tabletmanagerdata.RunHealthCheckResponse
+ (*tabletmanagerdata.ReloadSchemaResponse)(nil), // 71: tabletmanagerdata.ReloadSchemaResponse
+ (*tabletmanagerdata.PreflightSchemaResponse)(nil), // 72: tabletmanagerdata.PreflightSchemaResponse
+ (*tabletmanagerdata.ApplySchemaResponse)(nil), // 73: tabletmanagerdata.ApplySchemaResponse
+ (*tabletmanagerdata.ResetSequencesResponse)(nil), // 74: tabletmanagerdata.ResetSequencesResponse
+ (*tabletmanagerdata.LockTablesResponse)(nil), // 75: tabletmanagerdata.LockTablesResponse
+ (*tabletmanagerdata.UnlockTablesResponse)(nil), // 76: tabletmanagerdata.UnlockTablesResponse
+ (*tabletmanagerdata.ExecuteQueryResponse)(nil), // 77: tabletmanagerdata.ExecuteQueryResponse
+ (*tabletmanagerdata.ExecuteFetchAsDbaResponse)(nil), // 78: tabletmanagerdata.ExecuteFetchAsDbaResponse
+ (*tabletmanagerdata.ExecuteMultiFetchAsDbaResponse)(nil), // 79: tabletmanagerdata.ExecuteMultiFetchAsDbaResponse
+ (*tabletmanagerdata.ExecuteFetchAsAllPrivsResponse)(nil), // 80: tabletmanagerdata.ExecuteFetchAsAllPrivsResponse
+ (*tabletmanagerdata.ExecuteFetchAsAppResponse)(nil), // 81: tabletmanagerdata.ExecuteFetchAsAppResponse
+ (*tabletmanagerdata.GetUnresolvedTransactionsResponse)(nil), // 82: tabletmanagerdata.GetUnresolvedTransactionsResponse
+ (*tabletmanagerdata.ConcludeTransactionResponse)(nil), // 83: tabletmanagerdata.ConcludeTransactionResponse
+ (*tabletmanagerdata.ReplicationStatusResponse)(nil), // 84: tabletmanagerdata.ReplicationStatusResponse
+ (*tabletmanagerdata.PrimaryStatusResponse)(nil), // 85: tabletmanagerdata.PrimaryStatusResponse
+ (*tabletmanagerdata.PrimaryPositionResponse)(nil), // 86: tabletmanagerdata.PrimaryPositionResponse
+ (*tabletmanagerdata.WaitForPositionResponse)(nil), // 87: tabletmanagerdata.WaitForPositionResponse
+ (*tabletmanagerdata.StopReplicationResponse)(nil), // 88: tabletmanagerdata.StopReplicationResponse
+ (*tabletmanagerdata.StopReplicationMinimumResponse)(nil), // 89: tabletmanagerdata.StopReplicationMinimumResponse
+ (*tabletmanagerdata.StartReplicationResponse)(nil), // 90: tabletmanagerdata.StartReplicationResponse
+ (*tabletmanagerdata.StartReplicationUntilAfterResponse)(nil), // 91: tabletmanagerdata.StartReplicationUntilAfterResponse
+ (*tabletmanagerdata.GetReplicasResponse)(nil), // 92: tabletmanagerdata.GetReplicasResponse
+ (*tabletmanagerdata.CreateVReplicationWorkflowResponse)(nil), // 93: tabletmanagerdata.CreateVReplicationWorkflowResponse
+ (*tabletmanagerdata.DeleteVReplicationWorkflowResponse)(nil), // 94: tabletmanagerdata.DeleteVReplicationWorkflowResponse
+ (*tabletmanagerdata.HasVReplicationWorkflowsResponse)(nil), // 95: tabletmanagerdata.HasVReplicationWorkflowsResponse
+ (*tabletmanagerdata.ReadVReplicationWorkflowResponse)(nil), // 96: tabletmanagerdata.ReadVReplicationWorkflowResponse
+ (*tabletmanagerdata.ReadVReplicationWorkflowsResponse)(nil), // 97: tabletmanagerdata.ReadVReplicationWorkflowsResponse
+ (*tabletmanagerdata.VReplicationExecResponse)(nil), // 98: tabletmanagerdata.VReplicationExecResponse
+ (*tabletmanagerdata.VReplicationWaitForPosResponse)(nil), // 99: tabletmanagerdata.VReplicationWaitForPosResponse
+ (*tabletmanagerdata.UpdateVReplicationWorkflowResponse)(nil), // 100: tabletmanagerdata.UpdateVReplicationWorkflowResponse
+ (*tabletmanagerdata.UpdateVReplicationWorkflowsResponse)(nil), // 101: tabletmanagerdata.UpdateVReplicationWorkflowsResponse
+ (*tabletmanagerdata.VDiffResponse)(nil), // 102: tabletmanagerdata.VDiffResponse
+ (*tabletmanagerdata.ResetReplicationResponse)(nil), // 103: tabletmanagerdata.ResetReplicationResponse
+ (*tabletmanagerdata.InitPrimaryResponse)(nil), // 104: tabletmanagerdata.InitPrimaryResponse
+ (*tabletmanagerdata.PopulateReparentJournalResponse)(nil), // 105: tabletmanagerdata.PopulateReparentJournalResponse
+ (*tabletmanagerdata.InitReplicaResponse)(nil), // 106: tabletmanagerdata.InitReplicaResponse
+ (*tabletmanagerdata.DemotePrimaryResponse)(nil), // 107: tabletmanagerdata.DemotePrimaryResponse
+ (*tabletmanagerdata.UndoDemotePrimaryResponse)(nil), // 108: tabletmanagerdata.UndoDemotePrimaryResponse
+ (*tabletmanagerdata.ReplicaWasPromotedResponse)(nil), // 109: tabletmanagerdata.ReplicaWasPromotedResponse
+ (*tabletmanagerdata.ResetReplicationParametersResponse)(nil), // 110: tabletmanagerdata.ResetReplicationParametersResponse
+ (*tabletmanagerdata.FullStatusResponse)(nil), // 111: tabletmanagerdata.FullStatusResponse
+ (*tabletmanagerdata.SetReplicationSourceResponse)(nil), // 112: tabletmanagerdata.SetReplicationSourceResponse
+ (*tabletmanagerdata.ReplicaWasRestartedResponse)(nil), // 113: tabletmanagerdata.ReplicaWasRestartedResponse
+ (*tabletmanagerdata.StopReplicationAndGetStatusResponse)(nil), // 114: tabletmanagerdata.StopReplicationAndGetStatusResponse
+ (*tabletmanagerdata.PromoteReplicaResponse)(nil), // 115: tabletmanagerdata.PromoteReplicaResponse
+ (*tabletmanagerdata.BackupResponse)(nil), // 116: tabletmanagerdata.BackupResponse
+ (*tabletmanagerdata.RestoreFromBackupResponse)(nil), // 117: tabletmanagerdata.RestoreFromBackupResponse
+ (*tabletmanagerdata.CheckThrottlerResponse)(nil), // 118: tabletmanagerdata.CheckThrottlerResponse
+ (*tabletmanagerdata.GetThrottlerStatusResponse)(nil), // 119: tabletmanagerdata.GetThrottlerStatusResponse
}
var file_tabletmanagerservice_proto_depIdxs = []int32{
0, // 0: tabletmanagerservice.TabletManager.Ping:input_type -> tabletmanagerdata.PingRequest
@@ -611,103 +620,105 @@ var file_tabletmanagerservice_proto_depIdxs = []int32{
20, // 20: tabletmanagerservice.TabletManager.ExecuteFetchAsAllPrivs:input_type -> tabletmanagerdata.ExecuteFetchAsAllPrivsRequest
21, // 21: tabletmanagerservice.TabletManager.ExecuteFetchAsApp:input_type -> tabletmanagerdata.ExecuteFetchAsAppRequest
22, // 22: tabletmanagerservice.TabletManager.GetUnresolvedTransactions:input_type -> tabletmanagerdata.GetUnresolvedTransactionsRequest
- 23, // 23: tabletmanagerservice.TabletManager.ReplicationStatus:input_type -> tabletmanagerdata.ReplicationStatusRequest
- 24, // 24: tabletmanagerservice.TabletManager.PrimaryStatus:input_type -> tabletmanagerdata.PrimaryStatusRequest
- 25, // 25: tabletmanagerservice.TabletManager.PrimaryPosition:input_type -> tabletmanagerdata.PrimaryPositionRequest
- 26, // 26: tabletmanagerservice.TabletManager.WaitForPosition:input_type -> tabletmanagerdata.WaitForPositionRequest
- 27, // 27: tabletmanagerservice.TabletManager.StopReplication:input_type -> tabletmanagerdata.StopReplicationRequest
- 28, // 28: tabletmanagerservice.TabletManager.StopReplicationMinimum:input_type -> tabletmanagerdata.StopReplicationMinimumRequest
- 29, // 29: tabletmanagerservice.TabletManager.StartReplication:input_type -> tabletmanagerdata.StartReplicationRequest
- 30, // 30: tabletmanagerservice.TabletManager.StartReplicationUntilAfter:input_type -> tabletmanagerdata.StartReplicationUntilAfterRequest
- 31, // 31: tabletmanagerservice.TabletManager.GetReplicas:input_type -> tabletmanagerdata.GetReplicasRequest
- 32, // 32: tabletmanagerservice.TabletManager.CreateVReplicationWorkflow:input_type -> tabletmanagerdata.CreateVReplicationWorkflowRequest
- 33, // 33: tabletmanagerservice.TabletManager.DeleteVReplicationWorkflow:input_type -> tabletmanagerdata.DeleteVReplicationWorkflowRequest
- 34, // 34: tabletmanagerservice.TabletManager.HasVReplicationWorkflows:input_type -> tabletmanagerdata.HasVReplicationWorkflowsRequest
- 35, // 35: tabletmanagerservice.TabletManager.ReadVReplicationWorkflow:input_type -> tabletmanagerdata.ReadVReplicationWorkflowRequest
- 36, // 36: tabletmanagerservice.TabletManager.ReadVReplicationWorkflows:input_type -> tabletmanagerdata.ReadVReplicationWorkflowsRequest
- 37, // 37: tabletmanagerservice.TabletManager.VReplicationExec:input_type -> tabletmanagerdata.VReplicationExecRequest
- 38, // 38: tabletmanagerservice.TabletManager.VReplicationWaitForPos:input_type -> tabletmanagerdata.VReplicationWaitForPosRequest
- 39, // 39: tabletmanagerservice.TabletManager.UpdateVReplicationWorkflow:input_type -> tabletmanagerdata.UpdateVReplicationWorkflowRequest
- 40, // 40: tabletmanagerservice.TabletManager.UpdateVReplicationWorkflows:input_type -> tabletmanagerdata.UpdateVReplicationWorkflowsRequest
- 41, // 41: tabletmanagerservice.TabletManager.VDiff:input_type -> tabletmanagerdata.VDiffRequest
- 42, // 42: tabletmanagerservice.TabletManager.ResetReplication:input_type -> tabletmanagerdata.ResetReplicationRequest
- 43, // 43: tabletmanagerservice.TabletManager.InitPrimary:input_type -> tabletmanagerdata.InitPrimaryRequest
- 44, // 44: tabletmanagerservice.TabletManager.PopulateReparentJournal:input_type -> tabletmanagerdata.PopulateReparentJournalRequest
- 45, // 45: tabletmanagerservice.TabletManager.InitReplica:input_type -> tabletmanagerdata.InitReplicaRequest
- 46, // 46: tabletmanagerservice.TabletManager.DemotePrimary:input_type -> tabletmanagerdata.DemotePrimaryRequest
- 47, // 47: tabletmanagerservice.TabletManager.UndoDemotePrimary:input_type -> tabletmanagerdata.UndoDemotePrimaryRequest
- 48, // 48: tabletmanagerservice.TabletManager.ReplicaWasPromoted:input_type -> tabletmanagerdata.ReplicaWasPromotedRequest
- 49, // 49: tabletmanagerservice.TabletManager.ResetReplicationParameters:input_type -> tabletmanagerdata.ResetReplicationParametersRequest
- 50, // 50: tabletmanagerservice.TabletManager.FullStatus:input_type -> tabletmanagerdata.FullStatusRequest
- 51, // 51: tabletmanagerservice.TabletManager.SetReplicationSource:input_type -> tabletmanagerdata.SetReplicationSourceRequest
- 52, // 52: tabletmanagerservice.TabletManager.ReplicaWasRestarted:input_type -> tabletmanagerdata.ReplicaWasRestartedRequest
- 53, // 53: tabletmanagerservice.TabletManager.StopReplicationAndGetStatus:input_type -> tabletmanagerdata.StopReplicationAndGetStatusRequest
- 54, // 54: tabletmanagerservice.TabletManager.PromoteReplica:input_type -> tabletmanagerdata.PromoteReplicaRequest
- 55, // 55: tabletmanagerservice.TabletManager.Backup:input_type -> tabletmanagerdata.BackupRequest
- 56, // 56: tabletmanagerservice.TabletManager.RestoreFromBackup:input_type -> tabletmanagerdata.RestoreFromBackupRequest
- 57, // 57: tabletmanagerservice.TabletManager.CheckThrottler:input_type -> tabletmanagerdata.CheckThrottlerRequest
- 58, // 58: tabletmanagerservice.TabletManager.GetThrottlerStatus:input_type -> tabletmanagerdata.GetThrottlerStatusRequest
- 59, // 59: tabletmanagerservice.TabletManager.Ping:output_type -> tabletmanagerdata.PingResponse
- 60, // 60: tabletmanagerservice.TabletManager.Sleep:output_type -> tabletmanagerdata.SleepResponse
- 61, // 61: tabletmanagerservice.TabletManager.ExecuteHook:output_type -> tabletmanagerdata.ExecuteHookResponse
- 62, // 62: tabletmanagerservice.TabletManager.GetSchema:output_type -> tabletmanagerdata.GetSchemaResponse
- 63, // 63: tabletmanagerservice.TabletManager.GetPermissions:output_type -> tabletmanagerdata.GetPermissionsResponse
- 64, // 64: tabletmanagerservice.TabletManager.GetGlobalStatusVars:output_type -> tabletmanagerdata.GetGlobalStatusVarsResponse
- 65, // 65: tabletmanagerservice.TabletManager.SetReadOnly:output_type -> tabletmanagerdata.SetReadOnlyResponse
- 66, // 66: tabletmanagerservice.TabletManager.SetReadWrite:output_type -> tabletmanagerdata.SetReadWriteResponse
- 67, // 67: tabletmanagerservice.TabletManager.ChangeType:output_type -> tabletmanagerdata.ChangeTypeResponse
- 68, // 68: tabletmanagerservice.TabletManager.RefreshState:output_type -> tabletmanagerdata.RefreshStateResponse
- 69, // 69: tabletmanagerservice.TabletManager.RunHealthCheck:output_type -> tabletmanagerdata.RunHealthCheckResponse
- 70, // 70: tabletmanagerservice.TabletManager.ReloadSchema:output_type -> tabletmanagerdata.ReloadSchemaResponse
- 71, // 71: tabletmanagerservice.TabletManager.PreflightSchema:output_type -> tabletmanagerdata.PreflightSchemaResponse
- 72, // 72: tabletmanagerservice.TabletManager.ApplySchema:output_type -> tabletmanagerdata.ApplySchemaResponse
- 73, // 73: tabletmanagerservice.TabletManager.ResetSequences:output_type -> tabletmanagerdata.ResetSequencesResponse
- 74, // 74: tabletmanagerservice.TabletManager.LockTables:output_type -> tabletmanagerdata.LockTablesResponse
- 75, // 75: tabletmanagerservice.TabletManager.UnlockTables:output_type -> tabletmanagerdata.UnlockTablesResponse
- 76, // 76: tabletmanagerservice.TabletManager.ExecuteQuery:output_type -> tabletmanagerdata.ExecuteQueryResponse
- 77, // 77: tabletmanagerservice.TabletManager.ExecuteFetchAsDba:output_type -> tabletmanagerdata.ExecuteFetchAsDbaResponse
- 78, // 78: tabletmanagerservice.TabletManager.ExecuteMultiFetchAsDba:output_type -> tabletmanagerdata.ExecuteMultiFetchAsDbaResponse
- 79, // 79: tabletmanagerservice.TabletManager.ExecuteFetchAsAllPrivs:output_type -> tabletmanagerdata.ExecuteFetchAsAllPrivsResponse
- 80, // 80: tabletmanagerservice.TabletManager.ExecuteFetchAsApp:output_type -> tabletmanagerdata.ExecuteFetchAsAppResponse
- 81, // 81: tabletmanagerservice.TabletManager.GetUnresolvedTransactions:output_type -> tabletmanagerdata.GetUnresolvedTransactionsResponse
- 82, // 82: tabletmanagerservice.TabletManager.ReplicationStatus:output_type -> tabletmanagerdata.ReplicationStatusResponse
- 83, // 83: tabletmanagerservice.TabletManager.PrimaryStatus:output_type -> tabletmanagerdata.PrimaryStatusResponse
- 84, // 84: tabletmanagerservice.TabletManager.PrimaryPosition:output_type -> tabletmanagerdata.PrimaryPositionResponse
- 85, // 85: tabletmanagerservice.TabletManager.WaitForPosition:output_type -> tabletmanagerdata.WaitForPositionResponse
- 86, // 86: tabletmanagerservice.TabletManager.StopReplication:output_type -> tabletmanagerdata.StopReplicationResponse
- 87, // 87: tabletmanagerservice.TabletManager.StopReplicationMinimum:output_type -> tabletmanagerdata.StopReplicationMinimumResponse
- 88, // 88: tabletmanagerservice.TabletManager.StartReplication:output_type -> tabletmanagerdata.StartReplicationResponse
- 89, // 89: tabletmanagerservice.TabletManager.StartReplicationUntilAfter:output_type -> tabletmanagerdata.StartReplicationUntilAfterResponse
- 90, // 90: tabletmanagerservice.TabletManager.GetReplicas:output_type -> tabletmanagerdata.GetReplicasResponse
- 91, // 91: tabletmanagerservice.TabletManager.CreateVReplicationWorkflow:output_type -> tabletmanagerdata.CreateVReplicationWorkflowResponse
- 92, // 92: tabletmanagerservice.TabletManager.DeleteVReplicationWorkflow:output_type -> tabletmanagerdata.DeleteVReplicationWorkflowResponse
- 93, // 93: tabletmanagerservice.TabletManager.HasVReplicationWorkflows:output_type -> tabletmanagerdata.HasVReplicationWorkflowsResponse
- 94, // 94: tabletmanagerservice.TabletManager.ReadVReplicationWorkflow:output_type -> tabletmanagerdata.ReadVReplicationWorkflowResponse
- 95, // 95: tabletmanagerservice.TabletManager.ReadVReplicationWorkflows:output_type -> tabletmanagerdata.ReadVReplicationWorkflowsResponse
- 96, // 96: tabletmanagerservice.TabletManager.VReplicationExec:output_type -> tabletmanagerdata.VReplicationExecResponse
- 97, // 97: tabletmanagerservice.TabletManager.VReplicationWaitForPos:output_type -> tabletmanagerdata.VReplicationWaitForPosResponse
- 98, // 98: tabletmanagerservice.TabletManager.UpdateVReplicationWorkflow:output_type -> tabletmanagerdata.UpdateVReplicationWorkflowResponse
- 99, // 99: tabletmanagerservice.TabletManager.UpdateVReplicationWorkflows:output_type -> tabletmanagerdata.UpdateVReplicationWorkflowsResponse
- 100, // 100: tabletmanagerservice.TabletManager.VDiff:output_type -> tabletmanagerdata.VDiffResponse
- 101, // 101: tabletmanagerservice.TabletManager.ResetReplication:output_type -> tabletmanagerdata.ResetReplicationResponse
- 102, // 102: tabletmanagerservice.TabletManager.InitPrimary:output_type -> tabletmanagerdata.InitPrimaryResponse
- 103, // 103: tabletmanagerservice.TabletManager.PopulateReparentJournal:output_type -> tabletmanagerdata.PopulateReparentJournalResponse
- 104, // 104: tabletmanagerservice.TabletManager.InitReplica:output_type -> tabletmanagerdata.InitReplicaResponse
- 105, // 105: tabletmanagerservice.TabletManager.DemotePrimary:output_type -> tabletmanagerdata.DemotePrimaryResponse
- 106, // 106: tabletmanagerservice.TabletManager.UndoDemotePrimary:output_type -> tabletmanagerdata.UndoDemotePrimaryResponse
- 107, // 107: tabletmanagerservice.TabletManager.ReplicaWasPromoted:output_type -> tabletmanagerdata.ReplicaWasPromotedResponse
- 108, // 108: tabletmanagerservice.TabletManager.ResetReplicationParameters:output_type -> tabletmanagerdata.ResetReplicationParametersResponse
- 109, // 109: tabletmanagerservice.TabletManager.FullStatus:output_type -> tabletmanagerdata.FullStatusResponse
- 110, // 110: tabletmanagerservice.TabletManager.SetReplicationSource:output_type -> tabletmanagerdata.SetReplicationSourceResponse
- 111, // 111: tabletmanagerservice.TabletManager.ReplicaWasRestarted:output_type -> tabletmanagerdata.ReplicaWasRestartedResponse
- 112, // 112: tabletmanagerservice.TabletManager.StopReplicationAndGetStatus:output_type -> tabletmanagerdata.StopReplicationAndGetStatusResponse
- 113, // 113: tabletmanagerservice.TabletManager.PromoteReplica:output_type -> tabletmanagerdata.PromoteReplicaResponse
- 114, // 114: tabletmanagerservice.TabletManager.Backup:output_type -> tabletmanagerdata.BackupResponse
- 115, // 115: tabletmanagerservice.TabletManager.RestoreFromBackup:output_type -> tabletmanagerdata.RestoreFromBackupResponse
- 116, // 116: tabletmanagerservice.TabletManager.CheckThrottler:output_type -> tabletmanagerdata.CheckThrottlerResponse
- 117, // 117: tabletmanagerservice.TabletManager.GetThrottlerStatus:output_type -> tabletmanagerdata.GetThrottlerStatusResponse
- 59, // [59:118] is the sub-list for method output_type
- 0, // [0:59] is the sub-list for method input_type
+ 23, // 23: tabletmanagerservice.TabletManager.ConcludeTransaction:input_type -> tabletmanagerdata.ConcludeTransactionRequest
+ 24, // 24: tabletmanagerservice.TabletManager.ReplicationStatus:input_type -> tabletmanagerdata.ReplicationStatusRequest
+ 25, // 25: tabletmanagerservice.TabletManager.PrimaryStatus:input_type -> tabletmanagerdata.PrimaryStatusRequest
+ 26, // 26: tabletmanagerservice.TabletManager.PrimaryPosition:input_type -> tabletmanagerdata.PrimaryPositionRequest
+ 27, // 27: tabletmanagerservice.TabletManager.WaitForPosition:input_type -> tabletmanagerdata.WaitForPositionRequest
+ 28, // 28: tabletmanagerservice.TabletManager.StopReplication:input_type -> tabletmanagerdata.StopReplicationRequest
+ 29, // 29: tabletmanagerservice.TabletManager.StopReplicationMinimum:input_type -> tabletmanagerdata.StopReplicationMinimumRequest
+ 30, // 30: tabletmanagerservice.TabletManager.StartReplication:input_type -> tabletmanagerdata.StartReplicationRequest
+ 31, // 31: tabletmanagerservice.TabletManager.StartReplicationUntilAfter:input_type -> tabletmanagerdata.StartReplicationUntilAfterRequest
+ 32, // 32: tabletmanagerservice.TabletManager.GetReplicas:input_type -> tabletmanagerdata.GetReplicasRequest
+ 33, // 33: tabletmanagerservice.TabletManager.CreateVReplicationWorkflow:input_type -> tabletmanagerdata.CreateVReplicationWorkflowRequest
+ 34, // 34: tabletmanagerservice.TabletManager.DeleteVReplicationWorkflow:input_type -> tabletmanagerdata.DeleteVReplicationWorkflowRequest
+ 35, // 35: tabletmanagerservice.TabletManager.HasVReplicationWorkflows:input_type -> tabletmanagerdata.HasVReplicationWorkflowsRequest
+ 36, // 36: tabletmanagerservice.TabletManager.ReadVReplicationWorkflow:input_type -> tabletmanagerdata.ReadVReplicationWorkflowRequest
+ 37, // 37: tabletmanagerservice.TabletManager.ReadVReplicationWorkflows:input_type -> tabletmanagerdata.ReadVReplicationWorkflowsRequest
+ 38, // 38: tabletmanagerservice.TabletManager.VReplicationExec:input_type -> tabletmanagerdata.VReplicationExecRequest
+ 39, // 39: tabletmanagerservice.TabletManager.VReplicationWaitForPos:input_type -> tabletmanagerdata.VReplicationWaitForPosRequest
+ 40, // 40: tabletmanagerservice.TabletManager.UpdateVReplicationWorkflow:input_type -> tabletmanagerdata.UpdateVReplicationWorkflowRequest
+ 41, // 41: tabletmanagerservice.TabletManager.UpdateVReplicationWorkflows:input_type -> tabletmanagerdata.UpdateVReplicationWorkflowsRequest
+ 42, // 42: tabletmanagerservice.TabletManager.VDiff:input_type -> tabletmanagerdata.VDiffRequest
+ 43, // 43: tabletmanagerservice.TabletManager.ResetReplication:input_type -> tabletmanagerdata.ResetReplicationRequest
+ 44, // 44: tabletmanagerservice.TabletManager.InitPrimary:input_type -> tabletmanagerdata.InitPrimaryRequest
+ 45, // 45: tabletmanagerservice.TabletManager.PopulateReparentJournal:input_type -> tabletmanagerdata.PopulateReparentJournalRequest
+ 46, // 46: tabletmanagerservice.TabletManager.InitReplica:input_type -> tabletmanagerdata.InitReplicaRequest
+ 47, // 47: tabletmanagerservice.TabletManager.DemotePrimary:input_type -> tabletmanagerdata.DemotePrimaryRequest
+ 48, // 48: tabletmanagerservice.TabletManager.UndoDemotePrimary:input_type -> tabletmanagerdata.UndoDemotePrimaryRequest
+ 49, // 49: tabletmanagerservice.TabletManager.ReplicaWasPromoted:input_type -> tabletmanagerdata.ReplicaWasPromotedRequest
+ 50, // 50: tabletmanagerservice.TabletManager.ResetReplicationParameters:input_type -> tabletmanagerdata.ResetReplicationParametersRequest
+ 51, // 51: tabletmanagerservice.TabletManager.FullStatus:input_type -> tabletmanagerdata.FullStatusRequest
+ 52, // 52: tabletmanagerservice.TabletManager.SetReplicationSource:input_type -> tabletmanagerdata.SetReplicationSourceRequest
+ 53, // 53: tabletmanagerservice.TabletManager.ReplicaWasRestarted:input_type -> tabletmanagerdata.ReplicaWasRestartedRequest
+ 54, // 54: tabletmanagerservice.TabletManager.StopReplicationAndGetStatus:input_type -> tabletmanagerdata.StopReplicationAndGetStatusRequest
+ 55, // 55: tabletmanagerservice.TabletManager.PromoteReplica:input_type -> tabletmanagerdata.PromoteReplicaRequest
+ 56, // 56: tabletmanagerservice.TabletManager.Backup:input_type -> tabletmanagerdata.BackupRequest
+ 57, // 57: tabletmanagerservice.TabletManager.RestoreFromBackup:input_type -> tabletmanagerdata.RestoreFromBackupRequest
+ 58, // 58: tabletmanagerservice.TabletManager.CheckThrottler:input_type -> tabletmanagerdata.CheckThrottlerRequest
+ 59, // 59: tabletmanagerservice.TabletManager.GetThrottlerStatus:input_type -> tabletmanagerdata.GetThrottlerStatusRequest
+ 60, // 60: tabletmanagerservice.TabletManager.Ping:output_type -> tabletmanagerdata.PingResponse
+ 61, // 61: tabletmanagerservice.TabletManager.Sleep:output_type -> tabletmanagerdata.SleepResponse
+ 62, // 62: tabletmanagerservice.TabletManager.ExecuteHook:output_type -> tabletmanagerdata.ExecuteHookResponse
+ 63, // 63: tabletmanagerservice.TabletManager.GetSchema:output_type -> tabletmanagerdata.GetSchemaResponse
+ 64, // 64: tabletmanagerservice.TabletManager.GetPermissions:output_type -> tabletmanagerdata.GetPermissionsResponse
+ 65, // 65: tabletmanagerservice.TabletManager.GetGlobalStatusVars:output_type -> tabletmanagerdata.GetGlobalStatusVarsResponse
+ 66, // 66: tabletmanagerservice.TabletManager.SetReadOnly:output_type -> tabletmanagerdata.SetReadOnlyResponse
+ 67, // 67: tabletmanagerservice.TabletManager.SetReadWrite:output_type -> tabletmanagerdata.SetReadWriteResponse
+ 68, // 68: tabletmanagerservice.TabletManager.ChangeType:output_type -> tabletmanagerdata.ChangeTypeResponse
+ 69, // 69: tabletmanagerservice.TabletManager.RefreshState:output_type -> tabletmanagerdata.RefreshStateResponse
+ 70, // 70: tabletmanagerservice.TabletManager.RunHealthCheck:output_type -> tabletmanagerdata.RunHealthCheckResponse
+ 71, // 71: tabletmanagerservice.TabletManager.ReloadSchema:output_type -> tabletmanagerdata.ReloadSchemaResponse
+ 72, // 72: tabletmanagerservice.TabletManager.PreflightSchema:output_type -> tabletmanagerdata.PreflightSchemaResponse
+ 73, // 73: tabletmanagerservice.TabletManager.ApplySchema:output_type -> tabletmanagerdata.ApplySchemaResponse
+ 74, // 74: tabletmanagerservice.TabletManager.ResetSequences:output_type -> tabletmanagerdata.ResetSequencesResponse
+ 75, // 75: tabletmanagerservice.TabletManager.LockTables:output_type -> tabletmanagerdata.LockTablesResponse
+ 76, // 76: tabletmanagerservice.TabletManager.UnlockTables:output_type -> tabletmanagerdata.UnlockTablesResponse
+ 77, // 77: tabletmanagerservice.TabletManager.ExecuteQuery:output_type -> tabletmanagerdata.ExecuteQueryResponse
+ 78, // 78: tabletmanagerservice.TabletManager.ExecuteFetchAsDba:output_type -> tabletmanagerdata.ExecuteFetchAsDbaResponse
+ 79, // 79: tabletmanagerservice.TabletManager.ExecuteMultiFetchAsDba:output_type -> tabletmanagerdata.ExecuteMultiFetchAsDbaResponse
+ 80, // 80: tabletmanagerservice.TabletManager.ExecuteFetchAsAllPrivs:output_type -> tabletmanagerdata.ExecuteFetchAsAllPrivsResponse
+ 81, // 81: tabletmanagerservice.TabletManager.ExecuteFetchAsApp:output_type -> tabletmanagerdata.ExecuteFetchAsAppResponse
+ 82, // 82: tabletmanagerservice.TabletManager.GetUnresolvedTransactions:output_type -> tabletmanagerdata.GetUnresolvedTransactionsResponse
+ 83, // 83: tabletmanagerservice.TabletManager.ConcludeTransaction:output_type -> tabletmanagerdata.ConcludeTransactionResponse
+ 84, // 84: tabletmanagerservice.TabletManager.ReplicationStatus:output_type -> tabletmanagerdata.ReplicationStatusResponse
+ 85, // 85: tabletmanagerservice.TabletManager.PrimaryStatus:output_type -> tabletmanagerdata.PrimaryStatusResponse
+ 86, // 86: tabletmanagerservice.TabletManager.PrimaryPosition:output_type -> tabletmanagerdata.PrimaryPositionResponse
+ 87, // 87: tabletmanagerservice.TabletManager.WaitForPosition:output_type -> tabletmanagerdata.WaitForPositionResponse
+ 88, // 88: tabletmanagerservice.TabletManager.StopReplication:output_type -> tabletmanagerdata.StopReplicationResponse
+ 89, // 89: tabletmanagerservice.TabletManager.StopReplicationMinimum:output_type -> tabletmanagerdata.StopReplicationMinimumResponse
+ 90, // 90: tabletmanagerservice.TabletManager.StartReplication:output_type -> tabletmanagerdata.StartReplicationResponse
+ 91, // 91: tabletmanagerservice.TabletManager.StartReplicationUntilAfter:output_type -> tabletmanagerdata.StartReplicationUntilAfterResponse
+ 92, // 92: tabletmanagerservice.TabletManager.GetReplicas:output_type -> tabletmanagerdata.GetReplicasResponse
+ 93, // 93: tabletmanagerservice.TabletManager.CreateVReplicationWorkflow:output_type -> tabletmanagerdata.CreateVReplicationWorkflowResponse
+ 94, // 94: tabletmanagerservice.TabletManager.DeleteVReplicationWorkflow:output_type -> tabletmanagerdata.DeleteVReplicationWorkflowResponse
+ 95, // 95: tabletmanagerservice.TabletManager.HasVReplicationWorkflows:output_type -> tabletmanagerdata.HasVReplicationWorkflowsResponse
+ 96, // 96: tabletmanagerservice.TabletManager.ReadVReplicationWorkflow:output_type -> tabletmanagerdata.ReadVReplicationWorkflowResponse
+ 97, // 97: tabletmanagerservice.TabletManager.ReadVReplicationWorkflows:output_type -> tabletmanagerdata.ReadVReplicationWorkflowsResponse
+ 98, // 98: tabletmanagerservice.TabletManager.VReplicationExec:output_type -> tabletmanagerdata.VReplicationExecResponse
+ 99, // 99: tabletmanagerservice.TabletManager.VReplicationWaitForPos:output_type -> tabletmanagerdata.VReplicationWaitForPosResponse
+ 100, // 100: tabletmanagerservice.TabletManager.UpdateVReplicationWorkflow:output_type -> tabletmanagerdata.UpdateVReplicationWorkflowResponse
+ 101, // 101: tabletmanagerservice.TabletManager.UpdateVReplicationWorkflows:output_type -> tabletmanagerdata.UpdateVReplicationWorkflowsResponse
+ 102, // 102: tabletmanagerservice.TabletManager.VDiff:output_type -> tabletmanagerdata.VDiffResponse
+ 103, // 103: tabletmanagerservice.TabletManager.ResetReplication:output_type -> tabletmanagerdata.ResetReplicationResponse
+ 104, // 104: tabletmanagerservice.TabletManager.InitPrimary:output_type -> tabletmanagerdata.InitPrimaryResponse
+ 105, // 105: tabletmanagerservice.TabletManager.PopulateReparentJournal:output_type -> tabletmanagerdata.PopulateReparentJournalResponse
+ 106, // 106: tabletmanagerservice.TabletManager.InitReplica:output_type -> tabletmanagerdata.InitReplicaResponse
+ 107, // 107: tabletmanagerservice.TabletManager.DemotePrimary:output_type -> tabletmanagerdata.DemotePrimaryResponse
+ 108, // 108: tabletmanagerservice.TabletManager.UndoDemotePrimary:output_type -> tabletmanagerdata.UndoDemotePrimaryResponse
+ 109, // 109: tabletmanagerservice.TabletManager.ReplicaWasPromoted:output_type -> tabletmanagerdata.ReplicaWasPromotedResponse
+ 110, // 110: tabletmanagerservice.TabletManager.ResetReplicationParameters:output_type -> tabletmanagerdata.ResetReplicationParametersResponse
+ 111, // 111: tabletmanagerservice.TabletManager.FullStatus:output_type -> tabletmanagerdata.FullStatusResponse
+ 112, // 112: tabletmanagerservice.TabletManager.SetReplicationSource:output_type -> tabletmanagerdata.SetReplicationSourceResponse
+ 113, // 113: tabletmanagerservice.TabletManager.ReplicaWasRestarted:output_type -> tabletmanagerdata.ReplicaWasRestartedResponse
+ 114, // 114: tabletmanagerservice.TabletManager.StopReplicationAndGetStatus:output_type -> tabletmanagerdata.StopReplicationAndGetStatusResponse
+ 115, // 115: tabletmanagerservice.TabletManager.PromoteReplica:output_type -> tabletmanagerdata.PromoteReplicaResponse
+ 116, // 116: tabletmanagerservice.TabletManager.Backup:output_type -> tabletmanagerdata.BackupResponse
+ 117, // 117: tabletmanagerservice.TabletManager.RestoreFromBackup:output_type -> tabletmanagerdata.RestoreFromBackupResponse
+ 118, // 118: tabletmanagerservice.TabletManager.CheckThrottler:output_type -> tabletmanagerdata.CheckThrottlerResponse
+ 119, // 119: tabletmanagerservice.TabletManager.GetThrottlerStatus:output_type -> tabletmanagerdata.GetThrottlerStatusResponse
+ 60, // [60:120] is the sub-list for method output_type
+ 0, // [0:60] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
0, // [0:0] is the sub-list for extension extendee
0, // [0:0] is the sub-list for field type_name
diff --git a/go/vt/proto/tabletmanagerservice/tabletmanagerservice_grpc.pb.go b/go/vt/proto/tabletmanagerservice/tabletmanagerservice_grpc.pb.go
index 5e8f4b5ae55..a5ce7a07143 100644
--- a/go/vt/proto/tabletmanagerservice/tabletmanagerservice_grpc.pb.go
+++ b/go/vt/proto/tabletmanagerservice/tabletmanagerservice_grpc.pb.go
@@ -54,6 +54,7 @@ type TabletManagerClient interface {
ExecuteFetchAsAllPrivs(ctx context.Context, in *tabletmanagerdata.ExecuteFetchAsAllPrivsRequest, opts ...grpc.CallOption) (*tabletmanagerdata.ExecuteFetchAsAllPrivsResponse, error)
ExecuteFetchAsApp(ctx context.Context, in *tabletmanagerdata.ExecuteFetchAsAppRequest, opts ...grpc.CallOption) (*tabletmanagerdata.ExecuteFetchAsAppResponse, error)
GetUnresolvedTransactions(ctx context.Context, in *tabletmanagerdata.GetUnresolvedTransactionsRequest, opts ...grpc.CallOption) (*tabletmanagerdata.GetUnresolvedTransactionsResponse, error)
+ ConcludeTransaction(ctx context.Context, in *tabletmanagerdata.ConcludeTransactionRequest, opts ...grpc.CallOption) (*tabletmanagerdata.ConcludeTransactionResponse, error)
// ReplicationStatus returns the current replication status.
ReplicationStatus(ctx context.Context, in *tabletmanagerdata.ReplicationStatusRequest, opts ...grpc.CallOption) (*tabletmanagerdata.ReplicationStatusResponse, error)
// PrimaryStatus returns the current primary status.
@@ -338,6 +339,15 @@ func (c *tabletManagerClient) GetUnresolvedTransactions(ctx context.Context, in
return out, nil
}
+func (c *tabletManagerClient) ConcludeTransaction(ctx context.Context, in *tabletmanagerdata.ConcludeTransactionRequest, opts ...grpc.CallOption) (*tabletmanagerdata.ConcludeTransactionResponse, error) {
+ out := new(tabletmanagerdata.ConcludeTransactionResponse)
+ err := c.cc.Invoke(ctx, "/tabletmanagerservice.TabletManager/ConcludeTransaction", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
func (c *tabletManagerClient) ReplicationStatus(ctx context.Context, in *tabletmanagerdata.ReplicationStatusRequest, opts ...grpc.CallOption) (*tabletmanagerdata.ReplicationStatusResponse, error) {
out := new(tabletmanagerdata.ReplicationStatusResponse)
err := c.cc.Invoke(ctx, "/tabletmanagerservice.TabletManager/ReplicationStatus", in, out, opts...)
@@ -743,6 +753,7 @@ type TabletManagerServer interface {
ExecuteFetchAsAllPrivs(context.Context, *tabletmanagerdata.ExecuteFetchAsAllPrivsRequest) (*tabletmanagerdata.ExecuteFetchAsAllPrivsResponse, error)
ExecuteFetchAsApp(context.Context, *tabletmanagerdata.ExecuteFetchAsAppRequest) (*tabletmanagerdata.ExecuteFetchAsAppResponse, error)
GetUnresolvedTransactions(context.Context, *tabletmanagerdata.GetUnresolvedTransactionsRequest) (*tabletmanagerdata.GetUnresolvedTransactionsResponse, error)
+ ConcludeTransaction(context.Context, *tabletmanagerdata.ConcludeTransactionRequest) (*tabletmanagerdata.ConcludeTransactionResponse, error)
// ReplicationStatus returns the current replication status.
ReplicationStatus(context.Context, *tabletmanagerdata.ReplicationStatusRequest) (*tabletmanagerdata.ReplicationStatusResponse, error)
// PrimaryStatus returns the current primary status.
@@ -886,6 +897,9 @@ func (UnimplementedTabletManagerServer) ExecuteFetchAsApp(context.Context, *tabl
func (UnimplementedTabletManagerServer) GetUnresolvedTransactions(context.Context, *tabletmanagerdata.GetUnresolvedTransactionsRequest) (*tabletmanagerdata.GetUnresolvedTransactionsResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetUnresolvedTransactions not implemented")
}
+func (UnimplementedTabletManagerServer) ConcludeTransaction(context.Context, *tabletmanagerdata.ConcludeTransactionRequest) (*tabletmanagerdata.ConcludeTransactionResponse, error) {
+ return nil, status.Errorf(codes.Unimplemented, "method ConcludeTransaction not implemented")
+}
func (UnimplementedTabletManagerServer) ReplicationStatus(context.Context, *tabletmanagerdata.ReplicationStatusRequest) (*tabletmanagerdata.ReplicationStatusResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReplicationStatus not implemented")
}
@@ -1421,6 +1435,24 @@ func _TabletManager_GetUnresolvedTransactions_Handler(srv interface{}, ctx conte
return interceptor(ctx, in, info, handler)
}
+func _TabletManager_ConcludeTransaction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(tabletmanagerdata.ConcludeTransactionRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(TabletManagerServer).ConcludeTransaction(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/tabletmanagerservice.TabletManager/ConcludeTransaction",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(TabletManagerServer).ConcludeTransaction(ctx, req.(*tabletmanagerdata.ConcludeTransactionRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
func _TabletManager_ReplicationStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(tabletmanagerdata.ReplicationStatusRequest)
if err := dec(in); err != nil {
@@ -2174,6 +2206,10 @@ var TabletManager_ServiceDesc = grpc.ServiceDesc{
MethodName: "GetUnresolvedTransactions",
Handler: _TabletManager_GetUnresolvedTransactions_Handler,
},
+ {
+ MethodName: "ConcludeTransaction",
+ Handler: _TabletManager_ConcludeTransaction_Handler,
+ },
{
MethodName: "ReplicationStatus",
Handler: _TabletManager_ReplicationStatus_Handler,
diff --git a/go/vt/proto/vtctldata/vtctldata.pb.go b/go/vt/proto/vtctldata/vtctldata.pb.go
index e23211877d0..a1a8899a8de 100644
--- a/go/vt/proto/vtctldata/vtctldata.pb.go
+++ b/go/vt/proto/vtctldata/vtctldata.pb.go
@@ -1241,7 +1241,8 @@ type WorkflowOptions struct {
StripShardedAutoIncrement bool `protobuf:"varint,2,opt,name=strip_sharded_auto_increment,json=stripShardedAutoIncrement,proto3" json:"strip_sharded_auto_increment,omitempty"`
// Shards on which vreplication streams in the target keyspace are created for this workflow and to which the data
// from the source will be vreplicated.
- Shards []string `protobuf:"bytes,3,rep,name=shards,proto3" json:"shards,omitempty"`
+ Shards []string `protobuf:"bytes,3,rep,name=shards,proto3" json:"shards,omitempty"`
+ Config map[string]string `protobuf:"bytes,4,rep,name=config,proto3" json:"config,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
}
func (x *WorkflowOptions) Reset() {
@@ -1297,6 +1298,13 @@ func (x *WorkflowOptions) GetShards() []string {
return nil
}
+func (x *WorkflowOptions) GetConfig() map[string]string {
+ if x != nil {
+ return x.Config
+ }
+ return nil
+}
+
// TODO: comment the hell out of this.
type Workflow struct {
state protoimpl.MessageState
@@ -7625,6 +7633,99 @@ func (x *GetUnresolvedTransactionsResponse) GetTransactions() []*query.Transacti
return nil
}
+type ConcludeTransactionRequest struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
+ Dtid string `protobuf:"bytes,1,opt,name=dtid,proto3" json:"dtid,omitempty"`
+ Participants []*query.Target `protobuf:"bytes,2,rep,name=participants,proto3" json:"participants,omitempty"`
+}
+
+func (x *ConcludeTransactionRequest) Reset() {
+ *x = ConcludeTransactionRequest{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_vtctldata_proto_msgTypes[117]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *ConcludeTransactionRequest) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ConcludeTransactionRequest) ProtoMessage() {}
+
+func (x *ConcludeTransactionRequest) ProtoReflect() protoreflect.Message {
+ mi := &file_vtctldata_proto_msgTypes[117]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use ConcludeTransactionRequest.ProtoReflect.Descriptor instead.
+func (*ConcludeTransactionRequest) Descriptor() ([]byte, []int) {
+ return file_vtctldata_proto_rawDescGZIP(), []int{117}
+}
+
+func (x *ConcludeTransactionRequest) GetDtid() string {
+ if x != nil {
+ return x.Dtid
+ }
+ return ""
+}
+
+func (x *ConcludeTransactionRequest) GetParticipants() []*query.Target {
+ if x != nil {
+ return x.Participants
+ }
+ return nil
+}
+
+type ConcludeTransactionResponse struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+}
+
+func (x *ConcludeTransactionResponse) Reset() {
+ *x = ConcludeTransactionResponse{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_vtctldata_proto_msgTypes[118]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *ConcludeTransactionResponse) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ConcludeTransactionResponse) ProtoMessage() {}
+
+func (x *ConcludeTransactionResponse) ProtoReflect() protoreflect.Message {
+ mi := &file_vtctldata_proto_msgTypes[118]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use ConcludeTransactionResponse.ProtoReflect.Descriptor instead.
+func (*ConcludeTransactionResponse) Descriptor() ([]byte, []int) {
+ return file_vtctldata_proto_rawDescGZIP(), []int{118}
+}
+
type GetVSchemaRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -7636,7 +7737,7 @@ type GetVSchemaRequest struct {
func (x *GetVSchemaRequest) Reset() {
*x = GetVSchemaRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[117]
+ mi := &file_vtctldata_proto_msgTypes[119]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7649,7 +7750,7 @@ func (x *GetVSchemaRequest) String() string {
func (*GetVSchemaRequest) ProtoMessage() {}
func (x *GetVSchemaRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[117]
+ mi := &file_vtctldata_proto_msgTypes[119]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7662,7 +7763,7 @@ func (x *GetVSchemaRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetVSchemaRequest.ProtoReflect.Descriptor instead.
func (*GetVSchemaRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{117}
+ return file_vtctldata_proto_rawDescGZIP(), []int{119}
}
func (x *GetVSchemaRequest) GetKeyspace() string {
@@ -7683,7 +7784,7 @@ type GetVersionRequest struct {
func (x *GetVersionRequest) Reset() {
*x = GetVersionRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[118]
+ mi := &file_vtctldata_proto_msgTypes[120]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7696,7 +7797,7 @@ func (x *GetVersionRequest) String() string {
func (*GetVersionRequest) ProtoMessage() {}
func (x *GetVersionRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[118]
+ mi := &file_vtctldata_proto_msgTypes[120]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7709,7 +7810,7 @@ func (x *GetVersionRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetVersionRequest.ProtoReflect.Descriptor instead.
func (*GetVersionRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{118}
+ return file_vtctldata_proto_rawDescGZIP(), []int{120}
}
func (x *GetVersionRequest) GetTabletAlias() *topodata.TabletAlias {
@@ -7730,7 +7831,7 @@ type GetVersionResponse struct {
func (x *GetVersionResponse) Reset() {
*x = GetVersionResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[119]
+ mi := &file_vtctldata_proto_msgTypes[121]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7743,7 +7844,7 @@ func (x *GetVersionResponse) String() string {
func (*GetVersionResponse) ProtoMessage() {}
func (x *GetVersionResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[119]
+ mi := &file_vtctldata_proto_msgTypes[121]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7756,7 +7857,7 @@ func (x *GetVersionResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetVersionResponse.ProtoReflect.Descriptor instead.
func (*GetVersionResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{119}
+ return file_vtctldata_proto_rawDescGZIP(), []int{121}
}
func (x *GetVersionResponse) GetVersion() string {
@@ -7777,7 +7878,7 @@ type GetVSchemaResponse struct {
func (x *GetVSchemaResponse) Reset() {
*x = GetVSchemaResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[120]
+ mi := &file_vtctldata_proto_msgTypes[122]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7790,7 +7891,7 @@ func (x *GetVSchemaResponse) String() string {
func (*GetVSchemaResponse) ProtoMessage() {}
func (x *GetVSchemaResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[120]
+ mi := &file_vtctldata_proto_msgTypes[122]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7803,7 +7904,7 @@ func (x *GetVSchemaResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetVSchemaResponse.ProtoReflect.Descriptor instead.
func (*GetVSchemaResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{120}
+ return file_vtctldata_proto_rawDescGZIP(), []int{122}
}
func (x *GetVSchemaResponse) GetVSchema() *vschema.Keyspace {
@@ -7830,7 +7931,7 @@ type GetWorkflowsRequest struct {
func (x *GetWorkflowsRequest) Reset() {
*x = GetWorkflowsRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[121]
+ mi := &file_vtctldata_proto_msgTypes[123]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7843,7 +7944,7 @@ func (x *GetWorkflowsRequest) String() string {
func (*GetWorkflowsRequest) ProtoMessage() {}
func (x *GetWorkflowsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[121]
+ mi := &file_vtctldata_proto_msgTypes[123]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7856,7 +7957,7 @@ func (x *GetWorkflowsRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetWorkflowsRequest.ProtoReflect.Descriptor instead.
func (*GetWorkflowsRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{121}
+ return file_vtctldata_proto_rawDescGZIP(), []int{123}
}
func (x *GetWorkflowsRequest) GetKeyspace() string {
@@ -7912,7 +8013,7 @@ type GetWorkflowsResponse struct {
func (x *GetWorkflowsResponse) Reset() {
*x = GetWorkflowsResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[122]
+ mi := &file_vtctldata_proto_msgTypes[124]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7925,7 +8026,7 @@ func (x *GetWorkflowsResponse) String() string {
func (*GetWorkflowsResponse) ProtoMessage() {}
func (x *GetWorkflowsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[122]
+ mi := &file_vtctldata_proto_msgTypes[124]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7938,7 +8039,7 @@ func (x *GetWorkflowsResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetWorkflowsResponse.ProtoReflect.Descriptor instead.
func (*GetWorkflowsResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{122}
+ return file_vtctldata_proto_rawDescGZIP(), []int{124}
}
func (x *GetWorkflowsResponse) GetWorkflows() []*Workflow {
@@ -7963,7 +8064,7 @@ type InitShardPrimaryRequest struct {
func (x *InitShardPrimaryRequest) Reset() {
*x = InitShardPrimaryRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[123]
+ mi := &file_vtctldata_proto_msgTypes[125]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -7976,7 +8077,7 @@ func (x *InitShardPrimaryRequest) String() string {
func (*InitShardPrimaryRequest) ProtoMessage() {}
func (x *InitShardPrimaryRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[123]
+ mi := &file_vtctldata_proto_msgTypes[125]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -7989,7 +8090,7 @@ func (x *InitShardPrimaryRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use InitShardPrimaryRequest.ProtoReflect.Descriptor instead.
func (*InitShardPrimaryRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{123}
+ return file_vtctldata_proto_rawDescGZIP(), []int{125}
}
func (x *InitShardPrimaryRequest) GetKeyspace() string {
@@ -8038,7 +8139,7 @@ type InitShardPrimaryResponse struct {
func (x *InitShardPrimaryResponse) Reset() {
*x = InitShardPrimaryResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[124]
+ mi := &file_vtctldata_proto_msgTypes[126]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8051,7 +8152,7 @@ func (x *InitShardPrimaryResponse) String() string {
func (*InitShardPrimaryResponse) ProtoMessage() {}
func (x *InitShardPrimaryResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[124]
+ mi := &file_vtctldata_proto_msgTypes[126]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8064,7 +8165,7 @@ func (x *InitShardPrimaryResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use InitShardPrimaryResponse.ProtoReflect.Descriptor instead.
func (*InitShardPrimaryResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{124}
+ return file_vtctldata_proto_rawDescGZIP(), []int{126}
}
func (x *InitShardPrimaryResponse) GetEvents() []*logutil.Event {
@@ -8086,7 +8187,7 @@ type LaunchSchemaMigrationRequest struct {
func (x *LaunchSchemaMigrationRequest) Reset() {
*x = LaunchSchemaMigrationRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[125]
+ mi := &file_vtctldata_proto_msgTypes[127]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8099,7 +8200,7 @@ func (x *LaunchSchemaMigrationRequest) String() string {
func (*LaunchSchemaMigrationRequest) ProtoMessage() {}
func (x *LaunchSchemaMigrationRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[125]
+ mi := &file_vtctldata_proto_msgTypes[127]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8112,7 +8213,7 @@ func (x *LaunchSchemaMigrationRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use LaunchSchemaMigrationRequest.ProtoReflect.Descriptor instead.
func (*LaunchSchemaMigrationRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{125}
+ return file_vtctldata_proto_rawDescGZIP(), []int{127}
}
func (x *LaunchSchemaMigrationRequest) GetKeyspace() string {
@@ -8140,7 +8241,7 @@ type LaunchSchemaMigrationResponse struct {
func (x *LaunchSchemaMigrationResponse) Reset() {
*x = LaunchSchemaMigrationResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[126]
+ mi := &file_vtctldata_proto_msgTypes[128]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8153,7 +8254,7 @@ func (x *LaunchSchemaMigrationResponse) String() string {
func (*LaunchSchemaMigrationResponse) ProtoMessage() {}
func (x *LaunchSchemaMigrationResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[126]
+ mi := &file_vtctldata_proto_msgTypes[128]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8166,7 +8267,7 @@ func (x *LaunchSchemaMigrationResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use LaunchSchemaMigrationResponse.ProtoReflect.Descriptor instead.
func (*LaunchSchemaMigrationResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{126}
+ return file_vtctldata_proto_rawDescGZIP(), []int{128}
}
func (x *LaunchSchemaMigrationResponse) GetRowsAffectedByShard() map[string]uint64 {
@@ -8193,7 +8294,7 @@ type LookupVindexCreateRequest struct {
func (x *LookupVindexCreateRequest) Reset() {
*x = LookupVindexCreateRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[127]
+ mi := &file_vtctldata_proto_msgTypes[129]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8206,7 +8307,7 @@ func (x *LookupVindexCreateRequest) String() string {
func (*LookupVindexCreateRequest) ProtoMessage() {}
func (x *LookupVindexCreateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[127]
+ mi := &file_vtctldata_proto_msgTypes[129]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8219,7 +8320,7 @@ func (x *LookupVindexCreateRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use LookupVindexCreateRequest.ProtoReflect.Descriptor instead.
func (*LookupVindexCreateRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{127}
+ return file_vtctldata_proto_rawDescGZIP(), []int{129}
}
func (x *LookupVindexCreateRequest) GetKeyspace() string {
@@ -8280,7 +8381,7 @@ type LookupVindexCreateResponse struct {
func (x *LookupVindexCreateResponse) Reset() {
*x = LookupVindexCreateResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[128]
+ mi := &file_vtctldata_proto_msgTypes[130]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8293,7 +8394,7 @@ func (x *LookupVindexCreateResponse) String() string {
func (*LookupVindexCreateResponse) ProtoMessage() {}
func (x *LookupVindexCreateResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[128]
+ mi := &file_vtctldata_proto_msgTypes[130]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8306,7 +8407,7 @@ func (x *LookupVindexCreateResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use LookupVindexCreateResponse.ProtoReflect.Descriptor instead.
func (*LookupVindexCreateResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{128}
+ return file_vtctldata_proto_rawDescGZIP(), []int{130}
}
type LookupVindexExternalizeRequest struct {
@@ -8325,7 +8426,7 @@ type LookupVindexExternalizeRequest struct {
func (x *LookupVindexExternalizeRequest) Reset() {
*x = LookupVindexExternalizeRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[129]
+ mi := &file_vtctldata_proto_msgTypes[131]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8338,7 +8439,7 @@ func (x *LookupVindexExternalizeRequest) String() string {
func (*LookupVindexExternalizeRequest) ProtoMessage() {}
func (x *LookupVindexExternalizeRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[129]
+ mi := &file_vtctldata_proto_msgTypes[131]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8351,7 +8452,7 @@ func (x *LookupVindexExternalizeRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use LookupVindexExternalizeRequest.ProtoReflect.Descriptor instead.
func (*LookupVindexExternalizeRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{129}
+ return file_vtctldata_proto_rawDescGZIP(), []int{131}
}
func (x *LookupVindexExternalizeRequest) GetKeyspace() string {
@@ -8387,7 +8488,7 @@ type LookupVindexExternalizeResponse struct {
func (x *LookupVindexExternalizeResponse) Reset() {
*x = LookupVindexExternalizeResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[130]
+ mi := &file_vtctldata_proto_msgTypes[132]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8400,7 +8501,7 @@ func (x *LookupVindexExternalizeResponse) String() string {
func (*LookupVindexExternalizeResponse) ProtoMessage() {}
func (x *LookupVindexExternalizeResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[130]
+ mi := &file_vtctldata_proto_msgTypes[132]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8413,7 +8514,7 @@ func (x *LookupVindexExternalizeResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use LookupVindexExternalizeResponse.ProtoReflect.Descriptor instead.
func (*LookupVindexExternalizeResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{130}
+ return file_vtctldata_proto_rawDescGZIP(), []int{132}
}
func (x *LookupVindexExternalizeResponse) GetWorkflowDeleted() bool {
@@ -8434,7 +8535,7 @@ type MaterializeCreateRequest struct {
func (x *MaterializeCreateRequest) Reset() {
*x = MaterializeCreateRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[131]
+ mi := &file_vtctldata_proto_msgTypes[133]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8447,7 +8548,7 @@ func (x *MaterializeCreateRequest) String() string {
func (*MaterializeCreateRequest) ProtoMessage() {}
func (x *MaterializeCreateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[131]
+ mi := &file_vtctldata_proto_msgTypes[133]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8460,7 +8561,7 @@ func (x *MaterializeCreateRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use MaterializeCreateRequest.ProtoReflect.Descriptor instead.
func (*MaterializeCreateRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{131}
+ return file_vtctldata_proto_rawDescGZIP(), []int{133}
}
func (x *MaterializeCreateRequest) GetSettings() *MaterializeSettings {
@@ -8479,7 +8580,7 @@ type MaterializeCreateResponse struct {
func (x *MaterializeCreateResponse) Reset() {
*x = MaterializeCreateResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[132]
+ mi := &file_vtctldata_proto_msgTypes[134]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8492,7 +8593,7 @@ func (x *MaterializeCreateResponse) String() string {
func (*MaterializeCreateResponse) ProtoMessage() {}
func (x *MaterializeCreateResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[132]
+ mi := &file_vtctldata_proto_msgTypes[134]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8505,7 +8606,7 @@ func (x *MaterializeCreateResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use MaterializeCreateResponse.ProtoReflect.Descriptor instead.
func (*MaterializeCreateResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{132}
+ return file_vtctldata_proto_rawDescGZIP(), []int{134}
}
type MigrateCreateRequest struct {
@@ -8544,7 +8645,7 @@ type MigrateCreateRequest struct {
func (x *MigrateCreateRequest) Reset() {
*x = MigrateCreateRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[133]
+ mi := &file_vtctldata_proto_msgTypes[135]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8557,7 +8658,7 @@ func (x *MigrateCreateRequest) String() string {
func (*MigrateCreateRequest) ProtoMessage() {}
func (x *MigrateCreateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[133]
+ mi := &file_vtctldata_proto_msgTypes[135]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8570,7 +8671,7 @@ func (x *MigrateCreateRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use MigrateCreateRequest.ProtoReflect.Descriptor instead.
func (*MigrateCreateRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{133}
+ return file_vtctldata_proto_rawDescGZIP(), []int{135}
}
func (x *MigrateCreateRequest) GetWorkflow() string {
@@ -8708,7 +8809,7 @@ type MigrateCompleteRequest struct {
func (x *MigrateCompleteRequest) Reset() {
*x = MigrateCompleteRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[134]
+ mi := &file_vtctldata_proto_msgTypes[136]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8721,7 +8822,7 @@ func (x *MigrateCompleteRequest) String() string {
func (*MigrateCompleteRequest) ProtoMessage() {}
func (x *MigrateCompleteRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[134]
+ mi := &file_vtctldata_proto_msgTypes[136]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8734,7 +8835,7 @@ func (x *MigrateCompleteRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use MigrateCompleteRequest.ProtoReflect.Descriptor instead.
func (*MigrateCompleteRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{134}
+ return file_vtctldata_proto_rawDescGZIP(), []int{136}
}
func (x *MigrateCompleteRequest) GetWorkflow() string {
@@ -8791,7 +8892,7 @@ type MigrateCompleteResponse struct {
func (x *MigrateCompleteResponse) Reset() {
*x = MigrateCompleteResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[135]
+ mi := &file_vtctldata_proto_msgTypes[137]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8804,7 +8905,7 @@ func (x *MigrateCompleteResponse) String() string {
func (*MigrateCompleteResponse) ProtoMessage() {}
func (x *MigrateCompleteResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[135]
+ mi := &file_vtctldata_proto_msgTypes[137]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8817,7 +8918,7 @@ func (x *MigrateCompleteResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use MigrateCompleteResponse.ProtoReflect.Descriptor instead.
func (*MigrateCompleteResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{135}
+ return file_vtctldata_proto_rawDescGZIP(), []int{137}
}
func (x *MigrateCompleteResponse) GetSummary() string {
@@ -8848,7 +8949,7 @@ type MountRegisterRequest struct {
func (x *MountRegisterRequest) Reset() {
*x = MountRegisterRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[136]
+ mi := &file_vtctldata_proto_msgTypes[138]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8861,7 +8962,7 @@ func (x *MountRegisterRequest) String() string {
func (*MountRegisterRequest) ProtoMessage() {}
func (x *MountRegisterRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[136]
+ mi := &file_vtctldata_proto_msgTypes[138]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8874,7 +8975,7 @@ func (x *MountRegisterRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use MountRegisterRequest.ProtoReflect.Descriptor instead.
func (*MountRegisterRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{136}
+ return file_vtctldata_proto_rawDescGZIP(), []int{138}
}
func (x *MountRegisterRequest) GetTopoType() string {
@@ -8914,7 +9015,7 @@ type MountRegisterResponse struct {
func (x *MountRegisterResponse) Reset() {
*x = MountRegisterResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[137]
+ mi := &file_vtctldata_proto_msgTypes[139]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8927,7 +9028,7 @@ func (x *MountRegisterResponse) String() string {
func (*MountRegisterResponse) ProtoMessage() {}
func (x *MountRegisterResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[137]
+ mi := &file_vtctldata_proto_msgTypes[139]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8940,7 +9041,7 @@ func (x *MountRegisterResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use MountRegisterResponse.ProtoReflect.Descriptor instead.
func (*MountRegisterResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{137}
+ return file_vtctldata_proto_rawDescGZIP(), []int{139}
}
type MountUnregisterRequest struct {
@@ -8954,7 +9055,7 @@ type MountUnregisterRequest struct {
func (x *MountUnregisterRequest) Reset() {
*x = MountUnregisterRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[138]
+ mi := &file_vtctldata_proto_msgTypes[140]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -8967,7 +9068,7 @@ func (x *MountUnregisterRequest) String() string {
func (*MountUnregisterRequest) ProtoMessage() {}
func (x *MountUnregisterRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[138]
+ mi := &file_vtctldata_proto_msgTypes[140]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -8980,7 +9081,7 @@ func (x *MountUnregisterRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use MountUnregisterRequest.ProtoReflect.Descriptor instead.
func (*MountUnregisterRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{138}
+ return file_vtctldata_proto_rawDescGZIP(), []int{140}
}
func (x *MountUnregisterRequest) GetName() string {
@@ -8999,7 +9100,7 @@ type MountUnregisterResponse struct {
func (x *MountUnregisterResponse) Reset() {
*x = MountUnregisterResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[139]
+ mi := &file_vtctldata_proto_msgTypes[141]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9012,7 +9113,7 @@ func (x *MountUnregisterResponse) String() string {
func (*MountUnregisterResponse) ProtoMessage() {}
func (x *MountUnregisterResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[139]
+ mi := &file_vtctldata_proto_msgTypes[141]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9025,7 +9126,7 @@ func (x *MountUnregisterResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use MountUnregisterResponse.ProtoReflect.Descriptor instead.
func (*MountUnregisterResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{139}
+ return file_vtctldata_proto_rawDescGZIP(), []int{141}
}
type MountShowRequest struct {
@@ -9039,7 +9140,7 @@ type MountShowRequest struct {
func (x *MountShowRequest) Reset() {
*x = MountShowRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[140]
+ mi := &file_vtctldata_proto_msgTypes[142]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9052,7 +9153,7 @@ func (x *MountShowRequest) String() string {
func (*MountShowRequest) ProtoMessage() {}
func (x *MountShowRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[140]
+ mi := &file_vtctldata_proto_msgTypes[142]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9065,7 +9166,7 @@ func (x *MountShowRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use MountShowRequest.ProtoReflect.Descriptor instead.
func (*MountShowRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{140}
+ return file_vtctldata_proto_rawDescGZIP(), []int{142}
}
func (x *MountShowRequest) GetName() string {
@@ -9089,7 +9190,7 @@ type MountShowResponse struct {
func (x *MountShowResponse) Reset() {
*x = MountShowResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[141]
+ mi := &file_vtctldata_proto_msgTypes[143]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9102,7 +9203,7 @@ func (x *MountShowResponse) String() string {
func (*MountShowResponse) ProtoMessage() {}
func (x *MountShowResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[141]
+ mi := &file_vtctldata_proto_msgTypes[143]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9115,7 +9216,7 @@ func (x *MountShowResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use MountShowResponse.ProtoReflect.Descriptor instead.
func (*MountShowResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{141}
+ return file_vtctldata_proto_rawDescGZIP(), []int{143}
}
func (x *MountShowResponse) GetTopoType() string {
@@ -9155,7 +9256,7 @@ type MountListRequest struct {
func (x *MountListRequest) Reset() {
*x = MountListRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[142]
+ mi := &file_vtctldata_proto_msgTypes[144]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9168,7 +9269,7 @@ func (x *MountListRequest) String() string {
func (*MountListRequest) ProtoMessage() {}
func (x *MountListRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[142]
+ mi := &file_vtctldata_proto_msgTypes[144]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9181,7 +9282,7 @@ func (x *MountListRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use MountListRequest.ProtoReflect.Descriptor instead.
func (*MountListRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{142}
+ return file_vtctldata_proto_rawDescGZIP(), []int{144}
}
type MountListResponse struct {
@@ -9195,7 +9296,7 @@ type MountListResponse struct {
func (x *MountListResponse) Reset() {
*x = MountListResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[143]
+ mi := &file_vtctldata_proto_msgTypes[145]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9208,7 +9309,7 @@ func (x *MountListResponse) String() string {
func (*MountListResponse) ProtoMessage() {}
func (x *MountListResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[143]
+ mi := &file_vtctldata_proto_msgTypes[145]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9221,7 +9322,7 @@ func (x *MountListResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use MountListResponse.ProtoReflect.Descriptor instead.
func (*MountListResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{143}
+ return file_vtctldata_proto_rawDescGZIP(), []int{145}
}
func (x *MountListResponse) GetNames() []string {
@@ -9272,7 +9373,7 @@ type MoveTablesCreateRequest struct {
func (x *MoveTablesCreateRequest) Reset() {
*x = MoveTablesCreateRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[144]
+ mi := &file_vtctldata_proto_msgTypes[146]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9285,7 +9386,7 @@ func (x *MoveTablesCreateRequest) String() string {
func (*MoveTablesCreateRequest) ProtoMessage() {}
func (x *MoveTablesCreateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[144]
+ mi := &file_vtctldata_proto_msgTypes[146]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9298,7 +9399,7 @@ func (x *MoveTablesCreateRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use MoveTablesCreateRequest.ProtoReflect.Descriptor instead.
func (*MoveTablesCreateRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{144}
+ return file_vtctldata_proto_rawDescGZIP(), []int{146}
}
func (x *MoveTablesCreateRequest) GetWorkflow() string {
@@ -9453,7 +9554,7 @@ type MoveTablesCreateResponse struct {
func (x *MoveTablesCreateResponse) Reset() {
*x = MoveTablesCreateResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[145]
+ mi := &file_vtctldata_proto_msgTypes[147]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9466,7 +9567,7 @@ func (x *MoveTablesCreateResponse) String() string {
func (*MoveTablesCreateResponse) ProtoMessage() {}
func (x *MoveTablesCreateResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[145]
+ mi := &file_vtctldata_proto_msgTypes[147]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9479,7 +9580,7 @@ func (x *MoveTablesCreateResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use MoveTablesCreateResponse.ProtoReflect.Descriptor instead.
func (*MoveTablesCreateResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{145}
+ return file_vtctldata_proto_rawDescGZIP(), []int{147}
}
func (x *MoveTablesCreateResponse) GetSummary() string {
@@ -9513,7 +9614,7 @@ type MoveTablesCompleteRequest struct {
func (x *MoveTablesCompleteRequest) Reset() {
*x = MoveTablesCompleteRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[146]
+ mi := &file_vtctldata_proto_msgTypes[148]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9526,7 +9627,7 @@ func (x *MoveTablesCompleteRequest) String() string {
func (*MoveTablesCompleteRequest) ProtoMessage() {}
func (x *MoveTablesCompleteRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[146]
+ mi := &file_vtctldata_proto_msgTypes[148]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9539,7 +9640,7 @@ func (x *MoveTablesCompleteRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use MoveTablesCompleteRequest.ProtoReflect.Descriptor instead.
func (*MoveTablesCompleteRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{146}
+ return file_vtctldata_proto_rawDescGZIP(), []int{148}
}
func (x *MoveTablesCompleteRequest) GetWorkflow() string {
@@ -9603,7 +9704,7 @@ type MoveTablesCompleteResponse struct {
func (x *MoveTablesCompleteResponse) Reset() {
*x = MoveTablesCompleteResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[147]
+ mi := &file_vtctldata_proto_msgTypes[149]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9616,7 +9717,7 @@ func (x *MoveTablesCompleteResponse) String() string {
func (*MoveTablesCompleteResponse) ProtoMessage() {}
func (x *MoveTablesCompleteResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[147]
+ mi := &file_vtctldata_proto_msgTypes[149]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9629,7 +9730,7 @@ func (x *MoveTablesCompleteResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use MoveTablesCompleteResponse.ProtoReflect.Descriptor instead.
func (*MoveTablesCompleteResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{147}
+ return file_vtctldata_proto_rawDescGZIP(), []int{149}
}
func (x *MoveTablesCompleteResponse) GetSummary() string {
@@ -9657,7 +9758,7 @@ type PingTabletRequest struct {
func (x *PingTabletRequest) Reset() {
*x = PingTabletRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[148]
+ mi := &file_vtctldata_proto_msgTypes[150]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9670,7 +9771,7 @@ func (x *PingTabletRequest) String() string {
func (*PingTabletRequest) ProtoMessage() {}
func (x *PingTabletRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[148]
+ mi := &file_vtctldata_proto_msgTypes[150]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9683,7 +9784,7 @@ func (x *PingTabletRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use PingTabletRequest.ProtoReflect.Descriptor instead.
func (*PingTabletRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{148}
+ return file_vtctldata_proto_rawDescGZIP(), []int{150}
}
func (x *PingTabletRequest) GetTabletAlias() *topodata.TabletAlias {
@@ -9702,7 +9803,7 @@ type PingTabletResponse struct {
func (x *PingTabletResponse) Reset() {
*x = PingTabletResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[149]
+ mi := &file_vtctldata_proto_msgTypes[151]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9715,7 +9816,7 @@ func (x *PingTabletResponse) String() string {
func (*PingTabletResponse) ProtoMessage() {}
func (x *PingTabletResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[149]
+ mi := &file_vtctldata_proto_msgTypes[151]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9728,7 +9829,7 @@ func (x *PingTabletResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use PingTabletResponse.ProtoReflect.Descriptor instead.
func (*PingTabletResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{149}
+ return file_vtctldata_proto_rawDescGZIP(), []int{151}
}
type PlannedReparentShardRequest struct {
@@ -9769,7 +9870,7 @@ type PlannedReparentShardRequest struct {
func (x *PlannedReparentShardRequest) Reset() {
*x = PlannedReparentShardRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[150]
+ mi := &file_vtctldata_proto_msgTypes[152]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9782,7 +9883,7 @@ func (x *PlannedReparentShardRequest) String() string {
func (*PlannedReparentShardRequest) ProtoMessage() {}
func (x *PlannedReparentShardRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[150]
+ mi := &file_vtctldata_proto_msgTypes[152]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9795,7 +9896,7 @@ func (x *PlannedReparentShardRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use PlannedReparentShardRequest.ProtoReflect.Descriptor instead.
func (*PlannedReparentShardRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{150}
+ return file_vtctldata_proto_rawDescGZIP(), []int{152}
}
func (x *PlannedReparentShardRequest) GetKeyspace() string {
@@ -9867,7 +9968,7 @@ type PlannedReparentShardResponse struct {
func (x *PlannedReparentShardResponse) Reset() {
*x = PlannedReparentShardResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[151]
+ mi := &file_vtctldata_proto_msgTypes[153]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9880,7 +9981,7 @@ func (x *PlannedReparentShardResponse) String() string {
func (*PlannedReparentShardResponse) ProtoMessage() {}
func (x *PlannedReparentShardResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[151]
+ mi := &file_vtctldata_proto_msgTypes[153]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9893,7 +9994,7 @@ func (x *PlannedReparentShardResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use PlannedReparentShardResponse.ProtoReflect.Descriptor instead.
func (*PlannedReparentShardResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{151}
+ return file_vtctldata_proto_rawDescGZIP(), []int{153}
}
func (x *PlannedReparentShardResponse) GetKeyspace() string {
@@ -9939,7 +10040,7 @@ type RebuildKeyspaceGraphRequest struct {
func (x *RebuildKeyspaceGraphRequest) Reset() {
*x = RebuildKeyspaceGraphRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[152]
+ mi := &file_vtctldata_proto_msgTypes[154]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -9952,7 +10053,7 @@ func (x *RebuildKeyspaceGraphRequest) String() string {
func (*RebuildKeyspaceGraphRequest) ProtoMessage() {}
func (x *RebuildKeyspaceGraphRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[152]
+ mi := &file_vtctldata_proto_msgTypes[154]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -9965,7 +10066,7 @@ func (x *RebuildKeyspaceGraphRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use RebuildKeyspaceGraphRequest.ProtoReflect.Descriptor instead.
func (*RebuildKeyspaceGraphRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{152}
+ return file_vtctldata_proto_rawDescGZIP(), []int{154}
}
func (x *RebuildKeyspaceGraphRequest) GetKeyspace() string {
@@ -9998,7 +10099,7 @@ type RebuildKeyspaceGraphResponse struct {
func (x *RebuildKeyspaceGraphResponse) Reset() {
*x = RebuildKeyspaceGraphResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[153]
+ mi := &file_vtctldata_proto_msgTypes[155]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10011,7 +10112,7 @@ func (x *RebuildKeyspaceGraphResponse) String() string {
func (*RebuildKeyspaceGraphResponse) ProtoMessage() {}
func (x *RebuildKeyspaceGraphResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[153]
+ mi := &file_vtctldata_proto_msgTypes[155]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10024,7 +10125,7 @@ func (x *RebuildKeyspaceGraphResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use RebuildKeyspaceGraphResponse.ProtoReflect.Descriptor instead.
func (*RebuildKeyspaceGraphResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{153}
+ return file_vtctldata_proto_rawDescGZIP(), []int{155}
}
type RebuildVSchemaGraphRequest struct {
@@ -10040,7 +10141,7 @@ type RebuildVSchemaGraphRequest struct {
func (x *RebuildVSchemaGraphRequest) Reset() {
*x = RebuildVSchemaGraphRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[154]
+ mi := &file_vtctldata_proto_msgTypes[156]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10053,7 +10154,7 @@ func (x *RebuildVSchemaGraphRequest) String() string {
func (*RebuildVSchemaGraphRequest) ProtoMessage() {}
func (x *RebuildVSchemaGraphRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[154]
+ mi := &file_vtctldata_proto_msgTypes[156]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10066,7 +10167,7 @@ func (x *RebuildVSchemaGraphRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use RebuildVSchemaGraphRequest.ProtoReflect.Descriptor instead.
func (*RebuildVSchemaGraphRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{154}
+ return file_vtctldata_proto_rawDescGZIP(), []int{156}
}
func (x *RebuildVSchemaGraphRequest) GetCells() []string {
@@ -10085,7 +10186,7 @@ type RebuildVSchemaGraphResponse struct {
func (x *RebuildVSchemaGraphResponse) Reset() {
*x = RebuildVSchemaGraphResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[155]
+ mi := &file_vtctldata_proto_msgTypes[157]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10098,7 +10199,7 @@ func (x *RebuildVSchemaGraphResponse) String() string {
func (*RebuildVSchemaGraphResponse) ProtoMessage() {}
func (x *RebuildVSchemaGraphResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[155]
+ mi := &file_vtctldata_proto_msgTypes[157]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10111,7 +10212,7 @@ func (x *RebuildVSchemaGraphResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use RebuildVSchemaGraphResponse.ProtoReflect.Descriptor instead.
func (*RebuildVSchemaGraphResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{155}
+ return file_vtctldata_proto_rawDescGZIP(), []int{157}
}
type RefreshStateRequest struct {
@@ -10125,7 +10226,7 @@ type RefreshStateRequest struct {
func (x *RefreshStateRequest) Reset() {
*x = RefreshStateRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[156]
+ mi := &file_vtctldata_proto_msgTypes[158]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10138,7 +10239,7 @@ func (x *RefreshStateRequest) String() string {
func (*RefreshStateRequest) ProtoMessage() {}
func (x *RefreshStateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[156]
+ mi := &file_vtctldata_proto_msgTypes[158]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10151,7 +10252,7 @@ func (x *RefreshStateRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use RefreshStateRequest.ProtoReflect.Descriptor instead.
func (*RefreshStateRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{156}
+ return file_vtctldata_proto_rawDescGZIP(), []int{158}
}
func (x *RefreshStateRequest) GetTabletAlias() *topodata.TabletAlias {
@@ -10170,7 +10271,7 @@ type RefreshStateResponse struct {
func (x *RefreshStateResponse) Reset() {
*x = RefreshStateResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[157]
+ mi := &file_vtctldata_proto_msgTypes[159]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10183,7 +10284,7 @@ func (x *RefreshStateResponse) String() string {
func (*RefreshStateResponse) ProtoMessage() {}
func (x *RefreshStateResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[157]
+ mi := &file_vtctldata_proto_msgTypes[159]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10196,7 +10297,7 @@ func (x *RefreshStateResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use RefreshStateResponse.ProtoReflect.Descriptor instead.
func (*RefreshStateResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{157}
+ return file_vtctldata_proto_rawDescGZIP(), []int{159}
}
type RefreshStateByShardRequest struct {
@@ -10212,7 +10313,7 @@ type RefreshStateByShardRequest struct {
func (x *RefreshStateByShardRequest) Reset() {
*x = RefreshStateByShardRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[158]
+ mi := &file_vtctldata_proto_msgTypes[160]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10225,7 +10326,7 @@ func (x *RefreshStateByShardRequest) String() string {
func (*RefreshStateByShardRequest) ProtoMessage() {}
func (x *RefreshStateByShardRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[158]
+ mi := &file_vtctldata_proto_msgTypes[160]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10238,7 +10339,7 @@ func (x *RefreshStateByShardRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use RefreshStateByShardRequest.ProtoReflect.Descriptor instead.
func (*RefreshStateByShardRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{158}
+ return file_vtctldata_proto_rawDescGZIP(), []int{160}
}
func (x *RefreshStateByShardRequest) GetKeyspace() string {
@@ -10275,7 +10376,7 @@ type RefreshStateByShardResponse struct {
func (x *RefreshStateByShardResponse) Reset() {
*x = RefreshStateByShardResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[159]
+ mi := &file_vtctldata_proto_msgTypes[161]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10288,7 +10389,7 @@ func (x *RefreshStateByShardResponse) String() string {
func (*RefreshStateByShardResponse) ProtoMessage() {}
func (x *RefreshStateByShardResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[159]
+ mi := &file_vtctldata_proto_msgTypes[161]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10301,7 +10402,7 @@ func (x *RefreshStateByShardResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use RefreshStateByShardResponse.ProtoReflect.Descriptor instead.
func (*RefreshStateByShardResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{159}
+ return file_vtctldata_proto_rawDescGZIP(), []int{161}
}
func (x *RefreshStateByShardResponse) GetIsPartialRefresh() bool {
@@ -10329,7 +10430,7 @@ type ReloadSchemaRequest struct {
func (x *ReloadSchemaRequest) Reset() {
*x = ReloadSchemaRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[160]
+ mi := &file_vtctldata_proto_msgTypes[162]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10342,7 +10443,7 @@ func (x *ReloadSchemaRequest) String() string {
func (*ReloadSchemaRequest) ProtoMessage() {}
func (x *ReloadSchemaRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[160]
+ mi := &file_vtctldata_proto_msgTypes[162]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10355,7 +10456,7 @@ func (x *ReloadSchemaRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReloadSchemaRequest.ProtoReflect.Descriptor instead.
func (*ReloadSchemaRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{160}
+ return file_vtctldata_proto_rawDescGZIP(), []int{162}
}
func (x *ReloadSchemaRequest) GetTabletAlias() *topodata.TabletAlias {
@@ -10374,7 +10475,7 @@ type ReloadSchemaResponse struct {
func (x *ReloadSchemaResponse) Reset() {
*x = ReloadSchemaResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[161]
+ mi := &file_vtctldata_proto_msgTypes[163]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10387,7 +10488,7 @@ func (x *ReloadSchemaResponse) String() string {
func (*ReloadSchemaResponse) ProtoMessage() {}
func (x *ReloadSchemaResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[161]
+ mi := &file_vtctldata_proto_msgTypes[163]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10400,7 +10501,7 @@ func (x *ReloadSchemaResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReloadSchemaResponse.ProtoReflect.Descriptor instead.
func (*ReloadSchemaResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{161}
+ return file_vtctldata_proto_rawDescGZIP(), []int{163}
}
type ReloadSchemaKeyspaceRequest struct {
@@ -10420,7 +10521,7 @@ type ReloadSchemaKeyspaceRequest struct {
func (x *ReloadSchemaKeyspaceRequest) Reset() {
*x = ReloadSchemaKeyspaceRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[162]
+ mi := &file_vtctldata_proto_msgTypes[164]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10433,7 +10534,7 @@ func (x *ReloadSchemaKeyspaceRequest) String() string {
func (*ReloadSchemaKeyspaceRequest) ProtoMessage() {}
func (x *ReloadSchemaKeyspaceRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[162]
+ mi := &file_vtctldata_proto_msgTypes[164]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10446,7 +10547,7 @@ func (x *ReloadSchemaKeyspaceRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReloadSchemaKeyspaceRequest.ProtoReflect.Descriptor instead.
func (*ReloadSchemaKeyspaceRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{162}
+ return file_vtctldata_proto_rawDescGZIP(), []int{164}
}
func (x *ReloadSchemaKeyspaceRequest) GetKeyspace() string {
@@ -10488,7 +10589,7 @@ type ReloadSchemaKeyspaceResponse struct {
func (x *ReloadSchemaKeyspaceResponse) Reset() {
*x = ReloadSchemaKeyspaceResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[163]
+ mi := &file_vtctldata_proto_msgTypes[165]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10501,7 +10602,7 @@ func (x *ReloadSchemaKeyspaceResponse) String() string {
func (*ReloadSchemaKeyspaceResponse) ProtoMessage() {}
func (x *ReloadSchemaKeyspaceResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[163]
+ mi := &file_vtctldata_proto_msgTypes[165]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10514,7 +10615,7 @@ func (x *ReloadSchemaKeyspaceResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReloadSchemaKeyspaceResponse.ProtoReflect.Descriptor instead.
func (*ReloadSchemaKeyspaceResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{163}
+ return file_vtctldata_proto_rawDescGZIP(), []int{165}
}
func (x *ReloadSchemaKeyspaceResponse) GetEvents() []*logutil.Event {
@@ -10540,7 +10641,7 @@ type ReloadSchemaShardRequest struct {
func (x *ReloadSchemaShardRequest) Reset() {
*x = ReloadSchemaShardRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[164]
+ mi := &file_vtctldata_proto_msgTypes[166]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10553,7 +10654,7 @@ func (x *ReloadSchemaShardRequest) String() string {
func (*ReloadSchemaShardRequest) ProtoMessage() {}
func (x *ReloadSchemaShardRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[164]
+ mi := &file_vtctldata_proto_msgTypes[166]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10566,7 +10667,7 @@ func (x *ReloadSchemaShardRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReloadSchemaShardRequest.ProtoReflect.Descriptor instead.
func (*ReloadSchemaShardRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{164}
+ return file_vtctldata_proto_rawDescGZIP(), []int{166}
}
func (x *ReloadSchemaShardRequest) GetKeyspace() string {
@@ -10615,7 +10716,7 @@ type ReloadSchemaShardResponse struct {
func (x *ReloadSchemaShardResponse) Reset() {
*x = ReloadSchemaShardResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[165]
+ mi := &file_vtctldata_proto_msgTypes[167]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10628,7 +10729,7 @@ func (x *ReloadSchemaShardResponse) String() string {
func (*ReloadSchemaShardResponse) ProtoMessage() {}
func (x *ReloadSchemaShardResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[165]
+ mi := &file_vtctldata_proto_msgTypes[167]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10641,7 +10742,7 @@ func (x *ReloadSchemaShardResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReloadSchemaShardResponse.ProtoReflect.Descriptor instead.
func (*ReloadSchemaShardResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{165}
+ return file_vtctldata_proto_rawDescGZIP(), []int{167}
}
func (x *ReloadSchemaShardResponse) GetEvents() []*logutil.Event {
@@ -10664,7 +10765,7 @@ type RemoveBackupRequest struct {
func (x *RemoveBackupRequest) Reset() {
*x = RemoveBackupRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[166]
+ mi := &file_vtctldata_proto_msgTypes[168]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10677,7 +10778,7 @@ func (x *RemoveBackupRequest) String() string {
func (*RemoveBackupRequest) ProtoMessage() {}
func (x *RemoveBackupRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[166]
+ mi := &file_vtctldata_proto_msgTypes[168]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10690,7 +10791,7 @@ func (x *RemoveBackupRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use RemoveBackupRequest.ProtoReflect.Descriptor instead.
func (*RemoveBackupRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{166}
+ return file_vtctldata_proto_rawDescGZIP(), []int{168}
}
func (x *RemoveBackupRequest) GetKeyspace() string {
@@ -10723,7 +10824,7 @@ type RemoveBackupResponse struct {
func (x *RemoveBackupResponse) Reset() {
*x = RemoveBackupResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[167]
+ mi := &file_vtctldata_proto_msgTypes[169]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10736,7 +10837,7 @@ func (x *RemoveBackupResponse) String() string {
func (*RemoveBackupResponse) ProtoMessage() {}
func (x *RemoveBackupResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[167]
+ mi := &file_vtctldata_proto_msgTypes[169]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10749,7 +10850,7 @@ func (x *RemoveBackupResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use RemoveBackupResponse.ProtoReflect.Descriptor instead.
func (*RemoveBackupResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{167}
+ return file_vtctldata_proto_rawDescGZIP(), []int{169}
}
type RemoveKeyspaceCellRequest struct {
@@ -10771,7 +10872,7 @@ type RemoveKeyspaceCellRequest struct {
func (x *RemoveKeyspaceCellRequest) Reset() {
*x = RemoveKeyspaceCellRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[168]
+ mi := &file_vtctldata_proto_msgTypes[170]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10784,7 +10885,7 @@ func (x *RemoveKeyspaceCellRequest) String() string {
func (*RemoveKeyspaceCellRequest) ProtoMessage() {}
func (x *RemoveKeyspaceCellRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[168]
+ mi := &file_vtctldata_proto_msgTypes[170]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10797,7 +10898,7 @@ func (x *RemoveKeyspaceCellRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use RemoveKeyspaceCellRequest.ProtoReflect.Descriptor instead.
func (*RemoveKeyspaceCellRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{168}
+ return file_vtctldata_proto_rawDescGZIP(), []int{170}
}
func (x *RemoveKeyspaceCellRequest) GetKeyspace() string {
@@ -10837,7 +10938,7 @@ type RemoveKeyspaceCellResponse struct {
func (x *RemoveKeyspaceCellResponse) Reset() {
*x = RemoveKeyspaceCellResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[169]
+ mi := &file_vtctldata_proto_msgTypes[171]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10850,7 +10951,7 @@ func (x *RemoveKeyspaceCellResponse) String() string {
func (*RemoveKeyspaceCellResponse) ProtoMessage() {}
func (x *RemoveKeyspaceCellResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[169]
+ mi := &file_vtctldata_proto_msgTypes[171]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10863,7 +10964,7 @@ func (x *RemoveKeyspaceCellResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use RemoveKeyspaceCellResponse.ProtoReflect.Descriptor instead.
func (*RemoveKeyspaceCellResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{169}
+ return file_vtctldata_proto_rawDescGZIP(), []int{171}
}
type RemoveShardCellRequest struct {
@@ -10886,7 +10987,7 @@ type RemoveShardCellRequest struct {
func (x *RemoveShardCellRequest) Reset() {
*x = RemoveShardCellRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[170]
+ mi := &file_vtctldata_proto_msgTypes[172]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10899,7 +11000,7 @@ func (x *RemoveShardCellRequest) String() string {
func (*RemoveShardCellRequest) ProtoMessage() {}
func (x *RemoveShardCellRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[170]
+ mi := &file_vtctldata_proto_msgTypes[172]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10912,7 +11013,7 @@ func (x *RemoveShardCellRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use RemoveShardCellRequest.ProtoReflect.Descriptor instead.
func (*RemoveShardCellRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{170}
+ return file_vtctldata_proto_rawDescGZIP(), []int{172}
}
func (x *RemoveShardCellRequest) GetKeyspace() string {
@@ -10959,7 +11060,7 @@ type RemoveShardCellResponse struct {
func (x *RemoveShardCellResponse) Reset() {
*x = RemoveShardCellResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[171]
+ mi := &file_vtctldata_proto_msgTypes[173]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -10972,7 +11073,7 @@ func (x *RemoveShardCellResponse) String() string {
func (*RemoveShardCellResponse) ProtoMessage() {}
func (x *RemoveShardCellResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[171]
+ mi := &file_vtctldata_proto_msgTypes[173]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -10985,7 +11086,7 @@ func (x *RemoveShardCellResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use RemoveShardCellResponse.ProtoReflect.Descriptor instead.
func (*RemoveShardCellResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{171}
+ return file_vtctldata_proto_rawDescGZIP(), []int{173}
}
type ReparentTabletRequest struct {
@@ -11001,7 +11102,7 @@ type ReparentTabletRequest struct {
func (x *ReparentTabletRequest) Reset() {
*x = ReparentTabletRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[172]
+ mi := &file_vtctldata_proto_msgTypes[174]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11014,7 +11115,7 @@ func (x *ReparentTabletRequest) String() string {
func (*ReparentTabletRequest) ProtoMessage() {}
func (x *ReparentTabletRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[172]
+ mi := &file_vtctldata_proto_msgTypes[174]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11027,7 +11128,7 @@ func (x *ReparentTabletRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReparentTabletRequest.ProtoReflect.Descriptor instead.
func (*ReparentTabletRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{172}
+ return file_vtctldata_proto_rawDescGZIP(), []int{174}
}
func (x *ReparentTabletRequest) GetTablet() *topodata.TabletAlias {
@@ -11053,7 +11154,7 @@ type ReparentTabletResponse struct {
func (x *ReparentTabletResponse) Reset() {
*x = ReparentTabletResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[173]
+ mi := &file_vtctldata_proto_msgTypes[175]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11066,7 +11167,7 @@ func (x *ReparentTabletResponse) String() string {
func (*ReparentTabletResponse) ProtoMessage() {}
func (x *ReparentTabletResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[173]
+ mi := &file_vtctldata_proto_msgTypes[175]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11079,7 +11180,7 @@ func (x *ReparentTabletResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReparentTabletResponse.ProtoReflect.Descriptor instead.
func (*ReparentTabletResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{173}
+ return file_vtctldata_proto_rawDescGZIP(), []int{175}
}
func (x *ReparentTabletResponse) GetKeyspace() string {
@@ -11125,13 +11226,14 @@ type ReshardCreateRequest struct {
// DeferSecondaryKeys specifies if secondary keys should be created in one shot after table copy finishes.
DeferSecondaryKeys bool `protobuf:"varint,11,opt,name=defer_secondary_keys,json=deferSecondaryKeys,proto3" json:"defer_secondary_keys,omitempty"`
// Start the workflow after creating it.
- AutoStart bool `protobuf:"varint,12,opt,name=auto_start,json=autoStart,proto3" json:"auto_start,omitempty"`
+ AutoStart bool `protobuf:"varint,12,opt,name=auto_start,json=autoStart,proto3" json:"auto_start,omitempty"`
+ WorkflowOptions *WorkflowOptions `protobuf:"bytes,13,opt,name=workflow_options,json=workflowOptions,proto3" json:"workflow_options,omitempty"`
}
func (x *ReshardCreateRequest) Reset() {
*x = ReshardCreateRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[174]
+ mi := &file_vtctldata_proto_msgTypes[176]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11144,7 +11246,7 @@ func (x *ReshardCreateRequest) String() string {
func (*ReshardCreateRequest) ProtoMessage() {}
func (x *ReshardCreateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[174]
+ mi := &file_vtctldata_proto_msgTypes[176]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11157,7 +11259,7 @@ func (x *ReshardCreateRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReshardCreateRequest.ProtoReflect.Descriptor instead.
func (*ReshardCreateRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{174}
+ return file_vtctldata_proto_rawDescGZIP(), []int{176}
}
func (x *ReshardCreateRequest) GetWorkflow() string {
@@ -11244,6 +11346,13 @@ func (x *ReshardCreateRequest) GetAutoStart() bool {
return false
}
+func (x *ReshardCreateRequest) GetWorkflowOptions() *WorkflowOptions {
+ if x != nil {
+ return x.WorkflowOptions
+ }
+ return nil
+}
+
type RestoreFromBackupRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -11267,7 +11376,7 @@ type RestoreFromBackupRequest struct {
func (x *RestoreFromBackupRequest) Reset() {
*x = RestoreFromBackupRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[175]
+ mi := &file_vtctldata_proto_msgTypes[177]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11280,7 +11389,7 @@ func (x *RestoreFromBackupRequest) String() string {
func (*RestoreFromBackupRequest) ProtoMessage() {}
func (x *RestoreFromBackupRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[175]
+ mi := &file_vtctldata_proto_msgTypes[177]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11293,7 +11402,7 @@ func (x *RestoreFromBackupRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use RestoreFromBackupRequest.ProtoReflect.Descriptor instead.
func (*RestoreFromBackupRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{175}
+ return file_vtctldata_proto_rawDescGZIP(), []int{177}
}
func (x *RestoreFromBackupRequest) GetTabletAlias() *topodata.TabletAlias {
@@ -11346,7 +11455,7 @@ type RestoreFromBackupResponse struct {
func (x *RestoreFromBackupResponse) Reset() {
*x = RestoreFromBackupResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[176]
+ mi := &file_vtctldata_proto_msgTypes[178]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11359,7 +11468,7 @@ func (x *RestoreFromBackupResponse) String() string {
func (*RestoreFromBackupResponse) ProtoMessage() {}
func (x *RestoreFromBackupResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[176]
+ mi := &file_vtctldata_proto_msgTypes[178]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11372,7 +11481,7 @@ func (x *RestoreFromBackupResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use RestoreFromBackupResponse.ProtoReflect.Descriptor instead.
func (*RestoreFromBackupResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{176}
+ return file_vtctldata_proto_rawDescGZIP(), []int{178}
}
func (x *RestoreFromBackupResponse) GetTabletAlias() *topodata.TabletAlias {
@@ -11415,7 +11524,7 @@ type RetrySchemaMigrationRequest struct {
func (x *RetrySchemaMigrationRequest) Reset() {
*x = RetrySchemaMigrationRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[177]
+ mi := &file_vtctldata_proto_msgTypes[179]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11428,7 +11537,7 @@ func (x *RetrySchemaMigrationRequest) String() string {
func (*RetrySchemaMigrationRequest) ProtoMessage() {}
func (x *RetrySchemaMigrationRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[177]
+ mi := &file_vtctldata_proto_msgTypes[179]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11441,7 +11550,7 @@ func (x *RetrySchemaMigrationRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use RetrySchemaMigrationRequest.ProtoReflect.Descriptor instead.
func (*RetrySchemaMigrationRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{177}
+ return file_vtctldata_proto_rawDescGZIP(), []int{179}
}
func (x *RetrySchemaMigrationRequest) GetKeyspace() string {
@@ -11469,7 +11578,7 @@ type RetrySchemaMigrationResponse struct {
func (x *RetrySchemaMigrationResponse) Reset() {
*x = RetrySchemaMigrationResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[178]
+ mi := &file_vtctldata_proto_msgTypes[180]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11482,7 +11591,7 @@ func (x *RetrySchemaMigrationResponse) String() string {
func (*RetrySchemaMigrationResponse) ProtoMessage() {}
func (x *RetrySchemaMigrationResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[178]
+ mi := &file_vtctldata_proto_msgTypes[180]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11495,7 +11604,7 @@ func (x *RetrySchemaMigrationResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use RetrySchemaMigrationResponse.ProtoReflect.Descriptor instead.
func (*RetrySchemaMigrationResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{178}
+ return file_vtctldata_proto_rawDescGZIP(), []int{180}
}
func (x *RetrySchemaMigrationResponse) GetRowsAffectedByShard() map[string]uint64 {
@@ -11516,7 +11625,7 @@ type RunHealthCheckRequest struct {
func (x *RunHealthCheckRequest) Reset() {
*x = RunHealthCheckRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[179]
+ mi := &file_vtctldata_proto_msgTypes[181]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11529,7 +11638,7 @@ func (x *RunHealthCheckRequest) String() string {
func (*RunHealthCheckRequest) ProtoMessage() {}
func (x *RunHealthCheckRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[179]
+ mi := &file_vtctldata_proto_msgTypes[181]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11542,7 +11651,7 @@ func (x *RunHealthCheckRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use RunHealthCheckRequest.ProtoReflect.Descriptor instead.
func (*RunHealthCheckRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{179}
+ return file_vtctldata_proto_rawDescGZIP(), []int{181}
}
func (x *RunHealthCheckRequest) GetTabletAlias() *topodata.TabletAlias {
@@ -11561,7 +11670,7 @@ type RunHealthCheckResponse struct {
func (x *RunHealthCheckResponse) Reset() {
*x = RunHealthCheckResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[180]
+ mi := &file_vtctldata_proto_msgTypes[182]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11574,7 +11683,7 @@ func (x *RunHealthCheckResponse) String() string {
func (*RunHealthCheckResponse) ProtoMessage() {}
func (x *RunHealthCheckResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[180]
+ mi := &file_vtctldata_proto_msgTypes[182]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11587,7 +11696,7 @@ func (x *RunHealthCheckResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use RunHealthCheckResponse.ProtoReflect.Descriptor instead.
func (*RunHealthCheckResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{180}
+ return file_vtctldata_proto_rawDescGZIP(), []int{182}
}
type SetKeyspaceDurabilityPolicyRequest struct {
@@ -11602,7 +11711,7 @@ type SetKeyspaceDurabilityPolicyRequest struct {
func (x *SetKeyspaceDurabilityPolicyRequest) Reset() {
*x = SetKeyspaceDurabilityPolicyRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[181]
+ mi := &file_vtctldata_proto_msgTypes[183]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11615,7 +11724,7 @@ func (x *SetKeyspaceDurabilityPolicyRequest) String() string {
func (*SetKeyspaceDurabilityPolicyRequest) ProtoMessage() {}
func (x *SetKeyspaceDurabilityPolicyRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[181]
+ mi := &file_vtctldata_proto_msgTypes[183]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11628,7 +11737,7 @@ func (x *SetKeyspaceDurabilityPolicyRequest) ProtoReflect() protoreflect.Message
// Deprecated: Use SetKeyspaceDurabilityPolicyRequest.ProtoReflect.Descriptor instead.
func (*SetKeyspaceDurabilityPolicyRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{181}
+ return file_vtctldata_proto_rawDescGZIP(), []int{183}
}
func (x *SetKeyspaceDurabilityPolicyRequest) GetKeyspace() string {
@@ -11657,7 +11766,7 @@ type SetKeyspaceDurabilityPolicyResponse struct {
func (x *SetKeyspaceDurabilityPolicyResponse) Reset() {
*x = SetKeyspaceDurabilityPolicyResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[182]
+ mi := &file_vtctldata_proto_msgTypes[184]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11670,7 +11779,7 @@ func (x *SetKeyspaceDurabilityPolicyResponse) String() string {
func (*SetKeyspaceDurabilityPolicyResponse) ProtoMessage() {}
func (x *SetKeyspaceDurabilityPolicyResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[182]
+ mi := &file_vtctldata_proto_msgTypes[184]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11683,7 +11792,7 @@ func (x *SetKeyspaceDurabilityPolicyResponse) ProtoReflect() protoreflect.Messag
// Deprecated: Use SetKeyspaceDurabilityPolicyResponse.ProtoReflect.Descriptor instead.
func (*SetKeyspaceDurabilityPolicyResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{182}
+ return file_vtctldata_proto_rawDescGZIP(), []int{184}
}
func (x *SetKeyspaceDurabilityPolicyResponse) GetKeyspace() *topodata.Keyspace {
@@ -11705,7 +11814,7 @@ type SetKeyspaceShardingInfoRequest struct {
func (x *SetKeyspaceShardingInfoRequest) Reset() {
*x = SetKeyspaceShardingInfoRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[183]
+ mi := &file_vtctldata_proto_msgTypes[185]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11718,7 +11827,7 @@ func (x *SetKeyspaceShardingInfoRequest) String() string {
func (*SetKeyspaceShardingInfoRequest) ProtoMessage() {}
func (x *SetKeyspaceShardingInfoRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[183]
+ mi := &file_vtctldata_proto_msgTypes[185]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11731,7 +11840,7 @@ func (x *SetKeyspaceShardingInfoRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use SetKeyspaceShardingInfoRequest.ProtoReflect.Descriptor instead.
func (*SetKeyspaceShardingInfoRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{183}
+ return file_vtctldata_proto_rawDescGZIP(), []int{185}
}
func (x *SetKeyspaceShardingInfoRequest) GetKeyspace() string {
@@ -11760,7 +11869,7 @@ type SetKeyspaceShardingInfoResponse struct {
func (x *SetKeyspaceShardingInfoResponse) Reset() {
*x = SetKeyspaceShardingInfoResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[184]
+ mi := &file_vtctldata_proto_msgTypes[186]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11773,7 +11882,7 @@ func (x *SetKeyspaceShardingInfoResponse) String() string {
func (*SetKeyspaceShardingInfoResponse) ProtoMessage() {}
func (x *SetKeyspaceShardingInfoResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[184]
+ mi := &file_vtctldata_proto_msgTypes[186]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11786,7 +11895,7 @@ func (x *SetKeyspaceShardingInfoResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use SetKeyspaceShardingInfoResponse.ProtoReflect.Descriptor instead.
func (*SetKeyspaceShardingInfoResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{184}
+ return file_vtctldata_proto_rawDescGZIP(), []int{186}
}
func (x *SetKeyspaceShardingInfoResponse) GetKeyspace() *topodata.Keyspace {
@@ -11809,7 +11918,7 @@ type SetShardIsPrimaryServingRequest struct {
func (x *SetShardIsPrimaryServingRequest) Reset() {
*x = SetShardIsPrimaryServingRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[185]
+ mi := &file_vtctldata_proto_msgTypes[187]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11822,7 +11931,7 @@ func (x *SetShardIsPrimaryServingRequest) String() string {
func (*SetShardIsPrimaryServingRequest) ProtoMessage() {}
func (x *SetShardIsPrimaryServingRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[185]
+ mi := &file_vtctldata_proto_msgTypes[187]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11835,7 +11944,7 @@ func (x *SetShardIsPrimaryServingRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use SetShardIsPrimaryServingRequest.ProtoReflect.Descriptor instead.
func (*SetShardIsPrimaryServingRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{185}
+ return file_vtctldata_proto_rawDescGZIP(), []int{187}
}
func (x *SetShardIsPrimaryServingRequest) GetKeyspace() string {
@@ -11871,7 +11980,7 @@ type SetShardIsPrimaryServingResponse struct {
func (x *SetShardIsPrimaryServingResponse) Reset() {
*x = SetShardIsPrimaryServingResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[186]
+ mi := &file_vtctldata_proto_msgTypes[188]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11884,7 +11993,7 @@ func (x *SetShardIsPrimaryServingResponse) String() string {
func (*SetShardIsPrimaryServingResponse) ProtoMessage() {}
func (x *SetShardIsPrimaryServingResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[186]
+ mi := &file_vtctldata_proto_msgTypes[188]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11897,7 +12006,7 @@ func (x *SetShardIsPrimaryServingResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use SetShardIsPrimaryServingResponse.ProtoReflect.Descriptor instead.
func (*SetShardIsPrimaryServingResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{186}
+ return file_vtctldata_proto_rawDescGZIP(), []int{188}
}
func (x *SetShardIsPrimaryServingResponse) GetShard() *topodata.Shard {
@@ -11938,7 +12047,7 @@ type SetShardTabletControlRequest struct {
func (x *SetShardTabletControlRequest) Reset() {
*x = SetShardTabletControlRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[187]
+ mi := &file_vtctldata_proto_msgTypes[189]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -11951,7 +12060,7 @@ func (x *SetShardTabletControlRequest) String() string {
func (*SetShardTabletControlRequest) ProtoMessage() {}
func (x *SetShardTabletControlRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[187]
+ mi := &file_vtctldata_proto_msgTypes[189]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -11964,7 +12073,7 @@ func (x *SetShardTabletControlRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use SetShardTabletControlRequest.ProtoReflect.Descriptor instead.
func (*SetShardTabletControlRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{187}
+ return file_vtctldata_proto_rawDescGZIP(), []int{189}
}
func (x *SetShardTabletControlRequest) GetKeyspace() string {
@@ -12028,7 +12137,7 @@ type SetShardTabletControlResponse struct {
func (x *SetShardTabletControlResponse) Reset() {
*x = SetShardTabletControlResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[188]
+ mi := &file_vtctldata_proto_msgTypes[190]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12041,7 +12150,7 @@ func (x *SetShardTabletControlResponse) String() string {
func (*SetShardTabletControlResponse) ProtoMessage() {}
func (x *SetShardTabletControlResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[188]
+ mi := &file_vtctldata_proto_msgTypes[190]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12054,7 +12163,7 @@ func (x *SetShardTabletControlResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use SetShardTabletControlResponse.ProtoReflect.Descriptor instead.
func (*SetShardTabletControlResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{188}
+ return file_vtctldata_proto_rawDescGZIP(), []int{190}
}
func (x *SetShardTabletControlResponse) GetShard() *topodata.Shard {
@@ -12076,7 +12185,7 @@ type SetWritableRequest struct {
func (x *SetWritableRequest) Reset() {
*x = SetWritableRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[189]
+ mi := &file_vtctldata_proto_msgTypes[191]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12089,7 +12198,7 @@ func (x *SetWritableRequest) String() string {
func (*SetWritableRequest) ProtoMessage() {}
func (x *SetWritableRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[189]
+ mi := &file_vtctldata_proto_msgTypes[191]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12102,7 +12211,7 @@ func (x *SetWritableRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use SetWritableRequest.ProtoReflect.Descriptor instead.
func (*SetWritableRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{189}
+ return file_vtctldata_proto_rawDescGZIP(), []int{191}
}
func (x *SetWritableRequest) GetTabletAlias() *topodata.TabletAlias {
@@ -12128,7 +12237,7 @@ type SetWritableResponse struct {
func (x *SetWritableResponse) Reset() {
*x = SetWritableResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[190]
+ mi := &file_vtctldata_proto_msgTypes[192]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12141,7 +12250,7 @@ func (x *SetWritableResponse) String() string {
func (*SetWritableResponse) ProtoMessage() {}
func (x *SetWritableResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[190]
+ mi := &file_vtctldata_proto_msgTypes[192]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12154,7 +12263,7 @@ func (x *SetWritableResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use SetWritableResponse.ProtoReflect.Descriptor instead.
func (*SetWritableResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{190}
+ return file_vtctldata_proto_rawDescGZIP(), []int{192}
}
type ShardReplicationAddRequest struct {
@@ -12170,7 +12279,7 @@ type ShardReplicationAddRequest struct {
func (x *ShardReplicationAddRequest) Reset() {
*x = ShardReplicationAddRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[191]
+ mi := &file_vtctldata_proto_msgTypes[193]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12183,7 +12292,7 @@ func (x *ShardReplicationAddRequest) String() string {
func (*ShardReplicationAddRequest) ProtoMessage() {}
func (x *ShardReplicationAddRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[191]
+ mi := &file_vtctldata_proto_msgTypes[193]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12196,7 +12305,7 @@ func (x *ShardReplicationAddRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ShardReplicationAddRequest.ProtoReflect.Descriptor instead.
func (*ShardReplicationAddRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{191}
+ return file_vtctldata_proto_rawDescGZIP(), []int{193}
}
func (x *ShardReplicationAddRequest) GetKeyspace() string {
@@ -12229,7 +12338,7 @@ type ShardReplicationAddResponse struct {
func (x *ShardReplicationAddResponse) Reset() {
*x = ShardReplicationAddResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[192]
+ mi := &file_vtctldata_proto_msgTypes[194]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12242,7 +12351,7 @@ func (x *ShardReplicationAddResponse) String() string {
func (*ShardReplicationAddResponse) ProtoMessage() {}
func (x *ShardReplicationAddResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[192]
+ mi := &file_vtctldata_proto_msgTypes[194]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12255,7 +12364,7 @@ func (x *ShardReplicationAddResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ShardReplicationAddResponse.ProtoReflect.Descriptor instead.
func (*ShardReplicationAddResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{192}
+ return file_vtctldata_proto_rawDescGZIP(), []int{194}
}
type ShardReplicationFixRequest struct {
@@ -12271,7 +12380,7 @@ type ShardReplicationFixRequest struct {
func (x *ShardReplicationFixRequest) Reset() {
*x = ShardReplicationFixRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[193]
+ mi := &file_vtctldata_proto_msgTypes[195]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12284,7 +12393,7 @@ func (x *ShardReplicationFixRequest) String() string {
func (*ShardReplicationFixRequest) ProtoMessage() {}
func (x *ShardReplicationFixRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[193]
+ mi := &file_vtctldata_proto_msgTypes[195]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12297,7 +12406,7 @@ func (x *ShardReplicationFixRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ShardReplicationFixRequest.ProtoReflect.Descriptor instead.
func (*ShardReplicationFixRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{193}
+ return file_vtctldata_proto_rawDescGZIP(), []int{195}
}
func (x *ShardReplicationFixRequest) GetKeyspace() string {
@@ -12335,7 +12444,7 @@ type ShardReplicationFixResponse struct {
func (x *ShardReplicationFixResponse) Reset() {
*x = ShardReplicationFixResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[194]
+ mi := &file_vtctldata_proto_msgTypes[196]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12348,7 +12457,7 @@ func (x *ShardReplicationFixResponse) String() string {
func (*ShardReplicationFixResponse) ProtoMessage() {}
func (x *ShardReplicationFixResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[194]
+ mi := &file_vtctldata_proto_msgTypes[196]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12361,7 +12470,7 @@ func (x *ShardReplicationFixResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ShardReplicationFixResponse.ProtoReflect.Descriptor instead.
func (*ShardReplicationFixResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{194}
+ return file_vtctldata_proto_rawDescGZIP(), []int{196}
}
func (x *ShardReplicationFixResponse) GetError() *topodata.ShardReplicationError {
@@ -12383,7 +12492,7 @@ type ShardReplicationPositionsRequest struct {
func (x *ShardReplicationPositionsRequest) Reset() {
*x = ShardReplicationPositionsRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[195]
+ mi := &file_vtctldata_proto_msgTypes[197]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12396,7 +12505,7 @@ func (x *ShardReplicationPositionsRequest) String() string {
func (*ShardReplicationPositionsRequest) ProtoMessage() {}
func (x *ShardReplicationPositionsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[195]
+ mi := &file_vtctldata_proto_msgTypes[197]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12409,7 +12518,7 @@ func (x *ShardReplicationPositionsRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ShardReplicationPositionsRequest.ProtoReflect.Descriptor instead.
func (*ShardReplicationPositionsRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{195}
+ return file_vtctldata_proto_rawDescGZIP(), []int{197}
}
func (x *ShardReplicationPositionsRequest) GetKeyspace() string {
@@ -12442,7 +12551,7 @@ type ShardReplicationPositionsResponse struct {
func (x *ShardReplicationPositionsResponse) Reset() {
*x = ShardReplicationPositionsResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[196]
+ mi := &file_vtctldata_proto_msgTypes[198]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12455,7 +12564,7 @@ func (x *ShardReplicationPositionsResponse) String() string {
func (*ShardReplicationPositionsResponse) ProtoMessage() {}
func (x *ShardReplicationPositionsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[196]
+ mi := &file_vtctldata_proto_msgTypes[198]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12468,7 +12577,7 @@ func (x *ShardReplicationPositionsResponse) ProtoReflect() protoreflect.Message
// Deprecated: Use ShardReplicationPositionsResponse.ProtoReflect.Descriptor instead.
func (*ShardReplicationPositionsResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{196}
+ return file_vtctldata_proto_rawDescGZIP(), []int{198}
}
func (x *ShardReplicationPositionsResponse) GetReplicationStatuses() map[string]*replicationdata.Status {
@@ -12498,7 +12607,7 @@ type ShardReplicationRemoveRequest struct {
func (x *ShardReplicationRemoveRequest) Reset() {
*x = ShardReplicationRemoveRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[197]
+ mi := &file_vtctldata_proto_msgTypes[199]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12511,7 +12620,7 @@ func (x *ShardReplicationRemoveRequest) String() string {
func (*ShardReplicationRemoveRequest) ProtoMessage() {}
func (x *ShardReplicationRemoveRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[197]
+ mi := &file_vtctldata_proto_msgTypes[199]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12524,7 +12633,7 @@ func (x *ShardReplicationRemoveRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ShardReplicationRemoveRequest.ProtoReflect.Descriptor instead.
func (*ShardReplicationRemoveRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{197}
+ return file_vtctldata_proto_rawDescGZIP(), []int{199}
}
func (x *ShardReplicationRemoveRequest) GetKeyspace() string {
@@ -12557,7 +12666,7 @@ type ShardReplicationRemoveResponse struct {
func (x *ShardReplicationRemoveResponse) Reset() {
*x = ShardReplicationRemoveResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[198]
+ mi := &file_vtctldata_proto_msgTypes[200]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12570,7 +12679,7 @@ func (x *ShardReplicationRemoveResponse) String() string {
func (*ShardReplicationRemoveResponse) ProtoMessage() {}
func (x *ShardReplicationRemoveResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[198]
+ mi := &file_vtctldata_proto_msgTypes[200]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12583,7 +12692,7 @@ func (x *ShardReplicationRemoveResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ShardReplicationRemoveResponse.ProtoReflect.Descriptor instead.
func (*ShardReplicationRemoveResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{198}
+ return file_vtctldata_proto_rawDescGZIP(), []int{200}
}
type SleepTabletRequest struct {
@@ -12598,7 +12707,7 @@ type SleepTabletRequest struct {
func (x *SleepTabletRequest) Reset() {
*x = SleepTabletRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[199]
+ mi := &file_vtctldata_proto_msgTypes[201]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12611,7 +12720,7 @@ func (x *SleepTabletRequest) String() string {
func (*SleepTabletRequest) ProtoMessage() {}
func (x *SleepTabletRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[199]
+ mi := &file_vtctldata_proto_msgTypes[201]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12624,7 +12733,7 @@ func (x *SleepTabletRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use SleepTabletRequest.ProtoReflect.Descriptor instead.
func (*SleepTabletRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{199}
+ return file_vtctldata_proto_rawDescGZIP(), []int{201}
}
func (x *SleepTabletRequest) GetTabletAlias() *topodata.TabletAlias {
@@ -12650,7 +12759,7 @@ type SleepTabletResponse struct {
func (x *SleepTabletResponse) Reset() {
*x = SleepTabletResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[200]
+ mi := &file_vtctldata_proto_msgTypes[202]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12663,7 +12772,7 @@ func (x *SleepTabletResponse) String() string {
func (*SleepTabletResponse) ProtoMessage() {}
func (x *SleepTabletResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[200]
+ mi := &file_vtctldata_proto_msgTypes[202]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12676,7 +12785,7 @@ func (x *SleepTabletResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use SleepTabletResponse.ProtoReflect.Descriptor instead.
func (*SleepTabletResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{200}
+ return file_vtctldata_proto_rawDescGZIP(), []int{202}
}
type SourceShardAddRequest struct {
@@ -12700,7 +12809,7 @@ type SourceShardAddRequest struct {
func (x *SourceShardAddRequest) Reset() {
*x = SourceShardAddRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[201]
+ mi := &file_vtctldata_proto_msgTypes[203]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12713,7 +12822,7 @@ func (x *SourceShardAddRequest) String() string {
func (*SourceShardAddRequest) ProtoMessage() {}
func (x *SourceShardAddRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[201]
+ mi := &file_vtctldata_proto_msgTypes[203]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12726,7 +12835,7 @@ func (x *SourceShardAddRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use SourceShardAddRequest.ProtoReflect.Descriptor instead.
func (*SourceShardAddRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{201}
+ return file_vtctldata_proto_rawDescGZIP(), []int{203}
}
func (x *SourceShardAddRequest) GetKeyspace() string {
@@ -12790,7 +12899,7 @@ type SourceShardAddResponse struct {
func (x *SourceShardAddResponse) Reset() {
*x = SourceShardAddResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[202]
+ mi := &file_vtctldata_proto_msgTypes[204]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12803,7 +12912,7 @@ func (x *SourceShardAddResponse) String() string {
func (*SourceShardAddResponse) ProtoMessage() {}
func (x *SourceShardAddResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[202]
+ mi := &file_vtctldata_proto_msgTypes[204]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12816,7 +12925,7 @@ func (x *SourceShardAddResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use SourceShardAddResponse.ProtoReflect.Descriptor instead.
func (*SourceShardAddResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{202}
+ return file_vtctldata_proto_rawDescGZIP(), []int{204}
}
func (x *SourceShardAddResponse) GetShard() *topodata.Shard {
@@ -12839,7 +12948,7 @@ type SourceShardDeleteRequest struct {
func (x *SourceShardDeleteRequest) Reset() {
*x = SourceShardDeleteRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[203]
+ mi := &file_vtctldata_proto_msgTypes[205]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12852,7 +12961,7 @@ func (x *SourceShardDeleteRequest) String() string {
func (*SourceShardDeleteRequest) ProtoMessage() {}
func (x *SourceShardDeleteRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[203]
+ mi := &file_vtctldata_proto_msgTypes[205]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12865,7 +12974,7 @@ func (x *SourceShardDeleteRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use SourceShardDeleteRequest.ProtoReflect.Descriptor instead.
func (*SourceShardDeleteRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{203}
+ return file_vtctldata_proto_rawDescGZIP(), []int{205}
}
func (x *SourceShardDeleteRequest) GetKeyspace() string {
@@ -12901,7 +13010,7 @@ type SourceShardDeleteResponse struct {
func (x *SourceShardDeleteResponse) Reset() {
*x = SourceShardDeleteResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[204]
+ mi := &file_vtctldata_proto_msgTypes[206]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12914,7 +13023,7 @@ func (x *SourceShardDeleteResponse) String() string {
func (*SourceShardDeleteResponse) ProtoMessage() {}
func (x *SourceShardDeleteResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[204]
+ mi := &file_vtctldata_proto_msgTypes[206]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12927,7 +13036,7 @@ func (x *SourceShardDeleteResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use SourceShardDeleteResponse.ProtoReflect.Descriptor instead.
func (*SourceShardDeleteResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{204}
+ return file_vtctldata_proto_rawDescGZIP(), []int{206}
}
func (x *SourceShardDeleteResponse) GetShard() *topodata.Shard {
@@ -12948,7 +13057,7 @@ type StartReplicationRequest struct {
func (x *StartReplicationRequest) Reset() {
*x = StartReplicationRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[205]
+ mi := &file_vtctldata_proto_msgTypes[207]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -12961,7 +13070,7 @@ func (x *StartReplicationRequest) String() string {
func (*StartReplicationRequest) ProtoMessage() {}
func (x *StartReplicationRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[205]
+ mi := &file_vtctldata_proto_msgTypes[207]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -12974,7 +13083,7 @@ func (x *StartReplicationRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use StartReplicationRequest.ProtoReflect.Descriptor instead.
func (*StartReplicationRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{205}
+ return file_vtctldata_proto_rawDescGZIP(), []int{207}
}
func (x *StartReplicationRequest) GetTabletAlias() *topodata.TabletAlias {
@@ -12993,7 +13102,7 @@ type StartReplicationResponse struct {
func (x *StartReplicationResponse) Reset() {
*x = StartReplicationResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[206]
+ mi := &file_vtctldata_proto_msgTypes[208]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13006,7 +13115,7 @@ func (x *StartReplicationResponse) String() string {
func (*StartReplicationResponse) ProtoMessage() {}
func (x *StartReplicationResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[206]
+ mi := &file_vtctldata_proto_msgTypes[208]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13019,7 +13128,7 @@ func (x *StartReplicationResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use StartReplicationResponse.ProtoReflect.Descriptor instead.
func (*StartReplicationResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{206}
+ return file_vtctldata_proto_rawDescGZIP(), []int{208}
}
type StopReplicationRequest struct {
@@ -13033,7 +13142,7 @@ type StopReplicationRequest struct {
func (x *StopReplicationRequest) Reset() {
*x = StopReplicationRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[207]
+ mi := &file_vtctldata_proto_msgTypes[209]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13046,7 +13155,7 @@ func (x *StopReplicationRequest) String() string {
func (*StopReplicationRequest) ProtoMessage() {}
func (x *StopReplicationRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[207]
+ mi := &file_vtctldata_proto_msgTypes[209]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13059,7 +13168,7 @@ func (x *StopReplicationRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use StopReplicationRequest.ProtoReflect.Descriptor instead.
func (*StopReplicationRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{207}
+ return file_vtctldata_proto_rawDescGZIP(), []int{209}
}
func (x *StopReplicationRequest) GetTabletAlias() *topodata.TabletAlias {
@@ -13078,7 +13187,7 @@ type StopReplicationResponse struct {
func (x *StopReplicationResponse) Reset() {
*x = StopReplicationResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[208]
+ mi := &file_vtctldata_proto_msgTypes[210]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13091,7 +13200,7 @@ func (x *StopReplicationResponse) String() string {
func (*StopReplicationResponse) ProtoMessage() {}
func (x *StopReplicationResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[208]
+ mi := &file_vtctldata_proto_msgTypes[210]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13104,7 +13213,7 @@ func (x *StopReplicationResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use StopReplicationResponse.ProtoReflect.Descriptor instead.
func (*StopReplicationResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{208}
+ return file_vtctldata_proto_rawDescGZIP(), []int{210}
}
type TabletExternallyReparentedRequest struct {
@@ -13120,7 +13229,7 @@ type TabletExternallyReparentedRequest struct {
func (x *TabletExternallyReparentedRequest) Reset() {
*x = TabletExternallyReparentedRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[209]
+ mi := &file_vtctldata_proto_msgTypes[211]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13133,7 +13242,7 @@ func (x *TabletExternallyReparentedRequest) String() string {
func (*TabletExternallyReparentedRequest) ProtoMessage() {}
func (x *TabletExternallyReparentedRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[209]
+ mi := &file_vtctldata_proto_msgTypes[211]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13146,7 +13255,7 @@ func (x *TabletExternallyReparentedRequest) ProtoReflect() protoreflect.Message
// Deprecated: Use TabletExternallyReparentedRequest.ProtoReflect.Descriptor instead.
func (*TabletExternallyReparentedRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{209}
+ return file_vtctldata_proto_rawDescGZIP(), []int{211}
}
func (x *TabletExternallyReparentedRequest) GetTablet() *topodata.TabletAlias {
@@ -13170,7 +13279,7 @@ type TabletExternallyReparentedResponse struct {
func (x *TabletExternallyReparentedResponse) Reset() {
*x = TabletExternallyReparentedResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[210]
+ mi := &file_vtctldata_proto_msgTypes[212]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13183,7 +13292,7 @@ func (x *TabletExternallyReparentedResponse) String() string {
func (*TabletExternallyReparentedResponse) ProtoMessage() {}
func (x *TabletExternallyReparentedResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[210]
+ mi := &file_vtctldata_proto_msgTypes[212]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13196,7 +13305,7 @@ func (x *TabletExternallyReparentedResponse) ProtoReflect() protoreflect.Message
// Deprecated: Use TabletExternallyReparentedResponse.ProtoReflect.Descriptor instead.
func (*TabletExternallyReparentedResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{210}
+ return file_vtctldata_proto_rawDescGZIP(), []int{212}
}
func (x *TabletExternallyReparentedResponse) GetKeyspace() string {
@@ -13239,7 +13348,7 @@ type UpdateCellInfoRequest struct {
func (x *UpdateCellInfoRequest) Reset() {
*x = UpdateCellInfoRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[211]
+ mi := &file_vtctldata_proto_msgTypes[213]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13252,7 +13361,7 @@ func (x *UpdateCellInfoRequest) String() string {
func (*UpdateCellInfoRequest) ProtoMessage() {}
func (x *UpdateCellInfoRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[211]
+ mi := &file_vtctldata_proto_msgTypes[213]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13265,7 +13374,7 @@ func (x *UpdateCellInfoRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use UpdateCellInfoRequest.ProtoReflect.Descriptor instead.
func (*UpdateCellInfoRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{211}
+ return file_vtctldata_proto_rawDescGZIP(), []int{213}
}
func (x *UpdateCellInfoRequest) GetName() string {
@@ -13294,7 +13403,7 @@ type UpdateCellInfoResponse struct {
func (x *UpdateCellInfoResponse) Reset() {
*x = UpdateCellInfoResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[212]
+ mi := &file_vtctldata_proto_msgTypes[214]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13307,7 +13416,7 @@ func (x *UpdateCellInfoResponse) String() string {
func (*UpdateCellInfoResponse) ProtoMessage() {}
func (x *UpdateCellInfoResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[212]
+ mi := &file_vtctldata_proto_msgTypes[214]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13320,7 +13429,7 @@ func (x *UpdateCellInfoResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use UpdateCellInfoResponse.ProtoReflect.Descriptor instead.
func (*UpdateCellInfoResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{212}
+ return file_vtctldata_proto_rawDescGZIP(), []int{214}
}
func (x *UpdateCellInfoResponse) GetName() string {
@@ -13349,7 +13458,7 @@ type UpdateCellsAliasRequest struct {
func (x *UpdateCellsAliasRequest) Reset() {
*x = UpdateCellsAliasRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[213]
+ mi := &file_vtctldata_proto_msgTypes[215]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13362,7 +13471,7 @@ func (x *UpdateCellsAliasRequest) String() string {
func (*UpdateCellsAliasRequest) ProtoMessage() {}
func (x *UpdateCellsAliasRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[213]
+ mi := &file_vtctldata_proto_msgTypes[215]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13375,7 +13484,7 @@ func (x *UpdateCellsAliasRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use UpdateCellsAliasRequest.ProtoReflect.Descriptor instead.
func (*UpdateCellsAliasRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{213}
+ return file_vtctldata_proto_rawDescGZIP(), []int{215}
}
func (x *UpdateCellsAliasRequest) GetName() string {
@@ -13404,7 +13513,7 @@ type UpdateCellsAliasResponse struct {
func (x *UpdateCellsAliasResponse) Reset() {
*x = UpdateCellsAliasResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[214]
+ mi := &file_vtctldata_proto_msgTypes[216]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13417,7 +13526,7 @@ func (x *UpdateCellsAliasResponse) String() string {
func (*UpdateCellsAliasResponse) ProtoMessage() {}
func (x *UpdateCellsAliasResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[214]
+ mi := &file_vtctldata_proto_msgTypes[216]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13430,7 +13539,7 @@ func (x *UpdateCellsAliasResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use UpdateCellsAliasResponse.ProtoReflect.Descriptor instead.
func (*UpdateCellsAliasResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{214}
+ return file_vtctldata_proto_rawDescGZIP(), []int{216}
}
func (x *UpdateCellsAliasResponse) GetName() string {
@@ -13458,7 +13567,7 @@ type ValidateRequest struct {
func (x *ValidateRequest) Reset() {
*x = ValidateRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[215]
+ mi := &file_vtctldata_proto_msgTypes[217]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13471,7 +13580,7 @@ func (x *ValidateRequest) String() string {
func (*ValidateRequest) ProtoMessage() {}
func (x *ValidateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[215]
+ mi := &file_vtctldata_proto_msgTypes[217]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13484,7 +13593,7 @@ func (x *ValidateRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValidateRequest.ProtoReflect.Descriptor instead.
func (*ValidateRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{215}
+ return file_vtctldata_proto_rawDescGZIP(), []int{217}
}
func (x *ValidateRequest) GetPingTablets() bool {
@@ -13506,7 +13615,7 @@ type ValidateResponse struct {
func (x *ValidateResponse) Reset() {
*x = ValidateResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[216]
+ mi := &file_vtctldata_proto_msgTypes[218]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13519,7 +13628,7 @@ func (x *ValidateResponse) String() string {
func (*ValidateResponse) ProtoMessage() {}
func (x *ValidateResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[216]
+ mi := &file_vtctldata_proto_msgTypes[218]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13532,7 +13641,7 @@ func (x *ValidateResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValidateResponse.ProtoReflect.Descriptor instead.
func (*ValidateResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{216}
+ return file_vtctldata_proto_rawDescGZIP(), []int{218}
}
func (x *ValidateResponse) GetResults() []string {
@@ -13561,7 +13670,7 @@ type ValidateKeyspaceRequest struct {
func (x *ValidateKeyspaceRequest) Reset() {
*x = ValidateKeyspaceRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[217]
+ mi := &file_vtctldata_proto_msgTypes[219]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13574,7 +13683,7 @@ func (x *ValidateKeyspaceRequest) String() string {
func (*ValidateKeyspaceRequest) ProtoMessage() {}
func (x *ValidateKeyspaceRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[217]
+ mi := &file_vtctldata_proto_msgTypes[219]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13587,7 +13696,7 @@ func (x *ValidateKeyspaceRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValidateKeyspaceRequest.ProtoReflect.Descriptor instead.
func (*ValidateKeyspaceRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{217}
+ return file_vtctldata_proto_rawDescGZIP(), []int{219}
}
func (x *ValidateKeyspaceRequest) GetKeyspace() string {
@@ -13616,7 +13725,7 @@ type ValidateKeyspaceResponse struct {
func (x *ValidateKeyspaceResponse) Reset() {
*x = ValidateKeyspaceResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[218]
+ mi := &file_vtctldata_proto_msgTypes[220]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13629,7 +13738,7 @@ func (x *ValidateKeyspaceResponse) String() string {
func (*ValidateKeyspaceResponse) ProtoMessage() {}
func (x *ValidateKeyspaceResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[218]
+ mi := &file_vtctldata_proto_msgTypes[220]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13642,7 +13751,7 @@ func (x *ValidateKeyspaceResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValidateKeyspaceResponse.ProtoReflect.Descriptor instead.
func (*ValidateKeyspaceResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{218}
+ return file_vtctldata_proto_rawDescGZIP(), []int{220}
}
func (x *ValidateKeyspaceResponse) GetResults() []string {
@@ -13674,7 +13783,7 @@ type ValidateSchemaKeyspaceRequest struct {
func (x *ValidateSchemaKeyspaceRequest) Reset() {
*x = ValidateSchemaKeyspaceRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[219]
+ mi := &file_vtctldata_proto_msgTypes[221]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13687,7 +13796,7 @@ func (x *ValidateSchemaKeyspaceRequest) String() string {
func (*ValidateSchemaKeyspaceRequest) ProtoMessage() {}
func (x *ValidateSchemaKeyspaceRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[219]
+ mi := &file_vtctldata_proto_msgTypes[221]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13700,7 +13809,7 @@ func (x *ValidateSchemaKeyspaceRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValidateSchemaKeyspaceRequest.ProtoReflect.Descriptor instead.
func (*ValidateSchemaKeyspaceRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{219}
+ return file_vtctldata_proto_rawDescGZIP(), []int{221}
}
func (x *ValidateSchemaKeyspaceRequest) GetKeyspace() string {
@@ -13750,7 +13859,7 @@ type ValidateSchemaKeyspaceResponse struct {
func (x *ValidateSchemaKeyspaceResponse) Reset() {
*x = ValidateSchemaKeyspaceResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[220]
+ mi := &file_vtctldata_proto_msgTypes[222]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13763,7 +13872,7 @@ func (x *ValidateSchemaKeyspaceResponse) String() string {
func (*ValidateSchemaKeyspaceResponse) ProtoMessage() {}
func (x *ValidateSchemaKeyspaceResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[220]
+ mi := &file_vtctldata_proto_msgTypes[222]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13776,7 +13885,7 @@ func (x *ValidateSchemaKeyspaceResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValidateSchemaKeyspaceResponse.ProtoReflect.Descriptor instead.
func (*ValidateSchemaKeyspaceResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{220}
+ return file_vtctldata_proto_rawDescGZIP(), []int{222}
}
func (x *ValidateSchemaKeyspaceResponse) GetResults() []string {
@@ -13806,7 +13915,7 @@ type ValidateShardRequest struct {
func (x *ValidateShardRequest) Reset() {
*x = ValidateShardRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[221]
+ mi := &file_vtctldata_proto_msgTypes[223]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13819,7 +13928,7 @@ func (x *ValidateShardRequest) String() string {
func (*ValidateShardRequest) ProtoMessage() {}
func (x *ValidateShardRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[221]
+ mi := &file_vtctldata_proto_msgTypes[223]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13832,7 +13941,7 @@ func (x *ValidateShardRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValidateShardRequest.ProtoReflect.Descriptor instead.
func (*ValidateShardRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{221}
+ return file_vtctldata_proto_rawDescGZIP(), []int{223}
}
func (x *ValidateShardRequest) GetKeyspace() string {
@@ -13867,7 +13976,7 @@ type ValidateShardResponse struct {
func (x *ValidateShardResponse) Reset() {
*x = ValidateShardResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[222]
+ mi := &file_vtctldata_proto_msgTypes[224]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13880,7 +13989,7 @@ func (x *ValidateShardResponse) String() string {
func (*ValidateShardResponse) ProtoMessage() {}
func (x *ValidateShardResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[222]
+ mi := &file_vtctldata_proto_msgTypes[224]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13893,7 +14002,7 @@ func (x *ValidateShardResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValidateShardResponse.ProtoReflect.Descriptor instead.
func (*ValidateShardResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{222}
+ return file_vtctldata_proto_rawDescGZIP(), []int{224}
}
func (x *ValidateShardResponse) GetResults() []string {
@@ -13914,7 +14023,7 @@ type ValidateVersionKeyspaceRequest struct {
func (x *ValidateVersionKeyspaceRequest) Reset() {
*x = ValidateVersionKeyspaceRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[223]
+ mi := &file_vtctldata_proto_msgTypes[225]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13927,7 +14036,7 @@ func (x *ValidateVersionKeyspaceRequest) String() string {
func (*ValidateVersionKeyspaceRequest) ProtoMessage() {}
func (x *ValidateVersionKeyspaceRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[223]
+ mi := &file_vtctldata_proto_msgTypes[225]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13940,7 +14049,7 @@ func (x *ValidateVersionKeyspaceRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValidateVersionKeyspaceRequest.ProtoReflect.Descriptor instead.
func (*ValidateVersionKeyspaceRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{223}
+ return file_vtctldata_proto_rawDescGZIP(), []int{225}
}
func (x *ValidateVersionKeyspaceRequest) GetKeyspace() string {
@@ -13962,7 +14071,7 @@ type ValidateVersionKeyspaceResponse struct {
func (x *ValidateVersionKeyspaceResponse) Reset() {
*x = ValidateVersionKeyspaceResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[224]
+ mi := &file_vtctldata_proto_msgTypes[226]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -13975,7 +14084,7 @@ func (x *ValidateVersionKeyspaceResponse) String() string {
func (*ValidateVersionKeyspaceResponse) ProtoMessage() {}
func (x *ValidateVersionKeyspaceResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[224]
+ mi := &file_vtctldata_proto_msgTypes[226]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -13988,7 +14097,7 @@ func (x *ValidateVersionKeyspaceResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValidateVersionKeyspaceResponse.ProtoReflect.Descriptor instead.
func (*ValidateVersionKeyspaceResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{224}
+ return file_vtctldata_proto_rawDescGZIP(), []int{226}
}
func (x *ValidateVersionKeyspaceResponse) GetResults() []string {
@@ -14017,7 +14126,7 @@ type ValidateVersionShardRequest struct {
func (x *ValidateVersionShardRequest) Reset() {
*x = ValidateVersionShardRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[225]
+ mi := &file_vtctldata_proto_msgTypes[227]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14030,7 +14139,7 @@ func (x *ValidateVersionShardRequest) String() string {
func (*ValidateVersionShardRequest) ProtoMessage() {}
func (x *ValidateVersionShardRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[225]
+ mi := &file_vtctldata_proto_msgTypes[227]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14043,7 +14152,7 @@ func (x *ValidateVersionShardRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValidateVersionShardRequest.ProtoReflect.Descriptor instead.
func (*ValidateVersionShardRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{225}
+ return file_vtctldata_proto_rawDescGZIP(), []int{227}
}
func (x *ValidateVersionShardRequest) GetKeyspace() string {
@@ -14071,7 +14180,7 @@ type ValidateVersionShardResponse struct {
func (x *ValidateVersionShardResponse) Reset() {
*x = ValidateVersionShardResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[226]
+ mi := &file_vtctldata_proto_msgTypes[228]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14084,7 +14193,7 @@ func (x *ValidateVersionShardResponse) String() string {
func (*ValidateVersionShardResponse) ProtoMessage() {}
func (x *ValidateVersionShardResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[226]
+ mi := &file_vtctldata_proto_msgTypes[228]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14097,7 +14206,7 @@ func (x *ValidateVersionShardResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValidateVersionShardResponse.ProtoReflect.Descriptor instead.
func (*ValidateVersionShardResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{226}
+ return file_vtctldata_proto_rawDescGZIP(), []int{228}
}
func (x *ValidateVersionShardResponse) GetResults() []string {
@@ -14121,7 +14230,7 @@ type ValidateVSchemaRequest struct {
func (x *ValidateVSchemaRequest) Reset() {
*x = ValidateVSchemaRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[227]
+ mi := &file_vtctldata_proto_msgTypes[229]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14134,7 +14243,7 @@ func (x *ValidateVSchemaRequest) String() string {
func (*ValidateVSchemaRequest) ProtoMessage() {}
func (x *ValidateVSchemaRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[227]
+ mi := &file_vtctldata_proto_msgTypes[229]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14147,7 +14256,7 @@ func (x *ValidateVSchemaRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValidateVSchemaRequest.ProtoReflect.Descriptor instead.
func (*ValidateVSchemaRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{227}
+ return file_vtctldata_proto_rawDescGZIP(), []int{229}
}
func (x *ValidateVSchemaRequest) GetKeyspace() string {
@@ -14190,7 +14299,7 @@ type ValidateVSchemaResponse struct {
func (x *ValidateVSchemaResponse) Reset() {
*x = ValidateVSchemaResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[228]
+ mi := &file_vtctldata_proto_msgTypes[230]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14203,7 +14312,7 @@ func (x *ValidateVSchemaResponse) String() string {
func (*ValidateVSchemaResponse) ProtoMessage() {}
func (x *ValidateVSchemaResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[228]
+ mi := &file_vtctldata_proto_msgTypes[230]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14216,7 +14325,7 @@ func (x *ValidateVSchemaResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValidateVSchemaResponse.ProtoReflect.Descriptor instead.
func (*ValidateVSchemaResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{228}
+ return file_vtctldata_proto_rawDescGZIP(), []int{230}
}
func (x *ValidateVSchemaResponse) GetResults() []string {
@@ -14265,7 +14374,7 @@ type VDiffCreateRequest struct {
func (x *VDiffCreateRequest) Reset() {
*x = VDiffCreateRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[229]
+ mi := &file_vtctldata_proto_msgTypes[231]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14278,7 +14387,7 @@ func (x *VDiffCreateRequest) String() string {
func (*VDiffCreateRequest) ProtoMessage() {}
func (x *VDiffCreateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[229]
+ mi := &file_vtctldata_proto_msgTypes[231]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14291,7 +14400,7 @@ func (x *VDiffCreateRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use VDiffCreateRequest.ProtoReflect.Descriptor instead.
func (*VDiffCreateRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{229}
+ return file_vtctldata_proto_rawDescGZIP(), []int{231}
}
func (x *VDiffCreateRequest) GetWorkflow() string {
@@ -14461,7 +14570,7 @@ type VDiffCreateResponse struct {
func (x *VDiffCreateResponse) Reset() {
*x = VDiffCreateResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[230]
+ mi := &file_vtctldata_proto_msgTypes[232]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14474,7 +14583,7 @@ func (x *VDiffCreateResponse) String() string {
func (*VDiffCreateResponse) ProtoMessage() {}
func (x *VDiffCreateResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[230]
+ mi := &file_vtctldata_proto_msgTypes[232]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14487,7 +14596,7 @@ func (x *VDiffCreateResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use VDiffCreateResponse.ProtoReflect.Descriptor instead.
func (*VDiffCreateResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{230}
+ return file_vtctldata_proto_rawDescGZIP(), []int{232}
}
func (x *VDiffCreateResponse) GetUUID() string {
@@ -14511,7 +14620,7 @@ type VDiffDeleteRequest struct {
func (x *VDiffDeleteRequest) Reset() {
*x = VDiffDeleteRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[231]
+ mi := &file_vtctldata_proto_msgTypes[233]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14524,7 +14633,7 @@ func (x *VDiffDeleteRequest) String() string {
func (*VDiffDeleteRequest) ProtoMessage() {}
func (x *VDiffDeleteRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[231]
+ mi := &file_vtctldata_proto_msgTypes[233]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14537,7 +14646,7 @@ func (x *VDiffDeleteRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use VDiffDeleteRequest.ProtoReflect.Descriptor instead.
func (*VDiffDeleteRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{231}
+ return file_vtctldata_proto_rawDescGZIP(), []int{233}
}
func (x *VDiffDeleteRequest) GetWorkflow() string {
@@ -14570,7 +14679,7 @@ type VDiffDeleteResponse struct {
func (x *VDiffDeleteResponse) Reset() {
*x = VDiffDeleteResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[232]
+ mi := &file_vtctldata_proto_msgTypes[234]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14583,7 +14692,7 @@ func (x *VDiffDeleteResponse) String() string {
func (*VDiffDeleteResponse) ProtoMessage() {}
func (x *VDiffDeleteResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[232]
+ mi := &file_vtctldata_proto_msgTypes[234]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14596,7 +14705,7 @@ func (x *VDiffDeleteResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use VDiffDeleteResponse.ProtoReflect.Descriptor instead.
func (*VDiffDeleteResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{232}
+ return file_vtctldata_proto_rawDescGZIP(), []int{234}
}
type VDiffResumeRequest struct {
@@ -14613,7 +14722,7 @@ type VDiffResumeRequest struct {
func (x *VDiffResumeRequest) Reset() {
*x = VDiffResumeRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[233]
+ mi := &file_vtctldata_proto_msgTypes[235]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14626,7 +14735,7 @@ func (x *VDiffResumeRequest) String() string {
func (*VDiffResumeRequest) ProtoMessage() {}
func (x *VDiffResumeRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[233]
+ mi := &file_vtctldata_proto_msgTypes[235]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14639,7 +14748,7 @@ func (x *VDiffResumeRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use VDiffResumeRequest.ProtoReflect.Descriptor instead.
func (*VDiffResumeRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{233}
+ return file_vtctldata_proto_rawDescGZIP(), []int{235}
}
func (x *VDiffResumeRequest) GetWorkflow() string {
@@ -14679,7 +14788,7 @@ type VDiffResumeResponse struct {
func (x *VDiffResumeResponse) Reset() {
*x = VDiffResumeResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[234]
+ mi := &file_vtctldata_proto_msgTypes[236]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14692,7 +14801,7 @@ func (x *VDiffResumeResponse) String() string {
func (*VDiffResumeResponse) ProtoMessage() {}
func (x *VDiffResumeResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[234]
+ mi := &file_vtctldata_proto_msgTypes[236]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14705,7 +14814,7 @@ func (x *VDiffResumeResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use VDiffResumeResponse.ProtoReflect.Descriptor instead.
func (*VDiffResumeResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{234}
+ return file_vtctldata_proto_rawDescGZIP(), []int{236}
}
type VDiffShowRequest struct {
@@ -14722,7 +14831,7 @@ type VDiffShowRequest struct {
func (x *VDiffShowRequest) Reset() {
*x = VDiffShowRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[235]
+ mi := &file_vtctldata_proto_msgTypes[237]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14735,7 +14844,7 @@ func (x *VDiffShowRequest) String() string {
func (*VDiffShowRequest) ProtoMessage() {}
func (x *VDiffShowRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[235]
+ mi := &file_vtctldata_proto_msgTypes[237]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14748,7 +14857,7 @@ func (x *VDiffShowRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use VDiffShowRequest.ProtoReflect.Descriptor instead.
func (*VDiffShowRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{235}
+ return file_vtctldata_proto_rawDescGZIP(), []int{237}
}
func (x *VDiffShowRequest) GetWorkflow() string {
@@ -14784,7 +14893,7 @@ type VDiffShowResponse struct {
func (x *VDiffShowResponse) Reset() {
*x = VDiffShowResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[236]
+ mi := &file_vtctldata_proto_msgTypes[238]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14797,7 +14906,7 @@ func (x *VDiffShowResponse) String() string {
func (*VDiffShowResponse) ProtoMessage() {}
func (x *VDiffShowResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[236]
+ mi := &file_vtctldata_proto_msgTypes[238]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14810,7 +14919,7 @@ func (x *VDiffShowResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use VDiffShowResponse.ProtoReflect.Descriptor instead.
func (*VDiffShowResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{236}
+ return file_vtctldata_proto_rawDescGZIP(), []int{238}
}
func (x *VDiffShowResponse) GetTabletResponses() map[string]*tabletmanagerdata.VDiffResponse {
@@ -14834,7 +14943,7 @@ type VDiffStopRequest struct {
func (x *VDiffStopRequest) Reset() {
*x = VDiffStopRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[237]
+ mi := &file_vtctldata_proto_msgTypes[239]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14847,7 +14956,7 @@ func (x *VDiffStopRequest) String() string {
func (*VDiffStopRequest) ProtoMessage() {}
func (x *VDiffStopRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[237]
+ mi := &file_vtctldata_proto_msgTypes[239]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14860,7 +14969,7 @@ func (x *VDiffStopRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use VDiffStopRequest.ProtoReflect.Descriptor instead.
func (*VDiffStopRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{237}
+ return file_vtctldata_proto_rawDescGZIP(), []int{239}
}
func (x *VDiffStopRequest) GetWorkflow() string {
@@ -14900,7 +15009,7 @@ type VDiffStopResponse struct {
func (x *VDiffStopResponse) Reset() {
*x = VDiffStopResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[238]
+ mi := &file_vtctldata_proto_msgTypes[240]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14913,7 +15022,7 @@ func (x *VDiffStopResponse) String() string {
func (*VDiffStopResponse) ProtoMessage() {}
func (x *VDiffStopResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[238]
+ mi := &file_vtctldata_proto_msgTypes[240]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14926,7 +15035,7 @@ func (x *VDiffStopResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use VDiffStopResponse.ProtoReflect.Descriptor instead.
func (*VDiffStopResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{238}
+ return file_vtctldata_proto_rawDescGZIP(), []int{240}
}
type WorkflowDeleteRequest struct {
@@ -14944,7 +15053,7 @@ type WorkflowDeleteRequest struct {
func (x *WorkflowDeleteRequest) Reset() {
*x = WorkflowDeleteRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[239]
+ mi := &file_vtctldata_proto_msgTypes[241]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -14957,7 +15066,7 @@ func (x *WorkflowDeleteRequest) String() string {
func (*WorkflowDeleteRequest) ProtoMessage() {}
func (x *WorkflowDeleteRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[239]
+ mi := &file_vtctldata_proto_msgTypes[241]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -14970,7 +15079,7 @@ func (x *WorkflowDeleteRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use WorkflowDeleteRequest.ProtoReflect.Descriptor instead.
func (*WorkflowDeleteRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{239}
+ return file_vtctldata_proto_rawDescGZIP(), []int{241}
}
func (x *WorkflowDeleteRequest) GetKeyspace() string {
@@ -15020,7 +15129,7 @@ type WorkflowDeleteResponse struct {
func (x *WorkflowDeleteResponse) Reset() {
*x = WorkflowDeleteResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[240]
+ mi := &file_vtctldata_proto_msgTypes[242]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15033,7 +15142,7 @@ func (x *WorkflowDeleteResponse) String() string {
func (*WorkflowDeleteResponse) ProtoMessage() {}
func (x *WorkflowDeleteResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[240]
+ mi := &file_vtctldata_proto_msgTypes[242]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15046,7 +15155,7 @@ func (x *WorkflowDeleteResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use WorkflowDeleteResponse.ProtoReflect.Descriptor instead.
func (*WorkflowDeleteResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{240}
+ return file_vtctldata_proto_rawDescGZIP(), []int{242}
}
func (x *WorkflowDeleteResponse) GetSummary() string {
@@ -15076,7 +15185,7 @@ type WorkflowStatusRequest struct {
func (x *WorkflowStatusRequest) Reset() {
*x = WorkflowStatusRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[241]
+ mi := &file_vtctldata_proto_msgTypes[243]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15089,7 +15198,7 @@ func (x *WorkflowStatusRequest) String() string {
func (*WorkflowStatusRequest) ProtoMessage() {}
func (x *WorkflowStatusRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[241]
+ mi := &file_vtctldata_proto_msgTypes[243]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15102,7 +15211,7 @@ func (x *WorkflowStatusRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use WorkflowStatusRequest.ProtoReflect.Descriptor instead.
func (*WorkflowStatusRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{241}
+ return file_vtctldata_proto_rawDescGZIP(), []int{243}
}
func (x *WorkflowStatusRequest) GetKeyspace() string {
@@ -15140,7 +15249,7 @@ type WorkflowStatusResponse struct {
func (x *WorkflowStatusResponse) Reset() {
*x = WorkflowStatusResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[242]
+ mi := &file_vtctldata_proto_msgTypes[244]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15153,7 +15262,7 @@ func (x *WorkflowStatusResponse) String() string {
func (*WorkflowStatusResponse) ProtoMessage() {}
func (x *WorkflowStatusResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[242]
+ mi := &file_vtctldata_proto_msgTypes[244]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15166,7 +15275,7 @@ func (x *WorkflowStatusResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use WorkflowStatusResponse.ProtoReflect.Descriptor instead.
func (*WorkflowStatusResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{242}
+ return file_vtctldata_proto_rawDescGZIP(), []int{244}
}
func (x *WorkflowStatusResponse) GetTableCopyState() map[string]*WorkflowStatusResponse_TableCopyState {
@@ -15206,12 +15315,13 @@ type WorkflowSwitchTrafficRequest struct {
DryRun bool `protobuf:"varint,9,opt,name=dry_run,json=dryRun,proto3" json:"dry_run,omitempty"`
InitializeTargetSequences bool `protobuf:"varint,10,opt,name=initialize_target_sequences,json=initializeTargetSequences,proto3" json:"initialize_target_sequences,omitempty"`
Shards []string `protobuf:"bytes,11,rep,name=shards,proto3" json:"shards,omitempty"`
+ Force bool `protobuf:"varint,12,opt,name=force,proto3" json:"force,omitempty"`
}
func (x *WorkflowSwitchTrafficRequest) Reset() {
*x = WorkflowSwitchTrafficRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[243]
+ mi := &file_vtctldata_proto_msgTypes[245]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15224,7 +15334,7 @@ func (x *WorkflowSwitchTrafficRequest) String() string {
func (*WorkflowSwitchTrafficRequest) ProtoMessage() {}
func (x *WorkflowSwitchTrafficRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[243]
+ mi := &file_vtctldata_proto_msgTypes[245]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15237,7 +15347,7 @@ func (x *WorkflowSwitchTrafficRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use WorkflowSwitchTrafficRequest.ProtoReflect.Descriptor instead.
func (*WorkflowSwitchTrafficRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{243}
+ return file_vtctldata_proto_rawDescGZIP(), []int{245}
}
func (x *WorkflowSwitchTrafficRequest) GetKeyspace() string {
@@ -15317,6 +15427,13 @@ func (x *WorkflowSwitchTrafficRequest) GetShards() []string {
return nil
}
+func (x *WorkflowSwitchTrafficRequest) GetForce() bool {
+ if x != nil {
+ return x.Force
+ }
+ return false
+}
+
type WorkflowSwitchTrafficResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -15331,7 +15448,7 @@ type WorkflowSwitchTrafficResponse struct {
func (x *WorkflowSwitchTrafficResponse) Reset() {
*x = WorkflowSwitchTrafficResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[244]
+ mi := &file_vtctldata_proto_msgTypes[246]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15344,7 +15461,7 @@ func (x *WorkflowSwitchTrafficResponse) String() string {
func (*WorkflowSwitchTrafficResponse) ProtoMessage() {}
func (x *WorkflowSwitchTrafficResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[244]
+ mi := &file_vtctldata_proto_msgTypes[246]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15357,7 +15474,7 @@ func (x *WorkflowSwitchTrafficResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use WorkflowSwitchTrafficResponse.ProtoReflect.Descriptor instead.
func (*WorkflowSwitchTrafficResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{244}
+ return file_vtctldata_proto_rawDescGZIP(), []int{246}
}
func (x *WorkflowSwitchTrafficResponse) GetSummary() string {
@@ -15402,7 +15519,7 @@ type WorkflowUpdateRequest struct {
func (x *WorkflowUpdateRequest) Reset() {
*x = WorkflowUpdateRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[245]
+ mi := &file_vtctldata_proto_msgTypes[247]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15415,7 +15532,7 @@ func (x *WorkflowUpdateRequest) String() string {
func (*WorkflowUpdateRequest) ProtoMessage() {}
func (x *WorkflowUpdateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[245]
+ mi := &file_vtctldata_proto_msgTypes[247]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15428,7 +15545,7 @@ func (x *WorkflowUpdateRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use WorkflowUpdateRequest.ProtoReflect.Descriptor instead.
func (*WorkflowUpdateRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{245}
+ return file_vtctldata_proto_rawDescGZIP(), []int{247}
}
func (x *WorkflowUpdateRequest) GetKeyspace() string {
@@ -15457,7 +15574,7 @@ type WorkflowUpdateResponse struct {
func (x *WorkflowUpdateResponse) Reset() {
*x = WorkflowUpdateResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[246]
+ mi := &file_vtctldata_proto_msgTypes[248]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15470,7 +15587,7 @@ func (x *WorkflowUpdateResponse) String() string {
func (*WorkflowUpdateResponse) ProtoMessage() {}
func (x *WorkflowUpdateResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[246]
+ mi := &file_vtctldata_proto_msgTypes[248]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15483,7 +15600,7 @@ func (x *WorkflowUpdateResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use WorkflowUpdateResponse.ProtoReflect.Descriptor instead.
func (*WorkflowUpdateResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{246}
+ return file_vtctldata_proto_rawDescGZIP(), []int{248}
}
func (x *WorkflowUpdateResponse) GetSummary() string {
@@ -15509,7 +15626,7 @@ type GetMirrorRulesRequest struct {
func (x *GetMirrorRulesRequest) Reset() {
*x = GetMirrorRulesRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[247]
+ mi := &file_vtctldata_proto_msgTypes[249]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15522,7 +15639,7 @@ func (x *GetMirrorRulesRequest) String() string {
func (*GetMirrorRulesRequest) ProtoMessage() {}
func (x *GetMirrorRulesRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[247]
+ mi := &file_vtctldata_proto_msgTypes[249]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15535,7 +15652,7 @@ func (x *GetMirrorRulesRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetMirrorRulesRequest.ProtoReflect.Descriptor instead.
func (*GetMirrorRulesRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{247}
+ return file_vtctldata_proto_rawDescGZIP(), []int{249}
}
type GetMirrorRulesResponse struct {
@@ -15549,7 +15666,7 @@ type GetMirrorRulesResponse struct {
func (x *GetMirrorRulesResponse) Reset() {
*x = GetMirrorRulesResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[248]
+ mi := &file_vtctldata_proto_msgTypes[250]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15562,7 +15679,7 @@ func (x *GetMirrorRulesResponse) String() string {
func (*GetMirrorRulesResponse) ProtoMessage() {}
func (x *GetMirrorRulesResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[248]
+ mi := &file_vtctldata_proto_msgTypes[250]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15575,7 +15692,7 @@ func (x *GetMirrorRulesResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use GetMirrorRulesResponse.ProtoReflect.Descriptor instead.
func (*GetMirrorRulesResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{248}
+ return file_vtctldata_proto_rawDescGZIP(), []int{250}
}
func (x *GetMirrorRulesResponse) GetMirrorRules() *vschema.MirrorRules {
@@ -15599,7 +15716,7 @@ type WorkflowMirrorTrafficRequest struct {
func (x *WorkflowMirrorTrafficRequest) Reset() {
*x = WorkflowMirrorTrafficRequest{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[249]
+ mi := &file_vtctldata_proto_msgTypes[251]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15612,7 +15729,7 @@ func (x *WorkflowMirrorTrafficRequest) String() string {
func (*WorkflowMirrorTrafficRequest) ProtoMessage() {}
func (x *WorkflowMirrorTrafficRequest) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[249]
+ mi := &file_vtctldata_proto_msgTypes[251]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15625,7 +15742,7 @@ func (x *WorkflowMirrorTrafficRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use WorkflowMirrorTrafficRequest.ProtoReflect.Descriptor instead.
func (*WorkflowMirrorTrafficRequest) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{249}
+ return file_vtctldata_proto_rawDescGZIP(), []int{251}
}
func (x *WorkflowMirrorTrafficRequest) GetKeyspace() string {
@@ -15669,7 +15786,7 @@ type WorkflowMirrorTrafficResponse struct {
func (x *WorkflowMirrorTrafficResponse) Reset() {
*x = WorkflowMirrorTrafficResponse{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[250]
+ mi := &file_vtctldata_proto_msgTypes[252]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15682,7 +15799,7 @@ func (x *WorkflowMirrorTrafficResponse) String() string {
func (*WorkflowMirrorTrafficResponse) ProtoMessage() {}
func (x *WorkflowMirrorTrafficResponse) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[250]
+ mi := &file_vtctldata_proto_msgTypes[252]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15695,7 +15812,7 @@ func (x *WorkflowMirrorTrafficResponse) ProtoReflect() protoreflect.Message {
// Deprecated: Use WorkflowMirrorTrafficResponse.ProtoReflect.Descriptor instead.
func (*WorkflowMirrorTrafficResponse) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{250}
+ return file_vtctldata_proto_rawDescGZIP(), []int{252}
}
func (x *WorkflowMirrorTrafficResponse) GetSummary() string {
@@ -15731,7 +15848,7 @@ type Workflow_ReplicationLocation struct {
func (x *Workflow_ReplicationLocation) Reset() {
*x = Workflow_ReplicationLocation{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[252]
+ mi := &file_vtctldata_proto_msgTypes[255]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15744,7 +15861,7 @@ func (x *Workflow_ReplicationLocation) String() string {
func (*Workflow_ReplicationLocation) ProtoMessage() {}
func (x *Workflow_ReplicationLocation) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[252]
+ mi := &file_vtctldata_proto_msgTypes[255]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15787,7 +15904,7 @@ type Workflow_ShardStream struct {
func (x *Workflow_ShardStream) Reset() {
*x = Workflow_ShardStream{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[253]
+ mi := &file_vtctldata_proto_msgTypes[256]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15800,7 +15917,7 @@ func (x *Workflow_ShardStream) String() string {
func (*Workflow_ShardStream) ProtoMessage() {}
func (x *Workflow_ShardStream) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[253]
+ mi := &file_vtctldata_proto_msgTypes[256]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -15875,7 +15992,7 @@ type Workflow_Stream struct {
func (x *Workflow_Stream) Reset() {
*x = Workflow_Stream{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[254]
+ mi := &file_vtctldata_proto_msgTypes[257]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -15888,7 +16005,7 @@ func (x *Workflow_Stream) String() string {
func (*Workflow_Stream) ProtoMessage() {}
func (x *Workflow_Stream) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[254]
+ mi := &file_vtctldata_proto_msgTypes[257]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16057,7 +16174,7 @@ type Workflow_Stream_CopyState struct {
func (x *Workflow_Stream_CopyState) Reset() {
*x = Workflow_Stream_CopyState{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[255]
+ mi := &file_vtctldata_proto_msgTypes[258]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16070,7 +16187,7 @@ func (x *Workflow_Stream_CopyState) String() string {
func (*Workflow_Stream_CopyState) ProtoMessage() {}
func (x *Workflow_Stream_CopyState) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[255]
+ mi := &file_vtctldata_proto_msgTypes[258]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16125,7 +16242,7 @@ type Workflow_Stream_Log struct {
func (x *Workflow_Stream_Log) Reset() {
*x = Workflow_Stream_Log{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[256]
+ mi := &file_vtctldata_proto_msgTypes[259]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16138,7 +16255,7 @@ func (x *Workflow_Stream_Log) String() string {
func (*Workflow_Stream_Log) ProtoMessage() {}
func (x *Workflow_Stream_Log) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[256]
+ mi := &file_vtctldata_proto_msgTypes[259]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16222,7 +16339,7 @@ type Workflow_Stream_ThrottlerStatus struct {
func (x *Workflow_Stream_ThrottlerStatus) Reset() {
*x = Workflow_Stream_ThrottlerStatus{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[257]
+ mi := &file_vtctldata_proto_msgTypes[260]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16235,7 +16352,7 @@ func (x *Workflow_Stream_ThrottlerStatus) String() string {
func (*Workflow_Stream_ThrottlerStatus) ProtoMessage() {}
func (x *Workflow_Stream_ThrottlerStatus) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[257]
+ mi := &file_vtctldata_proto_msgTypes[260]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16276,7 +16393,7 @@ type ApplyVSchemaResponse_ParamList struct {
func (x *ApplyVSchemaResponse_ParamList) Reset() {
*x = ApplyVSchemaResponse_ParamList{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[260]
+ mi := &file_vtctldata_proto_msgTypes[263]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16289,7 +16406,7 @@ func (x *ApplyVSchemaResponse_ParamList) String() string {
func (*ApplyVSchemaResponse_ParamList) ProtoMessage() {}
func (x *ApplyVSchemaResponse_ParamList) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[260]
+ mi := &file_vtctldata_proto_msgTypes[263]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16323,7 +16440,7 @@ type GetSrvKeyspaceNamesResponse_NameList struct {
func (x *GetSrvKeyspaceNamesResponse_NameList) Reset() {
*x = GetSrvKeyspaceNamesResponse_NameList{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[269]
+ mi := &file_vtctldata_proto_msgTypes[272]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16336,7 +16453,7 @@ func (x *GetSrvKeyspaceNamesResponse_NameList) String() string {
func (*GetSrvKeyspaceNamesResponse_NameList) ProtoMessage() {}
func (x *GetSrvKeyspaceNamesResponse_NameList) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[269]
+ mi := &file_vtctldata_proto_msgTypes[272]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16372,7 +16489,7 @@ type MoveTablesCreateResponse_TabletInfo struct {
func (x *MoveTablesCreateResponse_TabletInfo) Reset() {
*x = MoveTablesCreateResponse_TabletInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[273]
+ mi := &file_vtctldata_proto_msgTypes[276]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16385,7 +16502,7 @@ func (x *MoveTablesCreateResponse_TabletInfo) String() string {
func (*MoveTablesCreateResponse_TabletInfo) ProtoMessage() {}
func (x *MoveTablesCreateResponse_TabletInfo) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[273]
+ mi := &file_vtctldata_proto_msgTypes[276]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16398,7 +16515,7 @@ func (x *MoveTablesCreateResponse_TabletInfo) ProtoReflect() protoreflect.Messag
// Deprecated: Use MoveTablesCreateResponse_TabletInfo.ProtoReflect.Descriptor instead.
func (*MoveTablesCreateResponse_TabletInfo) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{145, 0}
+ return file_vtctldata_proto_rawDescGZIP(), []int{147, 0}
}
func (x *MoveTablesCreateResponse_TabletInfo) GetTablet() *topodata.TabletAlias {
@@ -16428,7 +16545,7 @@ type WorkflowDeleteResponse_TabletInfo struct {
func (x *WorkflowDeleteResponse_TabletInfo) Reset() {
*x = WorkflowDeleteResponse_TabletInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[283]
+ mi := &file_vtctldata_proto_msgTypes[286]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16441,7 +16558,7 @@ func (x *WorkflowDeleteResponse_TabletInfo) String() string {
func (*WorkflowDeleteResponse_TabletInfo) ProtoMessage() {}
func (x *WorkflowDeleteResponse_TabletInfo) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[283]
+ mi := &file_vtctldata_proto_msgTypes[286]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16454,7 +16571,7 @@ func (x *WorkflowDeleteResponse_TabletInfo) ProtoReflect() protoreflect.Message
// Deprecated: Use WorkflowDeleteResponse_TabletInfo.ProtoReflect.Descriptor instead.
func (*WorkflowDeleteResponse_TabletInfo) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{240, 0}
+ return file_vtctldata_proto_rawDescGZIP(), []int{242, 0}
}
func (x *WorkflowDeleteResponse_TabletInfo) GetTablet() *topodata.TabletAlias {
@@ -16487,7 +16604,7 @@ type WorkflowStatusResponse_TableCopyState struct {
func (x *WorkflowStatusResponse_TableCopyState) Reset() {
*x = WorkflowStatusResponse_TableCopyState{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[284]
+ mi := &file_vtctldata_proto_msgTypes[287]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16500,7 +16617,7 @@ func (x *WorkflowStatusResponse_TableCopyState) String() string {
func (*WorkflowStatusResponse_TableCopyState) ProtoMessage() {}
func (x *WorkflowStatusResponse_TableCopyState) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[284]
+ mi := &file_vtctldata_proto_msgTypes[287]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16513,7 +16630,7 @@ func (x *WorkflowStatusResponse_TableCopyState) ProtoReflect() protoreflect.Mess
// Deprecated: Use WorkflowStatusResponse_TableCopyState.ProtoReflect.Descriptor instead.
func (*WorkflowStatusResponse_TableCopyState) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{242, 0}
+ return file_vtctldata_proto_rawDescGZIP(), []int{244, 0}
}
func (x *WorkflowStatusResponse_TableCopyState) GetRowsCopied() int64 {
@@ -16574,7 +16691,7 @@ type WorkflowStatusResponse_ShardStreamState struct {
func (x *WorkflowStatusResponse_ShardStreamState) Reset() {
*x = WorkflowStatusResponse_ShardStreamState{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[285]
+ mi := &file_vtctldata_proto_msgTypes[288]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16587,7 +16704,7 @@ func (x *WorkflowStatusResponse_ShardStreamState) String() string {
func (*WorkflowStatusResponse_ShardStreamState) ProtoMessage() {}
func (x *WorkflowStatusResponse_ShardStreamState) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[285]
+ mi := &file_vtctldata_proto_msgTypes[288]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16600,7 +16717,7 @@ func (x *WorkflowStatusResponse_ShardStreamState) ProtoReflect() protoreflect.Me
// Deprecated: Use WorkflowStatusResponse_ShardStreamState.ProtoReflect.Descriptor instead.
func (*WorkflowStatusResponse_ShardStreamState) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{242, 1}
+ return file_vtctldata_proto_rawDescGZIP(), []int{244, 1}
}
func (x *WorkflowStatusResponse_ShardStreamState) GetId() int32 {
@@ -16656,7 +16773,7 @@ type WorkflowStatusResponse_ShardStreams struct {
func (x *WorkflowStatusResponse_ShardStreams) Reset() {
*x = WorkflowStatusResponse_ShardStreams{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[286]
+ mi := &file_vtctldata_proto_msgTypes[289]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16669,7 +16786,7 @@ func (x *WorkflowStatusResponse_ShardStreams) String() string {
func (*WorkflowStatusResponse_ShardStreams) ProtoMessage() {}
func (x *WorkflowStatusResponse_ShardStreams) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[286]
+ mi := &file_vtctldata_proto_msgTypes[289]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16682,7 +16799,7 @@ func (x *WorkflowStatusResponse_ShardStreams) ProtoReflect() protoreflect.Messag
// Deprecated: Use WorkflowStatusResponse_ShardStreams.ProtoReflect.Descriptor instead.
func (*WorkflowStatusResponse_ShardStreams) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{242, 2}
+ return file_vtctldata_proto_rawDescGZIP(), []int{244, 2}
}
func (x *WorkflowStatusResponse_ShardStreams) GetStreams() []*WorkflowStatusResponse_ShardStreamState {
@@ -16706,7 +16823,7 @@ type WorkflowUpdateResponse_TabletInfo struct {
func (x *WorkflowUpdateResponse_TabletInfo) Reset() {
*x = WorkflowUpdateResponse_TabletInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_vtctldata_proto_msgTypes[289]
+ mi := &file_vtctldata_proto_msgTypes[292]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -16719,7 +16836,7 @@ func (x *WorkflowUpdateResponse_TabletInfo) String() string {
func (*WorkflowUpdateResponse_TabletInfo) ProtoMessage() {}
func (x *WorkflowUpdateResponse_TabletInfo) ProtoReflect() protoreflect.Message {
- mi := &file_vtctldata_proto_msgTypes[289]
+ mi := &file_vtctldata_proto_msgTypes[292]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -16732,7 +16849,7 @@ func (x *WorkflowUpdateResponse_TabletInfo) ProtoReflect() protoreflect.Message
// Deprecated: Use WorkflowUpdateResponse_TabletInfo.ProtoReflect.Descriptor instead.
func (*WorkflowUpdateResponse_TabletInfo) Descriptor() ([]byte, []int) {
- return file_vtctldata_proto_rawDescGZIP(), []int{246, 0}
+ return file_vtctldata_proto_rawDescGZIP(), []int{248, 0}
}
func (x *WorkflowUpdateResponse_TabletInfo) GetTablet() *topodata.TabletAlias {
@@ -17002,8 +17119,8 @@ var file_vtctldata_proto_rawDesc = []byte{
0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64,
0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x22, 0x87,
- 0x01, 0x0a, 0x0f, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x4f, 0x70, 0x74, 0x69, 0x6f,
+ 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x22, 0x82,
+ 0x02, 0x0a, 0x0f, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x4f, 0x70, 0x74, 0x69, 0x6f,
0x6e, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18,
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12,
0x3f, 0x0a, 0x1c, 0x73, 0x74, 0x72, 0x69, 0x70, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x65, 0x64,
@@ -17011,1052 +17128,417 @@ var file_vtctldata_proto_rawDesc = []byte{
0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x19, 0x73, 0x74, 0x72, 0x69, 0x70, 0x53, 0x68, 0x61, 0x72,
0x64, 0x65, 0x64, 0x41, 0x75, 0x74, 0x6f, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74,
0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x22, 0xcf, 0x11, 0x0a, 0x08, 0x57, 0x6f, 0x72,
- 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x3f, 0x0a, 0x06, 0x73, 0x6f, 0x75,
- 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74,
- 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x52,
- 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x06, 0x74, 0x61,
- 0x72, 0x67, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x2e,
- 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x6f, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x31, 0x0a, 0x15, 0x6d,
- 0x61, 0x78, 0x5f, 0x76, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x6c, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x6d, 0x61, 0x78, 0x56,
- 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x67, 0x12, 0x4a,
- 0x0a, 0x0d, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x18,
- 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64,
- 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0c, 0x73, 0x68,
- 0x61, 0x72, 0x64, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x77, 0x6f,
- 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x0c, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x54, 0x79, 0x70, 0x65, 0x12,
- 0x2a, 0x0a, 0x11, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x73, 0x75, 0x62, 0x5f,
- 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x77, 0x6f, 0x72, 0x6b,
- 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x12, 0x48, 0x0a, 0x21, 0x6d,
- 0x61, 0x78, 0x5f, 0x76, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x67,
- 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x1d, 0x6d, 0x61, 0x78, 0x56, 0x52, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x4c, 0x61, 0x67, 0x12, 0x30, 0x0a, 0x14, 0x64, 0x65, 0x66, 0x65, 0x72, 0x5f, 0x73,
- 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x09, 0x20,
- 0x01, 0x28, 0x08, 0x52, 0x12, 0x64, 0x65, 0x66, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64,
- 0x61, 0x72, 0x79, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x34, 0x0a, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
+ 0x52, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x12, 0x3e, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66,
+ 0x69, 0x67, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x4f, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x60, 0x0a,
- 0x11, 0x53, 0x68, 0x61, 0x72, 0x64, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x45, 0x6e, 0x74,
- 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x03, 0x6b, 0x65, 0x79, 0x12, 0x35, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x53, 0x74,
- 0x72, 0x65, 0x61, 0x6d, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a,
- 0x49, 0x0a, 0x13, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x6f,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
- 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
- 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03,
- 0x28, 0x09, 0x52, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x1a, 0xb9, 0x01, 0x0a, 0x0b, 0x53,
- 0x68, 0x61, 0x72, 0x64, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 0x34, 0x0a, 0x07, 0x73, 0x74,
- 0x72, 0x65, 0x61, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x76, 0x74,
- 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
- 0x2e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x07, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73,
- 0x12, 0x46, 0x0a, 0x0f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72,
- 0x6f, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x74, 0x6f, 0x70, 0x6f,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x0e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x73, 0x12, 0x2c, 0x0a, 0x12, 0x69, 0x73, 0x5f, 0x70,
- 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x18, 0x03,
- 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x69, 0x73, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53,
- 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x1a, 0xc1, 0x0a, 0x0a, 0x06, 0x53, 0x74, 0x72, 0x65, 0x61,
- 0x6d, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69,
- 0x64, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x2d, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x06,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x3d, 0x0a, 0x0d, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67,
- 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e,
- 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x42, 0x69, 0x6e, 0x6c, 0x6f,
- 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x0c, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x53,
- 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
- 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
- 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
- 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x74, 0x6f, 0x70, 0x50, 0x6f,
- 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18,
- 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x17, 0x0a, 0x07,
- 0x64, 0x62, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64,
- 0x62, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x41, 0x0a, 0x15, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x09,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69,
- 0x6d, 0x65, 0x52, 0x14, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54,
- 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x2f, 0x0a, 0x0c, 0x74, 0x69, 0x6d, 0x65,
- 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c,
- 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x0b, 0x74, 0x69,
- 0x6d, 0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73,
- 0x73, 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73,
- 0x61, 0x67, 0x65, 0x12, 0x45, 0x0a, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x73, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x53, 0x74,
- 0x72, 0x65, 0x61, 0x6d, 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x0a,
- 0x63, 0x6f, 0x70, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x73, 0x12, 0x32, 0x0a, 0x04, 0x6c, 0x6f,
- 0x67, 0x73, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x53, 0x74,
- 0x72, 0x65, 0x61, 0x6d, 0x2e, 0x4c, 0x6f, 0x67, 0x52, 0x04, 0x6c, 0x6f, 0x67, 0x73, 0x12, 0x26,
- 0x0a, 0x0f, 0x6c, 0x6f, 0x67, 0x5f, 0x66, 0x65, 0x74, 0x63, 0x68, 0x5f, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6c, 0x6f, 0x67, 0x46, 0x65, 0x74, 0x63,
- 0x68, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x61, 0x67, 0x73, 0x18, 0x0f,
- 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x74, 0x61, 0x67, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x72, 0x6f,
- 0x77, 0x73, 0x5f, 0x63, 0x6f, 0x70, 0x69, 0x65, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x0a, 0x72, 0x6f, 0x77, 0x73, 0x43, 0x6f, 0x70, 0x69, 0x65, 0x64, 0x12, 0x55, 0x0a, 0x10, 0x74,
- 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
- 0x11, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x53, 0x74, 0x72, 0x65, 0x61,
- 0x6d, 0x2e, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75,
- 0x73, 0x52, 0x0f, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74,
- 0x75, 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70,
- 0x65, 0x73, 0x18, 0x12, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x6c, 0x0a, 0x1b, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
- 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x19,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50,
- 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c,
- 0x6c, 0x73, 0x18, 0x14, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x1a,
- 0x57, 0x0a, 0x09, 0x43, 0x6f, 0x70, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x14, 0x0a, 0x05,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x70, 0x6b, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x06, 0x6c, 0x61, 0x73, 0x74, 0x50, 0x6b, 0x12, 0x1b, 0x0a, 0x09, 0x73,
- 0x74, 0x72, 0x65, 0x61, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08,
- 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x49, 0x64, 0x1a, 0xe6, 0x01, 0x0a, 0x03, 0x4c, 0x6f, 0x67,
- 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64,
- 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x03, 0x52, 0x08, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x49, 0x64, 0x12, 0x12, 0x0a,
- 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70,
- 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x2b, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74,
- 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x65, 0x64, 0x41, 0x74, 0x12, 0x2b, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f,
- 0x61, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d,
- 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41,
- 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x07, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63,
- 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e,
- 0x74, 0x1a, 0x77, 0x0a, 0x0f, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x12, 0x2f, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e,
- 0x74, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x12, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x54, 0x68, 0x72, 0x6f,
- 0x74, 0x74, 0x6c, 0x65, 0x64, 0x12, 0x33, 0x0a, 0x0e, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x68,
- 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e,
- 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x0d, 0x74, 0x69, 0x6d,
- 0x65, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x22, 0x59, 0x0a, 0x12, 0x41, 0x64,
- 0x64, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x6e, 0x74, 0x72, 0x79,
+ 0x52, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x1a, 0x39, 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x66,
+ 0x69, 0x67, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
+ 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,
+ 0x02, 0x38, 0x01, 0x22, 0xcf, 0x11, 0x0a, 0x08, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
- 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2f, 0x0a, 0x09, 0x63, 0x65, 0x6c, 0x6c, 0x5f, 0x69, 0x6e, 0x66,
- 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x63, 0x65, 0x6c,
- 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x15, 0x0a, 0x13, 0x41, 0x64, 0x64, 0x43, 0x65, 0x6c, 0x6c,
- 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x40, 0x0a, 0x14,
- 0x41, 0x64, 0x64, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c,
- 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x22, 0x17,
- 0x0a, 0x15, 0x41, 0x64, 0x64, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xbf, 0x01, 0x0a, 0x20, 0x41, 0x70, 0x70, 0x6c,
- 0x79, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67,
- 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x53, 0x0a, 0x16,
- 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67,
- 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x76,
- 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52,
- 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x14, 0x6b, 0x65, 0x79,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65,
- 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c,
- 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x73, 0x6b, 0x69, 0x70, 0x52, 0x65, 0x62,
- 0x75, 0x69, 0x6c, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f,
- 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x62,
- 0x75, 0x69, 0x6c, 0x64, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x22, 0x78, 0x0a, 0x21, 0x41, 0x70, 0x70,
- 0x6c, 0x79, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e,
- 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x53,
- 0x0a, 0x16, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x69,
- 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d,
- 0x2e, 0x76, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x14, 0x6b,
- 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75,
- 0x6c, 0x65, 0x73, 0x22, 0x9e, 0x01, 0x0a, 0x18, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x6f, 0x75,
- 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x12, 0x3a, 0x0a, 0x0d, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65,
- 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x76, 0x73, 0x63, 0x68, 0x65, 0x6d,
- 0x61, 0x2e, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x0c,
- 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x21, 0x0a, 0x0c,
+ 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x3f, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x02,
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x73,
+ 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18,
+ 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06,
+ 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x31, 0x0a, 0x15, 0x6d, 0x61, 0x78, 0x5f, 0x76, 0x5f,
+ 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x67, 0x18,
+ 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x6d, 0x61, 0x78, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x67, 0x12, 0x4a, 0x0a, 0x0d, 0x73, 0x68, 0x61,
+ 0x72, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b,
+ 0x32, 0x25, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72,
+ 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x53, 0x74, 0x72, 0x65, 0x61,
+ 0x6d, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0c, 0x73, 0x68, 0x61, 0x72, 0x64, 0x53, 0x74,
+ 0x72, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
+ 0x77, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x77, 0x6f,
+ 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x77, 0x6f,
+ 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x73, 0x75, 0x62, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
+ 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53,
+ 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x12, 0x48, 0x0a, 0x21, 0x6d, 0x61, 0x78, 0x5f, 0x76, 0x5f,
+ 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x72, 0x61, 0x6e,
+ 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28,
+ 0x03, 0x52, 0x1d, 0x6d, 0x61, 0x78, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x67,
+ 0x12, 0x30, 0x0a, 0x14, 0x64, 0x65, 0x66, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
+ 0x61, 0x72, 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12,
+ 0x64, 0x65, 0x66, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x4b, 0x65,
+ 0x79, 0x73, 0x12, 0x34, 0x0a, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0a, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52,
+ 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x60, 0x0a, 0x11, 0x53, 0x68, 0x61, 0x72,
+ 0x64, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
+ 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
+ 0x35, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66,
+ 0x6c, 0x6f, 0x77, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52,
+ 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x49, 0x0a, 0x13, 0x52, 0x65,
+ 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x16, 0x0a,
+ 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x73,
+ 0x68, 0x61, 0x72, 0x64, 0x73, 0x1a, 0xb9, 0x01, 0x0a, 0x0b, 0x53, 0x68, 0x61, 0x72, 0x64, 0x53,
+ 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 0x34, 0x0a, 0x07, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73,
+ 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x53, 0x74, 0x72, 0x65,
+ 0x61, 0x6d, 0x52, 0x07, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x46, 0x0a, 0x0f, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x73, 0x18, 0x02,
+ 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x53, 0x68, 0x61, 0x72, 0x64, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x74,
+ 0x72, 0x6f, 0x6c, 0x52, 0x0e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x72,
+ 0x6f, 0x6c, 0x73, 0x12, 0x2c, 0x0a, 0x12, 0x69, 0x73, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72,
+ 0x79, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52,
+ 0x10, 0x69, 0x73, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e,
+ 0x67, 0x1a, 0xc1, 0x0a, 0x0a, 0x06, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 0x0e, 0x0a, 0x02,
+ 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05,
+ 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61,
+ 0x72, 0x64, 0x12, 0x2d, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x12, 0x3d, 0x0a, 0x0d, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x5f, 0x73, 0x6f, 0x75, 0x72,
+ 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f,
+ 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x42, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x53, 0x6f, 0x75, 0x72,
+ 0x63, 0x65, 0x52, 0x0c, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65,
+ 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x23, 0x0a, 0x0d,
+ 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x74, 0x6f, 0x70, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
+ 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x62, 0x5f, 0x6e, 0x61,
+ 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x62, 0x4e, 0x61, 0x6d, 0x65,
+ 0x12, 0x41, 0x0a, 0x15, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
+ 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32,
+ 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x14, 0x74,
+ 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
+ 0x61, 0x6d, 0x70, 0x12, 0x2f, 0x0a, 0x0c, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x75, 0x70, 0x64, 0x61,
+ 0x74, 0x65, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69,
+ 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x0b, 0x74, 0x69, 0x6d, 0x65, 0x55, 0x70, 0x64,
+ 0x61, 0x74, 0x65, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18,
+ 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x45,
+ 0x0a, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x73, 0x18, 0x0c, 0x20,
+ 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x2e,
+ 0x43, 0x6f, 0x70, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x0a, 0x63, 0x6f, 0x70, 0x79, 0x53,
+ 0x74, 0x61, 0x74, 0x65, 0x73, 0x12, 0x32, 0x0a, 0x04, 0x6c, 0x6f, 0x67, 0x73, 0x18, 0x0d, 0x20,
+ 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x2e,
+ 0x4c, 0x6f, 0x67, 0x52, 0x04, 0x6c, 0x6f, 0x67, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6c, 0x6f, 0x67,
+ 0x5f, 0x66, 0x65, 0x74, 0x63, 0x68, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x0e, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x0d, 0x6c, 0x6f, 0x67, 0x46, 0x65, 0x74, 0x63, 0x68, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x61, 0x67, 0x73, 0x18, 0x0f, 0x20, 0x03, 0x28, 0x09, 0x52,
+ 0x04, 0x74, 0x61, 0x67, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x63, 0x6f,
+ 0x70, 0x69, 0x65, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x72, 0x6f, 0x77, 0x73,
+ 0x43, 0x6f, 0x70, 0x69, 0x65, 0x64, 0x12, 0x55, 0x0a, 0x10, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74,
+ 0x6c, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0b,
+ 0x32, 0x2a, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72,
+ 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x2e, 0x54, 0x68, 0x72,
+ 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0f, 0x74, 0x68,
+ 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x37, 0x0a,
+ 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x12, 0x20,
+ 0x03, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x6c, 0x0a, 0x1b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65,
+ 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50,
+ 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x19, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72,
+ 0x65, 0x6e, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x14, 0x20,
+ 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x1a, 0x57, 0x0a, 0x09, 0x43, 0x6f,
+ 0x70, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x17, 0x0a,
+ 0x07, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x70, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
+ 0x6c, 0x61, 0x73, 0x74, 0x50, 0x6b, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d,
+ 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x73, 0x74, 0x72, 0x65, 0x61,
+ 0x6d, 0x49, 0x64, 0x1a, 0xe6, 0x01, 0x0a, 0x03, 0x4c, 0x6f, 0x67, 0x12, 0x0e, 0x0a, 0x02, 0x69,
+ 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x73,
+ 0x74, 0x72, 0x65, 0x61, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08,
+ 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65,
+ 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x61,
+ 0x74, 0x65, 0x12, 0x2b, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74,
+ 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e,
+ 0x54, 0x69, 0x6d, 0x65, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12,
+ 0x2b, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x06, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d,
+ 0x65, 0x52, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x18, 0x0a, 0x07,
+ 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d,
+ 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18,
+ 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x1a, 0x77, 0x0a, 0x0f,
+ 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
+ 0x2f, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x68, 0x72,
+ 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x63, 0x6f,
+ 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64,
+ 0x12, 0x33, 0x0a, 0x0e, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c,
+ 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d,
+ 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x0d, 0x74, 0x69, 0x6d, 0x65, 0x54, 0x68, 0x72, 0x6f,
+ 0x74, 0x74, 0x6c, 0x65, 0x64, 0x22, 0x59, 0x0a, 0x12, 0x41, 0x64, 0x64, 0x43, 0x65, 0x6c, 0x6c,
+ 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e,
+ 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
+ 0x2f, 0x0a, 0x09, 0x63, 0x65, 0x6c, 0x6c, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x65,
+ 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x63, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f,
+ 0x22, 0x15, 0x0a, 0x13, 0x41, 0x64, 0x64, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x40, 0x0a, 0x14, 0x41, 0x64, 0x64, 0x43, 0x65,
+ 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
+ 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
+ 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03,
+ 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x22, 0x17, 0x0a, 0x15, 0x41, 0x64, 0x64,
+ 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x22, 0xbf, 0x01, 0x0a, 0x20, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x4b, 0x65, 0x79, 0x73,
+ 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x53, 0x0a, 0x16, 0x6b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65,
+ 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x76, 0x73, 0x63, 0x68, 0x65, 0x6d,
+ 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e,
+ 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x14, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x21, 0x0a, 0x0c,
0x73, 0x6b, 0x69, 0x70, 0x5f, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x02, 0x20, 0x01,
0x28, 0x08, 0x52, 0x0b, 0x73, 0x6b, 0x69, 0x70, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x12,
0x23, 0x0a, 0x0d, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x63, 0x65, 0x6c, 0x6c, 0x73,
0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x43,
- 0x65, 0x6c, 0x6c, 0x73, 0x22, 0x1b, 0x0a, 0x19, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x6f, 0x75,
- 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x22, 0xb3, 0x01, 0x0a, 0x1d, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64,
- 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x12, 0x4a, 0x0a, 0x13, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x72, 0x6f, 0x75,
- 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x1a, 0x2e, 0x76, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64,
- 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x11, 0x73, 0x68,
- 0x61, 0x72, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12,
- 0x21, 0x0a, 0x0c, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x73, 0x6b, 0x69, 0x70, 0x52, 0x65, 0x62, 0x75, 0x69,
- 0x6c, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x63, 0x65,
- 0x6c, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x62, 0x75, 0x69,
- 0x6c, 0x64, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x22, 0x20, 0x0a, 0x1e, 0x41, 0x70, 0x70, 0x6c, 0x79,
- 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65,
- 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xce, 0x02, 0x0a, 0x12, 0x41, 0x70,
- 0x70, 0x6c, 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x10, 0x0a, 0x03,
- 0x73, 0x71, 0x6c, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x03, 0x73, 0x71, 0x6c, 0x12, 0x21,
- 0x0a, 0x0c, 0x64, 0x64, 0x6c, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x04,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x64, 0x6c, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67,
- 0x79, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x75, 0x69, 0x64, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x05,
- 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x75, 0x75, 0x69, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2b,
- 0x0a, 0x11, 0x6d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x74,
- 0x65, 0x78, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6d, 0x69, 0x67, 0x72, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x12, 0x44, 0x0a, 0x15, 0x77,
- 0x61, 0x69, 0x74, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x5f, 0x74, 0x69, 0x6d,
- 0x65, 0x6f, 0x75, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74,
- 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x77, 0x61,
- 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75,
- 0x74, 0x12, 0x2c, 0x0a, 0x09, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x09,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x76, 0x74, 0x72, 0x70, 0x63, 0x2e, 0x43, 0x61, 0x6c,
- 0x6c, 0x65, 0x72, 0x49, 0x44, 0x52, 0x08, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x64, 0x12,
- 0x1d, 0x0a, 0x0a, 0x62, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x0a, 0x20,
- 0x01, 0x28, 0x03, 0x52, 0x09, 0x62, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x7a, 0x65, 0x4a, 0x04,
- 0x08, 0x02, 0x10, 0x03, 0x4a, 0x04, 0x08, 0x08, 0x10, 0x09, 0x22, 0xe8, 0x01, 0x0a, 0x13, 0x41,
- 0x70, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x75, 0x69, 0x64, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18,
- 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x75, 0x75, 0x69, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12,
- 0x6c, 0x0a, 0x16, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x61, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64,
- 0x5f, 0x62, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,
- 0x37, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x41, 0x70, 0x70, 0x6c,
- 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e,
- 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68,
- 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x72, 0x6f, 0x77, 0x73, 0x41, 0x66,
- 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x1a, 0x46, 0x0a,
- 0x18, 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53,
- 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
- 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xdb, 0x01, 0x0a, 0x13, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x56,
- 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a,
- 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x6b, 0x69,
- 0x70, 0x5f, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x0b, 0x73, 0x6b, 0x69, 0x70, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x12, 0x17, 0x0a, 0x07,
- 0x64, 0x72, 0x79, 0x5f, 0x72, 0x75, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x64,
- 0x72, 0x79, 0x52, 0x75, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x04,
- 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x2c, 0x0a, 0x08, 0x76,
- 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e,
- 0x76, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
- 0x52, 0x07, 0x76, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x71, 0x6c,
- 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x71, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x73,
- 0x74, 0x72, 0x69, 0x63, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x73, 0x74, 0x72,
- 0x69, 0x63, 0x74, 0x22, 0xca, 0x02, 0x0a, 0x14, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x56, 0x53, 0x63,
- 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2c, 0x0a, 0x08,
- 0x76, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11,
- 0x2e, 0x76, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x52, 0x07, 0x76, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x6c, 0x0a, 0x15, 0x75, 0x6e,
- 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x5f, 0x76, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x5f, 0x70, 0x61, 0x72,
- 0x61, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x76, 0x74, 0x63, 0x74,
- 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x56, 0x53, 0x63, 0x68, 0x65,
- 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x55, 0x6e, 0x6b, 0x6e, 0x6f,
- 0x77, 0x6e, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x45, 0x6e,
- 0x74, 0x72, 0x79, 0x52, 0x13, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x56, 0x69, 0x6e, 0x64,
- 0x65, 0x78, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x1a, 0x71, 0x0a, 0x18, 0x55, 0x6e, 0x6b, 0x6e,
- 0x6f, 0x77, 0x6e, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x45,
+ 0x65, 0x6c, 0x6c, 0x73, 0x22, 0x78, 0x0a, 0x21, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x4b, 0x65, 0x79,
+ 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65,
+ 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x53, 0x0a, 0x16, 0x6b, 0x65, 0x79,
+ 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75,
+ 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x76, 0x73, 0x63, 0x68,
+ 0x65, 0x6d, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74,
+ 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x14, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x22, 0x9e,
+ 0x01, 0x0a, 0x18, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52,
+ 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3a, 0x0a, 0x0d, 0x72,
+ 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x76, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x52, 0x6f, 0x75,
+ 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x0c, 0x72, 0x6f, 0x75, 0x74, 0x69,
+ 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x6b, 0x69, 0x70, 0x5f,
+ 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x73,
+ 0x6b, 0x69, 0x70, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65,
+ 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
+ 0x09, 0x52, 0x0c, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x22,
+ 0x1b, 0x0a, 0x19, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52,
+ 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xb3, 0x01, 0x0a,
+ 0x1d, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x69,
+ 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x4a,
+ 0x0a, 0x13, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f,
+ 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x76, 0x73,
+ 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x69,
+ 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x11, 0x73, 0x68, 0x61, 0x72, 0x64, 0x52, 0x6f,
+ 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x6b,
+ 0x69, 0x70, 0x5f, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08,
+ 0x52, 0x0b, 0x73, 0x6b, 0x69, 0x70, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x12, 0x23, 0x0a,
+ 0x0d, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x03,
+ 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x43, 0x65, 0x6c,
+ 0x6c, 0x73, 0x22, 0x20, 0x0a, 0x1e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64,
+ 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xce, 0x02, 0x0a, 0x12, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x53, 0x63,
+ 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x71, 0x6c, 0x18, 0x03,
+ 0x20, 0x03, 0x28, 0x09, 0x52, 0x03, 0x73, 0x71, 0x6c, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x64, 0x6c,
+ 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x0b, 0x64, 0x64, 0x6c, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, 0x1b, 0x0a, 0x09,
+ 0x75, 0x75, 0x69, 0x64, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52,
+ 0x08, 0x75, 0x75, 0x69, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2b, 0x0a, 0x11, 0x6d, 0x69, 0x67,
+ 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x18, 0x06,
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43,
+ 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x12, 0x44, 0x0a, 0x15, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x72,
+ 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18,
+ 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44,
+ 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x77, 0x61, 0x69, 0x74, 0x52, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x2c, 0x0a, 0x09,
+ 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32,
+ 0x0f, 0x2e, 0x76, 0x74, 0x72, 0x70, 0x63, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x44,
+ 0x52, 0x08, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x62, 0x61,
+ 0x74, 0x63, 0x68, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
+ 0x62, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x7a, 0x65, 0x4a, 0x04, 0x08, 0x02, 0x10, 0x03, 0x4a,
+ 0x04, 0x08, 0x08, 0x10, 0x09, 0x22, 0xe8, 0x01, 0x0a, 0x13, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x53,
+ 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a,
+ 0x09, 0x75, 0x75, 0x69, 0x64, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
+ 0x52, 0x08, 0x75, 0x75, 0x69, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x6c, 0x0a, 0x16, 0x72, 0x6f,
+ 0x77, 0x73, 0x5f, 0x61, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f, 0x73,
+ 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x76, 0x74, 0x63,
+ 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x68, 0x65,
+ 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x6f, 0x77, 0x73, 0x41,
+ 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e,
+ 0x74, 0x72, 0x79, 0x52, 0x13, 0x72, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65,
+ 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x1a, 0x46, 0x0a, 0x18, 0x52, 0x6f, 0x77, 0x73,
+ 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45,
0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x3f, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x4c, 0x69, 0x73, 0x74,
- 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x23, 0x0a, 0x09, 0x50,
- 0x61, 0x72, 0x61, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61,
- 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73,
- 0x22, 0xe5, 0x01, 0x0a, 0x0d, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69,
- 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52,
- 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x23, 0x0a, 0x0d,
- 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72,
- 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65,
- 0x6e, 0x63, 0x79, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x61, 0x6c, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x70, 0x6f, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x12, 0x69, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x46, 0x72,
- 0x6f, 0x6d, 0x50, 0x6f, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65,
- 0x5f, 0x73, 0x61, 0x66, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x75, 0x70, 0x67,
- 0x72, 0x61, 0x64, 0x65, 0x53, 0x61, 0x66, 0x65, 0x22, 0xa2, 0x01, 0x0a, 0x0e, 0x42, 0x61, 0x63,
- 0x6b, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x0c, 0x74,
+ 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
+ 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
+ 0x22, 0xdb, 0x01, 0x0a, 0x13, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d,
+ 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73,
+ 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73,
+ 0x70, 0x61, 0x63, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x72, 0x65, 0x62,
+ 0x75, 0x69, 0x6c, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x73, 0x6b, 0x69, 0x70,
+ 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x72, 0x79, 0x5f, 0x72,
+ 0x75, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x64, 0x72, 0x79, 0x52, 0x75, 0x6e,
+ 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52,
+ 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x2c, 0x0a, 0x08, 0x76, 0x5f, 0x73, 0x63, 0x68, 0x65,
+ 0x6d, 0x61, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x76, 0x73, 0x63, 0x68, 0x65,
+ 0x6d, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x07, 0x76, 0x53, 0x63,
+ 0x68, 0x65, 0x6d, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x71, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x03, 0x73, 0x71, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74,
+ 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x22, 0xca,
+ 0x02, 0x0a, 0x14, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2c, 0x0a, 0x08, 0x76, 0x5f, 0x73, 0x63, 0x68,
+ 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x76, 0x73, 0x63, 0x68,
+ 0x65, 0x6d, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x07, 0x76, 0x53,
+ 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x6c, 0x0a, 0x15, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e,
+ 0x5f, 0x76, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x02,
+ 0x20, 0x03, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x56, 0x69, 0x6e,
+ 0x64, 0x65, 0x78, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13,
+ 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x50, 0x61, 0x72,
+ 0x61, 0x6d, 0x73, 0x1a, 0x71, 0x0a, 0x18, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x56, 0x69,
+ 0x6e, 0x64, 0x65, 0x78, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12,
+ 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,
+ 0x79, 0x12, 0x3f, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
+ 0x32, 0x29, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x41, 0x70, 0x70,
+ 0x6c, 0x79, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x05, 0x76, 0x61, 0x6c,
+ 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x23, 0x0a, 0x09, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x4c,
+ 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x01, 0x20,
+ 0x03, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0xe5, 0x01, 0x0a, 0x0d,
+ 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a,
+ 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77,
+ 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c,
+ 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x20, 0x0a, 0x0b,
+ 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28,
+ 0x05, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x30,
+ 0x0a, 0x14, 0x69, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x66, 0x72,
+ 0x6f, 0x6d, 0x5f, 0x70, 0x6f, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x69, 0x6e,
+ 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x46, 0x72, 0x6f, 0x6d, 0x50, 0x6f, 0x73,
+ 0x12, 0x21, 0x0a, 0x0c, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x5f, 0x73, 0x61, 0x66, 0x65,
+ 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x53,
+ 0x61, 0x66, 0x65, 0x22, 0xa2, 0x01, 0x0a, 0x0e, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74,
+ 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c,
+ 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73,
+ 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05,
+ 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61,
+ 0x72, 0x64, 0x12, 0x24, 0x0a, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
+ 0x0b, 0x32, 0x0e, 0x2e, 0x6c, 0x6f, 0x67, 0x75, 0x74, 0x69, 0x6c, 0x2e, 0x45, 0x76, 0x65, 0x6e,
+ 0x74, 0x52, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x22, 0xe2, 0x01, 0x0a, 0x12, 0x42, 0x61, 0x63,
+ 0x6b, 0x75, 0x70, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
+ 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73,
+ 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72,
+ 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61,
+ 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x50,
+ 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72,
+ 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6f, 0x6e,
+ 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x75, 0x70, 0x67, 0x72,
+ 0x61, 0x64, 0x65, 0x5f, 0x73, 0x61, 0x66, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b,
+ 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x53, 0x61, 0x66, 0x65, 0x12, 0x30, 0x0a, 0x14, 0x69,
+ 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f,
+ 0x70, 0x6f, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x69, 0x6e, 0x63, 0x72, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x46, 0x72, 0x6f, 0x6d, 0x50, 0x6f, 0x73, 0x22, 0x4e, 0x0a,
+ 0x1c, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67,
+ 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a,
+ 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75, 0x69,
+ 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x22, 0xdf, 0x01,
+ 0x0a, 0x1d, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69,
+ 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
+ 0x76, 0x0a, 0x16, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x61, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64,
+ 0x5f, 0x62, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
+ 0x41, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x61, 0x6e, 0x63,
+ 0x65, 0x6c, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66,
+ 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74,
+ 0x72, 0x79, 0x52, 0x13, 0x72, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64,
+ 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x1a, 0x46, 0x0a, 0x18, 0x52, 0x6f, 0x77, 0x73, 0x41,
+ 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e,
+ 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
+ 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22,
+ 0x9b, 0x01, 0x0a, 0x17, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74,
0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62,
0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x24, 0x0a, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c, 0x6f, 0x67, 0x75, 0x74, 0x69, 0x6c,
- 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x22, 0xe2, 0x01,
- 0x0a, 0x12, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
- 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f,
- 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61,
- 0x6c, 0x6c, 0x6f, 0x77, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x63,
- 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05,
- 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x21, 0x0a,
- 0x0c, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x5f, 0x73, 0x61, 0x66, 0x65, 0x18, 0x05, 0x20,
- 0x01, 0x28, 0x08, 0x52, 0x0b, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x53, 0x61, 0x66, 0x65,
- 0x12, 0x30, 0x0a, 0x14, 0x69, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f,
- 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x70, 0x6f, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12,
- 0x69, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x46, 0x72, 0x6f, 0x6d, 0x50,
- 0x6f, 0x73, 0x22, 0x4e, 0x0a, 0x1c, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x63, 0x68, 0x65,
- 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12,
- 0x0a, 0x04, 0x75, 0x75, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x75,
- 0x69, 0x64, 0x22, 0xdf, 0x01, 0x0a, 0x1d, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x63, 0x68,
- 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x76, 0x0a, 0x16, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x61, 0x66, 0x66,
- 0x65, 0x63, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x01,
- 0x20, 0x03, 0x28, 0x0b, 0x32, 0x41, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67,
- 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52,
- 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61,
- 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x72, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66,
- 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x1a, 0x46, 0x0a, 0x18,
- 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68,
- 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x3a, 0x02, 0x38, 0x01, 0x22, 0x9b, 0x01, 0x0a, 0x17, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x54,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x2d, 0x0a, 0x07, 0x64, 0x62, 0x5f, 0x74, 0x79, 0x70, 0x65,
+ 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x06, 0x64, 0x62,
+ 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x72, 0x79, 0x5f, 0x72, 0x75, 0x6e, 0x18,
+ 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x64, 0x72, 0x79, 0x52, 0x75, 0x6e, 0x22, 0xa6, 0x01,
+ 0x0a, 0x18, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79,
+ 0x70, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x35, 0x0a, 0x0d, 0x62, 0x65,
+ 0x66, 0x6f, 0x72, 0x65, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
+ 0x0b, 0x32, 0x10, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x52, 0x0c, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x12, 0x33, 0x0a, 0x0c, 0x61, 0x66, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x0b, 0x61, 0x66, 0x74, 0x65, 0x72,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x1e, 0x0a, 0x0b, 0x77, 0x61, 0x73, 0x5f, 0x64, 0x72,
+ 0x79, 0x5f, 0x72, 0x75, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x77, 0x61, 0x73,
+ 0x44, 0x72, 0x79, 0x52, 0x75, 0x6e, 0x22, 0xe3, 0x01, 0x0a, 0x15, 0x43, 0x68, 0x65, 0x63, 0x6b,
+ 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73,
0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74,
0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x2d, 0x0a, 0x07, 0x64, 0x62,
- 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f,
- 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70,
- 0x65, 0x52, 0x06, 0x64, 0x62, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x72, 0x79,
- 0x5f, 0x72, 0x75, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x64, 0x72, 0x79, 0x52,
- 0x75, 0x6e, 0x22, 0xa6, 0x01, 0x0a, 0x18, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
- 0x35, 0x0a, 0x0d, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x0c, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65,
- 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x33, 0x0a, 0x0c, 0x61, 0x66, 0x74, 0x65, 0x72, 0x5f,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x74,
- 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x0b,
- 0x61, 0x66, 0x74, 0x65, 0x72, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x1e, 0x0a, 0x0b, 0x77,
- 0x61, 0x73, 0x5f, 0x64, 0x72, 0x79, 0x5f, 0x72, 0x75, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x09, 0x77, 0x61, 0x73, 0x44, 0x72, 0x79, 0x52, 0x75, 0x6e, 0x22, 0xe3, 0x01, 0x0a, 0x15,
- 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f,
- 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f,
- 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69,
- 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12,
- 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x63,
- 0x6f, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65,
- 0x12, 0x36, 0x0a, 0x17, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x5f, 0x68, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x15, 0x73, 0x6b, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x65,
- 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x73, 0x12, 0x27, 0x0a, 0x10, 0x6f, 0x6b, 0x5f, 0x69,
- 0x66, 0x5f, 0x6e, 0x6f, 0x74, 0x5f, 0x65, 0x78, 0x69, 0x73, 0x74, 0x73, 0x18, 0x05, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x0d, 0x6f, 0x6b, 0x49, 0x66, 0x4e, 0x6f, 0x74, 0x45, 0x78, 0x69, 0x73, 0x74,
- 0x73, 0x22, 0x93, 0x01, 0x0a, 0x16, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74,
- 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x0c,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x3f, 0x0a, 0x05, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54,
- 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x52, 0x05, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x22, 0x4f, 0x0a, 0x1d, 0x43, 0x6c, 0x65, 0x61, 0x6e,
- 0x75, 0x70, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x22, 0xe1, 0x01, 0x0a, 0x1e, 0x43, 0x6c, 0x65,
- 0x61, 0x6e, 0x75, 0x70, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x77, 0x0a, 0x16, 0x72,
- 0x6f, 0x77, 0x73, 0x5f, 0x61, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f,
- 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x42, 0x2e, 0x76, 0x74,
- 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x53,
- 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63,
- 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
- 0x13, 0x72, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53,
- 0x68, 0x61, 0x72, 0x64, 0x1a, 0x46, 0x0a, 0x18, 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65,
- 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79,
- 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b,
- 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x50, 0x0a, 0x1e,
- 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69,
- 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a,
- 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75,
- 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x22, 0xe3,
- 0x01, 0x0a, 0x1f, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d,
- 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x12, 0x78, 0x0a, 0x16, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x61, 0x66, 0x66, 0x65, 0x63,
- 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x01, 0x20, 0x03,
- 0x28, 0x0b, 0x32, 0x43, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43,
- 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67,
- 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52,
- 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61,
- 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x72, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66,
- 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x1a, 0x46, 0x0a, 0x18,
- 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68,
- 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x3a, 0x02, 0x38, 0x01, 0x22, 0xdd, 0x02, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4b,
- 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12,
- 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
- 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x12, 0x2f, 0x0a, 0x14, 0x61, 0x6c, 0x6c, 0x6f,
- 0x77, 0x5f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x5f, 0x76, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x11, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x45, 0x6d, 0x70,
- 0x74, 0x79, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x2a, 0x0a, 0x04, 0x74, 0x79, 0x70,
- 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x16, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52,
- 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x6b, 0x65,
- 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x62, 0x61,
- 0x73, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x31, 0x0a, 0x0d, 0x73, 0x6e,
- 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52,
- 0x0c, 0x73, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x2b, 0x0a,
- 0x11, 0x64, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x64, 0x75, 0x72, 0x61, 0x62, 0x69,
- 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x26, 0x0a, 0x0f, 0x73, 0x69,
- 0x64, 0x65, 0x63, 0x61, 0x72, 0x5f, 0x64, 0x62, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x69, 0x64, 0x65, 0x63, 0x61, 0x72, 0x44, 0x62, 0x4e, 0x61,
- 0x6d, 0x65, 0x4a, 0x04, 0x08, 0x04, 0x10, 0x05, 0x4a, 0x04, 0x08, 0x05, 0x10, 0x06, 0x4a, 0x04,
- 0x08, 0x06, 0x10, 0x07, 0x22, 0x49, 0x0a, 0x16, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4b, 0x65,
- 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f,
- 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x13, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4b, 0x65, 0x79,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22,
- 0x8c, 0x01, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
- 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
- 0x63, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x4e, 0x61, 0x6d,
- 0x65, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x69, 0x6e, 0x63, 0x6c, 0x75,
- 0x64, 0x65, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x0d, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, 0xa0,
- 0x01, 0x0a, 0x13, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
- 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x08, 0x6b,
- 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x26, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12,
- 0x30, 0x0a, 0x14, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x61, 0x6c, 0x72, 0x65, 0x61, 0x64, 0x79,
- 0x5f, 0x65, 0x78, 0x69, 0x73, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x73,
- 0x68, 0x61, 0x72, 0x64, 0x41, 0x6c, 0x72, 0x65, 0x61, 0x64, 0x79, 0x45, 0x78, 0x69, 0x73, 0x74,
- 0x73, 0x22, 0x41, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x49,
- 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
- 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14,
- 0x0a, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x66,
- 0x6f, 0x72, 0x63, 0x65, 0x22, 0x18, 0x0a, 0x16, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65,
- 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2d,
- 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69,
- 0x61, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x1a, 0x0a,
- 0x18, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61,
- 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x67, 0x0a, 0x15, 0x44, 0x65, 0x6c,
- 0x65, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1c,
- 0x0a, 0x09, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x09, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x12, 0x14, 0x0a, 0x05,
- 0x66, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x66, 0x6f, 0x72,
- 0x63, 0x65, 0x22, 0x18, 0x0a, 0x16, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x9b, 0x01, 0x0a,
- 0x13, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x01,
- 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x12, 0x1c,
- 0x0a, 0x09, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x09, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x12, 0x26, 0x0a, 0x0f,
- 0x65, 0x76, 0x65, 0x6e, 0x5f, 0x69, 0x66, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x18,
- 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x65, 0x76, 0x65, 0x6e, 0x49, 0x66, 0x53, 0x65, 0x72,
- 0x76, 0x69, 0x6e, 0x67, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x05, 0x20,
- 0x01, 0x28, 0x08, 0x52, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x22, 0x16, 0x0a, 0x14, 0x44, 0x65,
- 0x6c, 0x65, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x2d, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x72, 0x76, 0x56,
- 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a,
- 0x04, 0x63, 0x65, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x65, 0x6c,
- 0x6c, 0x22, 0x1a, 0x0a, 0x18, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x72, 0x76, 0x56, 0x53,
- 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x79, 0x0a,
- 0x14, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x0e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f,
- 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70,
+ 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70,
+ 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x18, 0x03,
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x12, 0x36, 0x0a, 0x17, 0x73,
+ 0x6b, 0x69, 0x70, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x68, 0x65, 0x61, 0x72,
+ 0x74, 0x62, 0x65, 0x61, 0x74, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x15, 0x73, 0x6b,
+ 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65,
+ 0x61, 0x74, 0x73, 0x12, 0x27, 0x0a, 0x10, 0x6f, 0x6b, 0x5f, 0x69, 0x66, 0x5f, 0x6e, 0x6f, 0x74,
+ 0x5f, 0x65, 0x78, 0x69, 0x73, 0x74, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x6f,
+ 0x6b, 0x49, 0x66, 0x4e, 0x6f, 0x74, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x22, 0x93, 0x01, 0x0a,
+ 0x16, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e,
0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41,
- 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61,
- 0x73, 0x65, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x70, 0x72, 0x69,
- 0x6d, 0x61, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61, 0x6c, 0x6c, 0x6f,
- 0x77, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x22, 0x17, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x65,
- 0x74, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x22, 0x81, 0x03, 0x0a, 0x1d, 0x45, 0x6d, 0x65, 0x72, 0x67, 0x65, 0x6e, 0x63, 0x79, 0x52,
- 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12,
- 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
- 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x36, 0x0a, 0x0b, 0x6e, 0x65, 0x77, 0x5f, 0x70, 0x72, 0x69,
- 0x6d, 0x61, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70,
- 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61,
- 0x73, 0x52, 0x0a, 0x6e, 0x65, 0x77, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x3e, 0x0a,
- 0x0f, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73,
- 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0e, 0x69,
- 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x12, 0x44, 0x0a,
- 0x15, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x5f, 0x74,
- 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76,
- 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13,
- 0x77, 0x61, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x54, 0x69, 0x6d, 0x65,
- 0x6f, 0x75, 0x74, 0x12, 0x3f, 0x0a, 0x1c, 0x70, 0x72, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x63,
- 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x63, 0x65, 0x6c, 0x6c, 0x5f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74,
- 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x19, 0x70, 0x72, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x6d, 0x6f,
- 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2f, 0x0a, 0x14, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x66, 0x6f, 0x72,
- 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x18, 0x07, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x11, 0x77, 0x61, 0x69, 0x74, 0x46, 0x6f, 0x72, 0x41, 0x6c, 0x6c, 0x54, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x73, 0x22, 0xbc, 0x01, 0x0a, 0x1e, 0x45, 0x6d, 0x65, 0x72, 0x67, 0x65,
- 0x6e, 0x63, 0x79, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x40, 0x0a, 0x10, 0x70, 0x72,
- 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x03,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0f, 0x70, 0x72, 0x6f,
- 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x26, 0x0a, 0x06,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c,
- 0x6f, 0x67, 0x75, 0x74, 0x69, 0x6c, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x73, 0x22, 0xa0, 0x01, 0x0a, 0x18, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65,
- 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x41, 0x70, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61,
- 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x71,
- 0x75, 0x65, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x71, 0x75, 0x65, 0x72,
- 0x79, 0x12, 0x19, 0x0a, 0x08, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x6f, 0x77, 0x73, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x61, 0x78, 0x52, 0x6f, 0x77, 0x73, 0x12, 0x19, 0x0a, 0x08,
- 0x75, 0x73, 0x65, 0x5f, 0x70, 0x6f, 0x6f, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,
- 0x75, 0x73, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x22, 0x47, 0x0a, 0x19, 0x45, 0x78, 0x65, 0x63, 0x75,
- 0x74, 0x65, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x41, 0x70, 0x70, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x51, 0x75, 0x65,
- 0x72, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
- 0x22, 0xd3, 0x01, 0x0a, 0x18, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x46, 0x65, 0x74, 0x63,
- 0x68, 0x41, 0x73, 0x44, 0x42, 0x41, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a,
- 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x12, 0x19, 0x0a,
- 0x08, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x6f, 0x77, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x07, 0x6d, 0x61, 0x78, 0x52, 0x6f, 0x77, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x64, 0x69, 0x73, 0x61,
- 0x62, 0x6c, 0x65, 0x5f, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x0e, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x69, 0x6e, 0x6c, 0x6f, 0x67,
- 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x73, 0x63, 0x68, 0x65,
- 0x6d, 0x61, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x72, 0x65, 0x6c, 0x6f, 0x61, 0x64,
- 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x22, 0x47, 0x0a, 0x19, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74,
- 0x65, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x44, 0x42, 0x41, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x51, 0x75, 0x65, 0x72,
- 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22,
- 0xa5, 0x01, 0x0a, 0x12, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x48, 0x6f, 0x6f, 0x6b, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74,
- 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c,
- 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73,
- 0x12, 0x55, 0x0a, 0x13, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x68, 0x6f, 0x6f, 0x6b, 0x5f,
- 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x48, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x52, 0x11, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x48, 0x6f, 0x6f, 0x6b,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x5e, 0x0a, 0x13, 0x45, 0x78, 0x65, 0x63, 0x75,
- 0x74, 0x65, 0x48, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x47,
- 0x0a, 0x0b, 0x68, 0x6f, 0x6f, 0x6b, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x48,
- 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x0a, 0x68, 0x6f, 0x6f,
- 0x6b, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0xd4, 0x01, 0x0a, 0x1d, 0x45, 0x78, 0x65, 0x63,
- 0x75, 0x74, 0x65, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x44,
- 0x42, 0x41, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c,
- 0x69, 0x61, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x71, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x03, 0x73, 0x71, 0x6c, 0x12, 0x19, 0x0a, 0x08, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x6f, 0x77,
- 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x61, 0x78, 0x52, 0x6f, 0x77, 0x73,
- 0x12, 0x27, 0x0a, 0x0f, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x62, 0x69, 0x6e, 0x6c,
- 0x6f, 0x67, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x64, 0x69, 0x73, 0x61, 0x62,
- 0x6c, 0x65, 0x42, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x6c,
- 0x6f, 0x61, 0x64, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x0c, 0x72, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x22, 0x4e,
- 0x0a, 0x1e, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x65,
- 0x74, 0x63, 0x68, 0x41, 0x73, 0x44, 0x42, 0x41, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x12, 0x2c, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
- 0x0b, 0x32, 0x12, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
- 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x3c,
- 0x0a, 0x1e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x49,
- 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0xbe, 0x01, 0x0a,
- 0x1f, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x49, 0x6e,
- 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x12, 0x4e, 0x0a, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
- 0x32, 0x36, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46, 0x69, 0x6e,
- 0x64, 0x41, 0x6c, 0x6c, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x49, 0x6e, 0x4b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x68, 0x61,
- 0x72, 0x64, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73,
- 0x1a, 0x4b, 0x0a, 0x0b, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12,
- 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,
- 0x79, 0x12, 0x26, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x10, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61,
- 0x72, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x54, 0x0a,
- 0x22, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x43, 0x75, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x63, 0x68,
- 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75,
+ 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61,
+ 0x73, 0x12, 0x3f, 0x0a, 0x05, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
+ 0x32, 0x29, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74,
+ 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05, 0x43, 0x68, 0x65,
+ 0x63, 0x6b, 0x22, 0x4f, 0x0a, 0x1d, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x53, 0x63, 0x68,
+ 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18,
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12,
0x12, 0x0a, 0x04, 0x75, 0x75, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75,
- 0x75, 0x69, 0x64, 0x22, 0xeb, 0x01, 0x0a, 0x23, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x43, 0x75, 0x74,
- 0x4f, 0x76, 0x65, 0x72, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x7c, 0x0a, 0x16, 0x72,
- 0x6f, 0x77, 0x73, 0x5f, 0x61, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f,
- 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x47, 0x2e, 0x76, 0x74,
- 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x43, 0x75, 0x74,
- 0x4f, 0x76, 0x65, 0x72, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x6f, 0x77, 0x73,
- 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45,
- 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x72, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74,
- 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x1a, 0x46, 0x0a, 0x18, 0x52, 0x6f, 0x77,
- 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64,
- 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
- 0x01, 0x22, 0x9e, 0x01, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x73,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d,
- 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12,
- 0x1a, 0x0a, 0x08, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x08, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x64,
- 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x05, 0x20,
- 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x4c, 0x69, 0x6d,
- 0x69, 0x74, 0x22, 0x44, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x73,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2e, 0x0a, 0x07, 0x62, 0x61, 0x63, 0x6b,
- 0x75, 0x70, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x79, 0x73, 0x71,
- 0x6c, 0x63, 0x74, 0x6c, 0x2e, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52,
- 0x07, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x73, 0x22, 0x28, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x43,
- 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12,
- 0x0a, 0x04, 0x63, 0x65, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x65,
- 0x6c, 0x6c, 0x22, 0x46, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66,
- 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f, 0x0a, 0x09, 0x63, 0x65, 0x6c,
- 0x6c, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74,
- 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f,
- 0x52, 0x08, 0x63, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x0a, 0x17, 0x47, 0x65,
- 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x30, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c,
- 0x49, 0x6e, 0x66, 0x6f, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x22, 0x18, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x43, 0x65,
- 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x22, 0xb6, 0x01, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c,
- 0x69, 0x61, 0x73, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x49, 0x0a,
- 0x07, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f,
- 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x65,
- 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x2e, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
- 0x07, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x1a, 0x50, 0x0a, 0x0c, 0x41, 0x6c, 0x69, 0x61,
- 0x73, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2a, 0x0a, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52,
- 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x50, 0x0a, 0x14, 0x47, 0x65,
- 0x74, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69,
- 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52,
- 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x4c, 0x0a, 0x15,
- 0x47, 0x65, 0x74, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74,
- 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x15, 0x0a, 0x13, 0x47, 0x65,
- 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x22, 0x49, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
- 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x31, 0x0a, 0x09, 0x6b, 0x65, 0x79,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x76,
- 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x52, 0x09, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x22, 0x30, 0x0a, 0x12,
- 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x46,
- 0x0a, 0x13, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x08, 0x6b, 0x65,
- 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x51, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72,
- 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x5a, 0x0a, 0x16, 0x47, 0x65, 0x74,
- 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x0b, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50, 0x65, 0x72,
- 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73,
- 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x20, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x76, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4b, 0x65,
- 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c,
- 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x53, 0x0a, 0x16, 0x6b, 0x65,
- 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72,
- 0x75, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x76, 0x73, 0x63,
- 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75,
- 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x14, 0x6b, 0x65, 0x79, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x22,
- 0x18, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c,
- 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x55, 0x0a, 0x17, 0x47, 0x65, 0x74,
- 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3a, 0x0a, 0x0d, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f,
- 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x76, 0x73,
- 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c,
- 0x65, 0x73, 0x52, 0x0c, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73,
- 0x22, 0xb0, 0x02, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f,
- 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f,
- 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69,
- 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12,
- 0x16, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52,
- 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x78, 0x63, 0x6c, 0x75,
- 0x64, 0x65, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52,
- 0x0d, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x23,
- 0x0a, 0x0d, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x73, 0x18,
- 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x56, 0x69,
- 0x65, 0x77, 0x73, 0x12, 0x28, 0x0a, 0x10, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6e, 0x61, 0x6d,
- 0x65, 0x73, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x28, 0x0a,
- 0x10, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x73, 0x5f, 0x6f, 0x6e, 0x6c,
- 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x69,
- 0x7a, 0x65, 0x73, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x11, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x07, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x0f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4f,
- 0x6e, 0x6c, 0x79, 0x22, 0x50, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3b, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x65,
- 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x63, 0x68,
- 0x65, 0x6d, 0x61, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x73,
- 0x63, 0x68, 0x65, 0x6d, 0x61, 0x22, 0xb8, 0x02, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68,
- 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
- 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
- 0x75, 0x75, 0x69, 0x64, 0x12, 0x2b, 0x0a, 0x11, 0x6d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x10, 0x6d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78,
- 0x74, 0x12, 0x39, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x0e, 0x32, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x63,
- 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x28, 0x0a, 0x06,
- 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76,
- 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06,
- 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x12, 0x2e, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18,
- 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x18, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x52,
- 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18,
- 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x12, 0x0a, 0x04,
- 0x73, 0x6b, 0x69, 0x70, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x73, 0x6b, 0x69, 0x70,
- 0x22, 0x59, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67,
- 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
- 0x3a, 0x0a, 0x0a, 0x6d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20,
- 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
- 0x0a, 0x6d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x64, 0x0a, 0x1a, 0x47,
- 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
+ 0x75, 0x69, 0x64, 0x22, 0xe1, 0x01, 0x0a, 0x1e, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x53,
+ 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x77, 0x0a, 0x16, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x61,
+ 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64,
+ 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x42, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
+ 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x2e, 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79,
+ 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x72, 0x6f, 0x77, 0x73,
+ 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x1a,
+ 0x46, 0x0a, 0x18, 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42,
+ 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,
+ 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a,
+ 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, 0x61,
+ 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x50, 0x0a, 0x1e, 0x43, 0x6f, 0x6d, 0x70, 0x6c,
+ 0x65, 0x74, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79,
0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x63,
- 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c,
- 0x73, 0x22, 0x83, 0x02, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x12, 0x7d, 0x0a, 0x19, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x65, 0x6c, 0x6c, 0x18, 0x01,
- 0x20, 0x03, 0x28, 0x0b, 0x32, 0x42, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x68, 0x61,
- 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x43,
- 0x65, 0x6c, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x16, 0x73, 0x68, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x43, 0x65, 0x6c, 0x6c,
- 0x1a, 0x65, 0x0a, 0x1b, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x43, 0x65, 0x6c, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12,
- 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,
- 0x79, 0x12, 0x30, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x1a, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x4c, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x68,
- 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65,
- 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65,
- 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f,
- 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x68, 0x61, 0x72,
- 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x3a, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x26, 0x0a, 0x05, 0x73, 0x68, 0x61,
- 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72,
- 0x64, 0x22, 0x1d, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x6f, 0x75,
- 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x22, 0x6a, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x6f, 0x75, 0x74,
- 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x12, 0x4a, 0x0a, 0x13, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e,
- 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
- 0x76, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x6f, 0x75,
- 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x11, 0x73, 0x68, 0x61, 0x72, 0x64,
- 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x22, 0x32, 0x0a, 0x1a,
- 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x4e, 0x61,
- 0x6d, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65,
- 0x6c, 0x6c, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73,
- 0x22, 0xf3, 0x01, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x12, 0x47, 0x0a, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
- 0x31, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53,
- 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x45, 0x6e, 0x74,
- 0x72, 0x79, 0x52, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x1a, 0x69, 0x0a, 0x0a, 0x4e, 0x61, 0x6d,
- 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x45, 0x0a, 0x05, 0x76, 0x61, 0x6c,
- 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x2e, 0x4e, 0x61, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x20, 0x0a, 0x08, 0x4e, 0x61, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74,
- 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52,
- 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x22, 0x4a, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76,
- 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05,
- 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c,
- 0x6c, 0x73, 0x22, 0xcc, 0x01, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59,
- 0x0a, 0x0d, 0x73, 0x72, 0x76, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x18,
- 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
- 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0c, 0x73, 0x72, 0x76,
- 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x1a, 0x56, 0x0a, 0x11, 0x53, 0x72, 0x76,
- 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
- 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
- 0x12, 0x2b, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x72, 0x76, 0x4b, 0x65,
- 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
- 0x01, 0x22, 0xe4, 0x03, 0x0a, 0x1c, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x68, 0x72, 0x6f,
- 0x74, 0x74, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x16,
- 0x0a, 0x06, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06,
- 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c,
- 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65,
- 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x18, 0x04, 0x20,
- 0x01, 0x28, 0x01, 0x52, 0x09, 0x74, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x12, 0x21,
- 0x0a, 0x0c, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x05,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x51, 0x75, 0x65, 0x72,
- 0x79, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x71, 0x75, 0x65, 0x72,
- 0x79, 0x5f, 0x73, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x63, 0x75, 0x73,
- 0x74, 0x6f, 0x6d, 0x51, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x74, 0x12, 0x2d, 0x0a, 0x13, 0x63,
- 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x61, 0x73, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x73, 0x65,
- 0x6c, 0x66, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x41,
- 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x65, 0x6c, 0x66, 0x12, 0x2f, 0x0a, 0x14, 0x63, 0x68,
- 0x65, 0x63, 0x6b, 0x5f, 0x61, 0x73, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x73, 0x68, 0x61,
- 0x72, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x11, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x41,
- 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x3f, 0x0a, 0x0d, 0x74,
- 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x5f, 0x61, 0x70, 0x70, 0x18, 0x09, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x68,
- 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x41, 0x70, 0x70, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x0c,
- 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x41, 0x70, 0x70, 0x12, 0x1f, 0x0a, 0x0b,
- 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x0a, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a,
- 0x08, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2e, 0x0a, 0x13, 0x61, 0x70, 0x70, 0x5f,
- 0x63, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x18,
- 0x0c, 0x20, 0x03, 0x28, 0x09, 0x52, 0x11, 0x61, 0x70, 0x70, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x65,
- 0x64, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x22, 0x1f, 0x0a, 0x1d, 0x55, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2a, 0x0a, 0x14, 0x47, 0x65, 0x74,
- 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x65, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x04, 0x63, 0x65, 0x6c, 0x6c, 0x22, 0x4e, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x56,
- 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x35,
- 0x0a, 0x0c, 0x73, 0x72, 0x76, 0x5f, 0x76, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x76, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x53,
- 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x0a, 0x73, 0x72, 0x76, 0x56, 0x53,
- 0x63, 0x68, 0x65, 0x6d, 0x61, 0x22, 0x2d, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x56,
- 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14,
- 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63,
- 0x65, 0x6c, 0x6c, 0x73, 0x22, 0xc5, 0x01, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x56,
- 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
- 0x56, 0x0a, 0x0d, 0x73, 0x72, 0x76, 0x5f, 0x76, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x73,
- 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
- 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63,
- 0x68, 0x65, 0x6d, 0x61, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0b, 0x73, 0x72, 0x76, 0x56,
- 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x73, 0x1a, 0x53, 0x0a, 0x10, 0x53, 0x72, 0x76, 0x56, 0x53,
- 0x63, 0x68, 0x65, 0x6d, 0x61, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,
- 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x29, 0x0a,
- 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x76,
- 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d,
- 0x61, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x4c, 0x0a, 0x10,
- 0x47, 0x65, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x3d, 0x0a, 0x11, 0x47, 0x65,
- 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
- 0x28, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x10, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x22, 0xe8, 0x01, 0x0a, 0x11, 0x47, 0x65,
- 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73,
- 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72,
- 0x64, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x72, 0x69, 0x63,
- 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x12,
- 0x3c, 0x0a, 0x0e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65,
- 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0d,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x12, 0x35, 0x0a,
- 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0a, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x54, 0x79, 0x70, 0x65, 0x22, 0x40, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x07, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x74, 0x6f,
- 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x07, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x22, 0x55, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72,
- 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c,
- 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73,
- 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x63, 0x0a,
- 0x1a, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x45, 0x0a, 0x06, 0x73,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74,
- 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74,
- 0x75, 0x73, 0x22, 0x5f, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x70, 0x6f, 0x6c, 0x6f, 0x67,
- 0x79, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04,
- 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68,
- 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x03, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x17, 0x0a, 0x07, 0x61, 0x73,
- 0x5f, 0x6a, 0x73, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x61, 0x73, 0x4a,
- 0x73, 0x6f, 0x6e, 0x22, 0x46, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x70, 0x6f, 0x6c, 0x6f,
- 0x67, 0x79, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b,
- 0x0a, 0x04, 0x63, 0x65, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x76,
- 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x6f, 0x70, 0x6f, 0x6c, 0x6f, 0x67,
- 0x79, 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x04, 0x63, 0x65, 0x6c, 0x6c, 0x22, 0x80, 0x01, 0x0a, 0x0c,
- 0x54, 0x6f, 0x70, 0x6f, 0x6c, 0x6f, 0x67, 0x79, 0x43, 0x65, 0x6c, 0x6c, 0x12, 0x12, 0x0a, 0x04,
- 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
- 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
- 0x70, 0x61, 0x74, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x68, 0x69, 0x6c,
- 0x64, 0x72, 0x65, 0x6e, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x63, 0x68, 0x69, 0x6c,
- 0x64, 0x72, 0x65, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18,
- 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x3e,
- 0x0a, 0x20, 0x47, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x64, 0x54,
- 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x63,
- 0x0a, 0x21, 0x47, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x64, 0x54,
- 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x12, 0x3e, 0x0a, 0x0c, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x71, 0x75, 0x65, 0x72,
- 0x79, 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x74,
- 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x0c, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x22, 0x2f, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d,
- 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x22, 0x4d, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c,
- 0x69, 0x61, 0x73, 0x22, 0x2e, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f,
- 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72,
- 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x22, 0x42, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d,
- 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2c, 0x0a, 0x08, 0x76, 0x5f, 0x73,
- 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x76, 0x73,
- 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x07,
- 0x76, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x22, 0xc6, 0x01, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x57,
- 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x61,
- 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x1b, 0x0a, 0x09,
- 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x08, 0x6e, 0x61, 0x6d, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72,
- 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72,
- 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x21, 0x0a, 0x0c, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65,
- 0x5f, 0x6c, 0x6f, 0x67, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x6e, 0x63,
- 0x6c, 0x75, 0x64, 0x65, 0x4c, 0x6f, 0x67, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x61, 0x72,
- 0x64, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73,
- 0x22, 0x49, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x31, 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x6b,
- 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x76, 0x74,
- 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
- 0x52, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x22, 0xfb, 0x01, 0x0a, 0x17,
- 0x49, 0x6e, 0x69, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x52, 0x0a, 0x1a, 0x70, 0x72, 0x69,
- 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e,
- 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41,
- 0x6c, 0x69, 0x61, 0x73, 0x52, 0x17, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x45, 0x6c, 0x65,
- 0x63, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x14, 0x0a,
- 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x66, 0x6f,
- 0x72, 0x63, 0x65, 0x12, 0x44, 0x0a, 0x15, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x72, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x73, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x05, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x77, 0x61, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x22, 0x42, 0x0a, 0x18, 0x49, 0x6e, 0x69,
- 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x26, 0x0a, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x18,
- 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c, 0x6f, 0x67, 0x75, 0x74, 0x69, 0x6c, 0x2e,
- 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x22, 0x4e, 0x0a,
- 0x1c, 0x4c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67,
- 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a,
- 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75, 0x69,
- 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x22, 0xdf, 0x01,
- 0x0a, 0x1d, 0x4c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69,
- 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
- 0x76, 0x0a, 0x16, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x61, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64,
- 0x5f, 0x62, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
- 0x41, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4c, 0x61, 0x75, 0x6e,
- 0x63, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f,
+ 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75, 0x69, 0x64, 0x18, 0x02, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x22, 0xe3, 0x01, 0x0a, 0x1f, 0x43, 0x6f,
+ 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x78, 0x0a,
+ 0x16, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x61, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x5f, 0x62,
+ 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x43, 0x2e,
+ 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65,
+ 0x74, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66,
0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74,
0x72, 0x79, 0x52, 0x13, 0x72, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64,
@@ -18065,149 +17547,704 @@ var file_vtctldata_proto_rawDesc = []byte{
0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22,
- 0xff, 0x02, 0x0a, 0x19, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78,
- 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a,
- 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72,
- 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72,
- 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x03,
- 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x29, 0x0a, 0x06, 0x76,
- 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x76, 0x73,
- 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x06,
- 0x76, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x12, 0x42, 0x0a, 0x1e, 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x6e,
- 0x75, 0x65, 0x5f, 0x61, 0x66, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x77, 0x69,
- 0x74, 0x68, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x1a,
- 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x6e, 0x75, 0x65, 0x41, 0x66, 0x74, 0x65, 0x72, 0x43, 0x6f, 0x70,
- 0x79, 0x57, 0x69, 0x74, 0x68, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0e,
- 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79,
- 0x70, 0x65, 0x73, 0x12, 0x6c, 0x0a, 0x1b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65,
- 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e,
- 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66,
- 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x19, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65,
- 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63,
- 0x65, 0x22, 0x1c, 0x0a, 0x1a, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x69, 0x6e, 0x64, 0x65,
- 0x78, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
- 0x77, 0x0a, 0x1e, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x45,
- 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0xdd, 0x02, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
+ 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a,
+ 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x66, 0x6f,
+ 0x72, 0x63, 0x65, 0x12, 0x2f, 0x0a, 0x14, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x65, 0x6d, 0x70,
+ 0x74, 0x79, 0x5f, 0x76, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28,
+ 0x08, 0x52, 0x11, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x56, 0x53, 0x63,
+ 0x68, 0x65, 0x6d, 0x61, 0x12, 0x2a, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01,
+ 0x28, 0x0e, 0x32, 0x16, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4b, 0x65,
+ 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,
+ 0x12, 0x23, 0x0a, 0x0d, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x62, 0x61, 0x73, 0x65, 0x4b, 0x65, 0x79,
+ 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x31, 0x0a, 0x0d, 0x73, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f,
+ 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76,
+ 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x0c, 0x73, 0x6e, 0x61, 0x70,
+ 0x73, 0x68, 0x6f, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x64, 0x75, 0x72, 0x61,
+ 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x18, 0x0a, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x10, 0x64, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x50,
+ 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x26, 0x0a, 0x0f, 0x73, 0x69, 0x64, 0x65, 0x63, 0x61, 0x72,
+ 0x5f, 0x64, 0x62, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d,
+ 0x73, 0x69, 0x64, 0x65, 0x63, 0x61, 0x72, 0x44, 0x62, 0x4e, 0x61, 0x6d, 0x65, 0x4a, 0x04, 0x08,
+ 0x04, 0x10, 0x05, 0x4a, 0x04, 0x08, 0x05, 0x10, 0x06, 0x4a, 0x04, 0x08, 0x06, 0x10, 0x07, 0x22,
+ 0x49, 0x0a, 0x16, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f, 0x0a, 0x08, 0x6b, 0x65, 0x79,
+ 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x76, 0x74,
+ 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x8c, 0x01, 0x0a, 0x12, 0x43,
+ 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a,
- 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
- 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x4c, 0x0a, 0x1f, 0x4c, 0x6f, 0x6f, 0x6b,
- 0x75, 0x70, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
- 0x69, 0x7a, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x77,
- 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44,
- 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x22, 0x56, 0x0a, 0x18, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69,
- 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x3a, 0x0a, 0x08, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x53, 0x65, 0x74, 0x74,
- 0x69, 0x6e, 0x67, 0x73, 0x52, 0x08, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x22, 0x1b,
- 0x0a, 0x19, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x43, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xdd, 0x05, 0x0a, 0x14,
- 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
- 0x12, 0x27, 0x0a, 0x0f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63,
- 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x74, 0x61, 0x72,
- 0x67, 0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
- 0x63, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d,
- 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x14, 0x2e,
+ 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1d, 0x0a,
+ 0x0a, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05,
+ 0x66, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x66, 0x6f, 0x72,
+ 0x63, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x70, 0x61,
+ 0x72, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x69, 0x6e, 0x63, 0x6c,
+ 0x75, 0x64, 0x65, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, 0xa0, 0x01, 0x0a, 0x13, 0x43, 0x72,
+ 0x65, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x12, 0x2f, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x63, 0x65, 0x12, 0x26, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
+ 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68,
+ 0x61, 0x72, 0x64, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x30, 0x0a, 0x14, 0x73, 0x68,
+ 0x61, 0x72, 0x64, 0x5f, 0x61, 0x6c, 0x72, 0x65, 0x61, 0x64, 0x79, 0x5f, 0x65, 0x78, 0x69, 0x73,
+ 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x73, 0x68, 0x61, 0x72, 0x64, 0x41,
+ 0x6c, 0x72, 0x65, 0x61, 0x64, 0x79, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x22, 0x41, 0x0a, 0x15,
+ 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x6f, 0x72,
+ 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x22,
+ 0x18, 0x0a, 0x16, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66,
+ 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2d, 0x0a, 0x17, 0x44, 0x65, 0x6c,
+ 0x65, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x1a, 0x0a, 0x18, 0x44, 0x65, 0x6c, 0x65,
+ 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x67, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4b, 0x65,
+ 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a,
+ 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x63,
+ 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x72, 0x65,
+ 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65,
+ 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x22, 0x18, 0x0a,
+ 0x16, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x9b, 0x01, 0x0a, 0x13, 0x44, 0x65, 0x6c, 0x65,
+ 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
+ 0x28, 0x0a, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
+ 0x10, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72,
+ 0x64, 0x52, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x63,
+ 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x72, 0x65,
+ 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x12, 0x26, 0x0a, 0x0f, 0x65, 0x76, 0x65, 0x6e, 0x5f,
+ 0x69, 0x66, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08,
+ 0x52, 0x0d, 0x65, 0x76, 0x65, 0x6e, 0x49, 0x66, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x12,
+ 0x14, 0x0a, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05,
+ 0x66, 0x6f, 0x72, 0x63, 0x65, 0x22, 0x16, 0x0a, 0x14, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53,
+ 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2d, 0x0a,
+ 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d,
+ 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x65, 0x6c, 0x6c,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x65, 0x6c, 0x6c, 0x22, 0x1a, 0x0a, 0x18,
+ 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x79, 0x0a, 0x14, 0x44, 0x65, 0x6c, 0x65,
+ 0x74, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x12, 0x3c, 0x0a, 0x0e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73,
+ 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52,
+ 0x0d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x12, 0x23,
+ 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18,
+ 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x50, 0x72, 0x69, 0x6d,
+ 0x61, 0x72, 0x79, 0x22, 0x17, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x81, 0x03, 0x0a,
+ 0x1d, 0x45, 0x6d, 0x65, 0x72, 0x67, 0x65, 0x6e, 0x63, 0x79, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65,
+ 0x6e, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a,
+ 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68,
+ 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64,
+ 0x12, 0x36, 0x0a, 0x0b, 0x6e, 0x65, 0x77, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18,
+ 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0a, 0x6e, 0x65,
+ 0x77, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x3e, 0x0a, 0x0f, 0x69, 0x67, 0x6e, 0x6f,
+ 0x72, 0x65, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28,
+ 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0e, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65,
+ 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x12, 0x44, 0x0a, 0x15, 0x77, 0x61, 0x69, 0x74,
+ 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75,
+ 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65,
+ 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x77, 0x61, 0x69, 0x74, 0x52,
+ 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x3f,
+ 0x0a, 0x1c, 0x70, 0x72, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f,
+ 0x63, 0x65, 0x6c, 0x6c, 0x5f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06,
+ 0x20, 0x01, 0x28, 0x08, 0x52, 0x19, 0x70, 0x72, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x43, 0x72, 0x6f,
+ 0x73, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x12,
+ 0x2f, 0x0a, 0x14, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x5f, 0x61, 0x6c, 0x6c, 0x5f,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x11, 0x77,
+ 0x61, 0x69, 0x74, 0x46, 0x6f, 0x72, 0x41, 0x6c, 0x6c, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73,
+ 0x22, 0xbc, 0x01, 0x0a, 0x1e, 0x45, 0x6d, 0x65, 0x72, 0x67, 0x65, 0x6e, 0x63, 0x79, 0x52, 0x65,
+ 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12,
+ 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
+ 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x40, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65,
+ 0x64, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
+ 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64,
+ 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x26, 0x0a, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c, 0x6f, 0x67, 0x75, 0x74, 0x69,
+ 0x6c, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x22,
+ 0xa0, 0x01, 0x0a, 0x18, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x46, 0x65, 0x74, 0x63, 0x68,
+ 0x41, 0x73, 0x41, 0x70, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18,
+ 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x12, 0x19, 0x0a, 0x08,
+ 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x6f, 0x77, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07,
+ 0x6d, 0x61, 0x78, 0x52, 0x6f, 0x77, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x5f, 0x70,
+ 0x6f, 0x6f, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x75, 0x73, 0x65, 0x50, 0x6f,
+ 0x6f, 0x6c, 0x22, 0x47, 0x0a, 0x19, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x46, 0x65, 0x74,
+ 0x63, 0x68, 0x41, 0x73, 0x41, 0x70, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
+ 0x2a, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
+ 0x12, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73,
+ 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0xd3, 0x01, 0x0a, 0x18,
+ 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x44, 0x42,
+ 0x41, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15,
+ 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69,
+ 0x61, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x12, 0x19, 0x0a, 0x08, 0x6d, 0x61, 0x78, 0x5f,
+ 0x72, 0x6f, 0x77, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x61, 0x78, 0x52,
+ 0x6f, 0x77, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x62,
+ 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x64, 0x69,
+ 0x73, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x73, 0x12, 0x23, 0x0a, 0x0d,
+ 0x72, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x05, 0x20,
+ 0x01, 0x28, 0x08, 0x52, 0x0c, 0x72, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d,
+ 0x61, 0x22, 0x47, 0x0a, 0x19, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x46, 0x65, 0x74, 0x63,
+ 0x68, 0x41, 0x73, 0x44, 0x42, 0x41, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a,
+ 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12,
+ 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75,
+ 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0xa5, 0x01, 0x0a, 0x12, 0x45,
+ 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x48, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61,
+ 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x55, 0x0a, 0x13, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x68, 0x6f, 0x6f, 0x6b, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x78, 0x65,
+ 0x63, 0x75, 0x74, 0x65, 0x48, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52,
+ 0x11, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x48, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x22, 0x5e, 0x0a, 0x13, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x48, 0x6f, 0x6f,
+ 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x47, 0x0a, 0x0b, 0x68, 0x6f, 0x6f,
+ 0x6b, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26,
+ 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x48, 0x6f, 0x6f, 0x6b, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x0a, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x73, 0x75,
+ 0x6c, 0x74, 0x22, 0xd4, 0x01, 0x0a, 0x1d, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x4d, 0x75,
+ 0x6c, 0x74, 0x69, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x44, 0x42, 0x41, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61,
+ 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70,
+ 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61,
+ 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x10,
+ 0x0a, 0x03, 0x73, 0x71, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x71, 0x6c,
+ 0x12, 0x19, 0x0a, 0x08, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x6f, 0x77, 0x73, 0x18, 0x03, 0x20, 0x01,
+ 0x28, 0x03, 0x52, 0x07, 0x6d, 0x61, 0x78, 0x52, 0x6f, 0x77, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x64,
+ 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x73, 0x18, 0x04,
+ 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x69, 0x6e,
+ 0x6c, 0x6f, 0x67, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x73,
+ 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x72, 0x65, 0x6c,
+ 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x22, 0x4e, 0x0a, 0x1e, 0x45, 0x78, 0x65,
+ 0x63, 0x75, 0x74, 0x65, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73,
+ 0x44, 0x42, 0x41, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2c, 0x0a, 0x07, 0x72,
+ 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x71,
+ 0x75, 0x65, 0x72, 0x79, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74,
+ 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x3c, 0x0a, 0x1e, 0x46, 0x69, 0x6e,
+ 0x64, 0x41, 0x6c, 0x6c, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x49, 0x6e, 0x4b, 0x65, 0x79, 0x73,
+ 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0xbe, 0x01, 0x0a, 0x1f, 0x46, 0x69, 0x6e, 0x64,
+ 0x41, 0x6c, 0x6c, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x49, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4e, 0x0a, 0x06, 0x73,
+ 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x76, 0x74,
+ 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x53,
+ 0x68, 0x61, 0x72, 0x64, 0x73, 0x49, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x45, 0x6e,
+ 0x74, 0x72, 0x79, 0x52, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x1a, 0x4b, 0x0a, 0x0b, 0x53,
+ 0x68, 0x61, 0x72, 0x64, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
+ 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x26, 0x0a, 0x05,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74,
+ 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x05, 0x76,
+ 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x54, 0x0a, 0x22, 0x46, 0x6f, 0x72, 0x63,
+ 0x65, 0x43, 0x75, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69,
+ 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a,
+ 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75,
+ 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x22, 0xeb,
+ 0x01, 0x0a, 0x23, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x43, 0x75, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x53,
+ 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x7c, 0x0a, 0x16, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x61,
+ 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64,
+ 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x47, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x43, 0x75, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x53,
+ 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63,
+ 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
+ 0x13, 0x72, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53,
+ 0x68, 0x61, 0x72, 0x64, 0x1a, 0x46, 0x0a, 0x18, 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65,
+ 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79,
+ 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b,
+ 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
+ 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x9e, 0x01, 0x0a,
+ 0x11, 0x47, 0x65, 0x74, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14,
+ 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73,
+ 0x68, 0x61, 0x72, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20,
+ 0x01, 0x28, 0x0d, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x65,
+ 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x64, 0x65,
+ 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c,
+ 0x65, 0x64, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d,
+ 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0x44, 0x0a,
+ 0x12, 0x47, 0x65, 0x74, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x12, 0x2e, 0x0a, 0x07, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x73, 0x18, 0x01,
+ 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x79, 0x73, 0x71, 0x6c, 0x63, 0x74, 0x6c, 0x2e,
+ 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x62, 0x61, 0x63, 0x6b,
+ 0x75, 0x70, 0x73, 0x22, 0x28, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e,
+ 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x65, 0x6c,
+ 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x65, 0x6c, 0x6c, 0x22, 0x46, 0x0a,
+ 0x13, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f, 0x0a, 0x09, 0x63, 0x65, 0x6c, 0x6c, 0x5f, 0x69, 0x6e, 0x66,
+ 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x63, 0x65, 0x6c,
+ 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c,
+ 0x49, 0x6e, 0x66, 0x6f, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x22, 0x30, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x4e,
+ 0x61, 0x6d, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05,
+ 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x6e, 0x61, 0x6d,
+ 0x65, 0x73, 0x22, 0x18, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c,
+ 0x69, 0x61, 0x73, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0xb6, 0x01, 0x0a,
+ 0x17, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x49, 0x0a, 0x07, 0x61, 0x6c, 0x69, 0x61,
+ 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x76, 0x74, 0x63, 0x74,
+ 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c,
+ 0x69, 0x61, 0x73, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x41, 0x6c,
+ 0x69, 0x61, 0x73, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x61, 0x6c, 0x69, 0x61,
+ 0x73, 0x65, 0x73, 0x1a, 0x50, 0x0a, 0x0c, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x45, 0x6e,
+ 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2a, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
+ 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x50, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x46, 0x75, 0x6c, 0x6c,
+ 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a,
+ 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x4c, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x46, 0x75,
+ 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x12, 0x33, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
+ 0x32, 0x1b, 0x2e, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73,
+ 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x15, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73,
+ 0x70, 0x61, 0x63, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x49, 0x0a, 0x14,
+ 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x31, 0x0a, 0x09, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x09, 0x6b, 0x65,
+ 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x22, 0x30, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x4b, 0x65,
+ 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a,
+ 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x46, 0x0a, 0x13, 0x47, 0x65, 0x74,
+ 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x12, 0x2f, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x22, 0x51, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69,
+ 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
+ 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41,
+ 0x6c, 0x69, 0x61, 0x73, 0x22, 0x5a, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x6d, 0x69,
+ 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40,
+ 0x0a, 0x0b, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61,
+ 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69,
+ 0x6f, 0x6e, 0x73, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73,
+ 0x22, 0x20, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52,
+ 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x22, 0x76, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x53, 0x0a, 0x16, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x76, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e,
+ 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52,
+ 0x75, 0x6c, 0x65, 0x73, 0x52, 0x14, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f,
+ 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x22, 0x18, 0x0a, 0x16, 0x47, 0x65,
+ 0x74, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x22, 0x55, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x75, 0x74, 0x69,
+ 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
+ 0x3a, 0x0a, 0x0d, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x76, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61,
+ 0x2e, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x0c, 0x72,
+ 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x22, 0xb0, 0x02, 0x0a, 0x10,
+ 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x78, 0x63, 0x6c,
+ 0x75, 0x64, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x69, 0x6e, 0x63,
+ 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08,
+ 0x52, 0x0c, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x56, 0x69, 0x65, 0x77, 0x73, 0x12, 0x28,
+ 0x0a, 0x10, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x5f, 0x6f, 0x6e,
+ 0x6c, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x4e,
+ 0x61, 0x6d, 0x65, 0x73, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x28, 0x0a, 0x10, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x73, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x06, 0x20, 0x01,
+ 0x28, 0x08, 0x52, 0x0e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x73, 0x4f, 0x6e,
+ 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x11, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x63, 0x68, 0x65,
+ 0x6d, 0x61, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0x50,
+ 0x0a, 0x11, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x12, 0x3b, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61,
+ 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x44, 0x65,
+ 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61,
+ 0x22, 0xb8, 0x02, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69,
+ 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
+ 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75,
+ 0x75, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x12,
+ 0x2b, 0x0a, 0x11, 0x6d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x6e,
+ 0x74, 0x65, 0x78, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6d, 0x69, 0x67, 0x72,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x12, 0x39, 0x0a, 0x06,
+ 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x76,
+ 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d,
+ 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
+ 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x28, 0x0a, 0x06, 0x72, 0x65, 0x63, 0x65, 0x6e,
+ 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65,
+ 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x72, 0x65, 0x63, 0x65, 0x6e,
+ 0x74, 0x12, 0x2e, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e,
+ 0x32, 0x18, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x51, 0x75, 0x65,
+ 0x72, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65,
+ 0x72, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04,
+ 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x6b, 0x69, 0x70, 0x18,
+ 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x73, 0x6b, 0x69, 0x70, 0x22, 0x59, 0x0a, 0x1b, 0x47,
+ 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3a, 0x0a, 0x0a, 0x6d, 0x69,
+ 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x6d,
+ 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0a, 0x6d, 0x69, 0x67, 0x72,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x64, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61,
+ 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18,
+ 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x22, 0x83, 0x02, 0x0a,
+ 0x1b, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x7d, 0x0a, 0x19,
+ 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x65, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
+ 0x42, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53,
+ 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x43, 0x65, 0x6c, 0x6c, 0x45, 0x6e,
+ 0x74, 0x72, 0x79, 0x52, 0x16, 0x73, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x43, 0x65, 0x6c, 0x6c, 0x1a, 0x65, 0x0a, 0x1b, 0x53,
+ 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42,
+ 0x79, 0x43, 0x65, 0x6c, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
+ 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x30, 0x0a, 0x05,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x74, 0x6f,
+ 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02,
+ 0x38, 0x01, 0x22, 0x4c, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
+ 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x4e, 0x61, 0x6d, 0x65,
+ 0x22, 0x3a, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x26, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x22, 0x1d, 0x0a, 0x1b,
+ 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52,
+ 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x6a, 0x0a, 0x1c, 0x47,
+ 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75,
+ 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4a, 0x0a, 0x13, 0x73,
+ 0x68, 0x61, 0x72, 0x64, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c,
+ 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x76, 0x73, 0x63, 0x68, 0x65,
+ 0x6d, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52,
+ 0x75, 0x6c, 0x65, 0x73, 0x52, 0x11, 0x73, 0x68, 0x61, 0x72, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x69,
+ 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x22, 0x32, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x53, 0x72,
+ 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x01,
+ 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x22, 0xf3, 0x01, 0x0a, 0x1b,
+ 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x4e, 0x61,
+ 0x6d, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x47, 0x0a, 0x05, 0x6e,
+ 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x76, 0x74, 0x63,
+ 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79,
+ 0x73, 0x70, 0x61, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x2e, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05, 0x6e,
+ 0x61, 0x6d, 0x65, 0x73, 0x1a, 0x69, 0x0a, 0x0a, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x45, 0x6e, 0x74,
+ 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x03, 0x6b, 0x65, 0x79, 0x12, 0x45, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x4e, 0x61,
+ 0x6d, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4e, 0x61, 0x6d, 0x65,
+ 0x4c, 0x69, 0x73, 0x74, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a,
+ 0x20, 0x0a, 0x08, 0x4e, 0x61, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6e,
+ 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x6e, 0x61, 0x6d, 0x65,
+ 0x73, 0x22, 0x4a, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73,
+ 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x22, 0xcc, 0x01,
+ 0x0a, 0x17, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x0d, 0x73, 0x72, 0x76,
+ 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
+ 0x32, 0x34, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74,
+ 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0c, 0x73, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x73, 0x1a, 0x56, 0x0a, 0x11, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2b, 0x0a, 0x05, 0x76,
+ 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70,
+ 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xe4, 0x03, 0x0a,
+ 0x1c, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72,
+ 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a,
+ 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x6e, 0x61,
+ 0x62, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x65, 0x6e, 0x61, 0x62, 0x6c,
+ 0x65, 0x12, 0x18, 0x0a, 0x07, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01,
+ 0x28, 0x08, 0x52, 0x07, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x74,
+ 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09,
+ 0x74, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x75, 0x73,
+ 0x74, 0x6f, 0x6d, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x28, 0x0a, 0x10,
+ 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x73, 0x65, 0x74,
+ 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x51, 0x75,
+ 0x65, 0x72, 0x79, 0x53, 0x65, 0x74, 0x12, 0x2d, 0x0a, 0x13, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f,
+ 0x61, 0x73, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x73, 0x65, 0x6c, 0x66, 0x18, 0x07, 0x20,
+ 0x01, 0x28, 0x08, 0x52, 0x10, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x73, 0x43, 0x68, 0x65, 0x63,
+ 0x6b, 0x53, 0x65, 0x6c, 0x66, 0x12, 0x2f, 0x0a, 0x14, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x61,
+ 0x73, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x08, 0x20,
+ 0x01, 0x28, 0x08, 0x52, 0x11, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x73, 0x43, 0x68, 0x65, 0x63,
+ 0x6b, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x3f, 0x0a, 0x0d, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74,
+ 0x6c, 0x65, 0x64, 0x5f, 0x61, 0x70, 0x70, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
+ 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c,
+ 0x65, 0x64, 0x41, 0x70, 0x70, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x0c, 0x74, 0x68, 0x72, 0x6f, 0x74,
+ 0x74, 0x6c, 0x65, 0x64, 0x41, 0x70, 0x70, 0x12, 0x1f, 0x0a, 0x0b, 0x6d, 0x65, 0x74, 0x72, 0x69,
+ 0x63, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6d, 0x65,
+ 0x74, 0x72, 0x69, 0x63, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f,
+ 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e,
+ 0x61, 0x6d, 0x65, 0x12, 0x2e, 0x0a, 0x13, 0x61, 0x70, 0x70, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b,
+ 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x09,
+ 0x52, 0x11, 0x61, 0x70, 0x70, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x4d, 0x65, 0x74, 0x72,
+ 0x69, 0x63, 0x73, 0x22, 0x1f, 0x0a, 0x1d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x68, 0x72,
+ 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2a, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x56, 0x53,
+ 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04,
+ 0x63, 0x65, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x65, 0x6c, 0x6c,
+ 0x22, 0x4e, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d,
+ 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x35, 0x0a, 0x0c, 0x73, 0x72, 0x76,
+ 0x5f, 0x76, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
+ 0x13, 0x2e, 0x76, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63,
+ 0x68, 0x65, 0x6d, 0x61, 0x52, 0x0a, 0x73, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
+ 0x22, 0x2d, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d,
+ 0x61, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c,
+ 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x22,
+ 0xc5, 0x01, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d,
+ 0x61, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x56, 0x0a, 0x0d, 0x73, 0x72,
+ 0x76, 0x5f, 0x76, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
+ 0x0b, 0x32, 0x32, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65,
+ 0x74, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x73, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x73,
+ 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0b, 0x73, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d,
+ 0x61, 0x73, 0x1a, 0x53, 0x0a, 0x10, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
+ 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x29, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
+ 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x76, 0x73, 0x63, 0x68, 0x65, 0x6d,
+ 0x61, 0x2e, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x05, 0x76, 0x61,
+ 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x4c, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x54, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
+ 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x3d, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x54, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x28, 0x0a, 0x06, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x74, 0x6f, 0x70,
+ 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x06, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x22, 0xe8, 0x01, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x54, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65,
+ 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65,
+ 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18,
+ 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x14, 0x0a, 0x05,
+ 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c,
+ 0x6c, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x18, 0x04, 0x20, 0x01,
+ 0x28, 0x08, 0x52, 0x06, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x12, 0x3c, 0x0a, 0x0e, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03,
+ 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0d, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x12, 0x35, 0x0a, 0x0b, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x14, 0x2e,
0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54,
- 0x79, 0x70, 0x65, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73,
- 0x12, 0x6c, 0x0a, 0x1b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18,
- 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65,
- 0x6e, 0x63, 0x65, 0x52, 0x19, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x1d,
- 0x0a, 0x0a, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x08, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x09, 0x61, 0x6c, 0x6c, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x25, 0x0a,
- 0x0e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18,
- 0x09, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54, 0x61,
- 0x62, 0x6c, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x78,
- 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x28, 0x0a, 0x10, 0x73,
- 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x7a, 0x6f, 0x6e, 0x65, 0x18,
- 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x69, 0x6d,
- 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x6e, 0x5f, 0x64, 0x64, 0x6c, 0x18,
- 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x6e, 0x44, 0x64, 0x6c, 0x12, 0x26, 0x0a, 0x0f,
- 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x61, 0x66, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x18,
- 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x73, 0x74, 0x6f, 0x70, 0x41, 0x66, 0x74, 0x65, 0x72,
- 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2a, 0x0a, 0x11, 0x64, 0x72, 0x6f, 0x70, 0x5f, 0x66, 0x6f, 0x72,
- 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x0f, 0x64, 0x72, 0x6f, 0x70, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4b, 0x65, 0x79, 0x73,
- 0x12, 0x30, 0x0a, 0x14, 0x64, 0x65, 0x66, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
- 0x61, 0x72, 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12,
- 0x64, 0x65, 0x66, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x4b, 0x65,
- 0x79, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74,
- 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x61, 0x75, 0x74, 0x6f, 0x53, 0x74, 0x61, 0x72,
- 0x74, 0x12, 0x28, 0x0a, 0x10, 0x6e, 0x6f, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f,
- 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x6e, 0x6f, 0x52,
- 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x22, 0xe6, 0x01, 0x0a, 0x16,
- 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
- 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
- 0x6f, 0x77, 0x12, 0x27, 0x0a, 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x74, 0x61, 0x72,
- 0x67, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6b,
- 0x65, 0x65, 0x70, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08,
- 0x6b, 0x65, 0x65, 0x70, 0x44, 0x61, 0x74, 0x61, 0x12, 0x2c, 0x0a, 0x12, 0x6b, 0x65, 0x65, 0x70,
- 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x05,
- 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x6b, 0x65, 0x65, 0x70, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e,
- 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65,
- 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x72,
- 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x64,
- 0x72, 0x79, 0x5f, 0x72, 0x75, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x64, 0x72,
- 0x79, 0x52, 0x75, 0x6e, 0x22, 0x5b, 0x0a, 0x17, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x43,
- 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
- 0x18, 0x0a, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x26, 0x0a, 0x0f, 0x64, 0x72, 0x79,
- 0x5f, 0x72, 0x75, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03,
- 0x28, 0x09, 0x52, 0x0d, 0x64, 0x72, 0x79, 0x52, 0x75, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74,
- 0x73, 0x22, 0x85, 0x01, 0x0a, 0x14, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x67, 0x69, 0x73,
- 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x74, 0x6f,
- 0x70, 0x6f, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x74,
- 0x6f, 0x70, 0x6f, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x70, 0x6f, 0x5f,
- 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x6f,
- 0x70, 0x6f, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x74, 0x6f, 0x70, 0x6f,
- 0x5f, 0x72, 0x6f, 0x6f, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x74, 0x6f, 0x70,
- 0x6f, 0x52, 0x6f, 0x6f, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x17, 0x0a, 0x15, 0x4d, 0x6f, 0x75,
- 0x6e, 0x74, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x2c, 0x0a, 0x16, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x67,
- 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04,
- 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
- 0x22, 0x19, 0x0a, 0x17, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x67, 0x69, 0x73,
- 0x74, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x26, 0x0a, 0x10, 0x4d,
- 0x6f, 0x75, 0x6e, 0x74, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
- 0x61, 0x6d, 0x65, 0x22, 0x82, 0x01, 0x0a, 0x11, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x53, 0x68, 0x6f,
- 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x74, 0x6f, 0x70,
- 0x6f, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x74, 0x6f,
- 0x70, 0x6f, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x70, 0x6f, 0x5f, 0x73,
- 0x65, 0x72, 0x76, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x6f, 0x70,
- 0x6f, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x74, 0x6f, 0x70, 0x6f, 0x5f,
- 0x72, 0x6f, 0x6f, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x74, 0x6f, 0x70, 0x6f,
- 0x52, 0x6f, 0x6f, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x12, 0x0a, 0x10, 0x4d, 0x6f, 0x75, 0x6e,
- 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x29, 0x0a, 0x11,
- 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x22, 0x82, 0x07, 0x0a, 0x17, 0x4d, 0x6f, 0x76, 0x65,
- 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
+ 0x79, 0x70, 0x65, 0x52, 0x0a, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x22,
+ 0x40, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x07, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73,
+ 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x07, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x73, 0x22, 0x55, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65,
+ 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38,
+ 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x63, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x54,
+ 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x45, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d,
+ 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68,
+ 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x5f, 0x0a,
+ 0x16, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x70, 0x6f, 0x6c, 0x6f, 0x67, 0x79, 0x50, 0x61, 0x74, 0x68,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x18, 0x0a, 0x07, 0x76,
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x76, 0x65,
+ 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x17, 0x0a, 0x07, 0x61, 0x73, 0x5f, 0x6a, 0x73, 0x6f, 0x6e,
+ 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x61, 0x73, 0x4a, 0x73, 0x6f, 0x6e, 0x22, 0x46,
+ 0x0a, 0x17, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x70, 0x6f, 0x6c, 0x6f, 0x67, 0x79, 0x50, 0x61, 0x74,
+ 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x04, 0x63, 0x65, 0x6c,
+ 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x54, 0x6f, 0x70, 0x6f, 0x6c, 0x6f, 0x67, 0x79, 0x43, 0x65, 0x6c, 0x6c,
+ 0x52, 0x04, 0x63, 0x65, 0x6c, 0x6c, 0x22, 0x80, 0x01, 0x0a, 0x0c, 0x54, 0x6f, 0x70, 0x6f, 0x6c,
+ 0x6f, 0x67, 0x79, 0x43, 0x65, 0x6c, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70,
+ 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12,
+ 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64,
+ 0x61, 0x74, 0x61, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x18,
+ 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x12,
+ 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
+ 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x0a, 0x20, 0x47, 0x65, 0x74,
+ 0x55, 0x6e, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x64, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a,
+ 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x63, 0x0a, 0x21, 0x47, 0x65, 0x74,
+ 0x55, 0x6e, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x64, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3e,
+ 0x0a, 0x0c, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01,
+ 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x54, 0x72, 0x61,
+ 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,
+ 0x52, 0x0c, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x63,
+ 0x0a, 0x1a, 0x43, 0x6f, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04,
+ 0x64, 0x74, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x74, 0x69, 0x64,
+ 0x12, 0x31, 0x0a, 0x0c, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x73,
+ 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x54,
+ 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x0c, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61,
+ 0x6e, 0x74, 0x73, 0x22, 0x1d, 0x0a, 0x1b, 0x43, 0x6f, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54,
+ 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x22, 0x2f, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x22, 0x4d, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15,
+ 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69,
+ 0x61, 0x73, 0x22, 0x2e, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73,
+ 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69,
+ 0x6f, 0x6e, 0x22, 0x42, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2c, 0x0a, 0x08, 0x76, 0x5f, 0x73, 0x63,
+ 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x76, 0x73, 0x63,
+ 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x07, 0x76,
+ 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x22, 0xc6, 0x01, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x57, 0x6f,
+ 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a,
+ 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x63,
+ 0x74, 0x69, 0x76, 0x65, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
+ 0x0a, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x1b, 0x0a, 0x09, 0x6e,
+ 0x61, 0x6d, 0x65, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08,
+ 0x6e, 0x61, 0x6d, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b,
+ 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b,
+ 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x21, 0x0a, 0x0c, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f,
+ 0x6c, 0x6f, 0x67, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x6e, 0x63, 0x6c,
+ 0x75, 0x64, 0x65, 0x4c, 0x6f, 0x67, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64,
+ 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x22,
+ 0x49, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x31, 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66,
+ 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x76, 0x74, 0x63,
+ 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52,
+ 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x22, 0xfb, 0x01, 0x0a, 0x17, 0x49,
+ 0x6e, 0x69, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52,
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x52, 0x0a, 0x1a, 0x70, 0x72, 0x69, 0x6d,
+ 0x61, 0x72, 0x79, 0x5f, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74,
+ 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c,
+ 0x69, 0x61, 0x73, 0x52, 0x17, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x45, 0x6c, 0x65, 0x63,
+ 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x14, 0x0a, 0x05,
+ 0x66, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x66, 0x6f, 0x72,
+ 0x63, 0x65, 0x12, 0x44, 0x0a, 0x15, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x73, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28,
+ 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x77, 0x61, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
+ 0x73, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x22, 0x42, 0x0a, 0x18, 0x49, 0x6e, 0x69, 0x74,
+ 0x53, 0x68, 0x61, 0x72, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x26, 0x0a, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01,
+ 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c, 0x6f, 0x67, 0x75, 0x74, 0x69, 0x6c, 0x2e, 0x45,
+ 0x76, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x22, 0x4e, 0x0a, 0x1c,
+ 0x4c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08,
+ 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
+ 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75, 0x69, 0x64,
+ 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x22, 0xdf, 0x01, 0x0a,
+ 0x1d, 0x4c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67,
+ 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x76,
+ 0x0a, 0x16, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x61, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x5f,
+ 0x62, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x41,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4c, 0x61, 0x75, 0x6e, 0x63,
+ 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66,
+ 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72,
+ 0x79, 0x52, 0x13, 0x72, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42,
+ 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x1a, 0x46, 0x0a, 0x18, 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66,
+ 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74,
+ 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
+ 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xff,
+ 0x02, 0x0a, 0x19, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x43,
+ 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08,
+ 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
+ 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b,
+ 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b,
+ 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x03, 0x20,
+ 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x29, 0x0a, 0x06, 0x76, 0x69,
+ 0x6e, 0x64, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x76, 0x73, 0x63,
+ 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x06, 0x76,
+ 0x69, 0x6e, 0x64, 0x65, 0x78, 0x12, 0x42, 0x0a, 0x1e, 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x6e, 0x75,
+ 0x65, 0x5f, 0x61, 0x66, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x77, 0x69, 0x74,
+ 0x68, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x1a, 0x63,
+ 0x6f, 0x6e, 0x74, 0x69, 0x6e, 0x75, 0x65, 0x41, 0x66, 0x74, 0x65, 0x72, 0x43, 0x6f, 0x70, 0x79,
+ 0x57, 0x69, 0x74, 0x68, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0e, 0x32,
+ 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70,
+ 0x65, 0x73, 0x12, 0x6c, 0x0a, 0x1b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x6c,
+ 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63,
+ 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65,
+ 0x72, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x19, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c,
+ 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65,
+ 0x22, 0x1c, 0x0a, 0x1a, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78,
+ 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x77,
+ 0x0a, 0x1e, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x45, 0x78,
+ 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04,
+ 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
+ 0x12, 0x25, 0x0a, 0x0e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x4b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x4c, 0x0a, 0x1f, 0x4c, 0x6f, 0x6f, 0x6b, 0x75,
+ 0x70, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x69,
+ 0x7a, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x77, 0x6f,
+ 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65,
+ 0x6c, 0x65, 0x74, 0x65, 0x64, 0x22, 0x56, 0x0a, 0x18, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61,
+ 0x6c, 0x69, 0x7a, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x74, 0x12, 0x3a, 0x0a, 0x08, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69,
+ 0x6e, 0x67, 0x73, 0x52, 0x08, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x22, 0x1b, 0x0a,
+ 0x19, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x43, 0x72, 0x65, 0x61,
+ 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xdd, 0x05, 0x0a, 0x14, 0x4d,
+ 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18,
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12,
0x27, 0x0a, 0x0f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
@@ -18215,622 +18252,692 @@ var file_vtctldata_proto_rawDesc = []byte{
0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x74, 0x61, 0x72, 0x67,
0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
0x09, 0x52, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x14, 0x2e,
- 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54,
- 0x79, 0x70, 0x65, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73,
- 0x12, 0x6c, 0x0a, 0x1b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18,
- 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65,
- 0x6e, 0x63, 0x65, 0x52, 0x19, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x23,
- 0x0a, 0x0d, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18,
- 0x07, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x68, 0x61,
- 0x72, 0x64, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x61, 0x6c, 0x6c, 0x54, 0x61, 0x62, 0x6c,
- 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x73, 0x18, 0x09, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x69, 0x6e, 0x63, 0x6c,
- 0x75, 0x64, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x78, 0x63,
- 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28,
- 0x09, 0x52, 0x0d, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73,
- 0x12, 0x32, 0x0a, 0x15, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x63, 0x6c, 0x75,
- 0x73, 0x74, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x13, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72,
- 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74,
- 0x69, 0x6d, 0x65, 0x5f, 0x7a, 0x6f, 0x6e, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
- 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x12, 0x15,
- 0x0a, 0x06, 0x6f, 0x6e, 0x5f, 0x64, 0x64, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
- 0x6f, 0x6e, 0x44, 0x64, 0x6c, 0x12, 0x26, 0x0a, 0x0f, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x61, 0x66,
- 0x74, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d,
- 0x73, 0x74, 0x6f, 0x70, 0x41, 0x66, 0x74, 0x65, 0x72, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2a, 0x0a,
- 0x11, 0x64, 0x72, 0x6f, 0x70, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x6b, 0x65,
- 0x79, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x64, 0x72, 0x6f, 0x70, 0x46, 0x6f,
- 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x64, 0x65, 0x66,
- 0x65, 0x72, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x5f, 0x6b, 0x65, 0x79,
- 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x64, 0x65, 0x66, 0x65, 0x72, 0x53, 0x65,
- 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x61,
- 0x75, 0x74, 0x6f, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x09, 0x61, 0x75, 0x74, 0x6f, 0x53, 0x74, 0x61, 0x72, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x6e, 0x6f,
- 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x12,
- 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x6e, 0x6f, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52,
- 0x75, 0x6c, 0x65, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x74, 0x6f, 0x6d, 0x69, 0x63, 0x5f, 0x63,
- 0x6f, 0x70, 0x79, 0x18, 0x13, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x61, 0x74, 0x6f, 0x6d, 0x69,
- 0x63, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x45, 0x0a, 0x10, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
- 0x77, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x1a, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b,
- 0x66, 0x6c, 0x6f, 0x77, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x0f, 0x77, 0x6f, 0x72,
- 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xd5, 0x01, 0x0a,
- 0x18, 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x43, 0x72, 0x65, 0x61, 0x74,
- 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x6d,
- 0x6d, 0x61, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x6d, 0x6d,
- 0x61, 0x72, 0x79, 0x12, 0x48, 0x0a, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x02,
- 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x43, 0x72, 0x65, 0x61, 0x74,
- 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x1a, 0x55, 0x0a,
- 0x0a, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2d, 0x0a, 0x06, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f,
- 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69,
- 0x61, 0x73, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x72,
- 0x65, 0x61, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x63, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x64, 0x22, 0x81, 0x02, 0x0a, 0x19, 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x61, 0x62,
- 0x6c, 0x65, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
+ 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65,
+ 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52,
+ 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74,
+ 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79,
+ 0x70, 0x65, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12,
+ 0x6c, 0x0a, 0x1b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x07,
+ 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e,
+ 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53,
+ 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e,
+ 0x63, 0x65, 0x52, 0x19, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x1d, 0x0a,
+ 0x0a, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28,
+ 0x08, 0x52, 0x09, 0x61, 0x6c, 0x6c, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0e,
+ 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x09,
+ 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54, 0x61, 0x62,
+ 0x6c, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x78, 0x63,
+ 0x6c, 0x75, 0x64, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f,
+ 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x7a, 0x6f, 0x6e, 0x65, 0x18, 0x0b,
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x69, 0x6d, 0x65,
+ 0x5a, 0x6f, 0x6e, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x6e, 0x5f, 0x64, 0x64, 0x6c, 0x18, 0x0c,
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x6e, 0x44, 0x64, 0x6c, 0x12, 0x26, 0x0a, 0x0f, 0x73,
+ 0x74, 0x6f, 0x70, 0x5f, 0x61, 0x66, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x18, 0x0d,
+ 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x73, 0x74, 0x6f, 0x70, 0x41, 0x66, 0x74, 0x65, 0x72, 0x43,
+ 0x6f, 0x70, 0x79, 0x12, 0x2a, 0x0a, 0x11, 0x64, 0x72, 0x6f, 0x70, 0x5f, 0x66, 0x6f, 0x72, 0x65,
+ 0x69, 0x67, 0x6e, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f,
+ 0x64, 0x72, 0x6f, 0x70, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x12,
+ 0x30, 0x0a, 0x14, 0x64, 0x65, 0x66, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61,
+ 0x72, 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x64,
+ 0x65, 0x66, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x4b, 0x65, 0x79,
+ 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18,
+ 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x61, 0x75, 0x74, 0x6f, 0x53, 0x74, 0x61, 0x72, 0x74,
+ 0x12, 0x28, 0x0a, 0x10, 0x6e, 0x6f, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72,
+ 0x75, 0x6c, 0x65, 0x73, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x6e, 0x6f, 0x52, 0x6f,
+ 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x22, 0xe6, 0x01, 0x0a, 0x16, 0x4d,
+ 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
+ 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
+ 0x77, 0x12, 0x27, 0x0a, 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x73,
+ 0x70, 0x61, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x74, 0x61, 0x72, 0x67,
+ 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6b, 0x65,
+ 0x65, 0x70, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x6b,
+ 0x65, 0x65, 0x70, 0x44, 0x61, 0x74, 0x61, 0x12, 0x2c, 0x0a, 0x12, 0x6b, 0x65, 0x65, 0x70, 0x5f,
+ 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x05, 0x20,
+ 0x01, 0x28, 0x08, 0x52, 0x10, 0x6b, 0x65, 0x65, 0x70, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67,
+ 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x5f,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x72, 0x65,
+ 0x6e, 0x61, 0x6d, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x72,
+ 0x79, 0x5f, 0x72, 0x75, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x64, 0x72, 0x79,
+ 0x52, 0x75, 0x6e, 0x22, 0x5b, 0x0a, 0x17, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x43, 0x6f,
+ 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18,
+ 0x0a, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x26, 0x0a, 0x0f, 0x64, 0x72, 0x79, 0x5f,
+ 0x72, 0x75, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28,
+ 0x09, 0x52, 0x0d, 0x64, 0x72, 0x79, 0x52, 0x75, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73,
+ 0x22, 0x85, 0x01, 0x0a, 0x14, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74,
+ 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x74, 0x6f, 0x70,
+ 0x6f, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x74, 0x6f,
+ 0x70, 0x6f, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x70, 0x6f, 0x5f, 0x73,
+ 0x65, 0x72, 0x76, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x6f, 0x70,
+ 0x6f, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x74, 0x6f, 0x70, 0x6f, 0x5f,
+ 0x72, 0x6f, 0x6f, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x74, 0x6f, 0x70, 0x6f,
+ 0x52, 0x6f, 0x6f, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x17, 0x0a, 0x15, 0x4d, 0x6f, 0x75, 0x6e,
+ 0x74, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x22, 0x2c, 0x0a, 0x16, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x67, 0x69,
+ 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e,
+ 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22,
+ 0x19, 0x0a, 0x17, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74,
+ 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x26, 0x0a, 0x10, 0x4d, 0x6f,
+ 0x75, 0x6e, 0x74, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12,
+ 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
+ 0x6d, 0x65, 0x22, 0x82, 0x01, 0x0a, 0x11, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x53, 0x68, 0x6f, 0x77,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x74, 0x6f, 0x70, 0x6f,
+ 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x74, 0x6f, 0x70,
+ 0x6f, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x70, 0x6f, 0x5f, 0x73, 0x65,
+ 0x72, 0x76, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x6f, 0x70, 0x6f,
+ 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x74, 0x6f, 0x70, 0x6f, 0x5f, 0x72,
+ 0x6f, 0x6f, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x74, 0x6f, 0x70, 0x6f, 0x52,
+ 0x6f, 0x6f, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x12, 0x0a, 0x10, 0x4d, 0x6f, 0x75, 0x6e, 0x74,
+ 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x29, 0x0a, 0x11, 0x4d,
+ 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52,
+ 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x22, 0x82, 0x07, 0x0a, 0x17, 0x4d, 0x6f, 0x76, 0x65, 0x54,
+ 0x61, 0x62, 0x6c, 0x65, 0x73, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x01,
0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x27,
- 0x0a, 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x4b,
- 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6b, 0x65, 0x65, 0x70, 0x5f,
- 0x64, 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x6b, 0x65, 0x65, 0x70,
- 0x44, 0x61, 0x74, 0x61, 0x12, 0x2c, 0x0a, 0x12, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x72, 0x6f, 0x75,
- 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x10, 0x6b, 0x65, 0x65, 0x70, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c,
- 0x65, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x72, 0x65, 0x6e, 0x61, 0x6d,
- 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x72, 0x79, 0x5f, 0x72,
- 0x75, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x64, 0x72, 0x79, 0x52, 0x75, 0x6e,
- 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x22, 0x5e, 0x0a, 0x1a, 0x4d, 0x6f, 0x76, 0x65,
- 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72,
- 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79,
- 0x12, 0x26, 0x0a, 0x0f, 0x64, 0x72, 0x79, 0x5f, 0x72, 0x75, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x75,
- 0x6c, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x64, 0x72, 0x79, 0x52, 0x75,
- 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x4d, 0x0a, 0x11, 0x50, 0x69, 0x6e, 0x67,
- 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a,
- 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20,
+ 0x0a, 0x0f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65,
+ 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52,
+ 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74,
+ 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79,
+ 0x70, 0x65, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12,
+ 0x6c, 0x0a, 0x1b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x06,
+ 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e,
+ 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53,
+ 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e,
+ 0x63, 0x65, 0x52, 0x19, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x23, 0x0a,
+ 0x0d, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x07,
+ 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72,
+ 0x64, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73,
+ 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x61, 0x6c, 0x6c, 0x54, 0x61, 0x62, 0x6c, 0x65,
+ 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x73, 0x18, 0x09, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x69, 0x6e, 0x63, 0x6c, 0x75,
+ 0x64, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x78, 0x63, 0x6c,
+ 0x75, 0x64, 0x65, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x09,
+ 0x52, 0x0d, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12,
+ 0x32, 0x0a, 0x15, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x63, 0x6c, 0x75, 0x73,
+ 0x74, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x13,
+ 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x4e,
+ 0x61, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x69,
+ 0x6d, 0x65, 0x5f, 0x7a, 0x6f, 0x6e, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73,
+ 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x12, 0x15, 0x0a,
+ 0x06, 0x6f, 0x6e, 0x5f, 0x64, 0x64, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f,
+ 0x6e, 0x44, 0x64, 0x6c, 0x12, 0x26, 0x0a, 0x0f, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x61, 0x66, 0x74,
+ 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x73,
+ 0x74, 0x6f, 0x70, 0x41, 0x66, 0x74, 0x65, 0x72, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2a, 0x0a, 0x11,
+ 0x64, 0x72, 0x6f, 0x70, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x6b, 0x65, 0x79,
+ 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x64, 0x72, 0x6f, 0x70, 0x46, 0x6f, 0x72,
+ 0x65, 0x69, 0x67, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x64, 0x65, 0x66, 0x65,
+ 0x72, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x73,
+ 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x64, 0x65, 0x66, 0x65, 0x72, 0x53, 0x65, 0x63,
+ 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x75,
+ 0x74, 0x6f, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09,
+ 0x61, 0x75, 0x74, 0x6f, 0x53, 0x74, 0x61, 0x72, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x6e, 0x6f, 0x5f,
+ 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x12, 0x20,
+ 0x01, 0x28, 0x08, 0x52, 0x0e, 0x6e, 0x6f, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75,
+ 0x6c, 0x65, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x74, 0x6f, 0x6d, 0x69, 0x63, 0x5f, 0x63, 0x6f,
+ 0x70, 0x79, 0x18, 0x13, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x61, 0x74, 0x6f, 0x6d, 0x69, 0x63,
+ 0x43, 0x6f, 0x70, 0x79, 0x12, 0x45, 0x0a, 0x10, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
+ 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66,
+ 0x6c, 0x6f, 0x77, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x0f, 0x77, 0x6f, 0x72, 0x6b,
+ 0x66, 0x6c, 0x6f, 0x77, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xd5, 0x01, 0x0a, 0x18,
+ 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x6d, 0x6d,
+ 0x61, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61,
+ 0x72, 0x79, 0x12, 0x48, 0x0a, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x02, 0x20,
+ 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x49,
+ 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x1a, 0x55, 0x0a, 0x0a,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2d, 0x0a, 0x06, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70,
+ 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61,
+ 0x73, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x72, 0x65,
+ 0x61, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x63, 0x72, 0x65, 0x61,
+ 0x74, 0x65, 0x64, 0x22, 0x81, 0x02, 0x0a, 0x19, 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x61, 0x62, 0x6c,
+ 0x65, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x27, 0x0a,
+ 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x4b, 0x65,
+ 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x64,
+ 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x6b, 0x65, 0x65, 0x70, 0x44,
+ 0x61, 0x74, 0x61, 0x12, 0x2c, 0x0a, 0x12, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x72, 0x6f, 0x75, 0x74,
+ 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52,
+ 0x10, 0x6b, 0x65, 0x65, 0x70, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65,
+ 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x72, 0x79, 0x5f, 0x72, 0x75,
+ 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x64, 0x72, 0x79, 0x52, 0x75, 0x6e, 0x12,
+ 0x16, 0x0a, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52,
+ 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x22, 0x5e, 0x0a, 0x1a, 0x4d, 0x6f, 0x76, 0x65, 0x54,
+ 0x61, 0x62, 0x6c, 0x65, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12,
+ 0x26, 0x0a, 0x0f, 0x64, 0x72, 0x79, 0x5f, 0x72, 0x75, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c,
+ 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x64, 0x72, 0x79, 0x52, 0x75, 0x6e,
+ 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x4d, 0x0a, 0x11, 0x50, 0x69, 0x6e, 0x67, 0x54,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x14, 0x0a, 0x12, 0x50, 0x69, 0x6e, 0x67, 0x54, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x94, 0x03, 0x0a,
+ 0x1b, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
+ 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08,
+ 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
+ 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72,
+ 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x36,
+ 0x0a, 0x0b, 0x6e, 0x65, 0x77, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x03, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x14, 0x0a, 0x12, 0x50, 0x69, 0x6e, 0x67, 0x54,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x94, 0x03,
- 0x0a, 0x1b, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e,
- 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a,
- 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61,
- 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12,
- 0x36, 0x0a, 0x0b, 0x6e, 0x65, 0x77, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x03,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0a, 0x6e, 0x65, 0x77,
- 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x3a, 0x0a, 0x0d, 0x61, 0x76, 0x6f, 0x69, 0x64,
- 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15,
- 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0c, 0x61, 0x76, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x6d,
- 0x61, 0x72, 0x79, 0x12, 0x44, 0x0a, 0x15, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x72, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x73, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x05, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x77, 0x61, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x4c, 0x0a, 0x19, 0x74, 0x6f, 0x6c,
- 0x65, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x67, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76,
- 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x17,
- 0x74, 0x6f, 0x6c, 0x65, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x67, 0x12, 0x3b, 0x0a, 0x1a, 0x61, 0x6c, 0x6c, 0x6f, 0x77,
- 0x5f, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x63, 0x65, 0x6c, 0x6c, 0x5f, 0x70, 0x72, 0x6f, 0x6d,
- 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x17, 0x61, 0x6c, 0x6c,
- 0x6f, 0x77, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x6d, 0x6f,
- 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xba, 0x01, 0x0a, 0x1c, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64,
- 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x40, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x6d, 0x6f,
- 0x74, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74,
- 0x65, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x26, 0x0a, 0x06, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c, 0x6f, 0x67, 0x75,
- 0x74, 0x69, 0x6c, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x73, 0x22, 0x74, 0x0a, 0x1b, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x4b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0a, 0x6e, 0x65, 0x77, 0x50,
+ 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x3a, 0x0a, 0x0d, 0x61, 0x76, 0x6f, 0x69, 0x64, 0x5f,
+ 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e,
+ 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41,
+ 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0c, 0x61, 0x76, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61,
+ 0x72, 0x79, 0x12, 0x44, 0x0a, 0x15, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x73, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28,
+ 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x77, 0x61, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
+ 0x73, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x4c, 0x0a, 0x19, 0x74, 0x6f, 0x6c, 0x65,
+ 0x72, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x5f, 0x6c, 0x61, 0x67, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74,
+ 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x17, 0x74,
+ 0x6f, 0x6c, 0x65, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x67, 0x12, 0x3b, 0x0a, 0x1a, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f,
+ 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x63, 0x65, 0x6c, 0x6c, 0x5f, 0x70, 0x72, 0x6f, 0x6d, 0x6f,
+ 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x17, 0x61, 0x6c, 0x6c, 0x6f,
+ 0x77, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74,
+ 0x69, 0x6f, 0x6e, 0x22, 0xba, 0x01, 0x0a, 0x1c, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x52,
+ 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x40, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74,
+ 0x65, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
+ 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65,
+ 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x26, 0x0a, 0x06, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c, 0x6f, 0x67, 0x75, 0x74,
+ 0x69, 0x6c, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
+ 0x22, 0x74, 0x0a, 0x1b, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x4b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
+ 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63,
+ 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c,
+ 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x69,
+ 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x50,
+ 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x22, 0x1e, 0x0a, 0x1c, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c,
+ 0x64, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x32, 0x0a, 0x1a, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c,
+ 0x64, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x47, 0x72, 0x61, 0x70, 0x68, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x01, 0x20,
+ 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x22, 0x1d, 0x0a, 0x1b, 0x52, 0x65,
+ 0x62, 0x75, 0x69, 0x6c, 0x64, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x47, 0x72, 0x61, 0x70,
+ 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4f, 0x0a, 0x13, 0x52, 0x65, 0x66,
+ 0x72, 0x65, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x16, 0x0a, 0x14, 0x52, 0x65,
+ 0x66, 0x72, 0x65, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x22, 0x64, 0x0a, 0x1a, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x53, 0x74, 0x61,
+ 0x74, 0x65, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01,
0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05,
- 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c,
- 0x6c, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x70, 0x61, 0x72, 0x74,
- 0x69, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61, 0x6c, 0x6c, 0x6f, 0x77,
- 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x22, 0x1e, 0x0a, 0x1c, 0x52, 0x65, 0x62, 0x75, 0x69,
- 0x6c, 0x64, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x32, 0x0a, 0x1a, 0x52, 0x65, 0x62, 0x75, 0x69,
- 0x6c, 0x64, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x47, 0x72, 0x61, 0x70, 0x68, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x01,
- 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x22, 0x1d, 0x0a, 0x1b, 0x52,
- 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x47, 0x72, 0x61,
- 0x70, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4f, 0x0a, 0x13, 0x52, 0x65,
- 0x66, 0x72, 0x65, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61,
- 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x16, 0x0a, 0x14, 0x52,
- 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x22, 0x64, 0x0a, 0x1a, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x53, 0x74,
- 0x61, 0x74, 0x65, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a,
- 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68,
- 0x61, 0x72, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03,
- 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x22, 0x83, 0x01, 0x0a, 0x1b, 0x52, 0x65,
- 0x66, 0x72, 0x65, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2c, 0x0a, 0x12, 0x69, 0x73, 0x5f,
- 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x69, 0x73, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c,
- 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x12, 0x36, 0x0a, 0x17, 0x70, 0x61, 0x72, 0x74, 0x69,
- 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69,
- 0x6c, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61,
- 0x6c, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x22,
- 0x4f, 0x0a, 0x13, 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74,
- 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c,
- 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73,
- 0x22, 0x16, 0x0a, 0x14, 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xa9, 0x01, 0x0a, 0x1b, 0x52, 0x65, 0x6c,
- 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x70, 0x6f, 0x73,
- 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x77, 0x61, 0x69,
- 0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x27, 0x0a, 0x0f, 0x69, 0x6e, 0x63,
- 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x0e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61,
- 0x72, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63,
- 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72,
- 0x65, 0x6e, 0x63, 0x79, 0x22, 0x46, 0x0a, 0x1c, 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63,
- 0x68, 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x26, 0x0a, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01,
- 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c, 0x6f, 0x67, 0x75, 0x74, 0x69, 0x6c, 0x2e, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x22, 0xbc, 0x01, 0x0a,
- 0x18, 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x53, 0x68, 0x61,
- 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x77,
- 0x61, 0x69, 0x74, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0c, 0x77, 0x61, 0x69, 0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
- 0x12, 0x27, 0x0a, 0x0f, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x70, 0x72, 0x69, 0x6d,
- 0x61, 0x72, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x6e, 0x63, 0x6c, 0x75,
- 0x64, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e,
- 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b,
- 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x22, 0x43, 0x0a, 0x19, 0x52,
- 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x53, 0x68, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x26, 0x0a, 0x06, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c, 0x6f, 0x67, 0x75, 0x74,
- 0x69, 0x6c, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
- 0x22, 0x5b, 0x0a, 0x13, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70,
+ 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61,
+ 0x72, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
+ 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x22, 0x83, 0x01, 0x0a, 0x1b, 0x52, 0x65, 0x66,
+ 0x72, 0x65, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2c, 0x0a, 0x12, 0x69, 0x73, 0x5f, 0x70,
+ 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x69, 0x73, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x52,
+ 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x12, 0x36, 0x0a, 0x17, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61,
+ 0x6c, 0x5f, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c,
+ 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c,
+ 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x22, 0x4f,
+ 0x0a, 0x13, 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f,
+ 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f,
+ 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69,
+ 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22,
+ 0x16, 0x0a, 0x14, 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xa9, 0x01, 0x0a, 0x1b, 0x52, 0x65, 0x6c, 0x6f,
+ 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x16, 0x0a,
- 0x14, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x7f, 0x0a, 0x19, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4b,
- 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12,
- 0x0a, 0x04, 0x63, 0x65, 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x65,
- 0x6c, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x63, 0x75,
- 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x72, 0x65, 0x63,
- 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x22, 0x1c, 0x0a, 0x1a, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65,
- 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x9b, 0x01, 0x0a, 0x16, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x53,
- 0x68, 0x61, 0x72, 0x64, 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x73,
- 0x68, 0x61, 0x72, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x65,
- 0x6c, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x65, 0x6c, 0x6c, 0x12, 0x14,
- 0x0a, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x66,
- 0x6f, 0x72, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76,
- 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69,
- 0x76, 0x65, 0x22, 0x19, 0x0a, 0x17, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x68, 0x61, 0x72,
- 0x64, 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x46, 0x0a,
- 0x15, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2d, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x06, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x22, 0x7b, 0x0a, 0x16, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e,
- 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
- 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73,
- 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72,
- 0x64, 0x12, 0x2f, 0x0a, 0x07, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x07, 0x70, 0x72, 0x69, 0x6d, 0x61,
- 0x72, 0x79, 0x22, 0x8f, 0x04, 0x0a, 0x14, 0x52, 0x65, 0x73, 0x68, 0x61, 0x72, 0x64, 0x43, 0x72,
- 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77,
- 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77,
- 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x70, 0x6f, 0x73, 0x69,
+ 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x77, 0x61, 0x69, 0x74,
+ 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x27, 0x0a, 0x0f, 0x69, 0x6e, 0x63, 0x6c,
+ 0x75, 0x64, 0x65, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28,
+ 0x08, 0x52, 0x0e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72,
+ 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79,
+ 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65,
+ 0x6e, 0x63, 0x79, 0x22, 0x46, 0x0a, 0x1c, 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68,
+ 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x12, 0x26, 0x0a, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20,
+ 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c, 0x6f, 0x67, 0x75, 0x74, 0x69, 0x6c, 0x2e, 0x45, 0x76,
+ 0x65, 0x6e, 0x74, 0x52, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x22, 0xbc, 0x01, 0x0a, 0x18,
+ 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x53, 0x68, 0x61, 0x72,
+ 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73,
+ 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73,
+ 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x77, 0x61,
+ 0x69, 0x74, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x0c, 0x77, 0x61, 0x69, 0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12,
+ 0x27, 0x0a, 0x0f, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61,
+ 0x72, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64,
+ 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x63,
+ 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63,
+ 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x22, 0x43, 0x0a, 0x19, 0x52, 0x65,
+ 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x26, 0x0a, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c, 0x6f, 0x67, 0x75, 0x74, 0x69,
+ 0x6c, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x22,
+ 0x5b, 0x0a, 0x13, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52,
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65,
+ 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x16, 0x0a, 0x14,
+ 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x7f, 0x0a, 0x19, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4b, 0x65,
+ 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a,
+ 0x04, 0x63, 0x65, 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x65, 0x6c,
+ 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08,
+ 0x52, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x63, 0x75, 0x72,
+ 0x73, 0x69, 0x76, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x72, 0x65, 0x63, 0x75,
+ 0x72, 0x73, 0x69, 0x76, 0x65, 0x22, 0x1c, 0x0a, 0x1a, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x22, 0x9b, 0x01, 0x0a, 0x16, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x68,
+ 0x61, 0x72, 0x64, 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a,
+ 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x68,
+ 0x61, 0x72, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
+ 0x73, 0x68, 0x61, 0x72, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x65, 0x6c,
+ 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x65, 0x6c, 0x6c, 0x12, 0x14, 0x0a,
+ 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x66, 0x6f,
+ 0x72, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65,
+ 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76,
+ 0x65, 0x22, 0x19, 0x0a, 0x17, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64,
+ 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x46, 0x0a, 0x15,
+ 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2d, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x06, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x22, 0x7b, 0x0a, 0x16, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a,
+ 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68,
+ 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64,
+ 0x12, 0x2f, 0x0a, 0x07, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28,
+ 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x07, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72,
+ 0x79, 0x22, 0xd6, 0x04, 0x0a, 0x14, 0x52, 0x65, 0x73, 0x68, 0x61, 0x72, 0x64, 0x43, 0x72, 0x65,
+ 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f,
+ 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f,
+ 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x63, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x73, 0x68, 0x61,
+ 0x72, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x6f, 0x75, 0x72, 0x63,
+ 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x61, 0x72, 0x67, 0x65,
+ 0x74, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c,
+ 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x12, 0x14, 0x0a, 0x05,
+ 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c,
+ 0x6c, 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70,
+ 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x6c, 0x0a, 0x1b, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
+ 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e,
+ 0x32, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x19,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50,
+ 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6b, 0x69,
+ 0x70, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x18, 0x08, 0x20,
+ 0x01, 0x28, 0x08, 0x52, 0x0e, 0x73, 0x6b, 0x69, 0x70, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x43,
+ 0x6f, 0x70, 0x79, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x6e, 0x5f, 0x64, 0x64, 0x6c, 0x18, 0x09, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x6e, 0x44, 0x64, 0x6c, 0x12, 0x26, 0x0a, 0x0f, 0x73, 0x74,
+ 0x6f, 0x70, 0x5f, 0x61, 0x66, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x18, 0x0a, 0x20,
+ 0x01, 0x28, 0x08, 0x52, 0x0d, 0x73, 0x74, 0x6f, 0x70, 0x41, 0x66, 0x74, 0x65, 0x72, 0x43, 0x6f,
+ 0x70, 0x79, 0x12, 0x30, 0x0a, 0x14, 0x64, 0x65, 0x66, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x63, 0x6f,
+ 0x6e, 0x64, 0x61, 0x72, 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08,
+ 0x52, 0x12, 0x64, 0x65, 0x66, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79,
+ 0x4b, 0x65, 0x79, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x73, 0x74, 0x61,
+ 0x72, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x61, 0x75, 0x74, 0x6f, 0x53, 0x74,
+ 0x61, 0x72, 0x74, 0x12, 0x45, 0x0a, 0x10, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x5f,
+ 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
+ 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
+ 0x6f, 0x77, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x0f, 0x77, 0x6f, 0x72, 0x6b, 0x66,
+ 0x6c, 0x6f, 0x77, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x82, 0x02, 0x0a, 0x18, 0x52,
+ 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e,
+ 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41,
+ 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61,
+ 0x73, 0x12, 0x2d, 0x0a, 0x0b, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x5f, 0x74, 0x69, 0x6d, 0x65,
+ 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e,
+ 0x54, 0x69, 0x6d, 0x65, 0x52, 0x0a, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x54, 0x69, 0x6d, 0x65,
+ 0x12, 0x24, 0x0a, 0x0e, 0x72, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x74, 0x6f, 0x5f, 0x70,
+ 0x6f, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x74, 0x6f, 0x72,
+ 0x65, 0x54, 0x6f, 0x50, 0x6f, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x72, 0x79, 0x5f, 0x72, 0x75,
+ 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x64, 0x72, 0x79, 0x52, 0x75, 0x6e, 0x12,
+ 0x3e, 0x0a, 0x14, 0x72, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x74, 0x6f, 0x5f, 0x74, 0x69,
+ 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e,
+ 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x12, 0x72, 0x65, 0x73,
+ 0x74, 0x6f, 0x72, 0x65, 0x54, 0x6f, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22,
+ 0xad, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x42,
+ 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a,
+ 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
0x61, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x73, 0x68,
- 0x61, 0x72, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x6f, 0x75, 0x72,
- 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x61, 0x72, 0x67,
- 0x65, 0x74, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52,
- 0x0c, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x12, 0x14, 0x0a,
- 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65,
- 0x6c, 0x6c, 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79,
- 0x70, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52,
- 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x6c, 0x0a, 0x1b,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
- 0x0e, 0x32, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x52,
- 0x19, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6b,
- 0x69, 0x70, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x18, 0x08,
- 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x73, 0x6b, 0x69, 0x70, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
- 0x43, 0x6f, 0x70, 0x79, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x6e, 0x5f, 0x64, 0x64, 0x6c, 0x18, 0x09,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x6e, 0x44, 0x64, 0x6c, 0x12, 0x26, 0x0a, 0x0f, 0x73,
- 0x74, 0x6f, 0x70, 0x5f, 0x61, 0x66, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x18, 0x0a,
- 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x73, 0x74, 0x6f, 0x70, 0x41, 0x66, 0x74, 0x65, 0x72, 0x43,
- 0x6f, 0x70, 0x79, 0x12, 0x30, 0x0a, 0x14, 0x64, 0x65, 0x66, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x63,
- 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x12, 0x64, 0x65, 0x66, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72,
- 0x79, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x73, 0x74,
- 0x61, 0x72, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x61, 0x75, 0x74, 0x6f, 0x53,
- 0x74, 0x61, 0x72, 0x74, 0x22, 0x82, 0x02, 0x0a, 0x18, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65,
- 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61,
- 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x2d, 0x0a, 0x0b, 0x62,
- 0x61, 0x63, 0x6b, 0x75, 0x70, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x0a,
- 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0e, 0x72, 0x65,
- 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x74, 0x6f, 0x5f, 0x70, 0x6f, 0x73, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x54, 0x6f, 0x50, 0x6f, 0x73,
- 0x12, 0x17, 0x0a, 0x07, 0x64, 0x72, 0x79, 0x5f, 0x72, 0x75, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x06, 0x64, 0x72, 0x79, 0x52, 0x75, 0x6e, 0x12, 0x3e, 0x0a, 0x14, 0x72, 0x65, 0x73,
- 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x74, 0x6f, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
- 0x70, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65,
- 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x12, 0x72, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x54, 0x6f,
- 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0xad, 0x01, 0x0a, 0x19, 0x52, 0x65,
- 0x73, 0x74, 0x6f, 0x72, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x24, 0x0a, 0x05, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c, 0x6f, 0x67, 0x75, 0x74,
+ 0x69, 0x6c, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x22,
+ 0x4d, 0x0a, 0x1b, 0x52, 0x65, 0x74, 0x72, 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69,
+ 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a,
+ 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75,
+ 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x22, 0xdd,
+ 0x01, 0x0a, 0x1c, 0x52, 0x65, 0x74, 0x72, 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69,
+ 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
+ 0x75, 0x0a, 0x16, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x61, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64,
+ 0x5f, 0x62, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
+ 0x40, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x74, 0x72,
+ 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66,
+ 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72,
+ 0x79, 0x52, 0x13, 0x72, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42,
+ 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x1a, 0x46, 0x0a, 0x18, 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66,
+ 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74,
+ 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
+ 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x51,
+ 0x0a, 0x15, 0x52, 0x75, 0x6e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65,
0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e,
0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41,
0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61,
- 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a,
- 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68,
- 0x61, 0x72, 0x64, 0x12, 0x24, 0x0a, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x6c, 0x6f, 0x67, 0x75, 0x74, 0x69, 0x6c, 0x2e, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x52, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x22, 0x4d, 0x0a, 0x1b, 0x52, 0x65, 0x74,
- 0x72, 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x22, 0xdd, 0x01, 0x0a, 0x1c, 0x52, 0x65, 0x74,
- 0x72, 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x75, 0x0a, 0x16, 0x72, 0x6f, 0x77,
- 0x73, 0x5f, 0x61, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f, 0x73, 0x68,
- 0x61, 0x72, 0x64, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x40, 0x2e, 0x76, 0x74, 0x63, 0x74,
- 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x74, 0x72, 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d,
- 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x2e, 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42,
- 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x72, 0x6f, 0x77,
- 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64,
- 0x1a, 0x46, 0x0a, 0x18, 0x52, 0x6f, 0x77, 0x73, 0x41, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64,
- 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03,
- 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14,
- 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x51, 0x0a, 0x15, 0x52, 0x75, 0x6e, 0x48,
- 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61,
- 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x18, 0x0a, 0x16, 0x52,
- 0x75, 0x6e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x6d, 0x0a, 0x22, 0x53, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6f,
- 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b,
- 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b,
- 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x64, 0x75, 0x72, 0x61, 0x62,
- 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x10, 0x64, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6f,
- 0x6c, 0x69, 0x63, 0x79, 0x22, 0x55, 0x0a, 0x23, 0x53, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c,
- 0x69, 0x63, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2e, 0x0a, 0x08, 0x6b,
- 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e,
- 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x5e, 0x0a, 0x1e, 0x53,
- 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x69,
- 0x6e, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a,
- 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x6f, 0x72,
- 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x4a,
- 0x04, 0x08, 0x02, 0x10, 0x03, 0x4a, 0x04, 0x08, 0x03, 0x10, 0x04, 0x22, 0x51, 0x0a, 0x1f, 0x53,
- 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x69,
- 0x6e, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2e,
- 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x12, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x72,
- 0x0a, 0x1f, 0x53, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x49, 0x73, 0x50, 0x72, 0x69, 0x6d,
- 0x61, 0x72, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x73, 0x22, 0x18, 0x0a, 0x16, 0x52, 0x75, 0x6e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68,
+ 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x6d, 0x0a, 0x22, 0x53,
+ 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69,
+ 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a,
- 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68,
- 0x61, 0x72, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x6e,
- 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x53, 0x65, 0x72, 0x76, 0x69,
- 0x6e, 0x67, 0x22, 0x49, 0x0a, 0x20, 0x53, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x49, 0x73,
- 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x25, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x22, 0x8e, 0x02,
- 0x0a, 0x1c, 0x53, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a,
+ 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x2b, 0x0a,
+ 0x11, 0x64, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x6f, 0x6c, 0x69,
+ 0x63, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x64, 0x75, 0x72, 0x61, 0x62, 0x69,
+ 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0x55, 0x0a, 0x23, 0x53, 0x65,
+ 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c,
+ 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x12, 0x2e, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x22, 0x5e, 0x0a, 0x1e, 0x53, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x53, 0x68, 0x61, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75,
+ 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12,
+ 0x14, 0x0a, 0x05, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05,
+ 0x66, 0x6f, 0x72, 0x63, 0x65, 0x4a, 0x04, 0x08, 0x02, 0x10, 0x03, 0x4a, 0x04, 0x08, 0x03, 0x10,
+ 0x04, 0x22, 0x51, 0x0a, 0x1f, 0x53, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x53, 0x68, 0x61, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2e, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73,
+ 0x70, 0x61, 0x63, 0x65, 0x22, 0x72, 0x0a, 0x1f, 0x53, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64,
+ 0x49, 0x73, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f,
+ 0x73, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69,
+ 0x73, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x22, 0x49, 0x0a, 0x20, 0x53, 0x65, 0x74, 0x53,
+ 0x68, 0x61, 0x72, 0x64, 0x49, 0x73, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x65, 0x72,
+ 0x76, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x25, 0x0a, 0x05,
+ 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x74, 0x6f,
+ 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x05, 0x73, 0x68,
+ 0x61, 0x72, 0x64, 0x22, 0x8e, 0x02, 0x0a, 0x1c, 0x53, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x35, 0x0a, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f,
+ 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70,
+ 0x65, 0x52, 0x0a, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a,
+ 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65,
+ 0x6c, 0x6c, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x64, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x5f, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x64, 0x65, 0x6e, 0x69,
+ 0x65, 0x64, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x32, 0x0a, 0x15, 0x64, 0x69, 0x73, 0x61,
+ 0x62, 0x6c, 0x65, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,
+ 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65,
+ 0x51, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06,
+ 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x72, 0x65,
+ 0x6d, 0x6f, 0x76, 0x65, 0x22, 0x46, 0x0a, 0x1d, 0x53, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x25, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x22, 0x6a, 0x0a, 0x12,
+ 0x53, 0x65, 0x74, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69,
+ 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52,
+ 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x1a, 0x0a, 0x08,
+ 0x77, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08,
+ 0x77, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x15, 0x0a, 0x13, 0x53, 0x65, 0x74, 0x57,
+ 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
+ 0x88, 0x01, 0x0a, 0x1a, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a,
0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68,
0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64,
- 0x12, 0x35, 0x0a, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0a, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73,
- 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x23, 0x0a,
- 0x0d, 0x64, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x05,
- 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x64, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x54, 0x61, 0x62, 0x6c,
- 0x65, 0x73, 0x12, 0x32, 0x0a, 0x15, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x71, 0x75,
- 0x65, 0x72, 0x79, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x13, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x53,
- 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65,
- 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x22, 0x46,
- 0x0a, 0x1d, 0x53, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
- 0x25, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f,
- 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52,
- 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x22, 0x6a, 0x0a, 0x12, 0x53, 0x65, 0x74, 0x57, 0x72, 0x69,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x72, 0x69, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x77, 0x72, 0x69, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x22, 0x15, 0x0a, 0x13, 0x53, 0x65, 0x74, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x88, 0x01, 0x0a, 0x1a, 0x53, 0x68,
+ 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73,
+ 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x1d, 0x0a, 0x1b, 0x53, 0x68,
0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64,
- 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73,
+ 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x62, 0x0a, 0x1a, 0x53, 0x68, 0x61,
+ 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x78,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x65, 0x6c,
+ 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x65, 0x6c, 0x6c, 0x22, 0x54, 0x0a,
+ 0x1b, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x46, 0x69, 0x78, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x35, 0x0a, 0x05,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x74, 0x6f,
+ 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x05, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x22, 0x54, 0x0a, 0x20, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x22, 0xaa, 0x03, 0x0a, 0x21, 0x53, 0x68,
+ 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f,
+ 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
+ 0x78, 0x0a, 0x14, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73,
+ 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x45, 0x2e,
+ 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52,
+ 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69,
+ 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x65, 0x70, 0x6c,
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x45,
+ 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x12, 0x5a, 0x0a, 0x0a, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x5f, 0x6d, 0x61, 0x70, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3b, 0x2e,
+ 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52,
+ 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69,
+ 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x54, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x4d, 0x61, 0x70, 0x1a, 0x5f, 0x0a, 0x18, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72,
+ 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
+ 0x6b, 0x65, 0x79, 0x12, 0x2d, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x05, 0x76, 0x61, 0x6c,
+ 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x4e, 0x0a, 0x0e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x26, 0x0a, 0x05, 0x76, 0x61,
+ 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x74, 0x6f, 0x70, 0x6f,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x05, 0x76, 0x61, 0x6c,
+ 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x8b, 0x01, 0x0a, 0x1d, 0x53, 0x68, 0x61, 0x72, 0x64,
+ 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x6d, 0x6f, 0x76,
+ 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73,
0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73,
0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20,
0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61,
0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c,
0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41,
- 0x6c, 0x69, 0x61, 0x73, 0x22, 0x1d, 0x0a, 0x1b, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x22, 0x62, 0x0a, 0x1a, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a,
- 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68,
- 0x61, 0x72, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x65, 0x6c, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x04, 0x63, 0x65, 0x6c, 0x6c, 0x22, 0x54, 0x0a, 0x1b, 0x53, 0x68, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x78, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x35, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x54, 0x0a,
- 0x20, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a,
- 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68,
- 0x61, 0x72, 0x64, 0x22, 0xaa, 0x03, 0x0a, 0x21, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
- 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x78, 0x0a, 0x14, 0x72, 0x65, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65,
- 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x45, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13,
- 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75,
- 0x73, 0x65, 0x73, 0x12, 0x5a, 0x0a, 0x0a, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x6d, 0x61,
- 0x70, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x4d, 0x61, 0x70, 0x45,
- 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x4d, 0x61, 0x70, 0x1a,
- 0x5f, 0x0a, 0x18, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,
- 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2d, 0x0a,
- 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x72,
- 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
- 0x1a, 0x4e, 0x0a, 0x0e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74,
- 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x03, 0x6b, 0x65, 0x79, 0x12, 0x26, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
- 0x22, 0x8b, 0x01, 0x0a, 0x1d, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14,
- 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73,
- 0x68, 0x61, 0x72, 0x64, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61,
- 0x6c, 0x69, 0x61, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70,
- 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61,
- 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x20,
- 0x0a, 0x1e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x22, 0x7c, 0x0a, 0x12, 0x53, 0x6c, 0x65, 0x65, 0x70, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74,
- 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c,
- 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73,
- 0x12, 0x2c, 0x0a, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x15,
- 0x0a, 0x13, 0x53, 0x6c, 0x65, 0x65, 0x70, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xf0, 0x01, 0x0a, 0x15, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65,
- 0x53, 0x68, 0x61, 0x72, 0x64, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73,
- 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72,
- 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03,
- 0x75, 0x69, 0x64, 0x12, 0x27, 0x0a, 0x0f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6b, 0x65,
- 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f,
- 0x75, 0x72, 0x63, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x21, 0x0a, 0x0c,
- 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x05, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12,
- 0x2f, 0x0a, 0x09, 0x6b, 0x65, 0x79, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4b, 0x65,
- 0x79, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x52, 0x61, 0x6e, 0x67, 0x65,
- 0x12, 0x16, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x22, 0x3f, 0x0a, 0x16, 0x53, 0x6f, 0x75, 0x72,
- 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x12, 0x25, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x0f, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61,
- 0x72, 0x64, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x22, 0x5e, 0x0a, 0x18, 0x53, 0x6f, 0x75,
- 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
+ 0x6c, 0x69, 0x61, 0x73, 0x22, 0x20, 0x0a, 0x1e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
+ 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x7c, 0x0a, 0x12, 0x53, 0x6c, 0x65, 0x65, 0x70, 0x54,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x2c, 0x0a, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d,
+ 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x08, 0x64, 0x75, 0x72, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x15, 0x0a, 0x13, 0x53, 0x6c, 0x65, 0x65, 0x70, 0x54, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xf0, 0x01, 0x0a, 0x15,
+ 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x41, 0x64, 0x64, 0x52, 0x65,
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x03,
- 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x75, 0x69, 0x64, 0x22, 0x42, 0x0a, 0x19, 0x53, 0x6f, 0x75,
- 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x25, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x22, 0x53, 0x0a,
- 0x17, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15,
- 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69,
- 0x61, 0x73, 0x22, 0x1a, 0x0a, 0x18, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x52,
- 0x0a, 0x16, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15,
- 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69,
- 0x61, 0x73, 0x22, 0x19, 0x0a, 0x17, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x52, 0x0a,
- 0x21, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x6c,
- 0x79, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x2d, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x22, 0xc6, 0x01, 0x0a, 0x22, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65,
- 0x72, 0x6e, 0x61, 0x6c, 0x6c, 0x79, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x65, 0x64,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x36, 0x0a, 0x0b, 0x6e, 0x65,
- 0x77, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0a, 0x6e, 0x65, 0x77, 0x50, 0x72, 0x69, 0x6d, 0x61,
- 0x72, 0x79, 0x12, 0x36, 0x0a, 0x0b, 0x6f, 0x6c, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72,
- 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0a,
- 0x6f, 0x6c, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x22, 0x5c, 0x0a, 0x15, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2f, 0x0a, 0x09, 0x63, 0x65, 0x6c, 0x6c, 0x5f,
- 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x6f, 0x70,
- 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08,
- 0x63, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x5d, 0x0a, 0x16, 0x55, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2f, 0x0a, 0x09, 0x63, 0x65, 0x6c, 0x6c, 0x5f, 0x69,
- 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x6f, 0x70, 0x6f,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x63,
- 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x64, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x35, 0x0a, 0x0b, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x5f,
- 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x6f,
- 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61,
- 0x73, 0x52, 0x0a, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x65, 0x0a,
- 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61,
- 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x35, 0x0a,
- 0x0b, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x65,
- 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0a, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x41,
- 0x6c, 0x69, 0x61, 0x73, 0x22, 0x34, 0x0a, 0x0f, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x69, 0x6e, 0x67, 0x5f,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x70,
- 0x69, 0x6e, 0x67, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x22, 0xfb, 0x01, 0x0a, 0x10, 0x56,
- 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
- 0x18, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x62, 0x0a, 0x13, 0x72, 0x65, 0x73,
- 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
- 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79, 0x4b, 0x65, 0x79,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x11, 0x72, 0x65, 0x73, 0x75,
- 0x6c, 0x74, 0x73, 0x42, 0x79, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x1a, 0x69, 0x0a,
- 0x16, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
- 0x63, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x39, 0x0a, 0x05, 0x76, 0x61, 0x6c,
- 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x58, 0x0a, 0x17, 0x56, 0x61, 0x6c, 0x69,
- 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12,
- 0x21, 0x0a, 0x0c, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x70, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x73, 0x22, 0xfc, 0x01, 0x0a, 0x18, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4b,
- 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
- 0x18, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x61, 0x0a, 0x10, 0x72, 0x65, 0x73,
- 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20,
- 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73,
- 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x72, 0x65,
- 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x1a, 0x63, 0x0a, 0x13,
- 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e,
- 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x36, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
- 0x01, 0x22, 0xd8, 0x01, 0x0a, 0x1d, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63,
- 0x68, 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12,
- 0x25, 0x0a, 0x0e, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65,
- 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64,
- 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69,
- 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x56, 0x69, 0x65, 0x77, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x73,
- 0x6b, 0x69, 0x70, 0x5f, 0x6e, 0x6f, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x04,
- 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x73, 0x6b, 0x69, 0x70, 0x4e, 0x6f, 0x50, 0x72, 0x69, 0x6d,
- 0x61, 0x72, 0x79, 0x12, 0x27, 0x0a, 0x0f, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x76,
- 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x6e,
- 0x63, 0x6c, 0x75, 0x64, 0x65, 0x56, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x22, 0x88, 0x02, 0x0a,
- 0x1e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4b,
- 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
- 0x18, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x67, 0x0a, 0x10, 0x72, 0x65, 0x73,
- 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20,
- 0x03, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4b, 0x65,
+ 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x27, 0x0a, 0x0f, 0x73, 0x6f, 0x75,
+ 0x72, 0x63, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x63, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x73, 0x68, 0x61,
+ 0x72, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
+ 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x2f, 0x0a, 0x09, 0x6b, 0x65, 0x79, 0x5f, 0x72, 0x61, 0x6e,
+ 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x4b, 0x65, 0x79, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x08, 0x6b, 0x65,
+ 0x79, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73,
+ 0x18, 0x07, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x22, 0x3f,
+ 0x0a, 0x16, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x41, 0x64, 0x64,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x25, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72,
+ 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x22,
+ 0x5e, 0x0a, 0x18, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x44, 0x65,
+ 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64,
+ 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x10, 0x0a,
+ 0x03, 0x75, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x75, 0x69, 0x64, 0x22,
+ 0x42, 0x0a, 0x19, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x44, 0x65,
+ 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x25, 0x0a, 0x05,
+ 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x74, 0x6f,
+ 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x05, 0x73, 0x68,
+ 0x61, 0x72, 0x64, 0x22, 0x53, 0x0a, 0x17, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c,
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38,
+ 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x1a, 0x0a, 0x18, 0x53, 0x74, 0x61, 0x72,
+ 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x52, 0x0a, 0x16, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c,
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38,
+ 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0b, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x19, 0x0a, 0x17, 0x53, 0x74, 0x6f, 0x70,
+ 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x22, 0x52, 0x0a, 0x21, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x45, 0x78, 0x74,
+ 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x6c, 0x79, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x65,
+ 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2d, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52,
+ 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x22, 0xc6, 0x01, 0x0a, 0x22, 0x54, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x6c, 0x79, 0x52, 0x65, 0x70, 0x61,
+ 0x72, 0x65, 0x6e, 0x74, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a,
+ 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68,
+ 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64,
+ 0x12, 0x36, 0x0a, 0x0b, 0x6e, 0x65, 0x77, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18,
+ 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0a, 0x6e, 0x65,
+ 0x77, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x36, 0x0a, 0x0b, 0x6f, 0x6c, 0x64, 0x5f,
+ 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e,
+ 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41,
+ 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0a, 0x6f, 0x6c, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79,
+ 0x22, 0x5c, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e,
+ 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
+ 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2f, 0x0a,
+ 0x09, 0x63, 0x65, 0x6c, 0x6c, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
+ 0x32, 0x12, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x65, 0x6c, 0x6c,
+ 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x63, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x5d,
+ 0x0a, 0x16, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2f, 0x0a, 0x09,
+ 0x63, 0x65, 0x6c, 0x6c, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
+ 0x12, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x65, 0x6c, 0x6c, 0x49,
+ 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x63, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x64, 0x0a,
+ 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61,
+ 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x35, 0x0a, 0x0b,
+ 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
+ 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x65, 0x6c,
+ 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0a, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c,
+ 0x69, 0x61, 0x73, 0x22, 0x65, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x65, 0x6c,
+ 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
+ 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
+ 0x61, 0x6d, 0x65, 0x12, 0x35, 0x0a, 0x0b, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x5f, 0x61, 0x6c, 0x69,
+ 0x61, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x0a,
+ 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x22, 0x34, 0x0a, 0x0f, 0x56, 0x61,
+ 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a,
+ 0x0c, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x08, 0x52, 0x0b, 0x70, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73,
+ 0x22, 0xfb, 0x01, 0x0a, 0x10, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73,
+ 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12,
+ 0x62, 0x0a, 0x13, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x6b, 0x65,
+ 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x76,
+ 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74,
+ 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74,
+ 0x73, 0x42, 0x79, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79,
+ 0x52, 0x11, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79, 0x4b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x1a, 0x69, 0x0a, 0x16, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79,
+ 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
+ 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
+ 0x39, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64,
+ 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x58,
+ 0x0a, 0x17, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79,
+ 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79,
+ 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x70, 0x69, 0x6e,
+ 0x67, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x22, 0xfc, 0x01, 0x0a, 0x18, 0x56, 0x61, 0x6c,
+ 0x69, 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73,
+ 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12,
+ 0x61, 0x0a, 0x10, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x73, 0x68,
+ 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x76, 0x74, 0x63, 0x74,
+ 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65,
0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52,
0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74,
0x72, 0x79, 0x52, 0x0e, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79, 0x53, 0x68, 0x61,
@@ -18840,383 +18947,415 @@ var file_vtctldata_proto_rawDesc = []byte{
0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x76, 0x74, 0x63,
0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53,
0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x6b, 0x0a, 0x14, 0x56, 0x61, 0x6c, 0x69, 0x64,
- 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73,
- 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72,
- 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x70, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x73, 0x22, 0x31, 0x0a, 0x15, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65,
- 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a,
- 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07,
- 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x3c, 0x0a, 0x1e, 0x56, 0x61, 0x6c, 0x69, 0x64,
- 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xd8, 0x01, 0x0a, 0x1d, 0x56, 0x61, 0x6c, 0x69,
+ 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79,
0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x8a, 0x02, 0x0a, 0x1f, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61,
- 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x73,
- 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75,
- 0x6c, 0x74, 0x73, 0x12, 0x68, 0x0a, 0x10, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x62,
- 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3e, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61,
- 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74,
- 0x73, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x72,
- 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x1a, 0x63, 0x0a,
- 0x13, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45,
- 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x36, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02,
- 0x38, 0x01, 0x22, 0x4f, 0x0a, 0x1b, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a,
- 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x68,
- 0x61, 0x72, 0x64, 0x22, 0x38, 0x0a, 0x1c, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56,
- 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65,
+ 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x65,
+ 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x23, 0x0a, 0x0d,
+ 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x73, 0x18, 0x03, 0x20,
+ 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x56, 0x69, 0x65, 0x77,
+ 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x6e, 0x6f, 0x5f, 0x70, 0x72, 0x69,
+ 0x6d, 0x61, 0x72, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x73, 0x6b, 0x69, 0x70,
+ 0x4e, 0x6f, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x27, 0x0a, 0x0f, 0x69, 0x6e, 0x63,
+ 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x76, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x05, 0x20, 0x01,
+ 0x28, 0x08, 0x52, 0x0e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x56, 0x73, 0x63, 0x68, 0x65,
+ 0x6d, 0x61, 0x22, 0x88, 0x02, 0x0a, 0x1e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53,
+ 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73,
+ 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12,
+ 0x67, 0x0a, 0x10, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x73, 0x68,
+ 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x76, 0x74, 0x63, 0x74,
+ 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63,
+ 0x68, 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79, 0x53, 0x68,
+ 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
+ 0x73, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x1a, 0x63, 0x0a, 0x13, 0x52, 0x65, 0x73, 0x75,
+ 0x6c, 0x74, 0x73, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12,
+ 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,
+ 0x79, 0x12, 0x36, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
+ 0x32, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c,
+ 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x6b, 0x0a,
+ 0x14, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x69, 0x6e, 0x67, 0x5f,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x70,
+ 0x69, 0x6e, 0x67, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x22, 0x31, 0x0a, 0x15, 0x56, 0x61,
+ 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01,
- 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x98, 0x01,
- 0x0a, 0x16, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d,
- 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x02,
- 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x12, 0x25, 0x0a, 0x0e,
- 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x03,
- 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54, 0x61, 0x62,
- 0x6c, 0x65, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x76,
- 0x69, 0x65, 0x77, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x6e, 0x63, 0x6c,
- 0x75, 0x64, 0x65, 0x56, 0x69, 0x65, 0x77, 0x73, 0x22, 0xfa, 0x01, 0x0a, 0x17, 0x56, 0x61, 0x6c,
- 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18,
- 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x60,
- 0x0a, 0x10, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x73, 0x68, 0x61,
- 0x72, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x53, 0x63,
- 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x65, 0x73,
- 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79,
- 0x52, 0x0e, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64,
- 0x1a, 0x63, 0x0a, 0x13, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79, 0x53, 0x68, 0x61,
- 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x36, 0x0a, 0x05, 0x76, 0x61, 0x6c,
- 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61,
- 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
- 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xf9, 0x07, 0x0a, 0x12, 0x56, 0x44, 0x69, 0x66, 0x66, 0x43,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08,
- 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
- 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x27, 0x0a, 0x0f, 0x74, 0x61, 0x72, 0x67,
- 0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x04, 0x75, 0x75, 0x69, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f,
- 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x6f, 0x75,
- 0x72, 0x63, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x61, 0x72, 0x67,
- 0x65, 0x74, 0x5f, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b,
- 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28,
- 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54,
- 0x79, 0x70, 0x65, 0x73, 0x12, 0x6c, 0x0a, 0x1b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73,
- 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65,
- 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65,
- 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x19, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53,
- 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e,
- 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x08, 0x20, 0x03,
- 0x28, 0x09, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69,
- 0x6d, 0x69, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,
- 0x12, 0x55, 0x0a, 0x1e, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x74, 0x69,
- 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d,
- 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x1b, 0x66, 0x69, 0x6c, 0x74,
- 0x65, 0x72, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57,
- 0x61, 0x69, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x62, 0x75, 0x67,
- 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x64, 0x65,
- 0x62, 0x75, 0x67, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x1a, 0x0a, 0x09, 0x6f, 0x6e, 0x6c, 0x79,
- 0x5f, 0x70, 0x5f, 0x6b, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x6f, 0x6e, 0x6c,
- 0x79, 0x50, 0x4b, 0x73, 0x12, 0x2c, 0x0a, 0x12, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x10, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x74, 0x61,
- 0x74, 0x73, 0x12, 0x38, 0x0a, 0x19, 0x6d, 0x61, 0x78, 0x5f, 0x65, 0x78, 0x74, 0x72, 0x61, 0x5f,
- 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x74, 0x6f, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x65, 0x18,
- 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x15, 0x6d, 0x61, 0x78, 0x45, 0x78, 0x74, 0x72, 0x61, 0x52,
- 0x6f, 0x77, 0x73, 0x54, 0x6f, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x65, 0x12, 0x12, 0x0a, 0x04,
- 0x77, 0x61, 0x69, 0x74, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x77, 0x61, 0x69, 0x74,
- 0x12, 0x42, 0x0a, 0x14, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f,
- 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10,
- 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x52, 0x12, 0x77, 0x61, 0x69, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x74, 0x65,
- 0x72, 0x76, 0x61, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x72, 0x65, 0x74,
- 0x72, 0x79, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x61, 0x75, 0x74, 0x6f, 0x52, 0x65,
- 0x74, 0x72, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x62, 0x6f, 0x73, 0x65, 0x18, 0x12,
- 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x76, 0x65, 0x72, 0x62, 0x6f, 0x73, 0x65, 0x12, 0x33, 0x0a,
- 0x16, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x73, 0x61, 0x6d, 0x70,
- 0x6c, 0x65, 0x5f, 0x72, 0x6f, 0x77, 0x73, 0x18, 0x13, 0x20, 0x01, 0x28, 0x03, 0x52, 0x13, 0x6d,
- 0x61, 0x78, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x52, 0x6f,
- 0x77, 0x73, 0x12, 0x3c, 0x0a, 0x11, 0x6d, 0x61, 0x78, 0x5f, 0x64, 0x69, 0x66, 0x66, 0x5f, 0x64,
- 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e,
- 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
- 0x0f, 0x6d, 0x61, 0x78, 0x44, 0x69, 0x66, 0x66, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x12, 0x3c, 0x0a, 0x1b, 0x72, 0x6f, 0x77, 0x5f, 0x64, 0x69, 0x66, 0x66, 0x5f, 0x63, 0x6f, 0x6c,
- 0x75, 0x6d, 0x6e, 0x5f, 0x74, 0x72, 0x75, 0x6e, 0x63, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x74, 0x18,
- 0x15, 0x20, 0x01, 0x28, 0x03, 0x52, 0x17, 0x72, 0x6f, 0x77, 0x44, 0x69, 0x66, 0x66, 0x43, 0x6f,
- 0x6c, 0x75, 0x6d, 0x6e, 0x54, 0x72, 0x75, 0x6e, 0x63, 0x61, 0x74, 0x65, 0x41, 0x74, 0x12, 0x22,
- 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x16, 0x20, 0x01,
- 0x28, 0x08, 0x48, 0x00, 0x52, 0x09, 0x61, 0x75, 0x74, 0x6f, 0x53, 0x74, 0x61, 0x72, 0x74, 0x88,
- 0x01, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x73, 0x74, 0x61, 0x72,
- 0x74, 0x22, 0x29, 0x0a, 0x13, 0x56, 0x44, 0x69, 0x66, 0x66, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x55, 0x55, 0x49, 0x44,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x55, 0x55, 0x49, 0x44, 0x22, 0x6b, 0x0a, 0x12,
- 0x56, 0x44, 0x69, 0x66, 0x66, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x3c, 0x0a,
+ 0x1e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
+ 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x8a, 0x02, 0x0a, 0x1f,
+ 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
+ 0x18, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
+ 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x68, 0x0a, 0x10, 0x72, 0x65, 0x73,
+ 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20,
+ 0x03, 0x28, 0x0b, 0x32, 0x3e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e,
+ 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e,
+ 0x74, 0x72, 0x79, 0x52, 0x0e, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79, 0x53, 0x68,
+ 0x61, 0x72, 0x64, 0x1a, 0x63, 0x0a, 0x13, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79,
+ 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
+ 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x36, 0x0a, 0x05,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x76, 0x74,
+ 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65,
+ 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05, 0x76,
+ 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x4f, 0x0a, 0x1b, 0x56, 0x61, 0x6c, 0x69,
+ 0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x64,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x22, 0x38, 0x0a, 0x1c, 0x56, 0x61, 0x6c,
+ 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72,
+ 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x73,
+ 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75,
+ 0x6c, 0x74, 0x73, 0x22, 0x98, 0x01, 0x0a, 0x16, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65,
+ 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a,
+ 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68,
+ 0x61, 0x72, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x73, 0x68, 0x61, 0x72,
+ 0x64, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x78, 0x63, 0x6c,
+ 0x75, 0x64, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x69, 0x6e, 0x63,
+ 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08,
+ 0x52, 0x0c, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x56, 0x69, 0x65, 0x77, 0x73, 0x22, 0xfa,
+ 0x01, 0x0a, 0x17, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x53, 0x63, 0x68, 0x65,
+ 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65,
+ 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65, 0x73,
+ 0x75, 0x6c, 0x74, 0x73, 0x12, 0x60, 0x0a, 0x10, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x5f,
+ 0x62, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x36,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64,
+ 0x61, 0x74, 0x65, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72,
+ 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x42,
+ 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x1a, 0x63, 0x0a, 0x13, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74,
+ 0x73, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
+ 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
+ 0x36, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64,
+ 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xf9, 0x07, 0x0a, 0x12,
+ 0x56, 0x44, 0x69, 0x66, 0x66, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x01,
0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x27,
0x0a, 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x4b,
- 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x72, 0x67, 0x18, 0x03,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x61, 0x72, 0x67, 0x22, 0x15, 0x0a, 0x13, 0x56, 0x44, 0x69,
- 0x66, 0x66, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x22, 0x92, 0x01, 0x0a, 0x12, 0x56, 0x44, 0x69, 0x66, 0x66, 0x52, 0x65, 0x73, 0x75, 0x6d, 0x65,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66,
- 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66,
- 0x6c, 0x6f, 0x77, 0x12, 0x27, 0x0a, 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x6b, 0x65,
- 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x74, 0x61,
- 0x72, 0x67, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04,
- 0x75, 0x75, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64,
- 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64,
- 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53,
- 0x68, 0x61, 0x72, 0x64, 0x73, 0x22, 0x15, 0x0a, 0x13, 0x56, 0x44, 0x69, 0x66, 0x66, 0x52, 0x65,
- 0x73, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x69, 0x0a, 0x10,
- 0x56, 0x44, 0x69, 0x66, 0x66, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x27, 0x0a, 0x0f,
- 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x4b, 0x65, 0x79,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x72, 0x67, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x03, 0x61, 0x72, 0x67, 0x22, 0xd7, 0x01, 0x0a, 0x11, 0x56, 0x44, 0x69, 0x66,
- 0x66, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a,
- 0x10, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x1a, 0x64, 0x0a, 0x14, 0x54,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x45, 0x6e,
- 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x36, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
- 0x01, 0x22, 0x90, 0x01, 0x0a, 0x10, 0x56, 0x44, 0x69, 0x66, 0x66, 0x53, 0x74, 0x6f, 0x70, 0x52,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75, 0x69, 0x64, 0x18,
+ 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x73,
+ 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28,
+ 0x09, 0x52, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x21,
+ 0x0a, 0x0c, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x05,
+ 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c,
+ 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65,
+ 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x6c, 0x0a, 0x1b, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70,
+ 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32,
+ 0x2c, 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x19, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x74, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72,
+ 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73,
+ 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52,
+ 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x55, 0x0a, 0x1e, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
+ 0x65, 0x64, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x77,
+ 0x61, 0x69, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10,
+ 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x52, 0x1b, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x61, 0x69, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1f, 0x0a,
+ 0x0b, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x0b, 0x20, 0x01,
+ 0x28, 0x08, 0x52, 0x0a, 0x64, 0x65, 0x62, 0x75, 0x67, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x1a,
+ 0x0a, 0x09, 0x6f, 0x6e, 0x6c, 0x79, 0x5f, 0x70, 0x5f, 0x6b, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28,
+ 0x08, 0x52, 0x07, 0x6f, 0x6e, 0x6c, 0x79, 0x50, 0x4b, 0x73, 0x12, 0x2c, 0x0a, 0x12, 0x75, 0x70,
+ 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73,
+ 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x61,
+ 0x62, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x12, 0x38, 0x0a, 0x19, 0x6d, 0x61, 0x78, 0x5f,
+ 0x65, 0x78, 0x74, 0x72, 0x61, 0x5f, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x74, 0x6f, 0x5f, 0x63, 0x6f,
+ 0x6d, 0x70, 0x61, 0x72, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x15, 0x6d, 0x61, 0x78,
+ 0x45, 0x78, 0x74, 0x72, 0x61, 0x52, 0x6f, 0x77, 0x73, 0x54, 0x6f, 0x43, 0x6f, 0x6d, 0x70, 0x61,
+ 0x72, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x77, 0x61, 0x69, 0x74, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08,
+ 0x52, 0x04, 0x77, 0x61, 0x69, 0x74, 0x12, 0x42, 0x0a, 0x14, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x75,
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18, 0x10,
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75,
+ 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x12, 0x77, 0x61, 0x69, 0x74, 0x55, 0x70, 0x64, 0x61,
+ 0x74, 0x65, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x75,
+ 0x74, 0x6f, 0x5f, 0x72, 0x65, 0x74, 0x72, 0x79, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09,
+ 0x61, 0x75, 0x74, 0x6f, 0x52, 0x65, 0x74, 0x72, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72,
+ 0x62, 0x6f, 0x73, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x76, 0x65, 0x72, 0x62,
+ 0x6f, 0x73, 0x65, 0x12, 0x33, 0x0a, 0x16, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x65, 0x70, 0x6f, 0x72,
+ 0x74, 0x5f, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x72, 0x6f, 0x77, 0x73, 0x18, 0x13, 0x20,
+ 0x01, 0x28, 0x03, 0x52, 0x13, 0x6d, 0x61, 0x78, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x53, 0x61,
+ 0x6d, 0x70, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x73, 0x12, 0x3c, 0x0a, 0x11, 0x6d, 0x61, 0x78, 0x5f,
+ 0x64, 0x69, 0x66, 0x66, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x14, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0f, 0x6d, 0x61, 0x78, 0x44, 0x69, 0x66, 0x66, 0x44, 0x75,
+ 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3c, 0x0a, 0x1b, 0x72, 0x6f, 0x77, 0x5f, 0x64, 0x69,
+ 0x66, 0x66, 0x5f, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x5f, 0x74, 0x72, 0x75, 0x6e, 0x63, 0x61,
+ 0x74, 0x65, 0x5f, 0x61, 0x74, 0x18, 0x15, 0x20, 0x01, 0x28, 0x03, 0x52, 0x17, 0x72, 0x6f, 0x77,
+ 0x44, 0x69, 0x66, 0x66, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x54, 0x72, 0x75, 0x6e, 0x63, 0x61,
+ 0x74, 0x65, 0x41, 0x74, 0x12, 0x22, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x73, 0x74, 0x61,
+ 0x72, 0x74, 0x18, 0x16, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x09, 0x61, 0x75, 0x74, 0x6f,
+ 0x53, 0x74, 0x61, 0x72, 0x74, 0x88, 0x01, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x61, 0x75, 0x74,
+ 0x6f, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x22, 0x29, 0x0a, 0x13, 0x56, 0x44, 0x69, 0x66, 0x66,
+ 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12,
+ 0x0a, 0x04, 0x55, 0x55, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x55, 0x55,
+ 0x49, 0x44, 0x22, 0x6b, 0x0a, 0x12, 0x56, 0x44, 0x69, 0x66, 0x66, 0x44, 0x65, 0x6c, 0x65, 0x74,
+ 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b,
+ 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b,
+ 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x27, 0x0a, 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x6b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x74,
+ 0x61, 0x72, 0x67, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x10, 0x0a,
+ 0x03, 0x61, 0x72, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x61, 0x72, 0x67, 0x22,
+ 0x15, 0x0a, 0x13, 0x56, 0x44, 0x69, 0x66, 0x66, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x92, 0x01, 0x0a, 0x12, 0x56, 0x44, 0x69, 0x66, 0x66,
+ 0x52, 0x65, 0x73, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a,
+ 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x27, 0x0a, 0x0f, 0x74, 0x61, 0x72,
+ 0x67, 0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74,
+ 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x74,
+ 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x22, 0x15, 0x0a, 0x13, 0x56,
+ 0x44, 0x69, 0x66, 0x66, 0x52, 0x65, 0x73, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x22, 0x69, 0x0a, 0x10, 0x56, 0x44, 0x69, 0x66, 0x66, 0x53, 0x68, 0x6f, 0x77, 0x52,
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
0x6f, 0x77, 0x12, 0x27, 0x0a, 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79,
0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x74, 0x61, 0x72,
- 0x67, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75,
- 0x75, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x12,
- 0x23, 0x0a, 0x0d, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73,
- 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x68,
- 0x61, 0x72, 0x64, 0x73, 0x22, 0x13, 0x0a, 0x11, 0x56, 0x44, 0x69, 0x66, 0x66, 0x53, 0x74, 0x6f,
- 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xb2, 0x01, 0x0a, 0x15, 0x57, 0x6f,
- 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12,
- 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x1b, 0x0a, 0x09, 0x6b,
- 0x65, 0x65, 0x70, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08,
- 0x6b, 0x65, 0x65, 0x70, 0x44, 0x61, 0x74, 0x61, 0x12, 0x2c, 0x0a, 0x12, 0x6b, 0x65, 0x65, 0x70,
- 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x04,
- 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x6b, 0x65, 0x65, 0x70, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e,
- 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73,
- 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x22, 0xd1,
- 0x01, 0x0a, 0x16, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x6c, 0x65, 0x74,
- 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x6d,
- 0x6d, 0x61, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x6d, 0x6d,
- 0x61, 0x72, 0x79, 0x12, 0x46, 0x0a, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x02,
- 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x49, 0x6e,
- 0x66, 0x6f, 0x52, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x1a, 0x55, 0x0a, 0x0a, 0x54,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2d, 0x0a, 0x06, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73,
- 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x64, 0x65, 0x6c, 0x65,
- 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x64, 0x65, 0x6c, 0x65, 0x74,
- 0x65, 0x64, 0x22, 0x67, 0x0a, 0x15, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b,
+ 0x67, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61,
+ 0x72, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x61, 0x72, 0x67, 0x22, 0xd7, 0x01,
+ 0x0a, 0x11, 0x56, 0x44, 0x69, 0x66, 0x66, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a, 0x10, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x72, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e,
+ 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x53,
+ 0x68, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x54, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79,
+ 0x52, 0x0f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x73, 0x1a, 0x64, 0x0a, 0x14, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x36, 0x0a, 0x05, 0x76,
+ 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56,
+ 0x44, 0x69, 0x66, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05, 0x76, 0x61,
+ 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x90, 0x01, 0x0a, 0x10, 0x56, 0x44, 0x69, 0x66,
+ 0x66, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08,
+ 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
+ 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x27, 0x0a, 0x0f, 0x74, 0x61, 0x72, 0x67,
+ 0x65, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x04, 0x75, 0x75, 0x69, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f,
+ 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x74, 0x61,
+ 0x72, 0x67, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x22, 0x13, 0x0a, 0x11, 0x56, 0x44,
+ 0x69, 0x66, 0x66, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
+ 0xb2, 0x01, 0x0a, 0x15, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x6c, 0x65,
+ 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79,
+ 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79,
+ 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
+ 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
+ 0x77, 0x12, 0x1b, 0x0a, 0x09, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03,
+ 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x6b, 0x65, 0x65, 0x70, 0x44, 0x61, 0x74, 0x61, 0x12, 0x2c,
+ 0x0a, 0x12, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72,
+ 0x75, 0x6c, 0x65, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x6b, 0x65, 0x65, 0x70,
+ 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x16, 0x0a, 0x06,
+ 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x73, 0x68,
+ 0x61, 0x72, 0x64, 0x73, 0x22, 0xd1, 0x01, 0x0a, 0x16, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
+ 0x77, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
+ 0x18, 0x0a, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x46, 0x0a, 0x07, 0x64, 0x65, 0x74,
+ 0x61, 0x69, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x76, 0x74, 0x63,
+ 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44,
+ 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x54, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c,
+ 0x73, 0x1a, 0x55, 0x0a, 0x0a, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12,
+ 0x2d, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
+ 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x18,
+ 0x0a, 0x07, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
+ 0x07, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x22, 0x67, 0x0a, 0x15, 0x57, 0x6f, 0x72, 0x6b,
+ 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1a, 0x0a,
+ 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
+ 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x61,
+ 0x72, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64,
+ 0x73, 0x22, 0xe6, 0x07, 0x0a, 0x16, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74,
+ 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5f, 0x0a, 0x10,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65,
+ 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75,
+ 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x43,
+ 0x6f, 0x70, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x58, 0x0a,
+ 0x0d, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x18, 0x02,
+ 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x53, 0x74, 0x72,
+ 0x65, 0x61, 0x6d, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0c, 0x73, 0x68, 0x61, 0x72, 0x64,
+ 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x72, 0x61, 0x66, 0x66,
+ 0x69, 0x63, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
+ 0x74, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x53, 0x74, 0x61, 0x74, 0x65, 0x1a, 0xe8, 0x01, 0x0a,
+ 0x0e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12,
+ 0x1f, 0x0a, 0x0b, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x63, 0x6f, 0x70, 0x69, 0x65, 0x64, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x72, 0x6f, 0x77, 0x73, 0x43, 0x6f, 0x70, 0x69, 0x65, 0x64,
+ 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x02,
+ 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x72, 0x6f, 0x77, 0x73, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x12,
+ 0x27, 0x0a, 0x0f, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61,
+ 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0e, 0x72, 0x6f, 0x77, 0x73, 0x50, 0x65,
+ 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x79, 0x74, 0x65,
+ 0x73, 0x5f, 0x63, 0x6f, 0x70, 0x69, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
+ 0x62, 0x79, 0x74, 0x65, 0x73, 0x43, 0x6f, 0x70, 0x69, 0x65, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x62,
+ 0x79, 0x74, 0x65, 0x73, 0x5f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
+ 0x52, 0x0a, 0x62, 0x79, 0x74, 0x65, 0x73, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x29, 0x0a, 0x10,
+ 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65,
+ 0x18, 0x06, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x50, 0x65, 0x72,
+ 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x1a, 0xbc, 0x01, 0x0a, 0x10, 0x53, 0x68, 0x61, 0x72,
+ 0x64, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x0e, 0x0a, 0x02,
+ 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x2d, 0x0a, 0x06,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74,
+ 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c,
+ 0x69, 0x61, 0x73, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x73,
+ 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
+ 0x09, 0x52, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x1a,
+ 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74,
+ 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74,
+ 0x75, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
+ 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x1a, 0x5c, 0x0a, 0x0c, 0x53, 0x68, 0x61, 0x72, 0x64, 0x53,
+ 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x4c, 0x0a, 0x07, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d,
+ 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74,
+ 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64,
+ 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x07, 0x73, 0x74, 0x72,
+ 0x65, 0x61, 0x6d, 0x73, 0x1a, 0x73, 0x0a, 0x13, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x43, 0x6f, 0x70,
+ 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,
+ 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x46, 0x0a,
+ 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x76,
+ 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
+ 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x6f, 0x0a, 0x11, 0x53, 0x68, 0x61,
+ 0x72, 0x64, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
+ 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
+ 0x12, 0x44, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
+ 0x2e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b,
+ 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x52,
+ 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x85, 0x04, 0x0a, 0x1c, 0x57,
+ 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x54, 0x72, 0x61,
+ 0x66, 0x66, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b,
0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b,
0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66,
0x6c, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66,
- 0x6c, 0x6f, 0x77, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x03, 0x20,
- 0x03, 0x28, 0x09, 0x52, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x22, 0xe6, 0x07, 0x0a, 0x16,
- 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5f, 0x0a, 0x10, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f,
- 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
- 0x32, 0x35, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72,
- 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x53, 0x74, 0x61,
- 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x43, 0x6f,
- 0x70, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x58, 0x0a, 0x0d, 0x73, 0x68, 0x61, 0x72, 0x64,
- 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33,
- 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66,
- 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x45, 0x6e,
- 0x74, 0x72, 0x79, 0x52, 0x0c, 0x73, 0x68, 0x61, 0x72, 0x64, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d,
- 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x5f, 0x73, 0x74, 0x61,
- 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x74, 0x72, 0x61, 0x66, 0x66, 0x69,
- 0x63, 0x53, 0x74, 0x61, 0x74, 0x65, 0x1a, 0xe8, 0x01, 0x0a, 0x0e, 0x54, 0x61, 0x62, 0x6c, 0x65,
- 0x43, 0x6f, 0x70, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x72, 0x6f, 0x77,
- 0x73, 0x5f, 0x63, 0x6f, 0x70, 0x69, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
- 0x72, 0x6f, 0x77, 0x73, 0x43, 0x6f, 0x70, 0x69, 0x65, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x6f,
- 0x77, 0x73, 0x5f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
- 0x72, 0x6f, 0x77, 0x73, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x6f, 0x77,
- 0x73, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x02, 0x52, 0x0e, 0x72, 0x6f, 0x77, 0x73, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61,
- 0x67, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x63, 0x6f, 0x70, 0x69,
- 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x62, 0x79, 0x74, 0x65, 0x73, 0x43,
- 0x6f, 0x70, 0x69, 0x65, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x74,
- 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x62, 0x79, 0x74, 0x65,
- 0x73, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x29, 0x0a, 0x10, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f,
- 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x02,
- 0x52, 0x0f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67,
- 0x65, 0x1a, 0xbc, 0x01, 0x0a, 0x10, 0x53, 0x68, 0x61, 0x72, 0x64, 0x53, 0x74, 0x72, 0x65, 0x61,
- 0x6d, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x2d, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x06, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f,
- 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x6f, 0x75,
- 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x69,
- 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6f, 0x73, 0x69,
- 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x12, 0x0a, 0x04,
- 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f,
- 0x1a, 0x5c, 0x0a, 0x0c, 0x53, 0x68, 0x61, 0x72, 0x64, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73,
- 0x12, 0x4c, 0x0a, 0x07, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28,
- 0x0b, 0x32, 0x32, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f,
- 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d,
- 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x07, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x1a, 0x73,
- 0x0a, 0x13, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65,
- 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x46, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75,
- 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x43,
- 0x6f, 0x70, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,
- 0x02, 0x38, 0x01, 0x1a, 0x6f, 0x0a, 0x11, 0x53, 0x68, 0x61, 0x72, 0x64, 0x53, 0x74, 0x72, 0x65,
- 0x61, 0x6d, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x76, 0x74, 0x63, 0x74,
- 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x68, 0x61,
- 0x72, 0x64, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x3a, 0x02, 0x38, 0x01, 0x22, 0xef, 0x03, 0x0a, 0x1c, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
- 0x77, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x14, 0x0a,
- 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x63, 0x65,
- 0x6c, 0x6c, 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79,
- 0x70, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52,
- 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x4f, 0x0a, 0x1b,
- 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
- 0x6c, 0x61, 0x67, 0x5f, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x52, 0x18, 0x6d, 0x61, 0x78, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x67, 0x41, 0x6c, 0x6c, 0x6f, 0x77, 0x65, 0x64, 0x12, 0x3c, 0x0a,
- 0x1a, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x72, 0x65, 0x76, 0x65, 0x72, 0x73, 0x65, 0x5f,
- 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x18, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x76, 0x65, 0x72, 0x73, 0x65,
- 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x64,
- 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09,
- 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x0a, 0x07, 0x74, 0x69, 0x6d,
- 0x65, 0x6f, 0x75, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74,
- 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x74, 0x69,
- 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x72, 0x79, 0x5f, 0x72, 0x75, 0x6e,
- 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x64, 0x72, 0x79, 0x52, 0x75, 0x6e, 0x12, 0x3e,
- 0x0a, 0x1b, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x5f, 0x74, 0x61, 0x72,
- 0x67, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x18, 0x0a, 0x20,
- 0x01, 0x28, 0x08, 0x52, 0x19, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x54,
- 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x12, 0x16,
- 0x0a, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06,
- 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x22, 0xa7, 0x01, 0x0a, 0x1d, 0x57, 0x6f, 0x72, 0x6b, 0x66,
- 0x6c, 0x6f, 0x77, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x6d, 0x6d,
- 0x61, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61,
- 0x72, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x53, 0x74,
- 0x61, 0x74, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x75, 0x72, 0x72,
- 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x26, 0x0a, 0x0f, 0x64, 0x72, 0x79, 0x5f,
- 0x72, 0x75, 0x6e, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28,
- 0x09, 0x52, 0x0d, 0x64, 0x72, 0x79, 0x52, 0x75, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73,
- 0x22, 0x90, 0x01, 0x0a, 0x15, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x55, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65,
- 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65,
- 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x5b, 0x0a, 0x0e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34,
- 0x2e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x52, 0x0d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x22, 0xd1, 0x01, 0x0a, 0x16, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
- 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18,
- 0x0a, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x46, 0x0a, 0x07, 0x64, 0x65, 0x74, 0x61,
- 0x69, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x76, 0x74, 0x63, 0x74,
- 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x54, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
- 0x1a, 0x55, 0x0a, 0x0a, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2d,
- 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15,
+ 0x6c, 0x6f, 0x77, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03,
+ 0x28, 0x09, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0e, 0x32,
+ 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70,
+ 0x65, 0x73, 0x12, 0x4f, 0x0a, 0x1b, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x67, 0x5f, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x65,
+ 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65,
+ 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x18, 0x6d, 0x61, 0x78, 0x52, 0x65,
+ 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x67, 0x41, 0x6c, 0x6c, 0x6f,
+ 0x77, 0x65, 0x64, 0x12, 0x3c, 0x0a, 0x1a, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x72, 0x65,
+ 0x76, 0x65, 0x72, 0x73, 0x65, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x18, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x52,
+ 0x65, 0x76, 0x65, 0x72, 0x73, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07,
+ 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12,
+ 0x2a, 0x0a, 0x07, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b,
+ 0x32, 0x10, 0x2e, 0x76, 0x74, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x52, 0x07, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x64,
+ 0x72, 0x79, 0x5f, 0x72, 0x75, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x64, 0x72,
+ 0x79, 0x52, 0x75, 0x6e, 0x12, 0x3e, 0x0a, 0x1b, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69,
+ 0x7a, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e,
+ 0x63, 0x65, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x19, 0x69, 0x6e, 0x69, 0x74, 0x69,
+ 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x65, 0x71, 0x75, 0x65,
+ 0x6e, 0x63, 0x65, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x18, 0x0b,
+ 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x12, 0x14, 0x0a, 0x05,
+ 0x66, 0x6f, 0x72, 0x63, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x66, 0x6f, 0x72,
+ 0x63, 0x65, 0x22, 0xa7, 0x01, 0x0a, 0x1d, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53,
+ 0x77, 0x69, 0x74, 0x63, 0x68, 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x1f,
+ 0x0a, 0x0b, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12,
+ 0x23, 0x0a, 0x0d, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65,
+ 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x53,
+ 0x74, 0x61, 0x74, 0x65, 0x12, 0x26, 0x0a, 0x0f, 0x64, 0x72, 0x79, 0x5f, 0x72, 0x75, 0x6e, 0x5f,
+ 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x64,
+ 0x72, 0x79, 0x52, 0x75, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x90, 0x01, 0x0a,
+ 0x15, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52,
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x63, 0x65, 0x12, 0x5b, 0x0a, 0x0e, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55,
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x52, 0x0d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22,
+ 0xd1, 0x01, 0x0a, 0x16, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x55, 0x70, 0x64, 0x61,
+ 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75,
+ 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x6d,
+ 0x6d, 0x61, 0x72, 0x79, 0x12, 0x46, 0x0a, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18,
+ 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x49,
+ 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x1a, 0x55, 0x0a, 0x0a,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2d, 0x0a, 0x06, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x6f, 0x70,
+ 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x41, 0x6c, 0x69, 0x61,
+ 0x73, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x68, 0x61,
+ 0x6e, 0x67, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x63, 0x68, 0x61, 0x6e,
+ 0x67, 0x65, 0x64, 0x22, 0x17, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x4d, 0x69, 0x72, 0x72, 0x6f, 0x72,
+ 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x51, 0x0a, 0x16,
+ 0x47, 0x65, 0x74, 0x4d, 0x69, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x37, 0x0a, 0x0c, 0x6d, 0x69, 0x72, 0x72, 0x6f, 0x72,
+ 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x76,
+ 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x4d, 0x69, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x75, 0x6c,
+ 0x65, 0x73, 0x52, 0x0b, 0x6d, 0x69, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x22,
+ 0xa9, 0x01, 0x0a, 0x1c, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x4d, 0x69, 0x72, 0x72,
+ 0x6f, 0x72, 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08,
+ 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
+ 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x37, 0x0a, 0x0c, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x14,
0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x18, 0x0a,
- 0x07, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,
- 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x22, 0x17, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x4d, 0x69,
- 0x72, 0x72, 0x6f, 0x72, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x22, 0x51, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x4d, 0x69, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x75, 0x6c,
- 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x37, 0x0a, 0x0c, 0x6d, 0x69,
- 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x14, 0x2e, 0x76, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x4d, 0x69, 0x72, 0x72, 0x6f,
- 0x72, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x0b, 0x6d, 0x69, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x75,
- 0x6c, 0x65, 0x73, 0x22, 0xa9, 0x01, 0x0a, 0x1c, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
- 0x4d, 0x69, 0x72, 0x72, 0x6f, 0x72, 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
- 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x37, 0x0a, 0x0c,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03,
- 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x02, 0x52, 0x07, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x22,
- 0x7f, 0x0a, 0x1d, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x4d, 0x69, 0x72, 0x72, 0x6f,
- 0x72, 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x74,
- 0x61, 0x72, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x63,
- 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0c, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65,
- 0x2a, 0x4a, 0x0a, 0x15, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x0a, 0x0a, 0x06, 0x43, 0x55, 0x53,
- 0x54, 0x4f, 0x4d, 0x10, 0x00, 0x12, 0x0e, 0x0a, 0x0a, 0x4d, 0x4f, 0x56, 0x45, 0x54, 0x41, 0x42,
- 0x4c, 0x45, 0x53, 0x10, 0x01, 0x12, 0x15, 0x0a, 0x11, 0x43, 0x52, 0x45, 0x41, 0x54, 0x45, 0x4c,
- 0x4f, 0x4f, 0x4b, 0x55, 0x50, 0x49, 0x4e, 0x44, 0x45, 0x58, 0x10, 0x02, 0x2a, 0x38, 0x0a, 0x0d,
- 0x51, 0x75, 0x65, 0x72, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x08, 0x0a,
- 0x04, 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x00, 0x12, 0x0d, 0x0a, 0x09, 0x41, 0x53, 0x43, 0x45, 0x4e,
- 0x44, 0x49, 0x4e, 0x47, 0x10, 0x01, 0x12, 0x0e, 0x0a, 0x0a, 0x44, 0x45, 0x53, 0x43, 0x45, 0x4e,
- 0x44, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x42, 0x28, 0x5a, 0x26, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73,
- 0x2e, 0x69, 0x6f, 0x2f, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2f, 0x67, 0x6f, 0x2f, 0x76, 0x74,
- 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
- 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65,
+ 0x73, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01,
+ 0x28, 0x02, 0x52, 0x07, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x22, 0x7f, 0x0a, 0x1d, 0x57,
+ 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x4d, 0x69, 0x72, 0x72, 0x6f, 0x72, 0x54, 0x72, 0x61,
+ 0x66, 0x66, 0x69, 0x63, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07,
+ 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73,
+ 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x74, 0x61,
+ 0x72, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x75, 0x72, 0x72, 0x65,
+ 0x6e, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
+ 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x2a, 0x4a, 0x0a, 0x15,
+ 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49,
+ 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x0a, 0x0a, 0x06, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x10,
+ 0x00, 0x12, 0x0e, 0x0a, 0x0a, 0x4d, 0x4f, 0x56, 0x45, 0x54, 0x41, 0x42, 0x4c, 0x45, 0x53, 0x10,
+ 0x01, 0x12, 0x15, 0x0a, 0x11, 0x43, 0x52, 0x45, 0x41, 0x54, 0x45, 0x4c, 0x4f, 0x4f, 0x4b, 0x55,
+ 0x50, 0x49, 0x4e, 0x44, 0x45, 0x58, 0x10, 0x02, 0x2a, 0x38, 0x0a, 0x0d, 0x51, 0x75, 0x65, 0x72,
+ 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x4f, 0x4e,
+ 0x45, 0x10, 0x00, 0x12, 0x0d, 0x0a, 0x09, 0x41, 0x53, 0x43, 0x45, 0x4e, 0x44, 0x49, 0x4e, 0x47,
+ 0x10, 0x01, 0x12, 0x0e, 0x0a, 0x0a, 0x44, 0x45, 0x53, 0x43, 0x45, 0x4e, 0x44, 0x49, 0x4e, 0x47,
+ 0x10, 0x02, 0x42, 0x28, 0x5a, 0x26, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2e, 0x69, 0x6f, 0x2f,
+ 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2f, 0x67, 0x6f, 0x2f, 0x76, 0x74, 0x2f, 0x70, 0x72, 0x6f,
+ 0x74, 0x6f, 0x2f, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x62, 0x06, 0x70, 0x72,
+ 0x6f, 0x74, 0x6f, 0x33,
}
var (
@@ -19232,7 +19371,7 @@ func file_vtctldata_proto_rawDescGZIP() []byte {
}
var file_vtctldata_proto_enumTypes = make([]protoimpl.EnumInfo, 4)
-var file_vtctldata_proto_msgTypes = make([]protoimpl.MessageInfo, 290)
+var file_vtctldata_proto_msgTypes = make([]protoimpl.MessageInfo, 293)
var file_vtctldata_proto_goTypes = []any{
(MaterializationIntent)(0), // 0: vtctldata.MaterializationIntent
(QueryOrdering)(0), // 1: vtctldata.QueryOrdering
@@ -19355,454 +19494,461 @@ var file_vtctldata_proto_goTypes = []any{
(*TopologyCell)(nil), // 118: vtctldata.TopologyCell
(*GetUnresolvedTransactionsRequest)(nil), // 119: vtctldata.GetUnresolvedTransactionsRequest
(*GetUnresolvedTransactionsResponse)(nil), // 120: vtctldata.GetUnresolvedTransactionsResponse
- (*GetVSchemaRequest)(nil), // 121: vtctldata.GetVSchemaRequest
- (*GetVersionRequest)(nil), // 122: vtctldata.GetVersionRequest
- (*GetVersionResponse)(nil), // 123: vtctldata.GetVersionResponse
- (*GetVSchemaResponse)(nil), // 124: vtctldata.GetVSchemaResponse
- (*GetWorkflowsRequest)(nil), // 125: vtctldata.GetWorkflowsRequest
- (*GetWorkflowsResponse)(nil), // 126: vtctldata.GetWorkflowsResponse
- (*InitShardPrimaryRequest)(nil), // 127: vtctldata.InitShardPrimaryRequest
- (*InitShardPrimaryResponse)(nil), // 128: vtctldata.InitShardPrimaryResponse
- (*LaunchSchemaMigrationRequest)(nil), // 129: vtctldata.LaunchSchemaMigrationRequest
- (*LaunchSchemaMigrationResponse)(nil), // 130: vtctldata.LaunchSchemaMigrationResponse
- (*LookupVindexCreateRequest)(nil), // 131: vtctldata.LookupVindexCreateRequest
- (*LookupVindexCreateResponse)(nil), // 132: vtctldata.LookupVindexCreateResponse
- (*LookupVindexExternalizeRequest)(nil), // 133: vtctldata.LookupVindexExternalizeRequest
- (*LookupVindexExternalizeResponse)(nil), // 134: vtctldata.LookupVindexExternalizeResponse
- (*MaterializeCreateRequest)(nil), // 135: vtctldata.MaterializeCreateRequest
- (*MaterializeCreateResponse)(nil), // 136: vtctldata.MaterializeCreateResponse
- (*MigrateCreateRequest)(nil), // 137: vtctldata.MigrateCreateRequest
- (*MigrateCompleteRequest)(nil), // 138: vtctldata.MigrateCompleteRequest
- (*MigrateCompleteResponse)(nil), // 139: vtctldata.MigrateCompleteResponse
- (*MountRegisterRequest)(nil), // 140: vtctldata.MountRegisterRequest
- (*MountRegisterResponse)(nil), // 141: vtctldata.MountRegisterResponse
- (*MountUnregisterRequest)(nil), // 142: vtctldata.MountUnregisterRequest
- (*MountUnregisterResponse)(nil), // 143: vtctldata.MountUnregisterResponse
- (*MountShowRequest)(nil), // 144: vtctldata.MountShowRequest
- (*MountShowResponse)(nil), // 145: vtctldata.MountShowResponse
- (*MountListRequest)(nil), // 146: vtctldata.MountListRequest
- (*MountListResponse)(nil), // 147: vtctldata.MountListResponse
- (*MoveTablesCreateRequest)(nil), // 148: vtctldata.MoveTablesCreateRequest
- (*MoveTablesCreateResponse)(nil), // 149: vtctldata.MoveTablesCreateResponse
- (*MoveTablesCompleteRequest)(nil), // 150: vtctldata.MoveTablesCompleteRequest
- (*MoveTablesCompleteResponse)(nil), // 151: vtctldata.MoveTablesCompleteResponse
- (*PingTabletRequest)(nil), // 152: vtctldata.PingTabletRequest
- (*PingTabletResponse)(nil), // 153: vtctldata.PingTabletResponse
- (*PlannedReparentShardRequest)(nil), // 154: vtctldata.PlannedReparentShardRequest
- (*PlannedReparentShardResponse)(nil), // 155: vtctldata.PlannedReparentShardResponse
- (*RebuildKeyspaceGraphRequest)(nil), // 156: vtctldata.RebuildKeyspaceGraphRequest
- (*RebuildKeyspaceGraphResponse)(nil), // 157: vtctldata.RebuildKeyspaceGraphResponse
- (*RebuildVSchemaGraphRequest)(nil), // 158: vtctldata.RebuildVSchemaGraphRequest
- (*RebuildVSchemaGraphResponse)(nil), // 159: vtctldata.RebuildVSchemaGraphResponse
- (*RefreshStateRequest)(nil), // 160: vtctldata.RefreshStateRequest
- (*RefreshStateResponse)(nil), // 161: vtctldata.RefreshStateResponse
- (*RefreshStateByShardRequest)(nil), // 162: vtctldata.RefreshStateByShardRequest
- (*RefreshStateByShardResponse)(nil), // 163: vtctldata.RefreshStateByShardResponse
- (*ReloadSchemaRequest)(nil), // 164: vtctldata.ReloadSchemaRequest
- (*ReloadSchemaResponse)(nil), // 165: vtctldata.ReloadSchemaResponse
- (*ReloadSchemaKeyspaceRequest)(nil), // 166: vtctldata.ReloadSchemaKeyspaceRequest
- (*ReloadSchemaKeyspaceResponse)(nil), // 167: vtctldata.ReloadSchemaKeyspaceResponse
- (*ReloadSchemaShardRequest)(nil), // 168: vtctldata.ReloadSchemaShardRequest
- (*ReloadSchemaShardResponse)(nil), // 169: vtctldata.ReloadSchemaShardResponse
- (*RemoveBackupRequest)(nil), // 170: vtctldata.RemoveBackupRequest
- (*RemoveBackupResponse)(nil), // 171: vtctldata.RemoveBackupResponse
- (*RemoveKeyspaceCellRequest)(nil), // 172: vtctldata.RemoveKeyspaceCellRequest
- (*RemoveKeyspaceCellResponse)(nil), // 173: vtctldata.RemoveKeyspaceCellResponse
- (*RemoveShardCellRequest)(nil), // 174: vtctldata.RemoveShardCellRequest
- (*RemoveShardCellResponse)(nil), // 175: vtctldata.RemoveShardCellResponse
- (*ReparentTabletRequest)(nil), // 176: vtctldata.ReparentTabletRequest
- (*ReparentTabletResponse)(nil), // 177: vtctldata.ReparentTabletResponse
- (*ReshardCreateRequest)(nil), // 178: vtctldata.ReshardCreateRequest
- (*RestoreFromBackupRequest)(nil), // 179: vtctldata.RestoreFromBackupRequest
- (*RestoreFromBackupResponse)(nil), // 180: vtctldata.RestoreFromBackupResponse
- (*RetrySchemaMigrationRequest)(nil), // 181: vtctldata.RetrySchemaMigrationRequest
- (*RetrySchemaMigrationResponse)(nil), // 182: vtctldata.RetrySchemaMigrationResponse
- (*RunHealthCheckRequest)(nil), // 183: vtctldata.RunHealthCheckRequest
- (*RunHealthCheckResponse)(nil), // 184: vtctldata.RunHealthCheckResponse
- (*SetKeyspaceDurabilityPolicyRequest)(nil), // 185: vtctldata.SetKeyspaceDurabilityPolicyRequest
- (*SetKeyspaceDurabilityPolicyResponse)(nil), // 186: vtctldata.SetKeyspaceDurabilityPolicyResponse
- (*SetKeyspaceShardingInfoRequest)(nil), // 187: vtctldata.SetKeyspaceShardingInfoRequest
- (*SetKeyspaceShardingInfoResponse)(nil), // 188: vtctldata.SetKeyspaceShardingInfoResponse
- (*SetShardIsPrimaryServingRequest)(nil), // 189: vtctldata.SetShardIsPrimaryServingRequest
- (*SetShardIsPrimaryServingResponse)(nil), // 190: vtctldata.SetShardIsPrimaryServingResponse
- (*SetShardTabletControlRequest)(nil), // 191: vtctldata.SetShardTabletControlRequest
- (*SetShardTabletControlResponse)(nil), // 192: vtctldata.SetShardTabletControlResponse
- (*SetWritableRequest)(nil), // 193: vtctldata.SetWritableRequest
- (*SetWritableResponse)(nil), // 194: vtctldata.SetWritableResponse
- (*ShardReplicationAddRequest)(nil), // 195: vtctldata.ShardReplicationAddRequest
- (*ShardReplicationAddResponse)(nil), // 196: vtctldata.ShardReplicationAddResponse
- (*ShardReplicationFixRequest)(nil), // 197: vtctldata.ShardReplicationFixRequest
- (*ShardReplicationFixResponse)(nil), // 198: vtctldata.ShardReplicationFixResponse
- (*ShardReplicationPositionsRequest)(nil), // 199: vtctldata.ShardReplicationPositionsRequest
- (*ShardReplicationPositionsResponse)(nil), // 200: vtctldata.ShardReplicationPositionsResponse
- (*ShardReplicationRemoveRequest)(nil), // 201: vtctldata.ShardReplicationRemoveRequest
- (*ShardReplicationRemoveResponse)(nil), // 202: vtctldata.ShardReplicationRemoveResponse
- (*SleepTabletRequest)(nil), // 203: vtctldata.SleepTabletRequest
- (*SleepTabletResponse)(nil), // 204: vtctldata.SleepTabletResponse
- (*SourceShardAddRequest)(nil), // 205: vtctldata.SourceShardAddRequest
- (*SourceShardAddResponse)(nil), // 206: vtctldata.SourceShardAddResponse
- (*SourceShardDeleteRequest)(nil), // 207: vtctldata.SourceShardDeleteRequest
- (*SourceShardDeleteResponse)(nil), // 208: vtctldata.SourceShardDeleteResponse
- (*StartReplicationRequest)(nil), // 209: vtctldata.StartReplicationRequest
- (*StartReplicationResponse)(nil), // 210: vtctldata.StartReplicationResponse
- (*StopReplicationRequest)(nil), // 211: vtctldata.StopReplicationRequest
- (*StopReplicationResponse)(nil), // 212: vtctldata.StopReplicationResponse
- (*TabletExternallyReparentedRequest)(nil), // 213: vtctldata.TabletExternallyReparentedRequest
- (*TabletExternallyReparentedResponse)(nil), // 214: vtctldata.TabletExternallyReparentedResponse
- (*UpdateCellInfoRequest)(nil), // 215: vtctldata.UpdateCellInfoRequest
- (*UpdateCellInfoResponse)(nil), // 216: vtctldata.UpdateCellInfoResponse
- (*UpdateCellsAliasRequest)(nil), // 217: vtctldata.UpdateCellsAliasRequest
- (*UpdateCellsAliasResponse)(nil), // 218: vtctldata.UpdateCellsAliasResponse
- (*ValidateRequest)(nil), // 219: vtctldata.ValidateRequest
- (*ValidateResponse)(nil), // 220: vtctldata.ValidateResponse
- (*ValidateKeyspaceRequest)(nil), // 221: vtctldata.ValidateKeyspaceRequest
- (*ValidateKeyspaceResponse)(nil), // 222: vtctldata.ValidateKeyspaceResponse
- (*ValidateSchemaKeyspaceRequest)(nil), // 223: vtctldata.ValidateSchemaKeyspaceRequest
- (*ValidateSchemaKeyspaceResponse)(nil), // 224: vtctldata.ValidateSchemaKeyspaceResponse
- (*ValidateShardRequest)(nil), // 225: vtctldata.ValidateShardRequest
- (*ValidateShardResponse)(nil), // 226: vtctldata.ValidateShardResponse
- (*ValidateVersionKeyspaceRequest)(nil), // 227: vtctldata.ValidateVersionKeyspaceRequest
- (*ValidateVersionKeyspaceResponse)(nil), // 228: vtctldata.ValidateVersionKeyspaceResponse
- (*ValidateVersionShardRequest)(nil), // 229: vtctldata.ValidateVersionShardRequest
- (*ValidateVersionShardResponse)(nil), // 230: vtctldata.ValidateVersionShardResponse
- (*ValidateVSchemaRequest)(nil), // 231: vtctldata.ValidateVSchemaRequest
- (*ValidateVSchemaResponse)(nil), // 232: vtctldata.ValidateVSchemaResponse
- (*VDiffCreateRequest)(nil), // 233: vtctldata.VDiffCreateRequest
- (*VDiffCreateResponse)(nil), // 234: vtctldata.VDiffCreateResponse
- (*VDiffDeleteRequest)(nil), // 235: vtctldata.VDiffDeleteRequest
- (*VDiffDeleteResponse)(nil), // 236: vtctldata.VDiffDeleteResponse
- (*VDiffResumeRequest)(nil), // 237: vtctldata.VDiffResumeRequest
- (*VDiffResumeResponse)(nil), // 238: vtctldata.VDiffResumeResponse
- (*VDiffShowRequest)(nil), // 239: vtctldata.VDiffShowRequest
- (*VDiffShowResponse)(nil), // 240: vtctldata.VDiffShowResponse
- (*VDiffStopRequest)(nil), // 241: vtctldata.VDiffStopRequest
- (*VDiffStopResponse)(nil), // 242: vtctldata.VDiffStopResponse
- (*WorkflowDeleteRequest)(nil), // 243: vtctldata.WorkflowDeleteRequest
- (*WorkflowDeleteResponse)(nil), // 244: vtctldata.WorkflowDeleteResponse
- (*WorkflowStatusRequest)(nil), // 245: vtctldata.WorkflowStatusRequest
- (*WorkflowStatusResponse)(nil), // 246: vtctldata.WorkflowStatusResponse
- (*WorkflowSwitchTrafficRequest)(nil), // 247: vtctldata.WorkflowSwitchTrafficRequest
- (*WorkflowSwitchTrafficResponse)(nil), // 248: vtctldata.WorkflowSwitchTrafficResponse
- (*WorkflowUpdateRequest)(nil), // 249: vtctldata.WorkflowUpdateRequest
- (*WorkflowUpdateResponse)(nil), // 250: vtctldata.WorkflowUpdateResponse
- (*GetMirrorRulesRequest)(nil), // 251: vtctldata.GetMirrorRulesRequest
- (*GetMirrorRulesResponse)(nil), // 252: vtctldata.GetMirrorRulesResponse
- (*WorkflowMirrorTrafficRequest)(nil), // 253: vtctldata.WorkflowMirrorTrafficRequest
- (*WorkflowMirrorTrafficResponse)(nil), // 254: vtctldata.WorkflowMirrorTrafficResponse
- nil, // 255: vtctldata.Workflow.ShardStreamsEntry
- (*Workflow_ReplicationLocation)(nil), // 256: vtctldata.Workflow.ReplicationLocation
- (*Workflow_ShardStream)(nil), // 257: vtctldata.Workflow.ShardStream
- (*Workflow_Stream)(nil), // 258: vtctldata.Workflow.Stream
- (*Workflow_Stream_CopyState)(nil), // 259: vtctldata.Workflow.Stream.CopyState
- (*Workflow_Stream_Log)(nil), // 260: vtctldata.Workflow.Stream.Log
- (*Workflow_Stream_ThrottlerStatus)(nil), // 261: vtctldata.Workflow.Stream.ThrottlerStatus
- nil, // 262: vtctldata.ApplySchemaResponse.RowsAffectedByShardEntry
- nil, // 263: vtctldata.ApplyVSchemaResponse.UnknownVindexParamsEntry
- (*ApplyVSchemaResponse_ParamList)(nil), // 264: vtctldata.ApplyVSchemaResponse.ParamList
- nil, // 265: vtctldata.CancelSchemaMigrationResponse.RowsAffectedByShardEntry
- nil, // 266: vtctldata.CleanupSchemaMigrationResponse.RowsAffectedByShardEntry
- nil, // 267: vtctldata.CompleteSchemaMigrationResponse.RowsAffectedByShardEntry
- nil, // 268: vtctldata.FindAllShardsInKeyspaceResponse.ShardsEntry
- nil, // 269: vtctldata.ForceCutOverSchemaMigrationResponse.RowsAffectedByShardEntry
- nil, // 270: vtctldata.GetCellsAliasesResponse.AliasesEntry
- nil, // 271: vtctldata.GetShardReplicationResponse.ShardReplicationByCellEntry
- nil, // 272: vtctldata.GetSrvKeyspaceNamesResponse.NamesEntry
- (*GetSrvKeyspaceNamesResponse_NameList)(nil), // 273: vtctldata.GetSrvKeyspaceNamesResponse.NameList
- nil, // 274: vtctldata.GetSrvKeyspacesResponse.SrvKeyspacesEntry
- nil, // 275: vtctldata.GetSrvVSchemasResponse.SrvVSchemasEntry
- nil, // 276: vtctldata.LaunchSchemaMigrationResponse.RowsAffectedByShardEntry
- (*MoveTablesCreateResponse_TabletInfo)(nil), // 277: vtctldata.MoveTablesCreateResponse.TabletInfo
- nil, // 278: vtctldata.RetrySchemaMigrationResponse.RowsAffectedByShardEntry
- nil, // 279: vtctldata.ShardReplicationPositionsResponse.ReplicationStatusesEntry
- nil, // 280: vtctldata.ShardReplicationPositionsResponse.TabletMapEntry
- nil, // 281: vtctldata.ValidateResponse.ResultsByKeyspaceEntry
- nil, // 282: vtctldata.ValidateKeyspaceResponse.ResultsByShardEntry
- nil, // 283: vtctldata.ValidateSchemaKeyspaceResponse.ResultsByShardEntry
- nil, // 284: vtctldata.ValidateVersionKeyspaceResponse.ResultsByShardEntry
- nil, // 285: vtctldata.ValidateVSchemaResponse.ResultsByShardEntry
- nil, // 286: vtctldata.VDiffShowResponse.TabletResponsesEntry
- (*WorkflowDeleteResponse_TabletInfo)(nil), // 287: vtctldata.WorkflowDeleteResponse.TabletInfo
- (*WorkflowStatusResponse_TableCopyState)(nil), // 288: vtctldata.WorkflowStatusResponse.TableCopyState
- (*WorkflowStatusResponse_ShardStreamState)(nil), // 289: vtctldata.WorkflowStatusResponse.ShardStreamState
- (*WorkflowStatusResponse_ShardStreams)(nil), // 290: vtctldata.WorkflowStatusResponse.ShardStreams
- nil, // 291: vtctldata.WorkflowStatusResponse.TableCopyStateEntry
- nil, // 292: vtctldata.WorkflowStatusResponse.ShardStreamsEntry
- (*WorkflowUpdateResponse_TabletInfo)(nil), // 293: vtctldata.WorkflowUpdateResponse.TabletInfo
- (*logutil.Event)(nil), // 294: logutil.Event
- (tabletmanagerdata.TabletSelectionPreference)(0), // 295: tabletmanagerdata.TabletSelectionPreference
- (*topodata.Keyspace)(nil), // 296: topodata.Keyspace
- (*vttime.Time)(nil), // 297: vttime.Time
- (*topodata.TabletAlias)(nil), // 298: topodata.TabletAlias
- (*vttime.Duration)(nil), // 299: vttime.Duration
- (*topodata.Shard)(nil), // 300: topodata.Shard
- (*topodata.CellInfo)(nil), // 301: topodata.CellInfo
- (*vschema.KeyspaceRoutingRules)(nil), // 302: vschema.KeyspaceRoutingRules
- (*vschema.RoutingRules)(nil), // 303: vschema.RoutingRules
- (*vschema.ShardRoutingRules)(nil), // 304: vschema.ShardRoutingRules
- (*vtrpc.CallerID)(nil), // 305: vtrpc.CallerID
- (*vschema.Keyspace)(nil), // 306: vschema.Keyspace
- (topodata.TabletType)(0), // 307: topodata.TabletType
- (*topodata.Tablet)(nil), // 308: topodata.Tablet
- (*tabletmanagerdata.CheckThrottlerResponse)(nil), // 309: tabletmanagerdata.CheckThrottlerResponse
- (topodata.KeyspaceType)(0), // 310: topodata.KeyspaceType
- (*query.QueryResult)(nil), // 311: query.QueryResult
- (*tabletmanagerdata.ExecuteHookRequest)(nil), // 312: tabletmanagerdata.ExecuteHookRequest
- (*tabletmanagerdata.ExecuteHookResponse)(nil), // 313: tabletmanagerdata.ExecuteHookResponse
- (*mysqlctl.BackupInfo)(nil), // 314: mysqlctl.BackupInfo
- (*replicationdata.FullStatus)(nil), // 315: replicationdata.FullStatus
- (*tabletmanagerdata.Permissions)(nil), // 316: tabletmanagerdata.Permissions
- (*tabletmanagerdata.SchemaDefinition)(nil), // 317: tabletmanagerdata.SchemaDefinition
- (*topodata.ThrottledAppRule)(nil), // 318: topodata.ThrottledAppRule
- (*vschema.SrvVSchema)(nil), // 319: vschema.SrvVSchema
- (*tabletmanagerdata.GetThrottlerStatusResponse)(nil), // 320: tabletmanagerdata.GetThrottlerStatusResponse
- (*query.TransactionMetadata)(nil), // 321: query.TransactionMetadata
- (*topodata.ShardReplicationError)(nil), // 322: topodata.ShardReplicationError
- (*topodata.KeyRange)(nil), // 323: topodata.KeyRange
- (*topodata.CellsAlias)(nil), // 324: topodata.CellsAlias
- (*tabletmanagerdata.UpdateVReplicationWorkflowRequest)(nil), // 325: tabletmanagerdata.UpdateVReplicationWorkflowRequest
- (*vschema.MirrorRules)(nil), // 326: vschema.MirrorRules
- (*topodata.Shard_TabletControl)(nil), // 327: topodata.Shard.TabletControl
- (*binlogdata.BinlogSource)(nil), // 328: binlogdata.BinlogSource
- (*topodata.ShardReplication)(nil), // 329: topodata.ShardReplication
- (*topodata.SrvKeyspace)(nil), // 330: topodata.SrvKeyspace
- (*replicationdata.Status)(nil), // 331: replicationdata.Status
- (*tabletmanagerdata.VDiffResponse)(nil), // 332: tabletmanagerdata.VDiffResponse
+ (*ConcludeTransactionRequest)(nil), // 121: vtctldata.ConcludeTransactionRequest
+ (*ConcludeTransactionResponse)(nil), // 122: vtctldata.ConcludeTransactionResponse
+ (*GetVSchemaRequest)(nil), // 123: vtctldata.GetVSchemaRequest
+ (*GetVersionRequest)(nil), // 124: vtctldata.GetVersionRequest
+ (*GetVersionResponse)(nil), // 125: vtctldata.GetVersionResponse
+ (*GetVSchemaResponse)(nil), // 126: vtctldata.GetVSchemaResponse
+ (*GetWorkflowsRequest)(nil), // 127: vtctldata.GetWorkflowsRequest
+ (*GetWorkflowsResponse)(nil), // 128: vtctldata.GetWorkflowsResponse
+ (*InitShardPrimaryRequest)(nil), // 129: vtctldata.InitShardPrimaryRequest
+ (*InitShardPrimaryResponse)(nil), // 130: vtctldata.InitShardPrimaryResponse
+ (*LaunchSchemaMigrationRequest)(nil), // 131: vtctldata.LaunchSchemaMigrationRequest
+ (*LaunchSchemaMigrationResponse)(nil), // 132: vtctldata.LaunchSchemaMigrationResponse
+ (*LookupVindexCreateRequest)(nil), // 133: vtctldata.LookupVindexCreateRequest
+ (*LookupVindexCreateResponse)(nil), // 134: vtctldata.LookupVindexCreateResponse
+ (*LookupVindexExternalizeRequest)(nil), // 135: vtctldata.LookupVindexExternalizeRequest
+ (*LookupVindexExternalizeResponse)(nil), // 136: vtctldata.LookupVindexExternalizeResponse
+ (*MaterializeCreateRequest)(nil), // 137: vtctldata.MaterializeCreateRequest
+ (*MaterializeCreateResponse)(nil), // 138: vtctldata.MaterializeCreateResponse
+ (*MigrateCreateRequest)(nil), // 139: vtctldata.MigrateCreateRequest
+ (*MigrateCompleteRequest)(nil), // 140: vtctldata.MigrateCompleteRequest
+ (*MigrateCompleteResponse)(nil), // 141: vtctldata.MigrateCompleteResponse
+ (*MountRegisterRequest)(nil), // 142: vtctldata.MountRegisterRequest
+ (*MountRegisterResponse)(nil), // 143: vtctldata.MountRegisterResponse
+ (*MountUnregisterRequest)(nil), // 144: vtctldata.MountUnregisterRequest
+ (*MountUnregisterResponse)(nil), // 145: vtctldata.MountUnregisterResponse
+ (*MountShowRequest)(nil), // 146: vtctldata.MountShowRequest
+ (*MountShowResponse)(nil), // 147: vtctldata.MountShowResponse
+ (*MountListRequest)(nil), // 148: vtctldata.MountListRequest
+ (*MountListResponse)(nil), // 149: vtctldata.MountListResponse
+ (*MoveTablesCreateRequest)(nil), // 150: vtctldata.MoveTablesCreateRequest
+ (*MoveTablesCreateResponse)(nil), // 151: vtctldata.MoveTablesCreateResponse
+ (*MoveTablesCompleteRequest)(nil), // 152: vtctldata.MoveTablesCompleteRequest
+ (*MoveTablesCompleteResponse)(nil), // 153: vtctldata.MoveTablesCompleteResponse
+ (*PingTabletRequest)(nil), // 154: vtctldata.PingTabletRequest
+ (*PingTabletResponse)(nil), // 155: vtctldata.PingTabletResponse
+ (*PlannedReparentShardRequest)(nil), // 156: vtctldata.PlannedReparentShardRequest
+ (*PlannedReparentShardResponse)(nil), // 157: vtctldata.PlannedReparentShardResponse
+ (*RebuildKeyspaceGraphRequest)(nil), // 158: vtctldata.RebuildKeyspaceGraphRequest
+ (*RebuildKeyspaceGraphResponse)(nil), // 159: vtctldata.RebuildKeyspaceGraphResponse
+ (*RebuildVSchemaGraphRequest)(nil), // 160: vtctldata.RebuildVSchemaGraphRequest
+ (*RebuildVSchemaGraphResponse)(nil), // 161: vtctldata.RebuildVSchemaGraphResponse
+ (*RefreshStateRequest)(nil), // 162: vtctldata.RefreshStateRequest
+ (*RefreshStateResponse)(nil), // 163: vtctldata.RefreshStateResponse
+ (*RefreshStateByShardRequest)(nil), // 164: vtctldata.RefreshStateByShardRequest
+ (*RefreshStateByShardResponse)(nil), // 165: vtctldata.RefreshStateByShardResponse
+ (*ReloadSchemaRequest)(nil), // 166: vtctldata.ReloadSchemaRequest
+ (*ReloadSchemaResponse)(nil), // 167: vtctldata.ReloadSchemaResponse
+ (*ReloadSchemaKeyspaceRequest)(nil), // 168: vtctldata.ReloadSchemaKeyspaceRequest
+ (*ReloadSchemaKeyspaceResponse)(nil), // 169: vtctldata.ReloadSchemaKeyspaceResponse
+ (*ReloadSchemaShardRequest)(nil), // 170: vtctldata.ReloadSchemaShardRequest
+ (*ReloadSchemaShardResponse)(nil), // 171: vtctldata.ReloadSchemaShardResponse
+ (*RemoveBackupRequest)(nil), // 172: vtctldata.RemoveBackupRequest
+ (*RemoveBackupResponse)(nil), // 173: vtctldata.RemoveBackupResponse
+ (*RemoveKeyspaceCellRequest)(nil), // 174: vtctldata.RemoveKeyspaceCellRequest
+ (*RemoveKeyspaceCellResponse)(nil), // 175: vtctldata.RemoveKeyspaceCellResponse
+ (*RemoveShardCellRequest)(nil), // 176: vtctldata.RemoveShardCellRequest
+ (*RemoveShardCellResponse)(nil), // 177: vtctldata.RemoveShardCellResponse
+ (*ReparentTabletRequest)(nil), // 178: vtctldata.ReparentTabletRequest
+ (*ReparentTabletResponse)(nil), // 179: vtctldata.ReparentTabletResponse
+ (*ReshardCreateRequest)(nil), // 180: vtctldata.ReshardCreateRequest
+ (*RestoreFromBackupRequest)(nil), // 181: vtctldata.RestoreFromBackupRequest
+ (*RestoreFromBackupResponse)(nil), // 182: vtctldata.RestoreFromBackupResponse
+ (*RetrySchemaMigrationRequest)(nil), // 183: vtctldata.RetrySchemaMigrationRequest
+ (*RetrySchemaMigrationResponse)(nil), // 184: vtctldata.RetrySchemaMigrationResponse
+ (*RunHealthCheckRequest)(nil), // 185: vtctldata.RunHealthCheckRequest
+ (*RunHealthCheckResponse)(nil), // 186: vtctldata.RunHealthCheckResponse
+ (*SetKeyspaceDurabilityPolicyRequest)(nil), // 187: vtctldata.SetKeyspaceDurabilityPolicyRequest
+ (*SetKeyspaceDurabilityPolicyResponse)(nil), // 188: vtctldata.SetKeyspaceDurabilityPolicyResponse
+ (*SetKeyspaceShardingInfoRequest)(nil), // 189: vtctldata.SetKeyspaceShardingInfoRequest
+ (*SetKeyspaceShardingInfoResponse)(nil), // 190: vtctldata.SetKeyspaceShardingInfoResponse
+ (*SetShardIsPrimaryServingRequest)(nil), // 191: vtctldata.SetShardIsPrimaryServingRequest
+ (*SetShardIsPrimaryServingResponse)(nil), // 192: vtctldata.SetShardIsPrimaryServingResponse
+ (*SetShardTabletControlRequest)(nil), // 193: vtctldata.SetShardTabletControlRequest
+ (*SetShardTabletControlResponse)(nil), // 194: vtctldata.SetShardTabletControlResponse
+ (*SetWritableRequest)(nil), // 195: vtctldata.SetWritableRequest
+ (*SetWritableResponse)(nil), // 196: vtctldata.SetWritableResponse
+ (*ShardReplicationAddRequest)(nil), // 197: vtctldata.ShardReplicationAddRequest
+ (*ShardReplicationAddResponse)(nil), // 198: vtctldata.ShardReplicationAddResponse
+ (*ShardReplicationFixRequest)(nil), // 199: vtctldata.ShardReplicationFixRequest
+ (*ShardReplicationFixResponse)(nil), // 200: vtctldata.ShardReplicationFixResponse
+ (*ShardReplicationPositionsRequest)(nil), // 201: vtctldata.ShardReplicationPositionsRequest
+ (*ShardReplicationPositionsResponse)(nil), // 202: vtctldata.ShardReplicationPositionsResponse
+ (*ShardReplicationRemoveRequest)(nil), // 203: vtctldata.ShardReplicationRemoveRequest
+ (*ShardReplicationRemoveResponse)(nil), // 204: vtctldata.ShardReplicationRemoveResponse
+ (*SleepTabletRequest)(nil), // 205: vtctldata.SleepTabletRequest
+ (*SleepTabletResponse)(nil), // 206: vtctldata.SleepTabletResponse
+ (*SourceShardAddRequest)(nil), // 207: vtctldata.SourceShardAddRequest
+ (*SourceShardAddResponse)(nil), // 208: vtctldata.SourceShardAddResponse
+ (*SourceShardDeleteRequest)(nil), // 209: vtctldata.SourceShardDeleteRequest
+ (*SourceShardDeleteResponse)(nil), // 210: vtctldata.SourceShardDeleteResponse
+ (*StartReplicationRequest)(nil), // 211: vtctldata.StartReplicationRequest
+ (*StartReplicationResponse)(nil), // 212: vtctldata.StartReplicationResponse
+ (*StopReplicationRequest)(nil), // 213: vtctldata.StopReplicationRequest
+ (*StopReplicationResponse)(nil), // 214: vtctldata.StopReplicationResponse
+ (*TabletExternallyReparentedRequest)(nil), // 215: vtctldata.TabletExternallyReparentedRequest
+ (*TabletExternallyReparentedResponse)(nil), // 216: vtctldata.TabletExternallyReparentedResponse
+ (*UpdateCellInfoRequest)(nil), // 217: vtctldata.UpdateCellInfoRequest
+ (*UpdateCellInfoResponse)(nil), // 218: vtctldata.UpdateCellInfoResponse
+ (*UpdateCellsAliasRequest)(nil), // 219: vtctldata.UpdateCellsAliasRequest
+ (*UpdateCellsAliasResponse)(nil), // 220: vtctldata.UpdateCellsAliasResponse
+ (*ValidateRequest)(nil), // 221: vtctldata.ValidateRequest
+ (*ValidateResponse)(nil), // 222: vtctldata.ValidateResponse
+ (*ValidateKeyspaceRequest)(nil), // 223: vtctldata.ValidateKeyspaceRequest
+ (*ValidateKeyspaceResponse)(nil), // 224: vtctldata.ValidateKeyspaceResponse
+ (*ValidateSchemaKeyspaceRequest)(nil), // 225: vtctldata.ValidateSchemaKeyspaceRequest
+ (*ValidateSchemaKeyspaceResponse)(nil), // 226: vtctldata.ValidateSchemaKeyspaceResponse
+ (*ValidateShardRequest)(nil), // 227: vtctldata.ValidateShardRequest
+ (*ValidateShardResponse)(nil), // 228: vtctldata.ValidateShardResponse
+ (*ValidateVersionKeyspaceRequest)(nil), // 229: vtctldata.ValidateVersionKeyspaceRequest
+ (*ValidateVersionKeyspaceResponse)(nil), // 230: vtctldata.ValidateVersionKeyspaceResponse
+ (*ValidateVersionShardRequest)(nil), // 231: vtctldata.ValidateVersionShardRequest
+ (*ValidateVersionShardResponse)(nil), // 232: vtctldata.ValidateVersionShardResponse
+ (*ValidateVSchemaRequest)(nil), // 233: vtctldata.ValidateVSchemaRequest
+ (*ValidateVSchemaResponse)(nil), // 234: vtctldata.ValidateVSchemaResponse
+ (*VDiffCreateRequest)(nil), // 235: vtctldata.VDiffCreateRequest
+ (*VDiffCreateResponse)(nil), // 236: vtctldata.VDiffCreateResponse
+ (*VDiffDeleteRequest)(nil), // 237: vtctldata.VDiffDeleteRequest
+ (*VDiffDeleteResponse)(nil), // 238: vtctldata.VDiffDeleteResponse
+ (*VDiffResumeRequest)(nil), // 239: vtctldata.VDiffResumeRequest
+ (*VDiffResumeResponse)(nil), // 240: vtctldata.VDiffResumeResponse
+ (*VDiffShowRequest)(nil), // 241: vtctldata.VDiffShowRequest
+ (*VDiffShowResponse)(nil), // 242: vtctldata.VDiffShowResponse
+ (*VDiffStopRequest)(nil), // 243: vtctldata.VDiffStopRequest
+ (*VDiffStopResponse)(nil), // 244: vtctldata.VDiffStopResponse
+ (*WorkflowDeleteRequest)(nil), // 245: vtctldata.WorkflowDeleteRequest
+ (*WorkflowDeleteResponse)(nil), // 246: vtctldata.WorkflowDeleteResponse
+ (*WorkflowStatusRequest)(nil), // 247: vtctldata.WorkflowStatusRequest
+ (*WorkflowStatusResponse)(nil), // 248: vtctldata.WorkflowStatusResponse
+ (*WorkflowSwitchTrafficRequest)(nil), // 249: vtctldata.WorkflowSwitchTrafficRequest
+ (*WorkflowSwitchTrafficResponse)(nil), // 250: vtctldata.WorkflowSwitchTrafficResponse
+ (*WorkflowUpdateRequest)(nil), // 251: vtctldata.WorkflowUpdateRequest
+ (*WorkflowUpdateResponse)(nil), // 252: vtctldata.WorkflowUpdateResponse
+ (*GetMirrorRulesRequest)(nil), // 253: vtctldata.GetMirrorRulesRequest
+ (*GetMirrorRulesResponse)(nil), // 254: vtctldata.GetMirrorRulesResponse
+ (*WorkflowMirrorTrafficRequest)(nil), // 255: vtctldata.WorkflowMirrorTrafficRequest
+ (*WorkflowMirrorTrafficResponse)(nil), // 256: vtctldata.WorkflowMirrorTrafficResponse
+ nil, // 257: vtctldata.WorkflowOptions.ConfigEntry
+ nil, // 258: vtctldata.Workflow.ShardStreamsEntry
+ (*Workflow_ReplicationLocation)(nil), // 259: vtctldata.Workflow.ReplicationLocation
+ (*Workflow_ShardStream)(nil), // 260: vtctldata.Workflow.ShardStream
+ (*Workflow_Stream)(nil), // 261: vtctldata.Workflow.Stream
+ (*Workflow_Stream_CopyState)(nil), // 262: vtctldata.Workflow.Stream.CopyState
+ (*Workflow_Stream_Log)(nil), // 263: vtctldata.Workflow.Stream.Log
+ (*Workflow_Stream_ThrottlerStatus)(nil), // 264: vtctldata.Workflow.Stream.ThrottlerStatus
+ nil, // 265: vtctldata.ApplySchemaResponse.RowsAffectedByShardEntry
+ nil, // 266: vtctldata.ApplyVSchemaResponse.UnknownVindexParamsEntry
+ (*ApplyVSchemaResponse_ParamList)(nil), // 267: vtctldata.ApplyVSchemaResponse.ParamList
+ nil, // 268: vtctldata.CancelSchemaMigrationResponse.RowsAffectedByShardEntry
+ nil, // 269: vtctldata.CleanupSchemaMigrationResponse.RowsAffectedByShardEntry
+ nil, // 270: vtctldata.CompleteSchemaMigrationResponse.RowsAffectedByShardEntry
+ nil, // 271: vtctldata.FindAllShardsInKeyspaceResponse.ShardsEntry
+ nil, // 272: vtctldata.ForceCutOverSchemaMigrationResponse.RowsAffectedByShardEntry
+ nil, // 273: vtctldata.GetCellsAliasesResponse.AliasesEntry
+ nil, // 274: vtctldata.GetShardReplicationResponse.ShardReplicationByCellEntry
+ nil, // 275: vtctldata.GetSrvKeyspaceNamesResponse.NamesEntry
+ (*GetSrvKeyspaceNamesResponse_NameList)(nil), // 276: vtctldata.GetSrvKeyspaceNamesResponse.NameList
+ nil, // 277: vtctldata.GetSrvKeyspacesResponse.SrvKeyspacesEntry
+ nil, // 278: vtctldata.GetSrvVSchemasResponse.SrvVSchemasEntry
+ nil, // 279: vtctldata.LaunchSchemaMigrationResponse.RowsAffectedByShardEntry
+ (*MoveTablesCreateResponse_TabletInfo)(nil), // 280: vtctldata.MoveTablesCreateResponse.TabletInfo
+ nil, // 281: vtctldata.RetrySchemaMigrationResponse.RowsAffectedByShardEntry
+ nil, // 282: vtctldata.ShardReplicationPositionsResponse.ReplicationStatusesEntry
+ nil, // 283: vtctldata.ShardReplicationPositionsResponse.TabletMapEntry
+ nil, // 284: vtctldata.ValidateResponse.ResultsByKeyspaceEntry
+ nil, // 285: vtctldata.ValidateKeyspaceResponse.ResultsByShardEntry
+ nil, // 286: vtctldata.ValidateSchemaKeyspaceResponse.ResultsByShardEntry
+ nil, // 287: vtctldata.ValidateVersionKeyspaceResponse.ResultsByShardEntry
+ nil, // 288: vtctldata.ValidateVSchemaResponse.ResultsByShardEntry
+ nil, // 289: vtctldata.VDiffShowResponse.TabletResponsesEntry
+ (*WorkflowDeleteResponse_TabletInfo)(nil), // 290: vtctldata.WorkflowDeleteResponse.TabletInfo
+ (*WorkflowStatusResponse_TableCopyState)(nil), // 291: vtctldata.WorkflowStatusResponse.TableCopyState
+ (*WorkflowStatusResponse_ShardStreamState)(nil), // 292: vtctldata.WorkflowStatusResponse.ShardStreamState
+ (*WorkflowStatusResponse_ShardStreams)(nil), // 293: vtctldata.WorkflowStatusResponse.ShardStreams
+ nil, // 294: vtctldata.WorkflowStatusResponse.TableCopyStateEntry
+ nil, // 295: vtctldata.WorkflowStatusResponse.ShardStreamsEntry
+ (*WorkflowUpdateResponse_TabletInfo)(nil), // 296: vtctldata.WorkflowUpdateResponse.TabletInfo
+ (*logutil.Event)(nil), // 297: logutil.Event
+ (tabletmanagerdata.TabletSelectionPreference)(0), // 298: tabletmanagerdata.TabletSelectionPreference
+ (*topodata.Keyspace)(nil), // 299: topodata.Keyspace
+ (*vttime.Time)(nil), // 300: vttime.Time
+ (*topodata.TabletAlias)(nil), // 301: topodata.TabletAlias
+ (*vttime.Duration)(nil), // 302: vttime.Duration
+ (*topodata.Shard)(nil), // 303: topodata.Shard
+ (*topodata.CellInfo)(nil), // 304: topodata.CellInfo
+ (*vschema.KeyspaceRoutingRules)(nil), // 305: vschema.KeyspaceRoutingRules
+ (*vschema.RoutingRules)(nil), // 306: vschema.RoutingRules
+ (*vschema.ShardRoutingRules)(nil), // 307: vschema.ShardRoutingRules
+ (*vtrpc.CallerID)(nil), // 308: vtrpc.CallerID
+ (*vschema.Keyspace)(nil), // 309: vschema.Keyspace
+ (topodata.TabletType)(0), // 310: topodata.TabletType
+ (*topodata.Tablet)(nil), // 311: topodata.Tablet
+ (*tabletmanagerdata.CheckThrottlerResponse)(nil), // 312: tabletmanagerdata.CheckThrottlerResponse
+ (topodata.KeyspaceType)(0), // 313: topodata.KeyspaceType
+ (*query.QueryResult)(nil), // 314: query.QueryResult
+ (*tabletmanagerdata.ExecuteHookRequest)(nil), // 315: tabletmanagerdata.ExecuteHookRequest
+ (*tabletmanagerdata.ExecuteHookResponse)(nil), // 316: tabletmanagerdata.ExecuteHookResponse
+ (*mysqlctl.BackupInfo)(nil), // 317: mysqlctl.BackupInfo
+ (*replicationdata.FullStatus)(nil), // 318: replicationdata.FullStatus
+ (*tabletmanagerdata.Permissions)(nil), // 319: tabletmanagerdata.Permissions
+ (*tabletmanagerdata.SchemaDefinition)(nil), // 320: tabletmanagerdata.SchemaDefinition
+ (*topodata.ThrottledAppRule)(nil), // 321: topodata.ThrottledAppRule
+ (*vschema.SrvVSchema)(nil), // 322: vschema.SrvVSchema
+ (*tabletmanagerdata.GetThrottlerStatusResponse)(nil), // 323: tabletmanagerdata.GetThrottlerStatusResponse
+ (*query.TransactionMetadata)(nil), // 324: query.TransactionMetadata
+ (*query.Target)(nil), // 325: query.Target
+ (*topodata.ShardReplicationError)(nil), // 326: topodata.ShardReplicationError
+ (*topodata.KeyRange)(nil), // 327: topodata.KeyRange
+ (*topodata.CellsAlias)(nil), // 328: topodata.CellsAlias
+ (*tabletmanagerdata.UpdateVReplicationWorkflowRequest)(nil), // 329: tabletmanagerdata.UpdateVReplicationWorkflowRequest
+ (*vschema.MirrorRules)(nil), // 330: vschema.MirrorRules
+ (*topodata.Shard_TabletControl)(nil), // 331: topodata.Shard.TabletControl
+ (*binlogdata.BinlogSource)(nil), // 332: binlogdata.BinlogSource
+ (*topodata.ShardReplication)(nil), // 333: topodata.ShardReplication
+ (*topodata.SrvKeyspace)(nil), // 334: topodata.SrvKeyspace
+ (*replicationdata.Status)(nil), // 335: replicationdata.Status
+ (*tabletmanagerdata.VDiffResponse)(nil), // 336: tabletmanagerdata.VDiffResponse
}
var file_vtctldata_proto_depIdxs = []int32{
- 294, // 0: vtctldata.ExecuteVtctlCommandResponse.event:type_name -> logutil.Event
+ 297, // 0: vtctldata.ExecuteVtctlCommandResponse.event:type_name -> logutil.Event
6, // 1: vtctldata.MaterializeSettings.table_settings:type_name -> vtctldata.TableMaterializeSettings
0, // 2: vtctldata.MaterializeSettings.materialization_intent:type_name -> vtctldata.MaterializationIntent
- 295, // 3: vtctldata.MaterializeSettings.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
+ 298, // 3: vtctldata.MaterializeSettings.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
11, // 4: vtctldata.MaterializeSettings.workflow_options:type_name -> vtctldata.WorkflowOptions
- 296, // 5: vtctldata.Keyspace.keyspace:type_name -> topodata.Keyspace
+ 299, // 5: vtctldata.Keyspace.keyspace:type_name -> topodata.Keyspace
2, // 6: vtctldata.SchemaMigration.strategy:type_name -> vtctldata.SchemaMigration.Strategy
- 297, // 7: vtctldata.SchemaMigration.added_at:type_name -> vttime.Time
- 297, // 8: vtctldata.SchemaMigration.requested_at:type_name -> vttime.Time
- 297, // 9: vtctldata.SchemaMigration.ready_at:type_name -> vttime.Time
- 297, // 10: vtctldata.SchemaMigration.started_at:type_name -> vttime.Time
- 297, // 11: vtctldata.SchemaMigration.liveness_timestamp:type_name -> vttime.Time
- 297, // 12: vtctldata.SchemaMigration.completed_at:type_name -> vttime.Time
- 297, // 13: vtctldata.SchemaMigration.cleaned_up_at:type_name -> vttime.Time
+ 300, // 7: vtctldata.SchemaMigration.added_at:type_name -> vttime.Time
+ 300, // 8: vtctldata.SchemaMigration.requested_at:type_name -> vttime.Time
+ 300, // 9: vtctldata.SchemaMigration.ready_at:type_name -> vttime.Time
+ 300, // 10: vtctldata.SchemaMigration.started_at:type_name -> vttime.Time
+ 300, // 11: vtctldata.SchemaMigration.liveness_timestamp:type_name -> vttime.Time
+ 300, // 12: vtctldata.SchemaMigration.completed_at:type_name -> vttime.Time
+ 300, // 13: vtctldata.SchemaMigration.cleaned_up_at:type_name -> vttime.Time
3, // 14: vtctldata.SchemaMigration.status:type_name -> vtctldata.SchemaMigration.Status
- 298, // 15: vtctldata.SchemaMigration.tablet:type_name -> topodata.TabletAlias
- 299, // 16: vtctldata.SchemaMigration.artifact_retention:type_name -> vttime.Duration
- 297, // 17: vtctldata.SchemaMigration.last_throttled_at:type_name -> vttime.Time
- 297, // 18: vtctldata.SchemaMigration.cancelled_at:type_name -> vttime.Time
- 297, // 19: vtctldata.SchemaMigration.reviewed_at:type_name -> vttime.Time
- 297, // 20: vtctldata.SchemaMigration.ready_to_complete_at:type_name -> vttime.Time
- 300, // 21: vtctldata.Shard.shard:type_name -> topodata.Shard
- 256, // 22: vtctldata.Workflow.source:type_name -> vtctldata.Workflow.ReplicationLocation
- 256, // 23: vtctldata.Workflow.target:type_name -> vtctldata.Workflow.ReplicationLocation
- 255, // 24: vtctldata.Workflow.shard_streams:type_name -> vtctldata.Workflow.ShardStreamsEntry
- 11, // 25: vtctldata.Workflow.options:type_name -> vtctldata.WorkflowOptions
- 301, // 26: vtctldata.AddCellInfoRequest.cell_info:type_name -> topodata.CellInfo
- 302, // 27: vtctldata.ApplyKeyspaceRoutingRulesRequest.keyspace_routing_rules:type_name -> vschema.KeyspaceRoutingRules
- 302, // 28: vtctldata.ApplyKeyspaceRoutingRulesResponse.keyspace_routing_rules:type_name -> vschema.KeyspaceRoutingRules
- 303, // 29: vtctldata.ApplyRoutingRulesRequest.routing_rules:type_name -> vschema.RoutingRules
- 304, // 30: vtctldata.ApplyShardRoutingRulesRequest.shard_routing_rules:type_name -> vschema.ShardRoutingRules
- 299, // 31: vtctldata.ApplySchemaRequest.wait_replicas_timeout:type_name -> vttime.Duration
- 305, // 32: vtctldata.ApplySchemaRequest.caller_id:type_name -> vtrpc.CallerID
- 262, // 33: vtctldata.ApplySchemaResponse.rows_affected_by_shard:type_name -> vtctldata.ApplySchemaResponse.RowsAffectedByShardEntry
- 306, // 34: vtctldata.ApplyVSchemaRequest.v_schema:type_name -> vschema.Keyspace
- 306, // 35: vtctldata.ApplyVSchemaResponse.v_schema:type_name -> vschema.Keyspace
- 263, // 36: vtctldata.ApplyVSchemaResponse.unknown_vindex_params:type_name -> vtctldata.ApplyVSchemaResponse.UnknownVindexParamsEntry
- 298, // 37: vtctldata.BackupRequest.tablet_alias:type_name -> topodata.TabletAlias
- 298, // 38: vtctldata.BackupResponse.tablet_alias:type_name -> topodata.TabletAlias
- 294, // 39: vtctldata.BackupResponse.event:type_name -> logutil.Event
- 265, // 40: vtctldata.CancelSchemaMigrationResponse.rows_affected_by_shard:type_name -> vtctldata.CancelSchemaMigrationResponse.RowsAffectedByShardEntry
- 298, // 41: vtctldata.ChangeTabletTypeRequest.tablet_alias:type_name -> topodata.TabletAlias
- 307, // 42: vtctldata.ChangeTabletTypeRequest.db_type:type_name -> topodata.TabletType
- 308, // 43: vtctldata.ChangeTabletTypeResponse.before_tablet:type_name -> topodata.Tablet
- 308, // 44: vtctldata.ChangeTabletTypeResponse.after_tablet:type_name -> topodata.Tablet
- 298, // 45: vtctldata.CheckThrottlerRequest.tablet_alias:type_name -> topodata.TabletAlias
- 298, // 46: vtctldata.CheckThrottlerResponse.tablet_alias:type_name -> topodata.TabletAlias
- 309, // 47: vtctldata.CheckThrottlerResponse.Check:type_name -> tabletmanagerdata.CheckThrottlerResponse
- 266, // 48: vtctldata.CleanupSchemaMigrationResponse.rows_affected_by_shard:type_name -> vtctldata.CleanupSchemaMigrationResponse.RowsAffectedByShardEntry
- 267, // 49: vtctldata.CompleteSchemaMigrationResponse.rows_affected_by_shard:type_name -> vtctldata.CompleteSchemaMigrationResponse.RowsAffectedByShardEntry
- 310, // 50: vtctldata.CreateKeyspaceRequest.type:type_name -> topodata.KeyspaceType
- 297, // 51: vtctldata.CreateKeyspaceRequest.snapshot_time:type_name -> vttime.Time
- 8, // 52: vtctldata.CreateKeyspaceResponse.keyspace:type_name -> vtctldata.Keyspace
- 8, // 53: vtctldata.CreateShardResponse.keyspace:type_name -> vtctldata.Keyspace
- 10, // 54: vtctldata.CreateShardResponse.shard:type_name -> vtctldata.Shard
- 10, // 55: vtctldata.DeleteShardsRequest.shards:type_name -> vtctldata.Shard
- 298, // 56: vtctldata.DeleteTabletsRequest.tablet_aliases:type_name -> topodata.TabletAlias
- 298, // 57: vtctldata.EmergencyReparentShardRequest.new_primary:type_name -> topodata.TabletAlias
- 298, // 58: vtctldata.EmergencyReparentShardRequest.ignore_replicas:type_name -> topodata.TabletAlias
- 299, // 59: vtctldata.EmergencyReparentShardRequest.wait_replicas_timeout:type_name -> vttime.Duration
- 298, // 60: vtctldata.EmergencyReparentShardResponse.promoted_primary:type_name -> topodata.TabletAlias
- 294, // 61: vtctldata.EmergencyReparentShardResponse.events:type_name -> logutil.Event
- 298, // 62: vtctldata.ExecuteFetchAsAppRequest.tablet_alias:type_name -> topodata.TabletAlias
- 311, // 63: vtctldata.ExecuteFetchAsAppResponse.result:type_name -> query.QueryResult
- 298, // 64: vtctldata.ExecuteFetchAsDBARequest.tablet_alias:type_name -> topodata.TabletAlias
- 311, // 65: vtctldata.ExecuteFetchAsDBAResponse.result:type_name -> query.QueryResult
- 298, // 66: vtctldata.ExecuteHookRequest.tablet_alias:type_name -> topodata.TabletAlias
- 312, // 67: vtctldata.ExecuteHookRequest.tablet_hook_request:type_name -> tabletmanagerdata.ExecuteHookRequest
- 313, // 68: vtctldata.ExecuteHookResponse.hook_result:type_name -> tabletmanagerdata.ExecuteHookResponse
- 298, // 69: vtctldata.ExecuteMultiFetchAsDBARequest.tablet_alias:type_name -> topodata.TabletAlias
- 311, // 70: vtctldata.ExecuteMultiFetchAsDBAResponse.results:type_name -> query.QueryResult
- 268, // 71: vtctldata.FindAllShardsInKeyspaceResponse.shards:type_name -> vtctldata.FindAllShardsInKeyspaceResponse.ShardsEntry
- 269, // 72: vtctldata.ForceCutOverSchemaMigrationResponse.rows_affected_by_shard:type_name -> vtctldata.ForceCutOverSchemaMigrationResponse.RowsAffectedByShardEntry
- 314, // 73: vtctldata.GetBackupsResponse.backups:type_name -> mysqlctl.BackupInfo
- 301, // 74: vtctldata.GetCellInfoResponse.cell_info:type_name -> topodata.CellInfo
- 270, // 75: vtctldata.GetCellsAliasesResponse.aliases:type_name -> vtctldata.GetCellsAliasesResponse.AliasesEntry
- 298, // 76: vtctldata.GetFullStatusRequest.tablet_alias:type_name -> topodata.TabletAlias
- 315, // 77: vtctldata.GetFullStatusResponse.status:type_name -> replicationdata.FullStatus
- 8, // 78: vtctldata.GetKeyspacesResponse.keyspaces:type_name -> vtctldata.Keyspace
- 8, // 79: vtctldata.GetKeyspaceResponse.keyspace:type_name -> vtctldata.Keyspace
- 298, // 80: vtctldata.GetPermissionsRequest.tablet_alias:type_name -> topodata.TabletAlias
- 316, // 81: vtctldata.GetPermissionsResponse.permissions:type_name -> tabletmanagerdata.Permissions
- 302, // 82: vtctldata.GetKeyspaceRoutingRulesResponse.keyspace_routing_rules:type_name -> vschema.KeyspaceRoutingRules
- 303, // 83: vtctldata.GetRoutingRulesResponse.routing_rules:type_name -> vschema.RoutingRules
- 298, // 84: vtctldata.GetSchemaRequest.tablet_alias:type_name -> topodata.TabletAlias
- 317, // 85: vtctldata.GetSchemaResponse.schema:type_name -> tabletmanagerdata.SchemaDefinition
- 3, // 86: vtctldata.GetSchemaMigrationsRequest.status:type_name -> vtctldata.SchemaMigration.Status
- 299, // 87: vtctldata.GetSchemaMigrationsRequest.recent:type_name -> vttime.Duration
- 1, // 88: vtctldata.GetSchemaMigrationsRequest.order:type_name -> vtctldata.QueryOrdering
- 9, // 89: vtctldata.GetSchemaMigrationsResponse.migrations:type_name -> vtctldata.SchemaMigration
- 271, // 90: vtctldata.GetShardReplicationResponse.shard_replication_by_cell:type_name -> vtctldata.GetShardReplicationResponse.ShardReplicationByCellEntry
- 10, // 91: vtctldata.GetShardResponse.shard:type_name -> vtctldata.Shard
- 304, // 92: vtctldata.GetShardRoutingRulesResponse.shard_routing_rules:type_name -> vschema.ShardRoutingRules
- 272, // 93: vtctldata.GetSrvKeyspaceNamesResponse.names:type_name -> vtctldata.GetSrvKeyspaceNamesResponse.NamesEntry
- 274, // 94: vtctldata.GetSrvKeyspacesResponse.srv_keyspaces:type_name -> vtctldata.GetSrvKeyspacesResponse.SrvKeyspacesEntry
- 318, // 95: vtctldata.UpdateThrottlerConfigRequest.throttled_app:type_name -> topodata.ThrottledAppRule
- 319, // 96: vtctldata.GetSrvVSchemaResponse.srv_v_schema:type_name -> vschema.SrvVSchema
- 275, // 97: vtctldata.GetSrvVSchemasResponse.srv_v_schemas:type_name -> vtctldata.GetSrvVSchemasResponse.SrvVSchemasEntry
- 298, // 98: vtctldata.GetTabletRequest.tablet_alias:type_name -> topodata.TabletAlias
- 308, // 99: vtctldata.GetTabletResponse.tablet:type_name -> topodata.Tablet
- 298, // 100: vtctldata.GetTabletsRequest.tablet_aliases:type_name -> topodata.TabletAlias
- 307, // 101: vtctldata.GetTabletsRequest.tablet_type:type_name -> topodata.TabletType
- 308, // 102: vtctldata.GetTabletsResponse.tablets:type_name -> topodata.Tablet
- 298, // 103: vtctldata.GetThrottlerStatusRequest.tablet_alias:type_name -> topodata.TabletAlias
- 320, // 104: vtctldata.GetThrottlerStatusResponse.status:type_name -> tabletmanagerdata.GetThrottlerStatusResponse
- 118, // 105: vtctldata.GetTopologyPathResponse.cell:type_name -> vtctldata.TopologyCell
- 321, // 106: vtctldata.GetUnresolvedTransactionsResponse.transactions:type_name -> query.TransactionMetadata
- 298, // 107: vtctldata.GetVersionRequest.tablet_alias:type_name -> topodata.TabletAlias
- 306, // 108: vtctldata.GetVSchemaResponse.v_schema:type_name -> vschema.Keyspace
- 12, // 109: vtctldata.GetWorkflowsResponse.workflows:type_name -> vtctldata.Workflow
- 298, // 110: vtctldata.InitShardPrimaryRequest.primary_elect_tablet_alias:type_name -> topodata.TabletAlias
- 299, // 111: vtctldata.InitShardPrimaryRequest.wait_replicas_timeout:type_name -> vttime.Duration
- 294, // 112: vtctldata.InitShardPrimaryResponse.events:type_name -> logutil.Event
- 276, // 113: vtctldata.LaunchSchemaMigrationResponse.rows_affected_by_shard:type_name -> vtctldata.LaunchSchemaMigrationResponse.RowsAffectedByShardEntry
- 306, // 114: vtctldata.LookupVindexCreateRequest.vindex:type_name -> vschema.Keyspace
- 307, // 115: vtctldata.LookupVindexCreateRequest.tablet_types:type_name -> topodata.TabletType
- 295, // 116: vtctldata.LookupVindexCreateRequest.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
- 7, // 117: vtctldata.MaterializeCreateRequest.settings:type_name -> vtctldata.MaterializeSettings
- 307, // 118: vtctldata.MigrateCreateRequest.tablet_types:type_name -> topodata.TabletType
- 295, // 119: vtctldata.MigrateCreateRequest.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
- 307, // 120: vtctldata.MoveTablesCreateRequest.tablet_types:type_name -> topodata.TabletType
- 295, // 121: vtctldata.MoveTablesCreateRequest.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
- 11, // 122: vtctldata.MoveTablesCreateRequest.workflow_options:type_name -> vtctldata.WorkflowOptions
- 277, // 123: vtctldata.MoveTablesCreateResponse.details:type_name -> vtctldata.MoveTablesCreateResponse.TabletInfo
- 298, // 124: vtctldata.PingTabletRequest.tablet_alias:type_name -> topodata.TabletAlias
- 298, // 125: vtctldata.PlannedReparentShardRequest.new_primary:type_name -> topodata.TabletAlias
- 298, // 126: vtctldata.PlannedReparentShardRequest.avoid_primary:type_name -> topodata.TabletAlias
- 299, // 127: vtctldata.PlannedReparentShardRequest.wait_replicas_timeout:type_name -> vttime.Duration
- 299, // 128: vtctldata.PlannedReparentShardRequest.tolerable_replication_lag:type_name -> vttime.Duration
- 298, // 129: vtctldata.PlannedReparentShardResponse.promoted_primary:type_name -> topodata.TabletAlias
- 294, // 130: vtctldata.PlannedReparentShardResponse.events:type_name -> logutil.Event
- 298, // 131: vtctldata.RefreshStateRequest.tablet_alias:type_name -> topodata.TabletAlias
- 298, // 132: vtctldata.ReloadSchemaRequest.tablet_alias:type_name -> topodata.TabletAlias
- 294, // 133: vtctldata.ReloadSchemaKeyspaceResponse.events:type_name -> logutil.Event
- 294, // 134: vtctldata.ReloadSchemaShardResponse.events:type_name -> logutil.Event
- 298, // 135: vtctldata.ReparentTabletRequest.tablet:type_name -> topodata.TabletAlias
- 298, // 136: vtctldata.ReparentTabletResponse.primary:type_name -> topodata.TabletAlias
- 307, // 137: vtctldata.ReshardCreateRequest.tablet_types:type_name -> topodata.TabletType
- 295, // 138: vtctldata.ReshardCreateRequest.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
- 298, // 139: vtctldata.RestoreFromBackupRequest.tablet_alias:type_name -> topodata.TabletAlias
- 297, // 140: vtctldata.RestoreFromBackupRequest.backup_time:type_name -> vttime.Time
- 297, // 141: vtctldata.RestoreFromBackupRequest.restore_to_timestamp:type_name -> vttime.Time
- 298, // 142: vtctldata.RestoreFromBackupResponse.tablet_alias:type_name -> topodata.TabletAlias
- 294, // 143: vtctldata.RestoreFromBackupResponse.event:type_name -> logutil.Event
- 278, // 144: vtctldata.RetrySchemaMigrationResponse.rows_affected_by_shard:type_name -> vtctldata.RetrySchemaMigrationResponse.RowsAffectedByShardEntry
- 298, // 145: vtctldata.RunHealthCheckRequest.tablet_alias:type_name -> topodata.TabletAlias
- 296, // 146: vtctldata.SetKeyspaceDurabilityPolicyResponse.keyspace:type_name -> topodata.Keyspace
- 296, // 147: vtctldata.SetKeyspaceShardingInfoResponse.keyspace:type_name -> topodata.Keyspace
- 300, // 148: vtctldata.SetShardIsPrimaryServingResponse.shard:type_name -> topodata.Shard
- 307, // 149: vtctldata.SetShardTabletControlRequest.tablet_type:type_name -> topodata.TabletType
- 300, // 150: vtctldata.SetShardTabletControlResponse.shard:type_name -> topodata.Shard
- 298, // 151: vtctldata.SetWritableRequest.tablet_alias:type_name -> topodata.TabletAlias
- 298, // 152: vtctldata.ShardReplicationAddRequest.tablet_alias:type_name -> topodata.TabletAlias
- 322, // 153: vtctldata.ShardReplicationFixResponse.error:type_name -> topodata.ShardReplicationError
- 279, // 154: vtctldata.ShardReplicationPositionsResponse.replication_statuses:type_name -> vtctldata.ShardReplicationPositionsResponse.ReplicationStatusesEntry
- 280, // 155: vtctldata.ShardReplicationPositionsResponse.tablet_map:type_name -> vtctldata.ShardReplicationPositionsResponse.TabletMapEntry
- 298, // 156: vtctldata.ShardReplicationRemoveRequest.tablet_alias:type_name -> topodata.TabletAlias
- 298, // 157: vtctldata.SleepTabletRequest.tablet_alias:type_name -> topodata.TabletAlias
- 299, // 158: vtctldata.SleepTabletRequest.duration:type_name -> vttime.Duration
- 323, // 159: vtctldata.SourceShardAddRequest.key_range:type_name -> topodata.KeyRange
- 300, // 160: vtctldata.SourceShardAddResponse.shard:type_name -> topodata.Shard
- 300, // 161: vtctldata.SourceShardDeleteResponse.shard:type_name -> topodata.Shard
- 298, // 162: vtctldata.StartReplicationRequest.tablet_alias:type_name -> topodata.TabletAlias
- 298, // 163: vtctldata.StopReplicationRequest.tablet_alias:type_name -> topodata.TabletAlias
- 298, // 164: vtctldata.TabletExternallyReparentedRequest.tablet:type_name -> topodata.TabletAlias
- 298, // 165: vtctldata.TabletExternallyReparentedResponse.new_primary:type_name -> topodata.TabletAlias
- 298, // 166: vtctldata.TabletExternallyReparentedResponse.old_primary:type_name -> topodata.TabletAlias
- 301, // 167: vtctldata.UpdateCellInfoRequest.cell_info:type_name -> topodata.CellInfo
- 301, // 168: vtctldata.UpdateCellInfoResponse.cell_info:type_name -> topodata.CellInfo
- 324, // 169: vtctldata.UpdateCellsAliasRequest.cells_alias:type_name -> topodata.CellsAlias
- 324, // 170: vtctldata.UpdateCellsAliasResponse.cells_alias:type_name -> topodata.CellsAlias
- 281, // 171: vtctldata.ValidateResponse.results_by_keyspace:type_name -> vtctldata.ValidateResponse.ResultsByKeyspaceEntry
- 282, // 172: vtctldata.ValidateKeyspaceResponse.results_by_shard:type_name -> vtctldata.ValidateKeyspaceResponse.ResultsByShardEntry
- 283, // 173: vtctldata.ValidateSchemaKeyspaceResponse.results_by_shard:type_name -> vtctldata.ValidateSchemaKeyspaceResponse.ResultsByShardEntry
- 284, // 174: vtctldata.ValidateVersionKeyspaceResponse.results_by_shard:type_name -> vtctldata.ValidateVersionKeyspaceResponse.ResultsByShardEntry
- 285, // 175: vtctldata.ValidateVSchemaResponse.results_by_shard:type_name -> vtctldata.ValidateVSchemaResponse.ResultsByShardEntry
- 307, // 176: vtctldata.VDiffCreateRequest.tablet_types:type_name -> topodata.TabletType
- 295, // 177: vtctldata.VDiffCreateRequest.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
- 299, // 178: vtctldata.VDiffCreateRequest.filtered_replication_wait_time:type_name -> vttime.Duration
- 299, // 179: vtctldata.VDiffCreateRequest.wait_update_interval:type_name -> vttime.Duration
- 299, // 180: vtctldata.VDiffCreateRequest.max_diff_duration:type_name -> vttime.Duration
- 286, // 181: vtctldata.VDiffShowResponse.tablet_responses:type_name -> vtctldata.VDiffShowResponse.TabletResponsesEntry
- 287, // 182: vtctldata.WorkflowDeleteResponse.details:type_name -> vtctldata.WorkflowDeleteResponse.TabletInfo
- 291, // 183: vtctldata.WorkflowStatusResponse.table_copy_state:type_name -> vtctldata.WorkflowStatusResponse.TableCopyStateEntry
- 292, // 184: vtctldata.WorkflowStatusResponse.shard_streams:type_name -> vtctldata.WorkflowStatusResponse.ShardStreamsEntry
- 307, // 185: vtctldata.WorkflowSwitchTrafficRequest.tablet_types:type_name -> topodata.TabletType
- 299, // 186: vtctldata.WorkflowSwitchTrafficRequest.max_replication_lag_allowed:type_name -> vttime.Duration
- 299, // 187: vtctldata.WorkflowSwitchTrafficRequest.timeout:type_name -> vttime.Duration
- 325, // 188: vtctldata.WorkflowUpdateRequest.tablet_request:type_name -> tabletmanagerdata.UpdateVReplicationWorkflowRequest
- 293, // 189: vtctldata.WorkflowUpdateResponse.details:type_name -> vtctldata.WorkflowUpdateResponse.TabletInfo
- 326, // 190: vtctldata.GetMirrorRulesResponse.mirror_rules:type_name -> vschema.MirrorRules
- 307, // 191: vtctldata.WorkflowMirrorTrafficRequest.tablet_types:type_name -> topodata.TabletType
- 257, // 192: vtctldata.Workflow.ShardStreamsEntry.value:type_name -> vtctldata.Workflow.ShardStream
- 258, // 193: vtctldata.Workflow.ShardStream.streams:type_name -> vtctldata.Workflow.Stream
- 327, // 194: vtctldata.Workflow.ShardStream.tablet_controls:type_name -> topodata.Shard.TabletControl
- 298, // 195: vtctldata.Workflow.Stream.tablet:type_name -> topodata.TabletAlias
- 328, // 196: vtctldata.Workflow.Stream.binlog_source:type_name -> binlogdata.BinlogSource
- 297, // 197: vtctldata.Workflow.Stream.transaction_timestamp:type_name -> vttime.Time
- 297, // 198: vtctldata.Workflow.Stream.time_updated:type_name -> vttime.Time
- 259, // 199: vtctldata.Workflow.Stream.copy_states:type_name -> vtctldata.Workflow.Stream.CopyState
- 260, // 200: vtctldata.Workflow.Stream.logs:type_name -> vtctldata.Workflow.Stream.Log
- 261, // 201: vtctldata.Workflow.Stream.throttler_status:type_name -> vtctldata.Workflow.Stream.ThrottlerStatus
- 307, // 202: vtctldata.Workflow.Stream.tablet_types:type_name -> topodata.TabletType
- 295, // 203: vtctldata.Workflow.Stream.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
- 297, // 204: vtctldata.Workflow.Stream.Log.created_at:type_name -> vttime.Time
- 297, // 205: vtctldata.Workflow.Stream.Log.updated_at:type_name -> vttime.Time
- 297, // 206: vtctldata.Workflow.Stream.ThrottlerStatus.time_throttled:type_name -> vttime.Time
- 264, // 207: vtctldata.ApplyVSchemaResponse.UnknownVindexParamsEntry.value:type_name -> vtctldata.ApplyVSchemaResponse.ParamList
- 10, // 208: vtctldata.FindAllShardsInKeyspaceResponse.ShardsEntry.value:type_name -> vtctldata.Shard
- 324, // 209: vtctldata.GetCellsAliasesResponse.AliasesEntry.value:type_name -> topodata.CellsAlias
- 329, // 210: vtctldata.GetShardReplicationResponse.ShardReplicationByCellEntry.value:type_name -> topodata.ShardReplication
- 273, // 211: vtctldata.GetSrvKeyspaceNamesResponse.NamesEntry.value:type_name -> vtctldata.GetSrvKeyspaceNamesResponse.NameList
- 330, // 212: vtctldata.GetSrvKeyspacesResponse.SrvKeyspacesEntry.value:type_name -> topodata.SrvKeyspace
- 319, // 213: vtctldata.GetSrvVSchemasResponse.SrvVSchemasEntry.value:type_name -> vschema.SrvVSchema
- 298, // 214: vtctldata.MoveTablesCreateResponse.TabletInfo.tablet:type_name -> topodata.TabletAlias
- 331, // 215: vtctldata.ShardReplicationPositionsResponse.ReplicationStatusesEntry.value:type_name -> replicationdata.Status
- 308, // 216: vtctldata.ShardReplicationPositionsResponse.TabletMapEntry.value:type_name -> topodata.Tablet
- 222, // 217: vtctldata.ValidateResponse.ResultsByKeyspaceEntry.value:type_name -> vtctldata.ValidateKeyspaceResponse
- 226, // 218: vtctldata.ValidateKeyspaceResponse.ResultsByShardEntry.value:type_name -> vtctldata.ValidateShardResponse
- 226, // 219: vtctldata.ValidateSchemaKeyspaceResponse.ResultsByShardEntry.value:type_name -> vtctldata.ValidateShardResponse
- 226, // 220: vtctldata.ValidateVersionKeyspaceResponse.ResultsByShardEntry.value:type_name -> vtctldata.ValidateShardResponse
- 226, // 221: vtctldata.ValidateVSchemaResponse.ResultsByShardEntry.value:type_name -> vtctldata.ValidateShardResponse
- 332, // 222: vtctldata.VDiffShowResponse.TabletResponsesEntry.value:type_name -> tabletmanagerdata.VDiffResponse
- 298, // 223: vtctldata.WorkflowDeleteResponse.TabletInfo.tablet:type_name -> topodata.TabletAlias
- 298, // 224: vtctldata.WorkflowStatusResponse.ShardStreamState.tablet:type_name -> topodata.TabletAlias
- 289, // 225: vtctldata.WorkflowStatusResponse.ShardStreams.streams:type_name -> vtctldata.WorkflowStatusResponse.ShardStreamState
- 288, // 226: vtctldata.WorkflowStatusResponse.TableCopyStateEntry.value:type_name -> vtctldata.WorkflowStatusResponse.TableCopyState
- 290, // 227: vtctldata.WorkflowStatusResponse.ShardStreamsEntry.value:type_name -> vtctldata.WorkflowStatusResponse.ShardStreams
- 298, // 228: vtctldata.WorkflowUpdateResponse.TabletInfo.tablet:type_name -> topodata.TabletAlias
- 229, // [229:229] is the sub-list for method output_type
- 229, // [229:229] is the sub-list for method input_type
- 229, // [229:229] is the sub-list for extension type_name
- 229, // [229:229] is the sub-list for extension extendee
- 0, // [0:229] is the sub-list for field type_name
+ 301, // 15: vtctldata.SchemaMigration.tablet:type_name -> topodata.TabletAlias
+ 302, // 16: vtctldata.SchemaMigration.artifact_retention:type_name -> vttime.Duration
+ 300, // 17: vtctldata.SchemaMigration.last_throttled_at:type_name -> vttime.Time
+ 300, // 18: vtctldata.SchemaMigration.cancelled_at:type_name -> vttime.Time
+ 300, // 19: vtctldata.SchemaMigration.reviewed_at:type_name -> vttime.Time
+ 300, // 20: vtctldata.SchemaMigration.ready_to_complete_at:type_name -> vttime.Time
+ 303, // 21: vtctldata.Shard.shard:type_name -> topodata.Shard
+ 257, // 22: vtctldata.WorkflowOptions.config:type_name -> vtctldata.WorkflowOptions.ConfigEntry
+ 259, // 23: vtctldata.Workflow.source:type_name -> vtctldata.Workflow.ReplicationLocation
+ 259, // 24: vtctldata.Workflow.target:type_name -> vtctldata.Workflow.ReplicationLocation
+ 258, // 25: vtctldata.Workflow.shard_streams:type_name -> vtctldata.Workflow.ShardStreamsEntry
+ 11, // 26: vtctldata.Workflow.options:type_name -> vtctldata.WorkflowOptions
+ 304, // 27: vtctldata.AddCellInfoRequest.cell_info:type_name -> topodata.CellInfo
+ 305, // 28: vtctldata.ApplyKeyspaceRoutingRulesRequest.keyspace_routing_rules:type_name -> vschema.KeyspaceRoutingRules
+ 305, // 29: vtctldata.ApplyKeyspaceRoutingRulesResponse.keyspace_routing_rules:type_name -> vschema.KeyspaceRoutingRules
+ 306, // 30: vtctldata.ApplyRoutingRulesRequest.routing_rules:type_name -> vschema.RoutingRules
+ 307, // 31: vtctldata.ApplyShardRoutingRulesRequest.shard_routing_rules:type_name -> vschema.ShardRoutingRules
+ 302, // 32: vtctldata.ApplySchemaRequest.wait_replicas_timeout:type_name -> vttime.Duration
+ 308, // 33: vtctldata.ApplySchemaRequest.caller_id:type_name -> vtrpc.CallerID
+ 265, // 34: vtctldata.ApplySchemaResponse.rows_affected_by_shard:type_name -> vtctldata.ApplySchemaResponse.RowsAffectedByShardEntry
+ 309, // 35: vtctldata.ApplyVSchemaRequest.v_schema:type_name -> vschema.Keyspace
+ 309, // 36: vtctldata.ApplyVSchemaResponse.v_schema:type_name -> vschema.Keyspace
+ 266, // 37: vtctldata.ApplyVSchemaResponse.unknown_vindex_params:type_name -> vtctldata.ApplyVSchemaResponse.UnknownVindexParamsEntry
+ 301, // 38: vtctldata.BackupRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 301, // 39: vtctldata.BackupResponse.tablet_alias:type_name -> topodata.TabletAlias
+ 297, // 40: vtctldata.BackupResponse.event:type_name -> logutil.Event
+ 268, // 41: vtctldata.CancelSchemaMigrationResponse.rows_affected_by_shard:type_name -> vtctldata.CancelSchemaMigrationResponse.RowsAffectedByShardEntry
+ 301, // 42: vtctldata.ChangeTabletTypeRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 310, // 43: vtctldata.ChangeTabletTypeRequest.db_type:type_name -> topodata.TabletType
+ 311, // 44: vtctldata.ChangeTabletTypeResponse.before_tablet:type_name -> topodata.Tablet
+ 311, // 45: vtctldata.ChangeTabletTypeResponse.after_tablet:type_name -> topodata.Tablet
+ 301, // 46: vtctldata.CheckThrottlerRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 301, // 47: vtctldata.CheckThrottlerResponse.tablet_alias:type_name -> topodata.TabletAlias
+ 312, // 48: vtctldata.CheckThrottlerResponse.Check:type_name -> tabletmanagerdata.CheckThrottlerResponse
+ 269, // 49: vtctldata.CleanupSchemaMigrationResponse.rows_affected_by_shard:type_name -> vtctldata.CleanupSchemaMigrationResponse.RowsAffectedByShardEntry
+ 270, // 50: vtctldata.CompleteSchemaMigrationResponse.rows_affected_by_shard:type_name -> vtctldata.CompleteSchemaMigrationResponse.RowsAffectedByShardEntry
+ 313, // 51: vtctldata.CreateKeyspaceRequest.type:type_name -> topodata.KeyspaceType
+ 300, // 52: vtctldata.CreateKeyspaceRequest.snapshot_time:type_name -> vttime.Time
+ 8, // 53: vtctldata.CreateKeyspaceResponse.keyspace:type_name -> vtctldata.Keyspace
+ 8, // 54: vtctldata.CreateShardResponse.keyspace:type_name -> vtctldata.Keyspace
+ 10, // 55: vtctldata.CreateShardResponse.shard:type_name -> vtctldata.Shard
+ 10, // 56: vtctldata.DeleteShardsRequest.shards:type_name -> vtctldata.Shard
+ 301, // 57: vtctldata.DeleteTabletsRequest.tablet_aliases:type_name -> topodata.TabletAlias
+ 301, // 58: vtctldata.EmergencyReparentShardRequest.new_primary:type_name -> topodata.TabletAlias
+ 301, // 59: vtctldata.EmergencyReparentShardRequest.ignore_replicas:type_name -> topodata.TabletAlias
+ 302, // 60: vtctldata.EmergencyReparentShardRequest.wait_replicas_timeout:type_name -> vttime.Duration
+ 301, // 61: vtctldata.EmergencyReparentShardResponse.promoted_primary:type_name -> topodata.TabletAlias
+ 297, // 62: vtctldata.EmergencyReparentShardResponse.events:type_name -> logutil.Event
+ 301, // 63: vtctldata.ExecuteFetchAsAppRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 314, // 64: vtctldata.ExecuteFetchAsAppResponse.result:type_name -> query.QueryResult
+ 301, // 65: vtctldata.ExecuteFetchAsDBARequest.tablet_alias:type_name -> topodata.TabletAlias
+ 314, // 66: vtctldata.ExecuteFetchAsDBAResponse.result:type_name -> query.QueryResult
+ 301, // 67: vtctldata.ExecuteHookRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 315, // 68: vtctldata.ExecuteHookRequest.tablet_hook_request:type_name -> tabletmanagerdata.ExecuteHookRequest
+ 316, // 69: vtctldata.ExecuteHookResponse.hook_result:type_name -> tabletmanagerdata.ExecuteHookResponse
+ 301, // 70: vtctldata.ExecuteMultiFetchAsDBARequest.tablet_alias:type_name -> topodata.TabletAlias
+ 314, // 71: vtctldata.ExecuteMultiFetchAsDBAResponse.results:type_name -> query.QueryResult
+ 271, // 72: vtctldata.FindAllShardsInKeyspaceResponse.shards:type_name -> vtctldata.FindAllShardsInKeyspaceResponse.ShardsEntry
+ 272, // 73: vtctldata.ForceCutOverSchemaMigrationResponse.rows_affected_by_shard:type_name -> vtctldata.ForceCutOverSchemaMigrationResponse.RowsAffectedByShardEntry
+ 317, // 74: vtctldata.GetBackupsResponse.backups:type_name -> mysqlctl.BackupInfo
+ 304, // 75: vtctldata.GetCellInfoResponse.cell_info:type_name -> topodata.CellInfo
+ 273, // 76: vtctldata.GetCellsAliasesResponse.aliases:type_name -> vtctldata.GetCellsAliasesResponse.AliasesEntry
+ 301, // 77: vtctldata.GetFullStatusRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 318, // 78: vtctldata.GetFullStatusResponse.status:type_name -> replicationdata.FullStatus
+ 8, // 79: vtctldata.GetKeyspacesResponse.keyspaces:type_name -> vtctldata.Keyspace
+ 8, // 80: vtctldata.GetKeyspaceResponse.keyspace:type_name -> vtctldata.Keyspace
+ 301, // 81: vtctldata.GetPermissionsRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 319, // 82: vtctldata.GetPermissionsResponse.permissions:type_name -> tabletmanagerdata.Permissions
+ 305, // 83: vtctldata.GetKeyspaceRoutingRulesResponse.keyspace_routing_rules:type_name -> vschema.KeyspaceRoutingRules
+ 306, // 84: vtctldata.GetRoutingRulesResponse.routing_rules:type_name -> vschema.RoutingRules
+ 301, // 85: vtctldata.GetSchemaRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 320, // 86: vtctldata.GetSchemaResponse.schema:type_name -> tabletmanagerdata.SchemaDefinition
+ 3, // 87: vtctldata.GetSchemaMigrationsRequest.status:type_name -> vtctldata.SchemaMigration.Status
+ 302, // 88: vtctldata.GetSchemaMigrationsRequest.recent:type_name -> vttime.Duration
+ 1, // 89: vtctldata.GetSchemaMigrationsRequest.order:type_name -> vtctldata.QueryOrdering
+ 9, // 90: vtctldata.GetSchemaMigrationsResponse.migrations:type_name -> vtctldata.SchemaMigration
+ 274, // 91: vtctldata.GetShardReplicationResponse.shard_replication_by_cell:type_name -> vtctldata.GetShardReplicationResponse.ShardReplicationByCellEntry
+ 10, // 92: vtctldata.GetShardResponse.shard:type_name -> vtctldata.Shard
+ 307, // 93: vtctldata.GetShardRoutingRulesResponse.shard_routing_rules:type_name -> vschema.ShardRoutingRules
+ 275, // 94: vtctldata.GetSrvKeyspaceNamesResponse.names:type_name -> vtctldata.GetSrvKeyspaceNamesResponse.NamesEntry
+ 277, // 95: vtctldata.GetSrvKeyspacesResponse.srv_keyspaces:type_name -> vtctldata.GetSrvKeyspacesResponse.SrvKeyspacesEntry
+ 321, // 96: vtctldata.UpdateThrottlerConfigRequest.throttled_app:type_name -> topodata.ThrottledAppRule
+ 322, // 97: vtctldata.GetSrvVSchemaResponse.srv_v_schema:type_name -> vschema.SrvVSchema
+ 278, // 98: vtctldata.GetSrvVSchemasResponse.srv_v_schemas:type_name -> vtctldata.GetSrvVSchemasResponse.SrvVSchemasEntry
+ 301, // 99: vtctldata.GetTabletRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 311, // 100: vtctldata.GetTabletResponse.tablet:type_name -> topodata.Tablet
+ 301, // 101: vtctldata.GetTabletsRequest.tablet_aliases:type_name -> topodata.TabletAlias
+ 310, // 102: vtctldata.GetTabletsRequest.tablet_type:type_name -> topodata.TabletType
+ 311, // 103: vtctldata.GetTabletsResponse.tablets:type_name -> topodata.Tablet
+ 301, // 104: vtctldata.GetThrottlerStatusRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 323, // 105: vtctldata.GetThrottlerStatusResponse.status:type_name -> tabletmanagerdata.GetThrottlerStatusResponse
+ 118, // 106: vtctldata.GetTopologyPathResponse.cell:type_name -> vtctldata.TopologyCell
+ 324, // 107: vtctldata.GetUnresolvedTransactionsResponse.transactions:type_name -> query.TransactionMetadata
+ 325, // 108: vtctldata.ConcludeTransactionRequest.participants:type_name -> query.Target
+ 301, // 109: vtctldata.GetVersionRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 309, // 110: vtctldata.GetVSchemaResponse.v_schema:type_name -> vschema.Keyspace
+ 12, // 111: vtctldata.GetWorkflowsResponse.workflows:type_name -> vtctldata.Workflow
+ 301, // 112: vtctldata.InitShardPrimaryRequest.primary_elect_tablet_alias:type_name -> topodata.TabletAlias
+ 302, // 113: vtctldata.InitShardPrimaryRequest.wait_replicas_timeout:type_name -> vttime.Duration
+ 297, // 114: vtctldata.InitShardPrimaryResponse.events:type_name -> logutil.Event
+ 279, // 115: vtctldata.LaunchSchemaMigrationResponse.rows_affected_by_shard:type_name -> vtctldata.LaunchSchemaMigrationResponse.RowsAffectedByShardEntry
+ 309, // 116: vtctldata.LookupVindexCreateRequest.vindex:type_name -> vschema.Keyspace
+ 310, // 117: vtctldata.LookupVindexCreateRequest.tablet_types:type_name -> topodata.TabletType
+ 298, // 118: vtctldata.LookupVindexCreateRequest.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
+ 7, // 119: vtctldata.MaterializeCreateRequest.settings:type_name -> vtctldata.MaterializeSettings
+ 310, // 120: vtctldata.MigrateCreateRequest.tablet_types:type_name -> topodata.TabletType
+ 298, // 121: vtctldata.MigrateCreateRequest.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
+ 310, // 122: vtctldata.MoveTablesCreateRequest.tablet_types:type_name -> topodata.TabletType
+ 298, // 123: vtctldata.MoveTablesCreateRequest.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
+ 11, // 124: vtctldata.MoveTablesCreateRequest.workflow_options:type_name -> vtctldata.WorkflowOptions
+ 280, // 125: vtctldata.MoveTablesCreateResponse.details:type_name -> vtctldata.MoveTablesCreateResponse.TabletInfo
+ 301, // 126: vtctldata.PingTabletRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 301, // 127: vtctldata.PlannedReparentShardRequest.new_primary:type_name -> topodata.TabletAlias
+ 301, // 128: vtctldata.PlannedReparentShardRequest.avoid_primary:type_name -> topodata.TabletAlias
+ 302, // 129: vtctldata.PlannedReparentShardRequest.wait_replicas_timeout:type_name -> vttime.Duration
+ 302, // 130: vtctldata.PlannedReparentShardRequest.tolerable_replication_lag:type_name -> vttime.Duration
+ 301, // 131: vtctldata.PlannedReparentShardResponse.promoted_primary:type_name -> topodata.TabletAlias
+ 297, // 132: vtctldata.PlannedReparentShardResponse.events:type_name -> logutil.Event
+ 301, // 133: vtctldata.RefreshStateRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 301, // 134: vtctldata.ReloadSchemaRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 297, // 135: vtctldata.ReloadSchemaKeyspaceResponse.events:type_name -> logutil.Event
+ 297, // 136: vtctldata.ReloadSchemaShardResponse.events:type_name -> logutil.Event
+ 301, // 137: vtctldata.ReparentTabletRequest.tablet:type_name -> topodata.TabletAlias
+ 301, // 138: vtctldata.ReparentTabletResponse.primary:type_name -> topodata.TabletAlias
+ 310, // 139: vtctldata.ReshardCreateRequest.tablet_types:type_name -> topodata.TabletType
+ 298, // 140: vtctldata.ReshardCreateRequest.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
+ 11, // 141: vtctldata.ReshardCreateRequest.workflow_options:type_name -> vtctldata.WorkflowOptions
+ 301, // 142: vtctldata.RestoreFromBackupRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 300, // 143: vtctldata.RestoreFromBackupRequest.backup_time:type_name -> vttime.Time
+ 300, // 144: vtctldata.RestoreFromBackupRequest.restore_to_timestamp:type_name -> vttime.Time
+ 301, // 145: vtctldata.RestoreFromBackupResponse.tablet_alias:type_name -> topodata.TabletAlias
+ 297, // 146: vtctldata.RestoreFromBackupResponse.event:type_name -> logutil.Event
+ 281, // 147: vtctldata.RetrySchemaMigrationResponse.rows_affected_by_shard:type_name -> vtctldata.RetrySchemaMigrationResponse.RowsAffectedByShardEntry
+ 301, // 148: vtctldata.RunHealthCheckRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 299, // 149: vtctldata.SetKeyspaceDurabilityPolicyResponse.keyspace:type_name -> topodata.Keyspace
+ 299, // 150: vtctldata.SetKeyspaceShardingInfoResponse.keyspace:type_name -> topodata.Keyspace
+ 303, // 151: vtctldata.SetShardIsPrimaryServingResponse.shard:type_name -> topodata.Shard
+ 310, // 152: vtctldata.SetShardTabletControlRequest.tablet_type:type_name -> topodata.TabletType
+ 303, // 153: vtctldata.SetShardTabletControlResponse.shard:type_name -> topodata.Shard
+ 301, // 154: vtctldata.SetWritableRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 301, // 155: vtctldata.ShardReplicationAddRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 326, // 156: vtctldata.ShardReplicationFixResponse.error:type_name -> topodata.ShardReplicationError
+ 282, // 157: vtctldata.ShardReplicationPositionsResponse.replication_statuses:type_name -> vtctldata.ShardReplicationPositionsResponse.ReplicationStatusesEntry
+ 283, // 158: vtctldata.ShardReplicationPositionsResponse.tablet_map:type_name -> vtctldata.ShardReplicationPositionsResponse.TabletMapEntry
+ 301, // 159: vtctldata.ShardReplicationRemoveRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 301, // 160: vtctldata.SleepTabletRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 302, // 161: vtctldata.SleepTabletRequest.duration:type_name -> vttime.Duration
+ 327, // 162: vtctldata.SourceShardAddRequest.key_range:type_name -> topodata.KeyRange
+ 303, // 163: vtctldata.SourceShardAddResponse.shard:type_name -> topodata.Shard
+ 303, // 164: vtctldata.SourceShardDeleteResponse.shard:type_name -> topodata.Shard
+ 301, // 165: vtctldata.StartReplicationRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 301, // 166: vtctldata.StopReplicationRequest.tablet_alias:type_name -> topodata.TabletAlias
+ 301, // 167: vtctldata.TabletExternallyReparentedRequest.tablet:type_name -> topodata.TabletAlias
+ 301, // 168: vtctldata.TabletExternallyReparentedResponse.new_primary:type_name -> topodata.TabletAlias
+ 301, // 169: vtctldata.TabletExternallyReparentedResponse.old_primary:type_name -> topodata.TabletAlias
+ 304, // 170: vtctldata.UpdateCellInfoRequest.cell_info:type_name -> topodata.CellInfo
+ 304, // 171: vtctldata.UpdateCellInfoResponse.cell_info:type_name -> topodata.CellInfo
+ 328, // 172: vtctldata.UpdateCellsAliasRequest.cells_alias:type_name -> topodata.CellsAlias
+ 328, // 173: vtctldata.UpdateCellsAliasResponse.cells_alias:type_name -> topodata.CellsAlias
+ 284, // 174: vtctldata.ValidateResponse.results_by_keyspace:type_name -> vtctldata.ValidateResponse.ResultsByKeyspaceEntry
+ 285, // 175: vtctldata.ValidateKeyspaceResponse.results_by_shard:type_name -> vtctldata.ValidateKeyspaceResponse.ResultsByShardEntry
+ 286, // 176: vtctldata.ValidateSchemaKeyspaceResponse.results_by_shard:type_name -> vtctldata.ValidateSchemaKeyspaceResponse.ResultsByShardEntry
+ 287, // 177: vtctldata.ValidateVersionKeyspaceResponse.results_by_shard:type_name -> vtctldata.ValidateVersionKeyspaceResponse.ResultsByShardEntry
+ 288, // 178: vtctldata.ValidateVSchemaResponse.results_by_shard:type_name -> vtctldata.ValidateVSchemaResponse.ResultsByShardEntry
+ 310, // 179: vtctldata.VDiffCreateRequest.tablet_types:type_name -> topodata.TabletType
+ 298, // 180: vtctldata.VDiffCreateRequest.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
+ 302, // 181: vtctldata.VDiffCreateRequest.filtered_replication_wait_time:type_name -> vttime.Duration
+ 302, // 182: vtctldata.VDiffCreateRequest.wait_update_interval:type_name -> vttime.Duration
+ 302, // 183: vtctldata.VDiffCreateRequest.max_diff_duration:type_name -> vttime.Duration
+ 289, // 184: vtctldata.VDiffShowResponse.tablet_responses:type_name -> vtctldata.VDiffShowResponse.TabletResponsesEntry
+ 290, // 185: vtctldata.WorkflowDeleteResponse.details:type_name -> vtctldata.WorkflowDeleteResponse.TabletInfo
+ 294, // 186: vtctldata.WorkflowStatusResponse.table_copy_state:type_name -> vtctldata.WorkflowStatusResponse.TableCopyStateEntry
+ 295, // 187: vtctldata.WorkflowStatusResponse.shard_streams:type_name -> vtctldata.WorkflowStatusResponse.ShardStreamsEntry
+ 310, // 188: vtctldata.WorkflowSwitchTrafficRequest.tablet_types:type_name -> topodata.TabletType
+ 302, // 189: vtctldata.WorkflowSwitchTrafficRequest.max_replication_lag_allowed:type_name -> vttime.Duration
+ 302, // 190: vtctldata.WorkflowSwitchTrafficRequest.timeout:type_name -> vttime.Duration
+ 329, // 191: vtctldata.WorkflowUpdateRequest.tablet_request:type_name -> tabletmanagerdata.UpdateVReplicationWorkflowRequest
+ 296, // 192: vtctldata.WorkflowUpdateResponse.details:type_name -> vtctldata.WorkflowUpdateResponse.TabletInfo
+ 330, // 193: vtctldata.GetMirrorRulesResponse.mirror_rules:type_name -> vschema.MirrorRules
+ 310, // 194: vtctldata.WorkflowMirrorTrafficRequest.tablet_types:type_name -> topodata.TabletType
+ 260, // 195: vtctldata.Workflow.ShardStreamsEntry.value:type_name -> vtctldata.Workflow.ShardStream
+ 261, // 196: vtctldata.Workflow.ShardStream.streams:type_name -> vtctldata.Workflow.Stream
+ 331, // 197: vtctldata.Workflow.ShardStream.tablet_controls:type_name -> topodata.Shard.TabletControl
+ 301, // 198: vtctldata.Workflow.Stream.tablet:type_name -> topodata.TabletAlias
+ 332, // 199: vtctldata.Workflow.Stream.binlog_source:type_name -> binlogdata.BinlogSource
+ 300, // 200: vtctldata.Workflow.Stream.transaction_timestamp:type_name -> vttime.Time
+ 300, // 201: vtctldata.Workflow.Stream.time_updated:type_name -> vttime.Time
+ 262, // 202: vtctldata.Workflow.Stream.copy_states:type_name -> vtctldata.Workflow.Stream.CopyState
+ 263, // 203: vtctldata.Workflow.Stream.logs:type_name -> vtctldata.Workflow.Stream.Log
+ 264, // 204: vtctldata.Workflow.Stream.throttler_status:type_name -> vtctldata.Workflow.Stream.ThrottlerStatus
+ 310, // 205: vtctldata.Workflow.Stream.tablet_types:type_name -> topodata.TabletType
+ 298, // 206: vtctldata.Workflow.Stream.tablet_selection_preference:type_name -> tabletmanagerdata.TabletSelectionPreference
+ 300, // 207: vtctldata.Workflow.Stream.Log.created_at:type_name -> vttime.Time
+ 300, // 208: vtctldata.Workflow.Stream.Log.updated_at:type_name -> vttime.Time
+ 300, // 209: vtctldata.Workflow.Stream.ThrottlerStatus.time_throttled:type_name -> vttime.Time
+ 267, // 210: vtctldata.ApplyVSchemaResponse.UnknownVindexParamsEntry.value:type_name -> vtctldata.ApplyVSchemaResponse.ParamList
+ 10, // 211: vtctldata.FindAllShardsInKeyspaceResponse.ShardsEntry.value:type_name -> vtctldata.Shard
+ 328, // 212: vtctldata.GetCellsAliasesResponse.AliasesEntry.value:type_name -> topodata.CellsAlias
+ 333, // 213: vtctldata.GetShardReplicationResponse.ShardReplicationByCellEntry.value:type_name -> topodata.ShardReplication
+ 276, // 214: vtctldata.GetSrvKeyspaceNamesResponse.NamesEntry.value:type_name -> vtctldata.GetSrvKeyspaceNamesResponse.NameList
+ 334, // 215: vtctldata.GetSrvKeyspacesResponse.SrvKeyspacesEntry.value:type_name -> topodata.SrvKeyspace
+ 322, // 216: vtctldata.GetSrvVSchemasResponse.SrvVSchemasEntry.value:type_name -> vschema.SrvVSchema
+ 301, // 217: vtctldata.MoveTablesCreateResponse.TabletInfo.tablet:type_name -> topodata.TabletAlias
+ 335, // 218: vtctldata.ShardReplicationPositionsResponse.ReplicationStatusesEntry.value:type_name -> replicationdata.Status
+ 311, // 219: vtctldata.ShardReplicationPositionsResponse.TabletMapEntry.value:type_name -> topodata.Tablet
+ 224, // 220: vtctldata.ValidateResponse.ResultsByKeyspaceEntry.value:type_name -> vtctldata.ValidateKeyspaceResponse
+ 228, // 221: vtctldata.ValidateKeyspaceResponse.ResultsByShardEntry.value:type_name -> vtctldata.ValidateShardResponse
+ 228, // 222: vtctldata.ValidateSchemaKeyspaceResponse.ResultsByShardEntry.value:type_name -> vtctldata.ValidateShardResponse
+ 228, // 223: vtctldata.ValidateVersionKeyspaceResponse.ResultsByShardEntry.value:type_name -> vtctldata.ValidateShardResponse
+ 228, // 224: vtctldata.ValidateVSchemaResponse.ResultsByShardEntry.value:type_name -> vtctldata.ValidateShardResponse
+ 336, // 225: vtctldata.VDiffShowResponse.TabletResponsesEntry.value:type_name -> tabletmanagerdata.VDiffResponse
+ 301, // 226: vtctldata.WorkflowDeleteResponse.TabletInfo.tablet:type_name -> topodata.TabletAlias
+ 301, // 227: vtctldata.WorkflowStatusResponse.ShardStreamState.tablet:type_name -> topodata.TabletAlias
+ 292, // 228: vtctldata.WorkflowStatusResponse.ShardStreams.streams:type_name -> vtctldata.WorkflowStatusResponse.ShardStreamState
+ 291, // 229: vtctldata.WorkflowStatusResponse.TableCopyStateEntry.value:type_name -> vtctldata.WorkflowStatusResponse.TableCopyState
+ 293, // 230: vtctldata.WorkflowStatusResponse.ShardStreamsEntry.value:type_name -> vtctldata.WorkflowStatusResponse.ShardStreams
+ 301, // 231: vtctldata.WorkflowUpdateResponse.TabletInfo.tablet:type_name -> topodata.TabletAlias
+ 232, // [232:232] is the sub-list for method output_type
+ 232, // [232:232] is the sub-list for method input_type
+ 232, // [232:232] is the sub-list for extension type_name
+ 232, // [232:232] is the sub-list for extension extendee
+ 0, // [0:232] is the sub-list for field type_name
}
func init() { file_vtctldata_proto_init() }
@@ -21216,7 +21362,7 @@ func file_vtctldata_proto_init() {
}
}
file_vtctldata_proto_msgTypes[117].Exporter = func(v any, i int) any {
- switch v := v.(*GetVSchemaRequest); i {
+ switch v := v.(*ConcludeTransactionRequest); i {
case 0:
return &v.state
case 1:
@@ -21228,7 +21374,7 @@ func file_vtctldata_proto_init() {
}
}
file_vtctldata_proto_msgTypes[118].Exporter = func(v any, i int) any {
- switch v := v.(*GetVersionRequest); i {
+ switch v := v.(*ConcludeTransactionResponse); i {
case 0:
return &v.state
case 1:
@@ -21240,7 +21386,7 @@ func file_vtctldata_proto_init() {
}
}
file_vtctldata_proto_msgTypes[119].Exporter = func(v any, i int) any {
- switch v := v.(*GetVersionResponse); i {
+ switch v := v.(*GetVSchemaRequest); i {
case 0:
return &v.state
case 1:
@@ -21252,7 +21398,7 @@ func file_vtctldata_proto_init() {
}
}
file_vtctldata_proto_msgTypes[120].Exporter = func(v any, i int) any {
- switch v := v.(*GetVSchemaResponse); i {
+ switch v := v.(*GetVersionRequest); i {
case 0:
return &v.state
case 1:
@@ -21264,7 +21410,7 @@ func file_vtctldata_proto_init() {
}
}
file_vtctldata_proto_msgTypes[121].Exporter = func(v any, i int) any {
- switch v := v.(*GetWorkflowsRequest); i {
+ switch v := v.(*GetVersionResponse); i {
case 0:
return &v.state
case 1:
@@ -21276,7 +21422,7 @@ func file_vtctldata_proto_init() {
}
}
file_vtctldata_proto_msgTypes[122].Exporter = func(v any, i int) any {
- switch v := v.(*GetWorkflowsResponse); i {
+ switch v := v.(*GetVSchemaResponse); i {
case 0:
return &v.state
case 1:
@@ -21288,7 +21434,7 @@ func file_vtctldata_proto_init() {
}
}
file_vtctldata_proto_msgTypes[123].Exporter = func(v any, i int) any {
- switch v := v.(*InitShardPrimaryRequest); i {
+ switch v := v.(*GetWorkflowsRequest); i {
case 0:
return &v.state
case 1:
@@ -21300,7 +21446,7 @@ func file_vtctldata_proto_init() {
}
}
file_vtctldata_proto_msgTypes[124].Exporter = func(v any, i int) any {
- switch v := v.(*InitShardPrimaryResponse); i {
+ switch v := v.(*GetWorkflowsResponse); i {
case 0:
return &v.state
case 1:
@@ -21312,7 +21458,7 @@ func file_vtctldata_proto_init() {
}
}
file_vtctldata_proto_msgTypes[125].Exporter = func(v any, i int) any {
- switch v := v.(*LaunchSchemaMigrationRequest); i {
+ switch v := v.(*InitShardPrimaryRequest); i {
case 0:
return &v.state
case 1:
@@ -21324,7 +21470,7 @@ func file_vtctldata_proto_init() {
}
}
file_vtctldata_proto_msgTypes[126].Exporter = func(v any, i int) any {
- switch v := v.(*LaunchSchemaMigrationResponse); i {
+ switch v := v.(*InitShardPrimaryResponse); i {
case 0:
return &v.state
case 1:
@@ -21336,7 +21482,7 @@ func file_vtctldata_proto_init() {
}
}
file_vtctldata_proto_msgTypes[127].Exporter = func(v any, i int) any {
- switch v := v.(*LookupVindexCreateRequest); i {
+ switch v := v.(*LaunchSchemaMigrationRequest); i {
case 0:
return &v.state
case 1:
@@ -21348,6 +21494,30 @@ func file_vtctldata_proto_init() {
}
}
file_vtctldata_proto_msgTypes[128].Exporter = func(v any, i int) any {
+ switch v := v.(*LaunchSchemaMigrationResponse); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_vtctldata_proto_msgTypes[129].Exporter = func(v any, i int) any {
+ switch v := v.(*LookupVindexCreateRequest); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_vtctldata_proto_msgTypes[130].Exporter = func(v any, i int) any {
switch v := v.(*LookupVindexCreateResponse); i {
case 0:
return &v.state
@@ -21359,7 +21529,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[129].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[131].Exporter = func(v any, i int) any {
switch v := v.(*LookupVindexExternalizeRequest); i {
case 0:
return &v.state
@@ -21371,7 +21541,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[130].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[132].Exporter = func(v any, i int) any {
switch v := v.(*LookupVindexExternalizeResponse); i {
case 0:
return &v.state
@@ -21383,7 +21553,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[131].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[133].Exporter = func(v any, i int) any {
switch v := v.(*MaterializeCreateRequest); i {
case 0:
return &v.state
@@ -21395,7 +21565,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[132].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[134].Exporter = func(v any, i int) any {
switch v := v.(*MaterializeCreateResponse); i {
case 0:
return &v.state
@@ -21407,7 +21577,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[133].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[135].Exporter = func(v any, i int) any {
switch v := v.(*MigrateCreateRequest); i {
case 0:
return &v.state
@@ -21419,7 +21589,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[134].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[136].Exporter = func(v any, i int) any {
switch v := v.(*MigrateCompleteRequest); i {
case 0:
return &v.state
@@ -21431,7 +21601,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[135].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[137].Exporter = func(v any, i int) any {
switch v := v.(*MigrateCompleteResponse); i {
case 0:
return &v.state
@@ -21443,7 +21613,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[136].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[138].Exporter = func(v any, i int) any {
switch v := v.(*MountRegisterRequest); i {
case 0:
return &v.state
@@ -21455,7 +21625,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[137].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[139].Exporter = func(v any, i int) any {
switch v := v.(*MountRegisterResponse); i {
case 0:
return &v.state
@@ -21467,7 +21637,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[138].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[140].Exporter = func(v any, i int) any {
switch v := v.(*MountUnregisterRequest); i {
case 0:
return &v.state
@@ -21479,7 +21649,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[139].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[141].Exporter = func(v any, i int) any {
switch v := v.(*MountUnregisterResponse); i {
case 0:
return &v.state
@@ -21491,7 +21661,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[140].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[142].Exporter = func(v any, i int) any {
switch v := v.(*MountShowRequest); i {
case 0:
return &v.state
@@ -21503,7 +21673,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[141].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[143].Exporter = func(v any, i int) any {
switch v := v.(*MountShowResponse); i {
case 0:
return &v.state
@@ -21515,7 +21685,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[142].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[144].Exporter = func(v any, i int) any {
switch v := v.(*MountListRequest); i {
case 0:
return &v.state
@@ -21527,7 +21697,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[143].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[145].Exporter = func(v any, i int) any {
switch v := v.(*MountListResponse); i {
case 0:
return &v.state
@@ -21539,7 +21709,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[144].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[146].Exporter = func(v any, i int) any {
switch v := v.(*MoveTablesCreateRequest); i {
case 0:
return &v.state
@@ -21551,7 +21721,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[145].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[147].Exporter = func(v any, i int) any {
switch v := v.(*MoveTablesCreateResponse); i {
case 0:
return &v.state
@@ -21563,7 +21733,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[146].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[148].Exporter = func(v any, i int) any {
switch v := v.(*MoveTablesCompleteRequest); i {
case 0:
return &v.state
@@ -21575,7 +21745,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[147].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[149].Exporter = func(v any, i int) any {
switch v := v.(*MoveTablesCompleteResponse); i {
case 0:
return &v.state
@@ -21587,7 +21757,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[148].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[150].Exporter = func(v any, i int) any {
switch v := v.(*PingTabletRequest); i {
case 0:
return &v.state
@@ -21599,7 +21769,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[149].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[151].Exporter = func(v any, i int) any {
switch v := v.(*PingTabletResponse); i {
case 0:
return &v.state
@@ -21611,7 +21781,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[150].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[152].Exporter = func(v any, i int) any {
switch v := v.(*PlannedReparentShardRequest); i {
case 0:
return &v.state
@@ -21623,7 +21793,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[151].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[153].Exporter = func(v any, i int) any {
switch v := v.(*PlannedReparentShardResponse); i {
case 0:
return &v.state
@@ -21635,7 +21805,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[152].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[154].Exporter = func(v any, i int) any {
switch v := v.(*RebuildKeyspaceGraphRequest); i {
case 0:
return &v.state
@@ -21647,7 +21817,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[153].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[155].Exporter = func(v any, i int) any {
switch v := v.(*RebuildKeyspaceGraphResponse); i {
case 0:
return &v.state
@@ -21659,7 +21829,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[154].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[156].Exporter = func(v any, i int) any {
switch v := v.(*RebuildVSchemaGraphRequest); i {
case 0:
return &v.state
@@ -21671,7 +21841,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[155].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[157].Exporter = func(v any, i int) any {
switch v := v.(*RebuildVSchemaGraphResponse); i {
case 0:
return &v.state
@@ -21683,7 +21853,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[156].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[158].Exporter = func(v any, i int) any {
switch v := v.(*RefreshStateRequest); i {
case 0:
return &v.state
@@ -21695,7 +21865,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[157].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[159].Exporter = func(v any, i int) any {
switch v := v.(*RefreshStateResponse); i {
case 0:
return &v.state
@@ -21707,7 +21877,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[158].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[160].Exporter = func(v any, i int) any {
switch v := v.(*RefreshStateByShardRequest); i {
case 0:
return &v.state
@@ -21719,7 +21889,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[159].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[161].Exporter = func(v any, i int) any {
switch v := v.(*RefreshStateByShardResponse); i {
case 0:
return &v.state
@@ -21731,7 +21901,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[160].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[162].Exporter = func(v any, i int) any {
switch v := v.(*ReloadSchemaRequest); i {
case 0:
return &v.state
@@ -21743,7 +21913,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[161].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[163].Exporter = func(v any, i int) any {
switch v := v.(*ReloadSchemaResponse); i {
case 0:
return &v.state
@@ -21755,7 +21925,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[162].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[164].Exporter = func(v any, i int) any {
switch v := v.(*ReloadSchemaKeyspaceRequest); i {
case 0:
return &v.state
@@ -21767,7 +21937,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[163].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[165].Exporter = func(v any, i int) any {
switch v := v.(*ReloadSchemaKeyspaceResponse); i {
case 0:
return &v.state
@@ -21779,7 +21949,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[164].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[166].Exporter = func(v any, i int) any {
switch v := v.(*ReloadSchemaShardRequest); i {
case 0:
return &v.state
@@ -21791,7 +21961,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[165].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[167].Exporter = func(v any, i int) any {
switch v := v.(*ReloadSchemaShardResponse); i {
case 0:
return &v.state
@@ -21803,7 +21973,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[166].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[168].Exporter = func(v any, i int) any {
switch v := v.(*RemoveBackupRequest); i {
case 0:
return &v.state
@@ -21815,7 +21985,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[167].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[169].Exporter = func(v any, i int) any {
switch v := v.(*RemoveBackupResponse); i {
case 0:
return &v.state
@@ -21827,7 +21997,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[168].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[170].Exporter = func(v any, i int) any {
switch v := v.(*RemoveKeyspaceCellRequest); i {
case 0:
return &v.state
@@ -21839,7 +22009,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[169].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[171].Exporter = func(v any, i int) any {
switch v := v.(*RemoveKeyspaceCellResponse); i {
case 0:
return &v.state
@@ -21851,7 +22021,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[170].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[172].Exporter = func(v any, i int) any {
switch v := v.(*RemoveShardCellRequest); i {
case 0:
return &v.state
@@ -21863,7 +22033,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[171].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[173].Exporter = func(v any, i int) any {
switch v := v.(*RemoveShardCellResponse); i {
case 0:
return &v.state
@@ -21875,7 +22045,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[172].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[174].Exporter = func(v any, i int) any {
switch v := v.(*ReparentTabletRequest); i {
case 0:
return &v.state
@@ -21887,7 +22057,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[173].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[175].Exporter = func(v any, i int) any {
switch v := v.(*ReparentTabletResponse); i {
case 0:
return &v.state
@@ -21899,7 +22069,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[174].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[176].Exporter = func(v any, i int) any {
switch v := v.(*ReshardCreateRequest); i {
case 0:
return &v.state
@@ -21911,7 +22081,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[175].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[177].Exporter = func(v any, i int) any {
switch v := v.(*RestoreFromBackupRequest); i {
case 0:
return &v.state
@@ -21923,7 +22093,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[176].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[178].Exporter = func(v any, i int) any {
switch v := v.(*RestoreFromBackupResponse); i {
case 0:
return &v.state
@@ -21935,7 +22105,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[177].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[179].Exporter = func(v any, i int) any {
switch v := v.(*RetrySchemaMigrationRequest); i {
case 0:
return &v.state
@@ -21947,7 +22117,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[178].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[180].Exporter = func(v any, i int) any {
switch v := v.(*RetrySchemaMigrationResponse); i {
case 0:
return &v.state
@@ -21959,7 +22129,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[179].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[181].Exporter = func(v any, i int) any {
switch v := v.(*RunHealthCheckRequest); i {
case 0:
return &v.state
@@ -21971,7 +22141,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[180].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[182].Exporter = func(v any, i int) any {
switch v := v.(*RunHealthCheckResponse); i {
case 0:
return &v.state
@@ -21983,7 +22153,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[181].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[183].Exporter = func(v any, i int) any {
switch v := v.(*SetKeyspaceDurabilityPolicyRequest); i {
case 0:
return &v.state
@@ -21995,7 +22165,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[182].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[184].Exporter = func(v any, i int) any {
switch v := v.(*SetKeyspaceDurabilityPolicyResponse); i {
case 0:
return &v.state
@@ -22007,7 +22177,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[183].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[185].Exporter = func(v any, i int) any {
switch v := v.(*SetKeyspaceShardingInfoRequest); i {
case 0:
return &v.state
@@ -22019,7 +22189,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[184].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[186].Exporter = func(v any, i int) any {
switch v := v.(*SetKeyspaceShardingInfoResponse); i {
case 0:
return &v.state
@@ -22031,7 +22201,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[185].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[187].Exporter = func(v any, i int) any {
switch v := v.(*SetShardIsPrimaryServingRequest); i {
case 0:
return &v.state
@@ -22043,7 +22213,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[186].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[188].Exporter = func(v any, i int) any {
switch v := v.(*SetShardIsPrimaryServingResponse); i {
case 0:
return &v.state
@@ -22055,7 +22225,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[187].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[189].Exporter = func(v any, i int) any {
switch v := v.(*SetShardTabletControlRequest); i {
case 0:
return &v.state
@@ -22067,7 +22237,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[188].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[190].Exporter = func(v any, i int) any {
switch v := v.(*SetShardTabletControlResponse); i {
case 0:
return &v.state
@@ -22079,7 +22249,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[189].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[191].Exporter = func(v any, i int) any {
switch v := v.(*SetWritableRequest); i {
case 0:
return &v.state
@@ -22091,7 +22261,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[190].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[192].Exporter = func(v any, i int) any {
switch v := v.(*SetWritableResponse); i {
case 0:
return &v.state
@@ -22103,7 +22273,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[191].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[193].Exporter = func(v any, i int) any {
switch v := v.(*ShardReplicationAddRequest); i {
case 0:
return &v.state
@@ -22115,7 +22285,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[192].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[194].Exporter = func(v any, i int) any {
switch v := v.(*ShardReplicationAddResponse); i {
case 0:
return &v.state
@@ -22127,7 +22297,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[193].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[195].Exporter = func(v any, i int) any {
switch v := v.(*ShardReplicationFixRequest); i {
case 0:
return &v.state
@@ -22139,7 +22309,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[194].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[196].Exporter = func(v any, i int) any {
switch v := v.(*ShardReplicationFixResponse); i {
case 0:
return &v.state
@@ -22151,7 +22321,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[195].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[197].Exporter = func(v any, i int) any {
switch v := v.(*ShardReplicationPositionsRequest); i {
case 0:
return &v.state
@@ -22163,7 +22333,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[196].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[198].Exporter = func(v any, i int) any {
switch v := v.(*ShardReplicationPositionsResponse); i {
case 0:
return &v.state
@@ -22175,7 +22345,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[197].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[199].Exporter = func(v any, i int) any {
switch v := v.(*ShardReplicationRemoveRequest); i {
case 0:
return &v.state
@@ -22187,7 +22357,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[198].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[200].Exporter = func(v any, i int) any {
switch v := v.(*ShardReplicationRemoveResponse); i {
case 0:
return &v.state
@@ -22199,7 +22369,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[199].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[201].Exporter = func(v any, i int) any {
switch v := v.(*SleepTabletRequest); i {
case 0:
return &v.state
@@ -22211,7 +22381,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[200].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[202].Exporter = func(v any, i int) any {
switch v := v.(*SleepTabletResponse); i {
case 0:
return &v.state
@@ -22223,7 +22393,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[201].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[203].Exporter = func(v any, i int) any {
switch v := v.(*SourceShardAddRequest); i {
case 0:
return &v.state
@@ -22235,7 +22405,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[202].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[204].Exporter = func(v any, i int) any {
switch v := v.(*SourceShardAddResponse); i {
case 0:
return &v.state
@@ -22247,7 +22417,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[203].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[205].Exporter = func(v any, i int) any {
switch v := v.(*SourceShardDeleteRequest); i {
case 0:
return &v.state
@@ -22259,7 +22429,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[204].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[206].Exporter = func(v any, i int) any {
switch v := v.(*SourceShardDeleteResponse); i {
case 0:
return &v.state
@@ -22271,7 +22441,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[205].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[207].Exporter = func(v any, i int) any {
switch v := v.(*StartReplicationRequest); i {
case 0:
return &v.state
@@ -22283,7 +22453,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[206].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[208].Exporter = func(v any, i int) any {
switch v := v.(*StartReplicationResponse); i {
case 0:
return &v.state
@@ -22295,7 +22465,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[207].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[209].Exporter = func(v any, i int) any {
switch v := v.(*StopReplicationRequest); i {
case 0:
return &v.state
@@ -22307,7 +22477,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[208].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[210].Exporter = func(v any, i int) any {
switch v := v.(*StopReplicationResponse); i {
case 0:
return &v.state
@@ -22319,7 +22489,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[209].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[211].Exporter = func(v any, i int) any {
switch v := v.(*TabletExternallyReparentedRequest); i {
case 0:
return &v.state
@@ -22331,7 +22501,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[210].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[212].Exporter = func(v any, i int) any {
switch v := v.(*TabletExternallyReparentedResponse); i {
case 0:
return &v.state
@@ -22343,7 +22513,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[211].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[213].Exporter = func(v any, i int) any {
switch v := v.(*UpdateCellInfoRequest); i {
case 0:
return &v.state
@@ -22355,7 +22525,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[212].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[214].Exporter = func(v any, i int) any {
switch v := v.(*UpdateCellInfoResponse); i {
case 0:
return &v.state
@@ -22367,7 +22537,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[213].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[215].Exporter = func(v any, i int) any {
switch v := v.(*UpdateCellsAliasRequest); i {
case 0:
return &v.state
@@ -22379,7 +22549,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[214].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[216].Exporter = func(v any, i int) any {
switch v := v.(*UpdateCellsAliasResponse); i {
case 0:
return &v.state
@@ -22391,7 +22561,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[215].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[217].Exporter = func(v any, i int) any {
switch v := v.(*ValidateRequest); i {
case 0:
return &v.state
@@ -22403,7 +22573,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[216].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[218].Exporter = func(v any, i int) any {
switch v := v.(*ValidateResponse); i {
case 0:
return &v.state
@@ -22415,7 +22585,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[217].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[219].Exporter = func(v any, i int) any {
switch v := v.(*ValidateKeyspaceRequest); i {
case 0:
return &v.state
@@ -22427,7 +22597,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[218].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[220].Exporter = func(v any, i int) any {
switch v := v.(*ValidateKeyspaceResponse); i {
case 0:
return &v.state
@@ -22439,7 +22609,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[219].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[221].Exporter = func(v any, i int) any {
switch v := v.(*ValidateSchemaKeyspaceRequest); i {
case 0:
return &v.state
@@ -22451,7 +22621,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[220].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[222].Exporter = func(v any, i int) any {
switch v := v.(*ValidateSchemaKeyspaceResponse); i {
case 0:
return &v.state
@@ -22463,7 +22633,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[221].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[223].Exporter = func(v any, i int) any {
switch v := v.(*ValidateShardRequest); i {
case 0:
return &v.state
@@ -22475,7 +22645,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[222].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[224].Exporter = func(v any, i int) any {
switch v := v.(*ValidateShardResponse); i {
case 0:
return &v.state
@@ -22487,7 +22657,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[223].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[225].Exporter = func(v any, i int) any {
switch v := v.(*ValidateVersionKeyspaceRequest); i {
case 0:
return &v.state
@@ -22499,7 +22669,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[224].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[226].Exporter = func(v any, i int) any {
switch v := v.(*ValidateVersionKeyspaceResponse); i {
case 0:
return &v.state
@@ -22511,7 +22681,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[225].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[227].Exporter = func(v any, i int) any {
switch v := v.(*ValidateVersionShardRequest); i {
case 0:
return &v.state
@@ -22523,7 +22693,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[226].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[228].Exporter = func(v any, i int) any {
switch v := v.(*ValidateVersionShardResponse); i {
case 0:
return &v.state
@@ -22535,7 +22705,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[227].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[229].Exporter = func(v any, i int) any {
switch v := v.(*ValidateVSchemaRequest); i {
case 0:
return &v.state
@@ -22547,7 +22717,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[228].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[230].Exporter = func(v any, i int) any {
switch v := v.(*ValidateVSchemaResponse); i {
case 0:
return &v.state
@@ -22559,7 +22729,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[229].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[231].Exporter = func(v any, i int) any {
switch v := v.(*VDiffCreateRequest); i {
case 0:
return &v.state
@@ -22571,7 +22741,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[230].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[232].Exporter = func(v any, i int) any {
switch v := v.(*VDiffCreateResponse); i {
case 0:
return &v.state
@@ -22583,7 +22753,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[231].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[233].Exporter = func(v any, i int) any {
switch v := v.(*VDiffDeleteRequest); i {
case 0:
return &v.state
@@ -22595,7 +22765,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[232].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[234].Exporter = func(v any, i int) any {
switch v := v.(*VDiffDeleteResponse); i {
case 0:
return &v.state
@@ -22607,7 +22777,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[233].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[235].Exporter = func(v any, i int) any {
switch v := v.(*VDiffResumeRequest); i {
case 0:
return &v.state
@@ -22619,7 +22789,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[234].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[236].Exporter = func(v any, i int) any {
switch v := v.(*VDiffResumeResponse); i {
case 0:
return &v.state
@@ -22631,7 +22801,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[235].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[237].Exporter = func(v any, i int) any {
switch v := v.(*VDiffShowRequest); i {
case 0:
return &v.state
@@ -22643,7 +22813,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[236].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[238].Exporter = func(v any, i int) any {
switch v := v.(*VDiffShowResponse); i {
case 0:
return &v.state
@@ -22655,7 +22825,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[237].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[239].Exporter = func(v any, i int) any {
switch v := v.(*VDiffStopRequest); i {
case 0:
return &v.state
@@ -22667,7 +22837,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[238].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[240].Exporter = func(v any, i int) any {
switch v := v.(*VDiffStopResponse); i {
case 0:
return &v.state
@@ -22679,7 +22849,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[239].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[241].Exporter = func(v any, i int) any {
switch v := v.(*WorkflowDeleteRequest); i {
case 0:
return &v.state
@@ -22691,7 +22861,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[240].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[242].Exporter = func(v any, i int) any {
switch v := v.(*WorkflowDeleteResponse); i {
case 0:
return &v.state
@@ -22703,7 +22873,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[241].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[243].Exporter = func(v any, i int) any {
switch v := v.(*WorkflowStatusRequest); i {
case 0:
return &v.state
@@ -22715,7 +22885,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[242].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[244].Exporter = func(v any, i int) any {
switch v := v.(*WorkflowStatusResponse); i {
case 0:
return &v.state
@@ -22727,7 +22897,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[243].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[245].Exporter = func(v any, i int) any {
switch v := v.(*WorkflowSwitchTrafficRequest); i {
case 0:
return &v.state
@@ -22739,7 +22909,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[244].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[246].Exporter = func(v any, i int) any {
switch v := v.(*WorkflowSwitchTrafficResponse); i {
case 0:
return &v.state
@@ -22751,7 +22921,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[245].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[247].Exporter = func(v any, i int) any {
switch v := v.(*WorkflowUpdateRequest); i {
case 0:
return &v.state
@@ -22763,7 +22933,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[246].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[248].Exporter = func(v any, i int) any {
switch v := v.(*WorkflowUpdateResponse); i {
case 0:
return &v.state
@@ -22775,7 +22945,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[247].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[249].Exporter = func(v any, i int) any {
switch v := v.(*GetMirrorRulesRequest); i {
case 0:
return &v.state
@@ -22787,7 +22957,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[248].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[250].Exporter = func(v any, i int) any {
switch v := v.(*GetMirrorRulesResponse); i {
case 0:
return &v.state
@@ -22799,7 +22969,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[249].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[251].Exporter = func(v any, i int) any {
switch v := v.(*WorkflowMirrorTrafficRequest); i {
case 0:
return &v.state
@@ -22811,7 +22981,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[250].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[252].Exporter = func(v any, i int) any {
switch v := v.(*WorkflowMirrorTrafficResponse); i {
case 0:
return &v.state
@@ -22823,7 +22993,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[252].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[255].Exporter = func(v any, i int) any {
switch v := v.(*Workflow_ReplicationLocation); i {
case 0:
return &v.state
@@ -22835,7 +23005,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[253].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[256].Exporter = func(v any, i int) any {
switch v := v.(*Workflow_ShardStream); i {
case 0:
return &v.state
@@ -22847,7 +23017,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[254].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[257].Exporter = func(v any, i int) any {
switch v := v.(*Workflow_Stream); i {
case 0:
return &v.state
@@ -22859,7 +23029,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[255].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[258].Exporter = func(v any, i int) any {
switch v := v.(*Workflow_Stream_CopyState); i {
case 0:
return &v.state
@@ -22871,7 +23041,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[256].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[259].Exporter = func(v any, i int) any {
switch v := v.(*Workflow_Stream_Log); i {
case 0:
return &v.state
@@ -22883,7 +23053,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[257].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[260].Exporter = func(v any, i int) any {
switch v := v.(*Workflow_Stream_ThrottlerStatus); i {
case 0:
return &v.state
@@ -22895,7 +23065,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[260].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[263].Exporter = func(v any, i int) any {
switch v := v.(*ApplyVSchemaResponse_ParamList); i {
case 0:
return &v.state
@@ -22907,7 +23077,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[269].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[272].Exporter = func(v any, i int) any {
switch v := v.(*GetSrvKeyspaceNamesResponse_NameList); i {
case 0:
return &v.state
@@ -22919,7 +23089,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[273].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[276].Exporter = func(v any, i int) any {
switch v := v.(*MoveTablesCreateResponse_TabletInfo); i {
case 0:
return &v.state
@@ -22931,7 +23101,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[283].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[286].Exporter = func(v any, i int) any {
switch v := v.(*WorkflowDeleteResponse_TabletInfo); i {
case 0:
return &v.state
@@ -22943,7 +23113,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[284].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[287].Exporter = func(v any, i int) any {
switch v := v.(*WorkflowStatusResponse_TableCopyState); i {
case 0:
return &v.state
@@ -22955,7 +23125,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[285].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[288].Exporter = func(v any, i int) any {
switch v := v.(*WorkflowStatusResponse_ShardStreamState); i {
case 0:
return &v.state
@@ -22967,7 +23137,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[286].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[289].Exporter = func(v any, i int) any {
switch v := v.(*WorkflowStatusResponse_ShardStreams); i {
case 0:
return &v.state
@@ -22979,7 +23149,7 @@ func file_vtctldata_proto_init() {
return nil
}
}
- file_vtctldata_proto_msgTypes[289].Exporter = func(v any, i int) any {
+ file_vtctldata_proto_msgTypes[292].Exporter = func(v any, i int) any {
switch v := v.(*WorkflowUpdateResponse_TabletInfo); i {
case 0:
return &v.state
@@ -22992,14 +23162,14 @@ func file_vtctldata_proto_init() {
}
}
}
- file_vtctldata_proto_msgTypes[229].OneofWrappers = []any{}
+ file_vtctldata_proto_msgTypes[231].OneofWrappers = []any{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_vtctldata_proto_rawDesc,
NumEnums: 4,
- NumMessages: 290,
+ NumMessages: 293,
NumExtensions: 0,
NumServices: 0,
},
diff --git a/go/vt/proto/vtctldata/vtctldata_vtproto.pb.go b/go/vt/proto/vtctldata/vtctldata_vtproto.pb.go
index 22bd495837f..9902e69d378 100644
--- a/go/vt/proto/vtctldata/vtctldata_vtproto.pb.go
+++ b/go/vt/proto/vtctldata/vtctldata_vtproto.pb.go
@@ -251,6 +251,13 @@ func (m *WorkflowOptions) CloneVT() *WorkflowOptions {
copy(tmpContainer, rhs)
r.Shards = tmpContainer
}
+ if rhs := m.Config; rhs != nil {
+ tmpContainer := make(map[string]string, len(rhs))
+ for k, v := range rhs {
+ tmpContainer[k] = v
+ }
+ r.Config = tmpContainer
+ }
if len(m.unknownFields) > 0 {
r.unknownFields = make([]byte, len(m.unknownFields))
copy(r.unknownFields, m.unknownFields)
@@ -2670,6 +2677,46 @@ func (m *GetUnresolvedTransactionsResponse) CloneMessageVT() proto.Message {
return m.CloneVT()
}
+func (m *ConcludeTransactionRequest) CloneVT() *ConcludeTransactionRequest {
+ if m == nil {
+ return (*ConcludeTransactionRequest)(nil)
+ }
+ r := new(ConcludeTransactionRequest)
+ r.Dtid = m.Dtid
+ if rhs := m.Participants; rhs != nil {
+ tmpContainer := make([]*query.Target, len(rhs))
+ for k, v := range rhs {
+ tmpContainer[k] = v.CloneVT()
+ }
+ r.Participants = tmpContainer
+ }
+ if len(m.unknownFields) > 0 {
+ r.unknownFields = make([]byte, len(m.unknownFields))
+ copy(r.unknownFields, m.unknownFields)
+ }
+ return r
+}
+
+func (m *ConcludeTransactionRequest) CloneMessageVT() proto.Message {
+ return m.CloneVT()
+}
+
+func (m *ConcludeTransactionResponse) CloneVT() *ConcludeTransactionResponse {
+ if m == nil {
+ return (*ConcludeTransactionResponse)(nil)
+ }
+ r := new(ConcludeTransactionResponse)
+ if len(m.unknownFields) > 0 {
+ r.unknownFields = make([]byte, len(m.unknownFields))
+ copy(r.unknownFields, m.unknownFields)
+ }
+ return r
+}
+
+func (m *ConcludeTransactionResponse) CloneMessageVT() proto.Message {
+ return m.CloneVT()
+}
+
func (m *GetVSchemaRequest) CloneVT() *GetVSchemaRequest {
if m == nil {
return (*GetVSchemaRequest)(nil)
@@ -3880,6 +3927,7 @@ func (m *ReshardCreateRequest) CloneVT() *ReshardCreateRequest {
r.StopAfterCopy = m.StopAfterCopy
r.DeferSecondaryKeys = m.DeferSecondaryKeys
r.AutoStart = m.AutoStart
+ r.WorkflowOptions = m.WorkflowOptions.CloneVT()
if rhs := m.SourceShards; rhs != nil {
tmpContainer := make([]string, len(rhs))
copy(tmpContainer, rhs)
@@ -5413,6 +5461,7 @@ func (m *WorkflowSwitchTrafficRequest) CloneVT() *WorkflowSwitchTrafficRequest {
r.Timeout = m.Timeout.CloneVT()
r.DryRun = m.DryRun
r.InitializeTargetSequences = m.InitializeTargetSequences
+ r.Force = m.Force
if rhs := m.Cells; rhs != nil {
tmpContainer := make([]string, len(rhs))
copy(tmpContainer, rhs)
@@ -6578,6 +6627,25 @@ func (m *WorkflowOptions) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
i -= len(m.unknownFields)
copy(dAtA[i:], m.unknownFields)
}
+ if len(m.Config) > 0 {
+ for k := range m.Config {
+ v := m.Config[k]
+ baseI := i
+ i -= len(v)
+ copy(dAtA[i:], v)
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(len(v)))
+ i--
+ dAtA[i] = 0x12
+ i -= len(k)
+ copy(dAtA[i:], k)
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(len(k)))
+ i--
+ dAtA[i] = 0xa
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(baseI-i))
+ i--
+ dAtA[i] = 0x22
+ }
+ }
if len(m.Shards) > 0 {
for iNdEx := len(m.Shards) - 1; iNdEx >= 0; iNdEx-- {
i -= len(m.Shards[iNdEx])
@@ -12967,6 +13035,91 @@ func (m *GetUnresolvedTransactionsResponse) MarshalToSizedBufferVT(dAtA []byte)
return len(dAtA) - i, nil
}
+func (m *ConcludeTransactionRequest) MarshalVT() (dAtA []byte, err error) {
+ if m == nil {
+ return nil, nil
+ }
+ size := m.SizeVT()
+ dAtA = make([]byte, size)
+ n, err := m.MarshalToSizedBufferVT(dAtA[:size])
+ if err != nil {
+ return nil, err
+ }
+ return dAtA[:n], nil
+}
+
+func (m *ConcludeTransactionRequest) MarshalToVT(dAtA []byte) (int, error) {
+ size := m.SizeVT()
+ return m.MarshalToSizedBufferVT(dAtA[:size])
+}
+
+func (m *ConcludeTransactionRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
+ if m == nil {
+ return 0, nil
+ }
+ i := len(dAtA)
+ _ = i
+ var l int
+ _ = l
+ if m.unknownFields != nil {
+ i -= len(m.unknownFields)
+ copy(dAtA[i:], m.unknownFields)
+ }
+ if len(m.Participants) > 0 {
+ for iNdEx := len(m.Participants) - 1; iNdEx >= 0; iNdEx-- {
+ size, err := m.Participants[iNdEx].MarshalToSizedBufferVT(dAtA[:i])
+ if err != nil {
+ return 0, err
+ }
+ i -= size
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(size))
+ i--
+ dAtA[i] = 0x12
+ }
+ }
+ if len(m.Dtid) > 0 {
+ i -= len(m.Dtid)
+ copy(dAtA[i:], m.Dtid)
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.Dtid)))
+ i--
+ dAtA[i] = 0xa
+ }
+ return len(dAtA) - i, nil
+}
+
+func (m *ConcludeTransactionResponse) MarshalVT() (dAtA []byte, err error) {
+ if m == nil {
+ return nil, nil
+ }
+ size := m.SizeVT()
+ dAtA = make([]byte, size)
+ n, err := m.MarshalToSizedBufferVT(dAtA[:size])
+ if err != nil {
+ return nil, err
+ }
+ return dAtA[:n], nil
+}
+
+func (m *ConcludeTransactionResponse) MarshalToVT(dAtA []byte) (int, error) {
+ size := m.SizeVT()
+ return m.MarshalToSizedBufferVT(dAtA[:size])
+}
+
+func (m *ConcludeTransactionResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
+ if m == nil {
+ return 0, nil
+ }
+ i := len(dAtA)
+ _ = i
+ var l int
+ _ = l
+ if m.unknownFields != nil {
+ i -= len(m.unknownFields)
+ copy(dAtA[i:], m.unknownFields)
+ }
+ return len(dAtA) - i, nil
+}
+
func (m *GetVSchemaRequest) MarshalVT() (dAtA []byte, err error) {
if m == nil {
return nil, nil
@@ -16251,6 +16404,16 @@ func (m *ReshardCreateRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)
i -= len(m.unknownFields)
copy(dAtA[i:], m.unknownFields)
}
+ if m.WorkflowOptions != nil {
+ size, err := m.WorkflowOptions.MarshalToSizedBufferVT(dAtA[:i])
+ if err != nil {
+ return 0, err
+ }
+ i -= size
+ i = protohelpers.EncodeVarint(dAtA, i, uint64(size))
+ i--
+ dAtA[i] = 0x6a
+ }
if m.AutoStart {
i--
if m.AutoStart {
@@ -20356,6 +20519,16 @@ func (m *WorkflowSwitchTrafficRequest) MarshalToSizedBufferVT(dAtA []byte) (int,
i -= len(m.unknownFields)
copy(dAtA[i:], m.unknownFields)
}
+ if m.Force {
+ i--
+ if m.Force {
+ dAtA[i] = 1
+ } else {
+ dAtA[i] = 0
+ }
+ i--
+ dAtA[i] = 0x60
+ }
if len(m.Shards) > 0 {
for iNdEx := len(m.Shards) - 1; iNdEx >= 0; iNdEx-- {
i -= len(m.Shards[iNdEx])
@@ -21287,6 +21460,14 @@ func (m *WorkflowOptions) SizeVT() (n int) {
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
}
}
+ if len(m.Config) > 0 {
+ for k, v := range m.Config {
+ _ = k
+ _ = v
+ mapEntrySize := 1 + len(k) + protohelpers.SizeOfVarint(uint64(len(k))) + 1 + len(v) + protohelpers.SizeOfVarint(uint64(len(v)))
+ n += mapEntrySize + 1 + protohelpers.SizeOfVarint(uint64(mapEntrySize))
+ }
+ }
n += len(m.unknownFields)
return n
}
@@ -23646,6 +23827,36 @@ func (m *GetUnresolvedTransactionsResponse) SizeVT() (n int) {
return n
}
+func (m *ConcludeTransactionRequest) SizeVT() (n int) {
+ if m == nil {
+ return 0
+ }
+ var l int
+ _ = l
+ l = len(m.Dtid)
+ if l > 0 {
+ n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
+ }
+ if len(m.Participants) > 0 {
+ for _, e := range m.Participants {
+ l = e.SizeVT()
+ n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
+ }
+ }
+ n += len(m.unknownFields)
+ return n
+}
+
+func (m *ConcludeTransactionResponse) SizeVT() (n int) {
+ if m == nil {
+ return 0
+ }
+ var l int
+ _ = l
+ n += len(m.unknownFields)
+ return n
+}
+
func (m *GetVSchemaRequest) SizeVT() (n int) {
if m == nil {
return 0
@@ -24903,6 +25114,10 @@ func (m *ReshardCreateRequest) SizeVT() (n int) {
if m.AutoStart {
n += 2
}
+ if m.WorkflowOptions != nil {
+ l = m.WorkflowOptions.SizeVT()
+ n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
+ }
n += len(m.unknownFields)
return n
}
@@ -26471,6 +26686,9 @@ func (m *WorkflowSwitchTrafficRequest) SizeVT() (n int) {
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
}
}
+ if m.Force {
+ n += 2
+ }
n += len(m.unknownFields)
return n
}
@@ -29465,6 +29683,133 @@ func (m *WorkflowOptions) UnmarshalVT(dAtA []byte) error {
}
m.Shards = append(m.Shards, string(dAtA[iNdEx:postIndex]))
iNdEx = postIndex
+ case 4:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Config", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ if msglen < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ if m.Config == nil {
+ m.Config = make(map[string]string)
+ }
+ var mapkey string
+ var mapvalue string
+ for iNdEx < postIndex {
+ entryPreIndex := iNdEx
+ var wire uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ wire |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ fieldNum := int32(wire >> 3)
+ if fieldNum == 1 {
+ var stringLenmapkey uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLenmapkey |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLenmapkey := int(stringLenmapkey)
+ if intStringLenmapkey < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postStringIndexmapkey := iNdEx + intStringLenmapkey
+ if postStringIndexmapkey < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postStringIndexmapkey > l {
+ return io.ErrUnexpectedEOF
+ }
+ mapkey = string(dAtA[iNdEx:postStringIndexmapkey])
+ iNdEx = postStringIndexmapkey
+ } else if fieldNum == 2 {
+ var stringLenmapvalue uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLenmapvalue |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLenmapvalue := int(stringLenmapvalue)
+ if intStringLenmapvalue < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postStringIndexmapvalue := iNdEx + intStringLenmapvalue
+ if postStringIndexmapvalue < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postStringIndexmapvalue > l {
+ return io.ErrUnexpectedEOF
+ }
+ mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])
+ iNdEx = postStringIndexmapvalue
+ } else {
+ iNdEx = entryPreIndex
+ skippy, err := protohelpers.Skip(dAtA[iNdEx:])
+ if err != nil {
+ return err
+ }
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if (iNdEx + skippy) > postIndex {
+ return io.ErrUnexpectedEOF
+ }
+ iNdEx += skippy
+ }
+ }
+ m.Config[mapkey] = mapvalue
+ iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
@@ -44739,6 +45084,174 @@ func (m *GetUnresolvedTransactionsResponse) UnmarshalVT(dAtA []byte) error {
}
return nil
}
+func (m *ConcludeTransactionRequest) UnmarshalVT(dAtA []byte) error {
+ l := len(dAtA)
+ iNdEx := 0
+ for iNdEx < l {
+ preIndex := iNdEx
+ var wire uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ wire |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ fieldNum := int32(wire >> 3)
+ wireType := int(wire & 0x7)
+ if wireType == 4 {
+ return fmt.Errorf("proto: ConcludeTransactionRequest: wiretype end group for non-group")
+ }
+ if fieldNum <= 0 {
+ return fmt.Errorf("proto: ConcludeTransactionRequest: illegal tag %d (wire type %d)", fieldNum, wire)
+ }
+ switch fieldNum {
+ case 1:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Dtid", wireType)
+ }
+ var stringLen uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLen |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLen := int(stringLen)
+ if intStringLen < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postIndex := iNdEx + intStringLen
+ if postIndex < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ m.Dtid = string(dAtA[iNdEx:postIndex])
+ iNdEx = postIndex
+ case 2:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Participants", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ if msglen < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ m.Participants = append(m.Participants, &query.Target{})
+ if err := m.Participants[len(m.Participants)-1].UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {
+ return err
+ }
+ iNdEx = postIndex
+ default:
+ iNdEx = preIndex
+ skippy, err := protohelpers.Skip(dAtA[iNdEx:])
+ if err != nil {
+ return err
+ }
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if (iNdEx + skippy) > l {
+ return io.ErrUnexpectedEOF
+ }
+ m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
+ iNdEx += skippy
+ }
+ }
+
+ if iNdEx > l {
+ return io.ErrUnexpectedEOF
+ }
+ return nil
+}
+func (m *ConcludeTransactionResponse) UnmarshalVT(dAtA []byte) error {
+ l := len(dAtA)
+ iNdEx := 0
+ for iNdEx < l {
+ preIndex := iNdEx
+ var wire uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ wire |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ fieldNum := int32(wire >> 3)
+ wireType := int(wire & 0x7)
+ if wireType == 4 {
+ return fmt.Errorf("proto: ConcludeTransactionResponse: wiretype end group for non-group")
+ }
+ if fieldNum <= 0 {
+ return fmt.Errorf("proto: ConcludeTransactionResponse: illegal tag %d (wire type %d)", fieldNum, wire)
+ }
+ switch fieldNum {
+ default:
+ iNdEx = preIndex
+ skippy, err := protohelpers.Skip(dAtA[iNdEx:])
+ if err != nil {
+ return err
+ }
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if (iNdEx + skippy) > l {
+ return io.ErrUnexpectedEOF
+ }
+ m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
+ iNdEx += skippy
+ }
+ }
+
+ if iNdEx > l {
+ return io.ErrUnexpectedEOF
+ }
+ return nil
+}
func (m *GetVSchemaRequest) UnmarshalVT(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
@@ -52685,6 +53198,42 @@ func (m *ReshardCreateRequest) UnmarshalVT(dAtA []byte) error {
}
}
m.AutoStart = bool(v != 0)
+ case 13:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field WorkflowOptions", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ if msglen < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return protohelpers.ErrInvalidLength
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ if m.WorkflowOptions == nil {
+ m.WorkflowOptions = &WorkflowOptions{}
+ }
+ if err := m.WorkflowOptions.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {
+ return err
+ }
+ iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
@@ -62998,6 +63547,26 @@ func (m *WorkflowSwitchTrafficRequest) UnmarshalVT(dAtA []byte) error {
}
m.Shards = append(m.Shards, string(dAtA[iNdEx:postIndex]))
iNdEx = postIndex
+ case 12:
+ if wireType != 0 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Force", wireType)
+ }
+ var v int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ v |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ m.Force = bool(v != 0)
default:
iNdEx = preIndex
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
diff --git a/go/vt/proto/vtctlservice/vtctlservice.pb.go b/go/vt/proto/vtctlservice/vtctlservice.pb.go
index 59672456c29..85e5a2e7291 100644
--- a/go/vt/proto/vtctlservice/vtctlservice.pb.go
+++ b/go/vt/proto/vtctlservice/vtctlservice.pb.go
@@ -51,7 +51,7 @@ var file_vtctlservice_proto_rawDesc = []byte{
0x61, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x74, 0x63,
0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x56, 0x74,
0x63, 0x74, 0x6c, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x32, 0xd9, 0x58, 0x0a, 0x06, 0x56, 0x74, 0x63, 0x74, 0x6c,
+ 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x32, 0xc1, 0x59, 0x0a, 0x06, 0x56, 0x74, 0x63, 0x74, 0x6c,
0x64, 0x12, 0x4e, 0x0a, 0x0b, 0x41, 0x64, 0x64, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x41, 0x64, 0x64,
0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
@@ -135,636 +135,642 @@ var file_vtctlservice_proto_rawDesc = []byte{
0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d,
0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x12, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x43,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x1d, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61,
- 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74,
- 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x44,
- 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x20, 0x2e,
+ 0x22, 0x00, 0x12, 0x66, 0x0a, 0x13, 0x43, 0x6f, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54, 0x72,
+ 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x76, 0x74, 0x63, 0x74,
+ 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x6f, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54, 0x72,
+ 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x1a, 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x6f, 0x6e,
+ 0x63, 0x6c, 0x75, 0x64, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x43, 0x72,
+ 0x65, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x20, 0x2e, 0x76,
+ 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4b,
+ 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
+ 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61,
+ 0x72, 0x64, 0x12, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43,
+ 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x74, 0x1a, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x43, 0x72,
+ 0x65, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x6c,
+ 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e,
+ 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5d, 0x0a, 0x10,
+ 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73,
+ 0x12, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c,
+ 0x65, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61,
+ 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x44,
+ 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x20, 0x2e,
0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
- 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
+ 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65,
- 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x00, 0x12, 0x5d, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65,
- 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73,
- 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x76,
- 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43,
- 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4b, 0x65, 0x79,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
- 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0c,
- 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x12, 0x1e, 0x2e, 0x76,
- 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53,
- 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x76,
- 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53,
- 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
- 0x5d, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68,
- 0x65, 0x6d, 0x61, 0x12, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63,
- 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x54,
- 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x12,
- 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65,
- 0x74, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c,
- 0x65, 0x74, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x00, 0x12, 0x6f, 0x0a, 0x16, 0x45, 0x6d, 0x65, 0x72, 0x67, 0x65, 0x6e, 0x63,
- 0x79, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x28,
- 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x6d, 0x65, 0x72, 0x67,
- 0x65, 0x6e, 0x63, 0x79, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x68, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x6d, 0x65, 0x72, 0x67, 0x65, 0x6e, 0x63, 0x79, 0x52, 0x65,
- 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x11, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65,
- 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x41, 0x70, 0x70, 0x12, 0x23, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x46, 0x65,
- 0x74, 0x63, 0x68, 0x41, 0x73, 0x41, 0x70, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x78, 0x65, 0x63,
- 0x75, 0x74, 0x65, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x41, 0x70, 0x70, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x11, 0x45, 0x78, 0x65, 0x63, 0x75,
- 0x74, 0x65, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x44, 0x42, 0x41, 0x12, 0x23, 0x2e, 0x76,
- 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65,
- 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x44, 0x42, 0x41, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x78,
- 0x65, 0x63, 0x75, 0x74, 0x65, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x44, 0x42, 0x41, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x0b, 0x45, 0x78, 0x65,
- 0x63, 0x75, 0x74, 0x65, 0x48, 0x6f, 0x6f, 0x6b, 0x12, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x48, 0x6f, 0x6f, 0x6b,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x48, 0x6f, 0x6f, 0x6b, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6f, 0x0a, 0x16, 0x45, 0x78, 0x65, 0x63, 0x75,
- 0x74, 0x65, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x44, 0x42,
- 0x41, 0x12, 0x28, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x78,
- 0x65, 0x63, 0x75, 0x74, 0x65, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41,
- 0x73, 0x44, 0x42, 0x41, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x76, 0x74,
- 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x4d,
- 0x75, 0x6c, 0x74, 0x69, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x44, 0x42, 0x41, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x72, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64,
- 0x41, 0x6c, 0x6c, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x49, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x12, 0x29, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x49, 0x6e, 0x4b,
- 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a,
- 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41,
- 0x6c, 0x6c, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x49, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
- 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7e, 0x0a, 0x1b,
- 0x46, 0x6f, 0x72, 0x63, 0x65, 0x43, 0x75, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x63, 0x68, 0x65,
- 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x2e, 0x76, 0x74,
- 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x43, 0x75, 0x74,
+ 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x68,
+ 0x61, 0x72, 0x64, 0x73, 0x12, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5d, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74,
+ 0x65, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x22, 0x2e, 0x76, 0x74,
+ 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x72,
+ 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
+ 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65,
+ 0x74, 0x65, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x12, 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65,
+ 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6f, 0x0a, 0x16,
+ 0x45, 0x6d, 0x65, 0x72, 0x67, 0x65, 0x6e, 0x63, 0x79, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e,
+ 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x28, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x45, 0x6d, 0x65, 0x72, 0x67, 0x65, 0x6e, 0x63, 0x79, 0x52, 0x65, 0x70, 0x61,
+ 0x72, 0x65, 0x6e, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x1a, 0x29, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x6d, 0x65,
+ 0x72, 0x67, 0x65, 0x6e, 0x63, 0x79, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x68,
+ 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x60, 0x0a,
+ 0x11, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x41,
+ 0x70, 0x70, 0x12, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45,
+ 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x41, 0x70, 0x70,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x46, 0x65, 0x74, 0x63, 0x68,
+ 0x41, 0x73, 0x41, 0x70, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
+ 0x60, 0x0a, 0x11, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41,
+ 0x73, 0x44, 0x42, 0x41, 0x12, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x44,
+ 0x42, 0x41, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74,
+ 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x46, 0x65, 0x74,
+ 0x63, 0x68, 0x41, 0x73, 0x44, 0x42, 0x41, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
+ 0x00, 0x12, 0x4c, 0x0a, 0x0b, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x48, 0x6f, 0x6f, 0x6b,
+ 0x12, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x78, 0x65,
+ 0x63, 0x75, 0x74, 0x65, 0x48, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
+ 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x78, 0x65, 0x63,
+ 0x75, 0x74, 0x65, 0x48, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
+ 0x6f, 0x0a, 0x16, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46,
+ 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x44, 0x42, 0x41, 0x12, 0x28, 0x2e, 0x76, 0x74, 0x63, 0x74,
+ 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x4d, 0x75, 0x6c,
+ 0x74, 0x69, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x73, 0x44, 0x42, 0x41, 0x52, 0x65, 0x71, 0x75,
+ 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x65, 0x74, 0x63,
+ 0x68, 0x41, 0x73, 0x44, 0x42, 0x41, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
+ 0x12, 0x72, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x53, 0x68, 0x61, 0x72, 0x64,
+ 0x73, 0x49, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x29, 0x2e, 0x76, 0x74,
+ 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x53,
+ 0x68, 0x61, 0x72, 0x64, 0x73, 0x49, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52,
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
+ 0x49, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x22, 0x00, 0x12, 0x7e, 0x0a, 0x1b, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x43, 0x75, 0x74,
0x4f, 0x76, 0x65, 0x72, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x43, 0x75, 0x74, 0x4f,
- 0x76, 0x65, 0x72, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x0a,
- 0x47, 0x65, 0x74, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x73, 0x12, 0x1c, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70,
- 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x73, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x47, 0x65, 0x74,
- 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5d, 0x0a, 0x10, 0x47, 0x65, 0x74,
- 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x22, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c,
- 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65,
- 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x43,
- 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x12, 0x21, 0x2e, 0x76, 0x74,
- 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x73,
- 0x41, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22,
- 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x65,
- 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x46, 0x75, 0x6c, 0x6c, 0x53,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x47, 0x65,
- 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74,
- 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0c, 0x47, 0x65,
- 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x12, 0x1e, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
- 0x63, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
- 0x63, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x72, 0x0a,
- 0x17, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74,
- 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x29, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
- 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69,
- 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
- 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69,
- 0x6f, 0x6e, 0x73, 0x12, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x0f, 0x47, 0x65,
- 0x74, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x21, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x75,
- 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74,
- 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68,
- 0x65, 0x6d, 0x61, 0x12, 0x1b, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x1c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74,
- 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
- 0x12, 0x66, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67,
- 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x25, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67,
- 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26,
- 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x63,
- 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65,
+ 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x46, 0x6f, 0x72, 0x63, 0x65, 0x43, 0x75, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x63, 0x68, 0x65,
+ 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46,
+ 0x6f, 0x72, 0x63, 0x65, 0x43, 0x75, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x63, 0x68, 0x65, 0x6d,
+ 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x42, 0x61, 0x63, 0x6b, 0x75,
+ 0x70, 0x73, 0x12, 0x1c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47,
+ 0x65, 0x74, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x1a, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74,
+ 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
+ 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f,
+ 0x12, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74,
+ 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
+ 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x43,
+ 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
+ 0x00, 0x12, 0x5d, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f,
+ 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x4e, 0x61, 0x6d,
+ 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74,
+ 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66,
+ 0x6f, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
+ 0x12, 0x5a, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61,
+ 0x73, 0x65, 0x73, 0x12, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x52,
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73,
+ 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x0d,
+ 0x47, 0x65, 0x74, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1f, 0x2e,
+ 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x75, 0x6c,
+ 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x75,
+ 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x12, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65,
+ 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x1a, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74,
+ 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x73, 0x12, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47,
+ 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47,
+ 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x72, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73,
+ 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73,
+ 0x12, 0x29, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74,
+ 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52,
+ 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x74,
+ 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x47, 0x65, 0x74,
+ 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x20, 0x2e, 0x76, 0x74,
+ 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x6d, 0x69,
+ 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e,
+ 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72,
+ 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67,
+ 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65,
+ 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52,
+ 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48,
+ 0x0a, 0x09, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x1b, 0x2e, 0x76, 0x74,
+ 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x6d,
+ 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65,
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x66, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53,
- 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
+ 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12,
0x25, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53,
- 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
+ 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52,
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
- 0x12, 0x45, 0x0a, 0x08, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x1a, 0x2e, 0x76,
- 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x69, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x53, 0x68,
- 0x61, 0x72, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12,
- 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53,
- 0x68, 0x61, 0x72, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
+ 0x12, 0x66, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68,
+ 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x08, 0x47, 0x65, 0x74, 0x53,
+ 0x68, 0x61, 0x72, 0x64, 0x12, 0x1a, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x1a, 0x1b, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74,
+ 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
+ 0x69, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x69,
+ 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x6f, 0x75, 0x74,
- 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x22, 0x00, 0x12, 0x66, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x25, 0x2e, 0x76, 0x74, 0x63, 0x74,
- 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74,
- 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x73,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x0f, 0x47, 0x65,
- 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x12, 0x21, 0x2e,
+ 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
+ 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53,
+ 0x68, 0x61, 0x72, 0x64, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x73,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x66, 0x0a, 0x13, 0x47, 0x65,
+ 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65,
+ 0x73, 0x12, 0x25, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65,
+ 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65,
+ 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73,
+ 0x70, 0x61, 0x63, 0x65, 0x73, 0x12, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6c,
+ 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65,
+ 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74,
+ 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x1a, 0x28, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64,
+ 0x61, 0x74, 0x65, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66,
+ 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x0d,
+ 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x1f, 0x2e,
0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76,
- 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74,
- 0x53, 0x72, 0x76, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6c, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12,
- 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x68, 0x72, 0x6f, 0x74,
- 0x74, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x56, 0x53,
- 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x47, 0x65,
- 0x74, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x73, 0x12, 0x20, 0x2e, 0x76,
- 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x56,
- 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21,
+ 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20,
0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x72,
- 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x12, 0x1b, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74,
- 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x61, 0x62,
- 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4b, 0x0a,
- 0x0a, 0x47, 0x65, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x12, 0x1c, 0x2e, 0x76, 0x74,
- 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74,
- 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x63, 0x0a, 0x12, 0x47, 0x65,
- 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x12, 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74,
- 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
- 0x5a, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x70, 0x6f, 0x6c, 0x6f, 0x67, 0x79, 0x50, 0x61,
- 0x74, 0x68, 0x12, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47,
- 0x65, 0x74, 0x54, 0x6f, 0x70, 0x6f, 0x6c, 0x6f, 0x67, 0x79, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x70, 0x6f, 0x6c, 0x6f, 0x67, 0x79, 0x50, 0x61, 0x74,
- 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x78, 0x0a, 0x19, 0x47,
- 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x64, 0x54, 0x72, 0x61, 0x6e,
- 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2b, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76,
- 0x65, 0x64, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x64, 0x54,
- 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x56, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x12, 0x1c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x47, 0x65, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68,
+ 0x65, 0x6d, 0x61, 0x73, 0x12, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x73, 0x52,
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x72, 0x76, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
+ 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x09, 0x47,
+ 0x65, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x1b, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x54, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x73, 0x12, 0x1c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x47, 0x65, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
0x74, 0x1a, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65,
- 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
- 0x12, 0x1c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74,
- 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d,
- 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x56, 0x53,
- 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
- 0x51, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12,
- 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x57,
- 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x57,
- 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x22, 0x00, 0x12, 0x5d, 0x0a, 0x10, 0x49, 0x6e, 0x69, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x50,
- 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x50, 0x72, 0x69, 0x6d,
- 0x61, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64,
- 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
- 0x00, 0x12, 0x6c, 0x0a, 0x15, 0x4c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d,
- 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x27, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x53, 0x63, 0x68,
- 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x4c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
- 0x63, 0x0a, 0x12, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x43,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x43, 0x72,
- 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x74,
- 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x69,
- 0x6e, 0x64, 0x65, 0x78, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x00, 0x12, 0x72, 0x0a, 0x17, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x69,
- 0x6e, 0x64, 0x65, 0x78, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x12,
- 0x29, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b,
- 0x75, 0x70, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
- 0x69, 0x7a, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x69, 0x6e,
- 0x64, 0x65, 0x78, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x11, 0x4d, 0x61, 0x74, 0x65,
- 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x23, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69,
- 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d,
- 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x0d, 0x4d, 0x69,
- 0x67, 0x72, 0x61, 0x74, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x1f, 0x2e, 0x76, 0x74,
- 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x43,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76,
- 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
- 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
- 0x00, 0x12, 0x54, 0x0a, 0x0d, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74,
- 0x65, 0x72, 0x12, 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d,
- 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x0f, 0x4d, 0x6f, 0x75, 0x6e, 0x74,
- 0x55, 0x6e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x21, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x55, 0x6e, 0x72, 0x65,
- 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x55,
- 0x6e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x09, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x53, 0x68, 0x6f, 0x77,
- 0x12, 0x1b, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x6f, 0x75,
- 0x6e, 0x74, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x53,
- 0x68, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a,
- 0x09, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5b, 0x0a, 0x10, 0x4d, 0x6f, 0x76, 0x65, 0x54,
- 0x61, 0x62, 0x6c, 0x65, 0x73, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x22, 0x2e, 0x76, 0x74,
- 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x61, 0x62, 0x6c,
- 0x65, 0x73, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b,
- 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x00, 0x12, 0x63, 0x0a, 0x12, 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x61, 0x62, 0x6c,
- 0x65, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x24, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65,
- 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x25, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x6f, 0x76,
- 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x0a, 0x50, 0x69, 0x6e,
- 0x67, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x1c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x69, 0x0a, 0x14, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x65,
- 0x64, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x26,
+ 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x22, 0x00, 0x12, 0x63, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c,
+ 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65,
+ 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x68,
+ 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x54, 0x6f,
+ 0x70, 0x6f, 0x6c, 0x6f, 0x67, 0x79, 0x50, 0x61, 0x74, 0x68, 0x12, 0x21, 0x2e, 0x76, 0x74, 0x63,
+ 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x70, 0x6f, 0x6c, 0x6f,
+ 0x67, 0x79, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e,
+ 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x70,
+ 0x6f, 0x6c, 0x6f, 0x67, 0x79, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x22, 0x00, 0x12, 0x78, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x73, 0x6f,
+ 0x6c, 0x76, 0x65, 0x64, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73,
+ 0x12, 0x2b, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74,
+ 0x55, 0x6e, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x64, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e,
+ 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x6e, 0x72,
+ 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x64, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4b, 0x0a,
+ 0x0a, 0x47, 0x65, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1c, 0x2e, 0x76, 0x74,
+ 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69,
+ 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74,
+ 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x0a, 0x47, 0x65,
+ 0x74, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x1c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52,
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x57, 0x6f,
+ 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5d, 0x0a, 0x10, 0x49, 0x6e,
+ 0x69, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x22,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x53,
+ 0x68, 0x61, 0x72, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x49,
+ 0x6e, 0x69, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6c, 0x0a, 0x15, 0x4c, 0x61, 0x75,
+ 0x6e, 0x63, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x12, 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4c,
+ 0x61, 0x75, 0x6e, 0x63, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x74,
+ 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x53, 0x63,
+ 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x63, 0x0a, 0x12, 0x4c, 0x6f, 0x6f, 0x6b, 0x75,
+ 0x70, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x24, 0x2e,
+ 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70,
+ 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
+ 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x43, 0x72, 0x65, 0x61,
+ 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x72, 0x0a, 0x17,
+ 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x45, 0x78, 0x74, 0x65,
+ 0x72, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x12, 0x29, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78,
+ 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4c,
+ 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x45, 0x78, 0x74, 0x65, 0x72,
+ 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
+ 0x12, 0x60, 0x0a, 0x11, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x43,
+ 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x43, 0x72, 0x65,
+ 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x74, 0x63,
+ 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69,
+ 0x7a, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x22, 0x00, 0x12, 0x55, 0x0a, 0x0d, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x43, 0x72, 0x65,
+ 0x61, 0x74, 0x65, 0x12, 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x0d, 0x4d, 0x6f, 0x75,
+ 0x6e, 0x74, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x1f, 0x2e, 0x76, 0x74, 0x63,
+ 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x67, 0x69,
+ 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x76, 0x74,
+ 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x67,
+ 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
+ 0x5a, 0x0a, 0x0f, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74,
+ 0x65, 0x72, 0x12, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d,
+ 0x6f, 0x75, 0x6e, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x55, 0x6e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65,
+ 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x09, 0x4d,
+ 0x6f, 0x75, 0x6e, 0x74, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x1b, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x09, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69,
+ 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d,
+ 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
+ 0x1c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x6f, 0x75, 0x6e,
+ 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
+ 0x5b, 0x0a, 0x10, 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x43, 0x72, 0x65,
+ 0x61, 0x74, 0x65, 0x12, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74,
+ 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x63, 0x0a, 0x12,
+ 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65,
+ 0x74, 0x65, 0x12, 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d,
+ 0x6f, 0x76, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74,
+ 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x43,
+ 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
+ 0x00, 0x12, 0x4b, 0x0a, 0x0a, 0x50, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12,
+ 0x1c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50, 0x69, 0x6e, 0x67,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e,
+ 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x54, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x69,
+ 0x0a, 0x14, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e,
+ 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65,
+ 0x6e, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27,
0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x6e,
0x65, 0x64, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65,
- 0x6e, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
- 0x00, 0x12, 0x69, 0x0a, 0x14, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x4b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x12, 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74,
- 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x4b, 0x65, 0x79,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x69, 0x0a, 0x14, 0x52, 0x65, 0x62,
+ 0x75, 0x69, 0x6c, 0x64, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x47, 0x72, 0x61, 0x70,
+ 0x68, 0x12, 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65,
0x62, 0x75, 0x69, 0x6c, 0x64, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x47, 0x72, 0x61,
- 0x70, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x66, 0x0a, 0x13,
- 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x47, 0x72,
- 0x61, 0x70, 0x68, 0x12, 0x25, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x47, 0x72,
- 0x61, 0x70, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x56, 0x53,
- 0x63, 0x68, 0x65, 0x6d, 0x61, 0x47, 0x72, 0x61, 0x70, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0c, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x53,
- 0x74, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x66, 0x0a, 0x13, 0x52, 0x65, 0x66, 0x72, 0x65,
- 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x25,
- 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x66, 0x72, 0x65,
- 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x42, 0x79,
- 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
- 0x51, 0x0a, 0x0c, 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12,
- 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6c, 0x6f,
- 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6c, 0x6f,
- 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x22, 0x00, 0x12, 0x69, 0x0a, 0x14, 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65,
- 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x26, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68,
- 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52,
- 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x60, 0x0a,
- 0x11, 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x53, 0x68, 0x61,
- 0x72, 0x64, 0x12, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52,
- 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x53, 0x68, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x70, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74,
+ 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x4b, 0x65, 0x79,
+ 0x73, 0x70, 0x61, 0x63, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x22, 0x00, 0x12, 0x66, 0x0a, 0x13, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x56,
+ 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x47, 0x72, 0x61, 0x70, 0x68, 0x12, 0x25, 0x2e, 0x76, 0x74,
+ 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x56,
+ 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x47, 0x72, 0x61, 0x70, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52,
+ 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x47, 0x72, 0x61,
+ 0x70, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0c,
+ 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x2e, 0x76,
+ 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68,
+ 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x76,
+ 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68,
+ 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
+ 0x66, 0x0a, 0x13, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x42,
+ 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x25, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x42,
+ 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e,
+ 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73,
+ 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x42, 0x79, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0c, 0x52, 0x65, 0x6c, 0x6f, 0x61,
+ 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
- 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
- 0x51, 0x0a, 0x0c, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x12,
- 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6d, 0x6f,
- 0x76, 0x65, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6d, 0x6f,
- 0x76, 0x65, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x22, 0x00, 0x12, 0x63, 0x0a, 0x12, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4b, 0x65, 0x79, 0x73,
- 0x70, 0x61, 0x63, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x12, 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25,
- 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76,
- 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x0f, 0x52, 0x65, 0x6d, 0x6f, 0x76,
- 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x43, 0x65, 0x6c, 0x6c, 0x12, 0x21, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x68, 0x61,
- 0x72, 0x64, 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65,
- 0x53, 0x68, 0x61, 0x72, 0x64, 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x54,
- 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x54, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x0d,
- 0x52, 0x65, 0x73, 0x68, 0x61, 0x72, 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x1f, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x68, 0x61, 0x72,
- 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21,
- 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66,
- 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x22, 0x00, 0x12, 0x62, 0x0a, 0x11, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x46, 0x72,
- 0x6f, 0x6d, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x12, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x46, 0x72, 0x6f, 0x6d,
- 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72,
- 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x69, 0x0a, 0x14, 0x52, 0x65, 0x74, 0x72, 0x79,
- 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
- 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x74, 0x72,
- 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x74, 0x72, 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d,
- 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x52, 0x75, 0x6e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43,
- 0x68, 0x65, 0x63, 0x6b, 0x12, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x52, 0x75, 0x6e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x69, 0x0a, 0x14, 0x52, 0x65,
+ 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x63, 0x65, 0x12, 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52,
+ 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70,
+ 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x74, 0x63,
+ 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68,
+ 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x11, 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53,
+ 0x63, 0x68, 0x65, 0x6d, 0x61, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x23, 0x2e, 0x76, 0x74, 0x63,
+ 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68,
+ 0x65, 0x6d, 0x61, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
+ 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6c, 0x6f,
+ 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0c, 0x52, 0x65, 0x6d, 0x6f, 0x76,
+ 0x65, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x12, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x63, 0x0a, 0x12, 0x52, 0x65,
+ 0x6d, 0x6f, 0x76, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x43, 0x65, 0x6c, 0x6c,
+ 0x12, 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6d,
+ 0x6f, 0x76, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x52,
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
+ 0x5a, 0x0a, 0x0f, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x43, 0x65,
+ 0x6c, 0x6c, 0x12, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52,
+ 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x43, 0x65, 0x6c,
+ 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x52,
+ 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x20, 0x2e,
+ 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65,
+ 0x6e, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
+ 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x70, 0x61,
+ 0x72, 0x65, 0x6e, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x0d, 0x52, 0x65, 0x73, 0x68, 0x61, 0x72, 0x64, 0x43,
+ 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x52, 0x65, 0x73, 0x68, 0x61, 0x72, 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52,
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x52, 0x75, 0x6e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63,
- 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7e, 0x0a, 0x1b, 0x53,
- 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69,
- 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x2d, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
+ 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75,
+ 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x62, 0x0a, 0x11, 0x52,
+ 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70,
+ 0x12, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73,
+ 0x74, 0x6f, 0x72, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x61, 0x63,
+ 0x6b, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12,
+ 0x69, 0x0a, 0x14, 0x52, 0x65, 0x74, 0x72, 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69,
+ 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x74, 0x72, 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d,
+ 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
+ 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x74, 0x72,
+ 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x52, 0x75,
+ 0x6e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x20, 0x2e, 0x76,
+ 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x75, 0x6e, 0x48, 0x65, 0x61, 0x6c,
+ 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x75, 0x6e, 0x48, 0x65,
+ 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x22, 0x00, 0x12, 0x7e, 0x0a, 0x1b, 0x53, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
0x63, 0x65, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x74, 0x63, 0x74,
- 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63,
- 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x75, 0x0a, 0x18, 0x53,
- 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x49, 0x73, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79,
- 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x12, 0x2a, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x53, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x49, 0x73, 0x50, 0x72,
- 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x53, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x49, 0x73, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72,
- 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x22, 0x00, 0x12, 0x6c, 0x0a, 0x15, 0x53, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x54, 0x61,
- 0x62, 0x6c, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x12, 0x27, 0x2e, 0x76, 0x74,
+ 0x63, 0x79, 0x12, 0x2d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53,
+ 0x65, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69,
+ 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x65,
+ 0x74, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c,
+ 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x22, 0x00, 0x12, 0x75, 0x0a, 0x18, 0x53, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x49,
+ 0x73, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x12,
+ 0x2a, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x65, 0x74, 0x53,
+ 0x68, 0x61, 0x72, 0x64, 0x49, 0x73, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x65, 0x72,
+ 0x76, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x74,
0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64,
- 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x53, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x43,
- 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
- 0x12, 0x4e, 0x0a, 0x0b, 0x53, 0x65, 0x74, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12,
- 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x65, 0x74, 0x57,
- 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e,
- 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x65, 0x74, 0x57, 0x72,
- 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
- 0x12, 0x66, 0x0a, 0x13, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x64, 0x12, 0x25, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26,
- 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x64, 0x52, 0x65,
+ 0x49, 0x73, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6c, 0x0a, 0x15, 0x53, 0x65,
+ 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x74,
+ 0x72, 0x6f, 0x6c, 0x12, 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x53, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x43, 0x6f,
+ 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76,
+ 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72,
+ 0x64, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x53, 0x65, 0x74, 0x57,
+ 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x53, 0x65, 0x74, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52,
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x53, 0x65, 0x74, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65,
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x66, 0x0a, 0x13, 0x53, 0x68, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x78, 0x12,
+ 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x64, 0x12,
0x25, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72,
- 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x78, 0x52,
+ 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x64, 0x52,
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x78, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
- 0x12, 0x78, 0x0a, 0x19, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2b, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52,
- 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6f, 0x0a, 0x16, 0x53, 0x68,
- 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
- 0x6d, 0x6f, 0x76, 0x65, 0x12, 0x28, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29,
+ 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
+ 0x12, 0x66, 0x0a, 0x13, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x78, 0x12, 0x25, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26,
0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x6d, 0x6f, 0x76,
- 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x53,
- 0x6c, 0x65, 0x65, 0x70, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x12, 0x1d, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x6c, 0x65, 0x65, 0x70, 0x54, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74,
- 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x6c, 0x65, 0x65, 0x70, 0x54, 0x61, 0x62, 0x6c, 0x65,
- 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x53,
- 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x41, 0x64, 0x64, 0x12, 0x20, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65,
- 0x53, 0x68, 0x61, 0x72, 0x64, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x6f, 0x75, 0x72,
- 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x11, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x68,
- 0x61, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74,
- 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72,
- 0x64, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24,
- 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x6f, 0x75, 0x72, 0x63,
- 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5d, 0x0a, 0x10, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52,
- 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x22, 0x2e, 0x76, 0x74, 0x63,
- 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23,
- 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x61, 0x72, 0x74,
- 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x0f, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76, 0x74,
- 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
- 0x00, 0x12, 0x7b, 0x0a, 0x1a, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x72,
- 0x6e, 0x61, 0x6c, 0x6c, 0x79, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x65, 0x64, 0x12,
- 0x2c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x6c, 0x79, 0x52, 0x65, 0x70, 0x61,
- 0x72, 0x65, 0x6e, 0x74, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74,
- 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x6c, 0x79, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65,
- 0x6e, 0x74, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57,
- 0x0a, 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f,
- 0x12, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5d, 0x0a, 0x10, 0x55, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x22, 0x2e, 0x76, 0x74,
- 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x65,
- 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x08, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61,
- 0x74, 0x65, 0x12, 0x1a, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56,
- 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b,
- 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64,
- 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5d, 0x0a,
- 0x10, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
- 0x65, 0x12, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61,
- 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
- 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6f, 0x0a, 0x16,
- 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4b, 0x65,
- 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x28, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d,
- 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x29, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c,
- 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a,
- 0x0d, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x1f,
- 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64,
- 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69,
- 0x64, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x22, 0x00, 0x12, 0x72, 0x0a, 0x17, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56,
- 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x29,
+ 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x78, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x78, 0x0a, 0x19, 0x53, 0x68, 0x61, 0x72,
+ 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x73, 0x69,
+ 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2b, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53,
+ 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50,
+ 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x22, 0x00, 0x12, 0x6f, 0x0a, 0x16, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x12, 0x28, 0x2e, 0x76,
+ 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65,
+ 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52,
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x53, 0x6c, 0x65, 0x65, 0x70, 0x54, 0x61, 0x62, 0x6c,
+ 0x65, 0x74, 0x12, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53,
+ 0x6c, 0x65, 0x65, 0x70, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x74, 0x1a, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x6c,
+ 0x65, 0x65, 0x70, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x68, 0x61,
+ 0x72, 0x64, 0x41, 0x64, 0x64, 0x12, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x41, 0x64, 0x64,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x41,
+ 0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x11,
+ 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x65, 0x74,
+ 0x65, 0x12, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x6f,
+ 0x75, 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x44, 0x65,
+ 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5d,
+ 0x0a, 0x10, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x12, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53,
+ 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5a, 0x0a,
+ 0x0f, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x12, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x6f,
+ 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75,
+ 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7b, 0x0a, 0x1a, 0x54, 0x61, 0x62,
+ 0x6c, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x6c, 0x79, 0x52, 0x65, 0x70,
+ 0x61, 0x72, 0x65, 0x6e, 0x74, 0x65, 0x64, 0x12, 0x2c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e,
+ 0x61, 0x6c, 0x6c, 0x79, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x65, 0x64, 0x52, 0x65,
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
+ 0x6c, 0x79, 0x52, 0x65, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
+ 0x43, 0x65, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x49,
+ 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76, 0x74, 0x63,
+ 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x65, 0x6c,
+ 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
+ 0x5d, 0x0a, 0x10, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c,
+ 0x69, 0x61, 0x73, 0x12, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41, 0x6c, 0x69, 0x61, 0x73,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x6c, 0x73, 0x41,
+ 0x6c, 0x69, 0x61, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x45,
+ 0x0a, 0x08, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x2e, 0x76, 0x74, 0x63,
+ 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x52,
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5d, 0x0a, 0x10, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74,
+ 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74,
+ 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65,
+ 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e,
+ 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61,
+ 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x22, 0x00, 0x12, 0x6f, 0x0a, 0x16, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65,
+ 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x28,
0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64,
- 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61,
- 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x74, 0x63, 0x74,
- 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x69, 0x0a, 0x14, 0x56, 0x61, 0x6c, 0x69, 0x64,
- 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12,
- 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69,
- 0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x64,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x68,
+ 0x65, 0x6d, 0x61, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x0d, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74,
+ 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x1f, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72,
+ 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x72, 0x0a, 0x17, 0x56,
+ 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4b, 0x65,
+ 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x29, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
+ 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69,
+ 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61,
+ 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79,
+ 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
+ 0x69, 0x0a, 0x14, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69,
+ 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x26, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x0f, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x53,
- 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d,
- 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x53, 0x63,
- 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e,
- 0x0a, 0x0b, 0x56, 0x44, 0x69, 0x66, 0x66, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x43,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x76,
- 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x43, 0x72,
- 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e,
- 0x0a, 0x0b, 0x56, 0x44, 0x69, 0x66, 0x66, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x1d, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x44,
- 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x76,
- 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x44, 0x65,
- 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e,
- 0x0a, 0x0b, 0x56, 0x44, 0x69, 0x66, 0x66, 0x52, 0x65, 0x73, 0x75, 0x6d, 0x65, 0x12, 0x1d, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x52,
- 0x65, 0x73, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x76,
- 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x52, 0x65,
- 0x73, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48,
- 0x0a, 0x09, 0x56, 0x44, 0x69, 0x66, 0x66, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x1b, 0x2e, 0x76, 0x74,
- 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x53, 0x68, 0x6f,
- 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x09, 0x56, 0x44, 0x69, 0x66,
- 0x66, 0x53, 0x74, 0x6f, 0x70, 0x12, 0x1b, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56,
- 0x44, 0x69, 0x66, 0x66, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65,
- 0x6c, 0x65, 0x74, 0x65, 0x12, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x6c, 0x65, 0x74,
- 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x57,
- 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x20, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
- 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b,
- 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x00, 0x12, 0x6c, 0x0a, 0x15, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
- 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x12, 0x27, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
- 0x6f, 0x77, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x77, 0x69, 0x74, 0x63,
- 0x68, 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x12, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x55, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x47,
- 0x65, 0x74, 0x4d, 0x69, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x20, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x69, 0x72,
- 0x72, 0x6f, 0x72, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x4d,
- 0x69, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x00, 0x12, 0x6c, 0x0a, 0x15, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
- 0x4d, 0x69, 0x72, 0x72, 0x6f, 0x72, 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x12, 0x27, 0x2e,
- 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c,
- 0x6f, 0x77, 0x4d, 0x69, 0x72, 0x72, 0x6f, 0x72, 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x4d, 0x69, 0x72, 0x72, 0x6f,
- 0x72, 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x22, 0x00, 0x42, 0x2b, 0x5a, 0x29, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2e, 0x69, 0x6f, 0x2f,
- 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2f, 0x67, 0x6f, 0x2f, 0x76, 0x74, 0x2f, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x2f, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x62,
- 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
+ 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69,
+ 0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x64,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x0f, 0x56, 0x61,
+ 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x21, 0x2e,
+ 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61,
+ 0x74, 0x65, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x1a, 0x22, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x61, 0x6c,
+ 0x69, 0x64, 0x61, 0x74, 0x65, 0x56, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x56, 0x44, 0x69, 0x66, 0x66, 0x43,
+ 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x56, 0x44, 0x69, 0x66, 0x66, 0x44,
+ 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x56, 0x44, 0x69, 0x66, 0x66, 0x52,
+ 0x65, 0x73, 0x75, 0x6d, 0x65, 0x12, 0x1d, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x52, 0x65, 0x73, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x52, 0x65, 0x73, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x09, 0x56, 0x44, 0x69, 0x66, 0x66, 0x53,
+ 0x68, 0x6f, 0x77, 0x12, 0x1b, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e,
+ 0x56, 0x44, 0x69, 0x66, 0x66, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x1a, 0x1c, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69,
+ 0x66, 0x66, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
+ 0x12, 0x48, 0x0a, 0x09, 0x56, 0x44, 0x69, 0x66, 0x66, 0x53, 0x74, 0x6f, 0x70, 0x12, 0x1b, 0x2e,
+ 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x53,
+ 0x74, 0x6f, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x76, 0x74, 0x63,
+ 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x44, 0x69, 0x66, 0x66, 0x53, 0x74, 0x6f, 0x70,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x57, 0x6f,
+ 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x20, 0x2e, 0x76,
+ 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
+ 0x77, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66,
+ 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53,
+ 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74,
+ 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6c, 0x0a, 0x15,
+ 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x54, 0x72,
+ 0x61, 0x66, 0x66, 0x69, 0x63, 0x12, 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68,
+ 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66,
+ 0x6c, 0x6f, 0x77, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x57, 0x6f,
+ 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x20, 0x2e, 0x76,
+ 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
+ 0x77, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66,
+ 0x6c, 0x6f, 0x77, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x4d, 0x69, 0x72, 0x72, 0x6f, 0x72,
+ 0x52, 0x75, 0x6c, 0x65, 0x73, 0x12, 0x20, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x69, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x75, 0x6c, 0x65, 0x73,
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x69, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x75, 0x6c,
+ 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6c, 0x0a, 0x15,
+ 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x4d, 0x69, 0x72, 0x72, 0x6f, 0x72, 0x54, 0x72,
+ 0x61, 0x66, 0x66, 0x69, 0x63, 0x12, 0x27, 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x4d, 0x69, 0x72, 0x72, 0x6f, 0x72,
+ 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28,
+ 0x2e, 0x76, 0x74, 0x63, 0x74, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66,
+ 0x6c, 0x6f, 0x77, 0x4d, 0x69, 0x72, 0x72, 0x6f, 0x72, 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x2b, 0x5a, 0x29, 0x76, 0x69,
+ 0x74, 0x65, 0x73, 0x73, 0x2e, 0x69, 0x6f, 0x2f, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2f, 0x67,
+ 0x6f, 0x2f, 0x76, 0x74, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x74, 0x63, 0x74, 0x6c,
+ 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var file_vtctlservice_proto_goTypes = []any{
@@ -783,229 +789,231 @@ var file_vtctlservice_proto_goTypes = []any{
(*vtctldata.CheckThrottlerRequest)(nil), // 12: vtctldata.CheckThrottlerRequest
(*vtctldata.CleanupSchemaMigrationRequest)(nil), // 13: vtctldata.CleanupSchemaMigrationRequest
(*vtctldata.CompleteSchemaMigrationRequest)(nil), // 14: vtctldata.CompleteSchemaMigrationRequest
- (*vtctldata.CreateKeyspaceRequest)(nil), // 15: vtctldata.CreateKeyspaceRequest
- (*vtctldata.CreateShardRequest)(nil), // 16: vtctldata.CreateShardRequest
- (*vtctldata.DeleteCellInfoRequest)(nil), // 17: vtctldata.DeleteCellInfoRequest
- (*vtctldata.DeleteCellsAliasRequest)(nil), // 18: vtctldata.DeleteCellsAliasRequest
- (*vtctldata.DeleteKeyspaceRequest)(nil), // 19: vtctldata.DeleteKeyspaceRequest
- (*vtctldata.DeleteShardsRequest)(nil), // 20: vtctldata.DeleteShardsRequest
- (*vtctldata.DeleteSrvVSchemaRequest)(nil), // 21: vtctldata.DeleteSrvVSchemaRequest
- (*vtctldata.DeleteTabletsRequest)(nil), // 22: vtctldata.DeleteTabletsRequest
- (*vtctldata.EmergencyReparentShardRequest)(nil), // 23: vtctldata.EmergencyReparentShardRequest
- (*vtctldata.ExecuteFetchAsAppRequest)(nil), // 24: vtctldata.ExecuteFetchAsAppRequest
- (*vtctldata.ExecuteFetchAsDBARequest)(nil), // 25: vtctldata.ExecuteFetchAsDBARequest
- (*vtctldata.ExecuteHookRequest)(nil), // 26: vtctldata.ExecuteHookRequest
- (*vtctldata.ExecuteMultiFetchAsDBARequest)(nil), // 27: vtctldata.ExecuteMultiFetchAsDBARequest
- (*vtctldata.FindAllShardsInKeyspaceRequest)(nil), // 28: vtctldata.FindAllShardsInKeyspaceRequest
- (*vtctldata.ForceCutOverSchemaMigrationRequest)(nil), // 29: vtctldata.ForceCutOverSchemaMigrationRequest
- (*vtctldata.GetBackupsRequest)(nil), // 30: vtctldata.GetBackupsRequest
- (*vtctldata.GetCellInfoRequest)(nil), // 31: vtctldata.GetCellInfoRequest
- (*vtctldata.GetCellInfoNamesRequest)(nil), // 32: vtctldata.GetCellInfoNamesRequest
- (*vtctldata.GetCellsAliasesRequest)(nil), // 33: vtctldata.GetCellsAliasesRequest
- (*vtctldata.GetFullStatusRequest)(nil), // 34: vtctldata.GetFullStatusRequest
- (*vtctldata.GetKeyspaceRequest)(nil), // 35: vtctldata.GetKeyspaceRequest
- (*vtctldata.GetKeyspacesRequest)(nil), // 36: vtctldata.GetKeyspacesRequest
- (*vtctldata.GetKeyspaceRoutingRulesRequest)(nil), // 37: vtctldata.GetKeyspaceRoutingRulesRequest
- (*vtctldata.GetPermissionsRequest)(nil), // 38: vtctldata.GetPermissionsRequest
- (*vtctldata.GetRoutingRulesRequest)(nil), // 39: vtctldata.GetRoutingRulesRequest
- (*vtctldata.GetSchemaRequest)(nil), // 40: vtctldata.GetSchemaRequest
- (*vtctldata.GetSchemaMigrationsRequest)(nil), // 41: vtctldata.GetSchemaMigrationsRequest
- (*vtctldata.GetShardReplicationRequest)(nil), // 42: vtctldata.GetShardReplicationRequest
- (*vtctldata.GetShardRequest)(nil), // 43: vtctldata.GetShardRequest
- (*vtctldata.GetShardRoutingRulesRequest)(nil), // 44: vtctldata.GetShardRoutingRulesRequest
- (*vtctldata.GetSrvKeyspaceNamesRequest)(nil), // 45: vtctldata.GetSrvKeyspaceNamesRequest
- (*vtctldata.GetSrvKeyspacesRequest)(nil), // 46: vtctldata.GetSrvKeyspacesRequest
- (*vtctldata.UpdateThrottlerConfigRequest)(nil), // 47: vtctldata.UpdateThrottlerConfigRequest
- (*vtctldata.GetSrvVSchemaRequest)(nil), // 48: vtctldata.GetSrvVSchemaRequest
- (*vtctldata.GetSrvVSchemasRequest)(nil), // 49: vtctldata.GetSrvVSchemasRequest
- (*vtctldata.GetTabletRequest)(nil), // 50: vtctldata.GetTabletRequest
- (*vtctldata.GetTabletsRequest)(nil), // 51: vtctldata.GetTabletsRequest
- (*vtctldata.GetThrottlerStatusRequest)(nil), // 52: vtctldata.GetThrottlerStatusRequest
- (*vtctldata.GetTopologyPathRequest)(nil), // 53: vtctldata.GetTopologyPathRequest
- (*vtctldata.GetUnresolvedTransactionsRequest)(nil), // 54: vtctldata.GetUnresolvedTransactionsRequest
- (*vtctldata.GetVersionRequest)(nil), // 55: vtctldata.GetVersionRequest
- (*vtctldata.GetVSchemaRequest)(nil), // 56: vtctldata.GetVSchemaRequest
- (*vtctldata.GetWorkflowsRequest)(nil), // 57: vtctldata.GetWorkflowsRequest
- (*vtctldata.InitShardPrimaryRequest)(nil), // 58: vtctldata.InitShardPrimaryRequest
- (*vtctldata.LaunchSchemaMigrationRequest)(nil), // 59: vtctldata.LaunchSchemaMigrationRequest
- (*vtctldata.LookupVindexCreateRequest)(nil), // 60: vtctldata.LookupVindexCreateRequest
- (*vtctldata.LookupVindexExternalizeRequest)(nil), // 61: vtctldata.LookupVindexExternalizeRequest
- (*vtctldata.MaterializeCreateRequest)(nil), // 62: vtctldata.MaterializeCreateRequest
- (*vtctldata.MigrateCreateRequest)(nil), // 63: vtctldata.MigrateCreateRequest
- (*vtctldata.MountRegisterRequest)(nil), // 64: vtctldata.MountRegisterRequest
- (*vtctldata.MountUnregisterRequest)(nil), // 65: vtctldata.MountUnregisterRequest
- (*vtctldata.MountShowRequest)(nil), // 66: vtctldata.MountShowRequest
- (*vtctldata.MountListRequest)(nil), // 67: vtctldata.MountListRequest
- (*vtctldata.MoveTablesCreateRequest)(nil), // 68: vtctldata.MoveTablesCreateRequest
- (*vtctldata.MoveTablesCompleteRequest)(nil), // 69: vtctldata.MoveTablesCompleteRequest
- (*vtctldata.PingTabletRequest)(nil), // 70: vtctldata.PingTabletRequest
- (*vtctldata.PlannedReparentShardRequest)(nil), // 71: vtctldata.PlannedReparentShardRequest
- (*vtctldata.RebuildKeyspaceGraphRequest)(nil), // 72: vtctldata.RebuildKeyspaceGraphRequest
- (*vtctldata.RebuildVSchemaGraphRequest)(nil), // 73: vtctldata.RebuildVSchemaGraphRequest
- (*vtctldata.RefreshStateRequest)(nil), // 74: vtctldata.RefreshStateRequest
- (*vtctldata.RefreshStateByShardRequest)(nil), // 75: vtctldata.RefreshStateByShardRequest
- (*vtctldata.ReloadSchemaRequest)(nil), // 76: vtctldata.ReloadSchemaRequest
- (*vtctldata.ReloadSchemaKeyspaceRequest)(nil), // 77: vtctldata.ReloadSchemaKeyspaceRequest
- (*vtctldata.ReloadSchemaShardRequest)(nil), // 78: vtctldata.ReloadSchemaShardRequest
- (*vtctldata.RemoveBackupRequest)(nil), // 79: vtctldata.RemoveBackupRequest
- (*vtctldata.RemoveKeyspaceCellRequest)(nil), // 80: vtctldata.RemoveKeyspaceCellRequest
- (*vtctldata.RemoveShardCellRequest)(nil), // 81: vtctldata.RemoveShardCellRequest
- (*vtctldata.ReparentTabletRequest)(nil), // 82: vtctldata.ReparentTabletRequest
- (*vtctldata.ReshardCreateRequest)(nil), // 83: vtctldata.ReshardCreateRequest
- (*vtctldata.RestoreFromBackupRequest)(nil), // 84: vtctldata.RestoreFromBackupRequest
- (*vtctldata.RetrySchemaMigrationRequest)(nil), // 85: vtctldata.RetrySchemaMigrationRequest
- (*vtctldata.RunHealthCheckRequest)(nil), // 86: vtctldata.RunHealthCheckRequest
- (*vtctldata.SetKeyspaceDurabilityPolicyRequest)(nil), // 87: vtctldata.SetKeyspaceDurabilityPolicyRequest
- (*vtctldata.SetShardIsPrimaryServingRequest)(nil), // 88: vtctldata.SetShardIsPrimaryServingRequest
- (*vtctldata.SetShardTabletControlRequest)(nil), // 89: vtctldata.SetShardTabletControlRequest
- (*vtctldata.SetWritableRequest)(nil), // 90: vtctldata.SetWritableRequest
- (*vtctldata.ShardReplicationAddRequest)(nil), // 91: vtctldata.ShardReplicationAddRequest
- (*vtctldata.ShardReplicationFixRequest)(nil), // 92: vtctldata.ShardReplicationFixRequest
- (*vtctldata.ShardReplicationPositionsRequest)(nil), // 93: vtctldata.ShardReplicationPositionsRequest
- (*vtctldata.ShardReplicationRemoveRequest)(nil), // 94: vtctldata.ShardReplicationRemoveRequest
- (*vtctldata.SleepTabletRequest)(nil), // 95: vtctldata.SleepTabletRequest
- (*vtctldata.SourceShardAddRequest)(nil), // 96: vtctldata.SourceShardAddRequest
- (*vtctldata.SourceShardDeleteRequest)(nil), // 97: vtctldata.SourceShardDeleteRequest
- (*vtctldata.StartReplicationRequest)(nil), // 98: vtctldata.StartReplicationRequest
- (*vtctldata.StopReplicationRequest)(nil), // 99: vtctldata.StopReplicationRequest
- (*vtctldata.TabletExternallyReparentedRequest)(nil), // 100: vtctldata.TabletExternallyReparentedRequest
- (*vtctldata.UpdateCellInfoRequest)(nil), // 101: vtctldata.UpdateCellInfoRequest
- (*vtctldata.UpdateCellsAliasRequest)(nil), // 102: vtctldata.UpdateCellsAliasRequest
- (*vtctldata.ValidateRequest)(nil), // 103: vtctldata.ValidateRequest
- (*vtctldata.ValidateKeyspaceRequest)(nil), // 104: vtctldata.ValidateKeyspaceRequest
- (*vtctldata.ValidateSchemaKeyspaceRequest)(nil), // 105: vtctldata.ValidateSchemaKeyspaceRequest
- (*vtctldata.ValidateShardRequest)(nil), // 106: vtctldata.ValidateShardRequest
- (*vtctldata.ValidateVersionKeyspaceRequest)(nil), // 107: vtctldata.ValidateVersionKeyspaceRequest
- (*vtctldata.ValidateVersionShardRequest)(nil), // 108: vtctldata.ValidateVersionShardRequest
- (*vtctldata.ValidateVSchemaRequest)(nil), // 109: vtctldata.ValidateVSchemaRequest
- (*vtctldata.VDiffCreateRequest)(nil), // 110: vtctldata.VDiffCreateRequest
- (*vtctldata.VDiffDeleteRequest)(nil), // 111: vtctldata.VDiffDeleteRequest
- (*vtctldata.VDiffResumeRequest)(nil), // 112: vtctldata.VDiffResumeRequest
- (*vtctldata.VDiffShowRequest)(nil), // 113: vtctldata.VDiffShowRequest
- (*vtctldata.VDiffStopRequest)(nil), // 114: vtctldata.VDiffStopRequest
- (*vtctldata.WorkflowDeleteRequest)(nil), // 115: vtctldata.WorkflowDeleteRequest
- (*vtctldata.WorkflowStatusRequest)(nil), // 116: vtctldata.WorkflowStatusRequest
- (*vtctldata.WorkflowSwitchTrafficRequest)(nil), // 117: vtctldata.WorkflowSwitchTrafficRequest
- (*vtctldata.WorkflowUpdateRequest)(nil), // 118: vtctldata.WorkflowUpdateRequest
- (*vtctldata.GetMirrorRulesRequest)(nil), // 119: vtctldata.GetMirrorRulesRequest
- (*vtctldata.WorkflowMirrorTrafficRequest)(nil), // 120: vtctldata.WorkflowMirrorTrafficRequest
- (*vtctldata.ExecuteVtctlCommandResponse)(nil), // 121: vtctldata.ExecuteVtctlCommandResponse
- (*vtctldata.AddCellInfoResponse)(nil), // 122: vtctldata.AddCellInfoResponse
- (*vtctldata.AddCellsAliasResponse)(nil), // 123: vtctldata.AddCellsAliasResponse
- (*vtctldata.ApplyRoutingRulesResponse)(nil), // 124: vtctldata.ApplyRoutingRulesResponse
- (*vtctldata.ApplySchemaResponse)(nil), // 125: vtctldata.ApplySchemaResponse
- (*vtctldata.ApplyKeyspaceRoutingRulesResponse)(nil), // 126: vtctldata.ApplyKeyspaceRoutingRulesResponse
- (*vtctldata.ApplyShardRoutingRulesResponse)(nil), // 127: vtctldata.ApplyShardRoutingRulesResponse
- (*vtctldata.ApplyVSchemaResponse)(nil), // 128: vtctldata.ApplyVSchemaResponse
- (*vtctldata.BackupResponse)(nil), // 129: vtctldata.BackupResponse
- (*vtctldata.CancelSchemaMigrationResponse)(nil), // 130: vtctldata.CancelSchemaMigrationResponse
- (*vtctldata.ChangeTabletTypeResponse)(nil), // 131: vtctldata.ChangeTabletTypeResponse
- (*vtctldata.CheckThrottlerResponse)(nil), // 132: vtctldata.CheckThrottlerResponse
- (*vtctldata.CleanupSchemaMigrationResponse)(nil), // 133: vtctldata.CleanupSchemaMigrationResponse
- (*vtctldata.CompleteSchemaMigrationResponse)(nil), // 134: vtctldata.CompleteSchemaMigrationResponse
- (*vtctldata.CreateKeyspaceResponse)(nil), // 135: vtctldata.CreateKeyspaceResponse
- (*vtctldata.CreateShardResponse)(nil), // 136: vtctldata.CreateShardResponse
- (*vtctldata.DeleteCellInfoResponse)(nil), // 137: vtctldata.DeleteCellInfoResponse
- (*vtctldata.DeleteCellsAliasResponse)(nil), // 138: vtctldata.DeleteCellsAliasResponse
- (*vtctldata.DeleteKeyspaceResponse)(nil), // 139: vtctldata.DeleteKeyspaceResponse
- (*vtctldata.DeleteShardsResponse)(nil), // 140: vtctldata.DeleteShardsResponse
- (*vtctldata.DeleteSrvVSchemaResponse)(nil), // 141: vtctldata.DeleteSrvVSchemaResponse
- (*vtctldata.DeleteTabletsResponse)(nil), // 142: vtctldata.DeleteTabletsResponse
- (*vtctldata.EmergencyReparentShardResponse)(nil), // 143: vtctldata.EmergencyReparentShardResponse
- (*vtctldata.ExecuteFetchAsAppResponse)(nil), // 144: vtctldata.ExecuteFetchAsAppResponse
- (*vtctldata.ExecuteFetchAsDBAResponse)(nil), // 145: vtctldata.ExecuteFetchAsDBAResponse
- (*vtctldata.ExecuteHookResponse)(nil), // 146: vtctldata.ExecuteHookResponse
- (*vtctldata.ExecuteMultiFetchAsDBAResponse)(nil), // 147: vtctldata.ExecuteMultiFetchAsDBAResponse
- (*vtctldata.FindAllShardsInKeyspaceResponse)(nil), // 148: vtctldata.FindAllShardsInKeyspaceResponse
- (*vtctldata.ForceCutOverSchemaMigrationResponse)(nil), // 149: vtctldata.ForceCutOverSchemaMigrationResponse
- (*vtctldata.GetBackupsResponse)(nil), // 150: vtctldata.GetBackupsResponse
- (*vtctldata.GetCellInfoResponse)(nil), // 151: vtctldata.GetCellInfoResponse
- (*vtctldata.GetCellInfoNamesResponse)(nil), // 152: vtctldata.GetCellInfoNamesResponse
- (*vtctldata.GetCellsAliasesResponse)(nil), // 153: vtctldata.GetCellsAliasesResponse
- (*vtctldata.GetFullStatusResponse)(nil), // 154: vtctldata.GetFullStatusResponse
- (*vtctldata.GetKeyspaceResponse)(nil), // 155: vtctldata.GetKeyspaceResponse
- (*vtctldata.GetKeyspacesResponse)(nil), // 156: vtctldata.GetKeyspacesResponse
- (*vtctldata.GetKeyspaceRoutingRulesResponse)(nil), // 157: vtctldata.GetKeyspaceRoutingRulesResponse
- (*vtctldata.GetPermissionsResponse)(nil), // 158: vtctldata.GetPermissionsResponse
- (*vtctldata.GetRoutingRulesResponse)(nil), // 159: vtctldata.GetRoutingRulesResponse
- (*vtctldata.GetSchemaResponse)(nil), // 160: vtctldata.GetSchemaResponse
- (*vtctldata.GetSchemaMigrationsResponse)(nil), // 161: vtctldata.GetSchemaMigrationsResponse
- (*vtctldata.GetShardReplicationResponse)(nil), // 162: vtctldata.GetShardReplicationResponse
- (*vtctldata.GetShardResponse)(nil), // 163: vtctldata.GetShardResponse
- (*vtctldata.GetShardRoutingRulesResponse)(nil), // 164: vtctldata.GetShardRoutingRulesResponse
- (*vtctldata.GetSrvKeyspaceNamesResponse)(nil), // 165: vtctldata.GetSrvKeyspaceNamesResponse
- (*vtctldata.GetSrvKeyspacesResponse)(nil), // 166: vtctldata.GetSrvKeyspacesResponse
- (*vtctldata.UpdateThrottlerConfigResponse)(nil), // 167: vtctldata.UpdateThrottlerConfigResponse
- (*vtctldata.GetSrvVSchemaResponse)(nil), // 168: vtctldata.GetSrvVSchemaResponse
- (*vtctldata.GetSrvVSchemasResponse)(nil), // 169: vtctldata.GetSrvVSchemasResponse
- (*vtctldata.GetTabletResponse)(nil), // 170: vtctldata.GetTabletResponse
- (*vtctldata.GetTabletsResponse)(nil), // 171: vtctldata.GetTabletsResponse
- (*vtctldata.GetThrottlerStatusResponse)(nil), // 172: vtctldata.GetThrottlerStatusResponse
- (*vtctldata.GetTopologyPathResponse)(nil), // 173: vtctldata.GetTopologyPathResponse
- (*vtctldata.GetUnresolvedTransactionsResponse)(nil), // 174: vtctldata.GetUnresolvedTransactionsResponse
- (*vtctldata.GetVersionResponse)(nil), // 175: vtctldata.GetVersionResponse
- (*vtctldata.GetVSchemaResponse)(nil), // 176: vtctldata.GetVSchemaResponse
- (*vtctldata.GetWorkflowsResponse)(nil), // 177: vtctldata.GetWorkflowsResponse
- (*vtctldata.InitShardPrimaryResponse)(nil), // 178: vtctldata.InitShardPrimaryResponse
- (*vtctldata.LaunchSchemaMigrationResponse)(nil), // 179: vtctldata.LaunchSchemaMigrationResponse
- (*vtctldata.LookupVindexCreateResponse)(nil), // 180: vtctldata.LookupVindexCreateResponse
- (*vtctldata.LookupVindexExternalizeResponse)(nil), // 181: vtctldata.LookupVindexExternalizeResponse
- (*vtctldata.MaterializeCreateResponse)(nil), // 182: vtctldata.MaterializeCreateResponse
- (*vtctldata.WorkflowStatusResponse)(nil), // 183: vtctldata.WorkflowStatusResponse
- (*vtctldata.MountRegisterResponse)(nil), // 184: vtctldata.MountRegisterResponse
- (*vtctldata.MountUnregisterResponse)(nil), // 185: vtctldata.MountUnregisterResponse
- (*vtctldata.MountShowResponse)(nil), // 186: vtctldata.MountShowResponse
- (*vtctldata.MountListResponse)(nil), // 187: vtctldata.MountListResponse
- (*vtctldata.MoveTablesCompleteResponse)(nil), // 188: vtctldata.MoveTablesCompleteResponse
- (*vtctldata.PingTabletResponse)(nil), // 189: vtctldata.PingTabletResponse
- (*vtctldata.PlannedReparentShardResponse)(nil), // 190: vtctldata.PlannedReparentShardResponse
- (*vtctldata.RebuildKeyspaceGraphResponse)(nil), // 191: vtctldata.RebuildKeyspaceGraphResponse
- (*vtctldata.RebuildVSchemaGraphResponse)(nil), // 192: vtctldata.RebuildVSchemaGraphResponse
- (*vtctldata.RefreshStateResponse)(nil), // 193: vtctldata.RefreshStateResponse
- (*vtctldata.RefreshStateByShardResponse)(nil), // 194: vtctldata.RefreshStateByShardResponse
- (*vtctldata.ReloadSchemaResponse)(nil), // 195: vtctldata.ReloadSchemaResponse
- (*vtctldata.ReloadSchemaKeyspaceResponse)(nil), // 196: vtctldata.ReloadSchemaKeyspaceResponse
- (*vtctldata.ReloadSchemaShardResponse)(nil), // 197: vtctldata.ReloadSchemaShardResponse
- (*vtctldata.RemoveBackupResponse)(nil), // 198: vtctldata.RemoveBackupResponse
- (*vtctldata.RemoveKeyspaceCellResponse)(nil), // 199: vtctldata.RemoveKeyspaceCellResponse
- (*vtctldata.RemoveShardCellResponse)(nil), // 200: vtctldata.RemoveShardCellResponse
- (*vtctldata.ReparentTabletResponse)(nil), // 201: vtctldata.ReparentTabletResponse
- (*vtctldata.RestoreFromBackupResponse)(nil), // 202: vtctldata.RestoreFromBackupResponse
- (*vtctldata.RetrySchemaMigrationResponse)(nil), // 203: vtctldata.RetrySchemaMigrationResponse
- (*vtctldata.RunHealthCheckResponse)(nil), // 204: vtctldata.RunHealthCheckResponse
- (*vtctldata.SetKeyspaceDurabilityPolicyResponse)(nil), // 205: vtctldata.SetKeyspaceDurabilityPolicyResponse
- (*vtctldata.SetShardIsPrimaryServingResponse)(nil), // 206: vtctldata.SetShardIsPrimaryServingResponse
- (*vtctldata.SetShardTabletControlResponse)(nil), // 207: vtctldata.SetShardTabletControlResponse
- (*vtctldata.SetWritableResponse)(nil), // 208: vtctldata.SetWritableResponse
- (*vtctldata.ShardReplicationAddResponse)(nil), // 209: vtctldata.ShardReplicationAddResponse
- (*vtctldata.ShardReplicationFixResponse)(nil), // 210: vtctldata.ShardReplicationFixResponse
- (*vtctldata.ShardReplicationPositionsResponse)(nil), // 211: vtctldata.ShardReplicationPositionsResponse
- (*vtctldata.ShardReplicationRemoveResponse)(nil), // 212: vtctldata.ShardReplicationRemoveResponse
- (*vtctldata.SleepTabletResponse)(nil), // 213: vtctldata.SleepTabletResponse
- (*vtctldata.SourceShardAddResponse)(nil), // 214: vtctldata.SourceShardAddResponse
- (*vtctldata.SourceShardDeleteResponse)(nil), // 215: vtctldata.SourceShardDeleteResponse
- (*vtctldata.StartReplicationResponse)(nil), // 216: vtctldata.StartReplicationResponse
- (*vtctldata.StopReplicationResponse)(nil), // 217: vtctldata.StopReplicationResponse
- (*vtctldata.TabletExternallyReparentedResponse)(nil), // 218: vtctldata.TabletExternallyReparentedResponse
- (*vtctldata.UpdateCellInfoResponse)(nil), // 219: vtctldata.UpdateCellInfoResponse
- (*vtctldata.UpdateCellsAliasResponse)(nil), // 220: vtctldata.UpdateCellsAliasResponse
- (*vtctldata.ValidateResponse)(nil), // 221: vtctldata.ValidateResponse
- (*vtctldata.ValidateKeyspaceResponse)(nil), // 222: vtctldata.ValidateKeyspaceResponse
- (*vtctldata.ValidateSchemaKeyspaceResponse)(nil), // 223: vtctldata.ValidateSchemaKeyspaceResponse
- (*vtctldata.ValidateShardResponse)(nil), // 224: vtctldata.ValidateShardResponse
- (*vtctldata.ValidateVersionKeyspaceResponse)(nil), // 225: vtctldata.ValidateVersionKeyspaceResponse
- (*vtctldata.ValidateVersionShardResponse)(nil), // 226: vtctldata.ValidateVersionShardResponse
- (*vtctldata.ValidateVSchemaResponse)(nil), // 227: vtctldata.ValidateVSchemaResponse
- (*vtctldata.VDiffCreateResponse)(nil), // 228: vtctldata.VDiffCreateResponse
- (*vtctldata.VDiffDeleteResponse)(nil), // 229: vtctldata.VDiffDeleteResponse
- (*vtctldata.VDiffResumeResponse)(nil), // 230: vtctldata.VDiffResumeResponse
- (*vtctldata.VDiffShowResponse)(nil), // 231: vtctldata.VDiffShowResponse
- (*vtctldata.VDiffStopResponse)(nil), // 232: vtctldata.VDiffStopResponse
- (*vtctldata.WorkflowDeleteResponse)(nil), // 233: vtctldata.WorkflowDeleteResponse
- (*vtctldata.WorkflowSwitchTrafficResponse)(nil), // 234: vtctldata.WorkflowSwitchTrafficResponse
- (*vtctldata.WorkflowUpdateResponse)(nil), // 235: vtctldata.WorkflowUpdateResponse
- (*vtctldata.GetMirrorRulesResponse)(nil), // 236: vtctldata.GetMirrorRulesResponse
- (*vtctldata.WorkflowMirrorTrafficResponse)(nil), // 237: vtctldata.WorkflowMirrorTrafficResponse
+ (*vtctldata.ConcludeTransactionRequest)(nil), // 15: vtctldata.ConcludeTransactionRequest
+ (*vtctldata.CreateKeyspaceRequest)(nil), // 16: vtctldata.CreateKeyspaceRequest
+ (*vtctldata.CreateShardRequest)(nil), // 17: vtctldata.CreateShardRequest
+ (*vtctldata.DeleteCellInfoRequest)(nil), // 18: vtctldata.DeleteCellInfoRequest
+ (*vtctldata.DeleteCellsAliasRequest)(nil), // 19: vtctldata.DeleteCellsAliasRequest
+ (*vtctldata.DeleteKeyspaceRequest)(nil), // 20: vtctldata.DeleteKeyspaceRequest
+ (*vtctldata.DeleteShardsRequest)(nil), // 21: vtctldata.DeleteShardsRequest
+ (*vtctldata.DeleteSrvVSchemaRequest)(nil), // 22: vtctldata.DeleteSrvVSchemaRequest
+ (*vtctldata.DeleteTabletsRequest)(nil), // 23: vtctldata.DeleteTabletsRequest
+ (*vtctldata.EmergencyReparentShardRequest)(nil), // 24: vtctldata.EmergencyReparentShardRequest
+ (*vtctldata.ExecuteFetchAsAppRequest)(nil), // 25: vtctldata.ExecuteFetchAsAppRequest
+ (*vtctldata.ExecuteFetchAsDBARequest)(nil), // 26: vtctldata.ExecuteFetchAsDBARequest
+ (*vtctldata.ExecuteHookRequest)(nil), // 27: vtctldata.ExecuteHookRequest
+ (*vtctldata.ExecuteMultiFetchAsDBARequest)(nil), // 28: vtctldata.ExecuteMultiFetchAsDBARequest
+ (*vtctldata.FindAllShardsInKeyspaceRequest)(nil), // 29: vtctldata.FindAllShardsInKeyspaceRequest
+ (*vtctldata.ForceCutOverSchemaMigrationRequest)(nil), // 30: vtctldata.ForceCutOverSchemaMigrationRequest
+ (*vtctldata.GetBackupsRequest)(nil), // 31: vtctldata.GetBackupsRequest
+ (*vtctldata.GetCellInfoRequest)(nil), // 32: vtctldata.GetCellInfoRequest
+ (*vtctldata.GetCellInfoNamesRequest)(nil), // 33: vtctldata.GetCellInfoNamesRequest
+ (*vtctldata.GetCellsAliasesRequest)(nil), // 34: vtctldata.GetCellsAliasesRequest
+ (*vtctldata.GetFullStatusRequest)(nil), // 35: vtctldata.GetFullStatusRequest
+ (*vtctldata.GetKeyspaceRequest)(nil), // 36: vtctldata.GetKeyspaceRequest
+ (*vtctldata.GetKeyspacesRequest)(nil), // 37: vtctldata.GetKeyspacesRequest
+ (*vtctldata.GetKeyspaceRoutingRulesRequest)(nil), // 38: vtctldata.GetKeyspaceRoutingRulesRequest
+ (*vtctldata.GetPermissionsRequest)(nil), // 39: vtctldata.GetPermissionsRequest
+ (*vtctldata.GetRoutingRulesRequest)(nil), // 40: vtctldata.GetRoutingRulesRequest
+ (*vtctldata.GetSchemaRequest)(nil), // 41: vtctldata.GetSchemaRequest
+ (*vtctldata.GetSchemaMigrationsRequest)(nil), // 42: vtctldata.GetSchemaMigrationsRequest
+ (*vtctldata.GetShardReplicationRequest)(nil), // 43: vtctldata.GetShardReplicationRequest
+ (*vtctldata.GetShardRequest)(nil), // 44: vtctldata.GetShardRequest
+ (*vtctldata.GetShardRoutingRulesRequest)(nil), // 45: vtctldata.GetShardRoutingRulesRequest
+ (*vtctldata.GetSrvKeyspaceNamesRequest)(nil), // 46: vtctldata.GetSrvKeyspaceNamesRequest
+ (*vtctldata.GetSrvKeyspacesRequest)(nil), // 47: vtctldata.GetSrvKeyspacesRequest
+ (*vtctldata.UpdateThrottlerConfigRequest)(nil), // 48: vtctldata.UpdateThrottlerConfigRequest
+ (*vtctldata.GetSrvVSchemaRequest)(nil), // 49: vtctldata.GetSrvVSchemaRequest
+ (*vtctldata.GetSrvVSchemasRequest)(nil), // 50: vtctldata.GetSrvVSchemasRequest
+ (*vtctldata.GetTabletRequest)(nil), // 51: vtctldata.GetTabletRequest
+ (*vtctldata.GetTabletsRequest)(nil), // 52: vtctldata.GetTabletsRequest
+ (*vtctldata.GetThrottlerStatusRequest)(nil), // 53: vtctldata.GetThrottlerStatusRequest
+ (*vtctldata.GetTopologyPathRequest)(nil), // 54: vtctldata.GetTopologyPathRequest
+ (*vtctldata.GetUnresolvedTransactionsRequest)(nil), // 55: vtctldata.GetUnresolvedTransactionsRequest
+ (*vtctldata.GetVersionRequest)(nil), // 56: vtctldata.GetVersionRequest
+ (*vtctldata.GetVSchemaRequest)(nil), // 57: vtctldata.GetVSchemaRequest
+ (*vtctldata.GetWorkflowsRequest)(nil), // 58: vtctldata.GetWorkflowsRequest
+ (*vtctldata.InitShardPrimaryRequest)(nil), // 59: vtctldata.InitShardPrimaryRequest
+ (*vtctldata.LaunchSchemaMigrationRequest)(nil), // 60: vtctldata.LaunchSchemaMigrationRequest
+ (*vtctldata.LookupVindexCreateRequest)(nil), // 61: vtctldata.LookupVindexCreateRequest
+ (*vtctldata.LookupVindexExternalizeRequest)(nil), // 62: vtctldata.LookupVindexExternalizeRequest
+ (*vtctldata.MaterializeCreateRequest)(nil), // 63: vtctldata.MaterializeCreateRequest
+ (*vtctldata.MigrateCreateRequest)(nil), // 64: vtctldata.MigrateCreateRequest
+ (*vtctldata.MountRegisterRequest)(nil), // 65: vtctldata.MountRegisterRequest
+ (*vtctldata.MountUnregisterRequest)(nil), // 66: vtctldata.MountUnregisterRequest
+ (*vtctldata.MountShowRequest)(nil), // 67: vtctldata.MountShowRequest
+ (*vtctldata.MountListRequest)(nil), // 68: vtctldata.MountListRequest
+ (*vtctldata.MoveTablesCreateRequest)(nil), // 69: vtctldata.MoveTablesCreateRequest
+ (*vtctldata.MoveTablesCompleteRequest)(nil), // 70: vtctldata.MoveTablesCompleteRequest
+ (*vtctldata.PingTabletRequest)(nil), // 71: vtctldata.PingTabletRequest
+ (*vtctldata.PlannedReparentShardRequest)(nil), // 72: vtctldata.PlannedReparentShardRequest
+ (*vtctldata.RebuildKeyspaceGraphRequest)(nil), // 73: vtctldata.RebuildKeyspaceGraphRequest
+ (*vtctldata.RebuildVSchemaGraphRequest)(nil), // 74: vtctldata.RebuildVSchemaGraphRequest
+ (*vtctldata.RefreshStateRequest)(nil), // 75: vtctldata.RefreshStateRequest
+ (*vtctldata.RefreshStateByShardRequest)(nil), // 76: vtctldata.RefreshStateByShardRequest
+ (*vtctldata.ReloadSchemaRequest)(nil), // 77: vtctldata.ReloadSchemaRequest
+ (*vtctldata.ReloadSchemaKeyspaceRequest)(nil), // 78: vtctldata.ReloadSchemaKeyspaceRequest
+ (*vtctldata.ReloadSchemaShardRequest)(nil), // 79: vtctldata.ReloadSchemaShardRequest
+ (*vtctldata.RemoveBackupRequest)(nil), // 80: vtctldata.RemoveBackupRequest
+ (*vtctldata.RemoveKeyspaceCellRequest)(nil), // 81: vtctldata.RemoveKeyspaceCellRequest
+ (*vtctldata.RemoveShardCellRequest)(nil), // 82: vtctldata.RemoveShardCellRequest
+ (*vtctldata.ReparentTabletRequest)(nil), // 83: vtctldata.ReparentTabletRequest
+ (*vtctldata.ReshardCreateRequest)(nil), // 84: vtctldata.ReshardCreateRequest
+ (*vtctldata.RestoreFromBackupRequest)(nil), // 85: vtctldata.RestoreFromBackupRequest
+ (*vtctldata.RetrySchemaMigrationRequest)(nil), // 86: vtctldata.RetrySchemaMigrationRequest
+ (*vtctldata.RunHealthCheckRequest)(nil), // 87: vtctldata.RunHealthCheckRequest
+ (*vtctldata.SetKeyspaceDurabilityPolicyRequest)(nil), // 88: vtctldata.SetKeyspaceDurabilityPolicyRequest
+ (*vtctldata.SetShardIsPrimaryServingRequest)(nil), // 89: vtctldata.SetShardIsPrimaryServingRequest
+ (*vtctldata.SetShardTabletControlRequest)(nil), // 90: vtctldata.SetShardTabletControlRequest
+ (*vtctldata.SetWritableRequest)(nil), // 91: vtctldata.SetWritableRequest
+ (*vtctldata.ShardReplicationAddRequest)(nil), // 92: vtctldata.ShardReplicationAddRequest
+ (*vtctldata.ShardReplicationFixRequest)(nil), // 93: vtctldata.ShardReplicationFixRequest
+ (*vtctldata.ShardReplicationPositionsRequest)(nil), // 94: vtctldata.ShardReplicationPositionsRequest
+ (*vtctldata.ShardReplicationRemoveRequest)(nil), // 95: vtctldata.ShardReplicationRemoveRequest
+ (*vtctldata.SleepTabletRequest)(nil), // 96: vtctldata.SleepTabletRequest
+ (*vtctldata.SourceShardAddRequest)(nil), // 97: vtctldata.SourceShardAddRequest
+ (*vtctldata.SourceShardDeleteRequest)(nil), // 98: vtctldata.SourceShardDeleteRequest
+ (*vtctldata.StartReplicationRequest)(nil), // 99: vtctldata.StartReplicationRequest
+ (*vtctldata.StopReplicationRequest)(nil), // 100: vtctldata.StopReplicationRequest
+ (*vtctldata.TabletExternallyReparentedRequest)(nil), // 101: vtctldata.TabletExternallyReparentedRequest
+ (*vtctldata.UpdateCellInfoRequest)(nil), // 102: vtctldata.UpdateCellInfoRequest
+ (*vtctldata.UpdateCellsAliasRequest)(nil), // 103: vtctldata.UpdateCellsAliasRequest
+ (*vtctldata.ValidateRequest)(nil), // 104: vtctldata.ValidateRequest
+ (*vtctldata.ValidateKeyspaceRequest)(nil), // 105: vtctldata.ValidateKeyspaceRequest
+ (*vtctldata.ValidateSchemaKeyspaceRequest)(nil), // 106: vtctldata.ValidateSchemaKeyspaceRequest
+ (*vtctldata.ValidateShardRequest)(nil), // 107: vtctldata.ValidateShardRequest
+ (*vtctldata.ValidateVersionKeyspaceRequest)(nil), // 108: vtctldata.ValidateVersionKeyspaceRequest
+ (*vtctldata.ValidateVersionShardRequest)(nil), // 109: vtctldata.ValidateVersionShardRequest
+ (*vtctldata.ValidateVSchemaRequest)(nil), // 110: vtctldata.ValidateVSchemaRequest
+ (*vtctldata.VDiffCreateRequest)(nil), // 111: vtctldata.VDiffCreateRequest
+ (*vtctldata.VDiffDeleteRequest)(nil), // 112: vtctldata.VDiffDeleteRequest
+ (*vtctldata.VDiffResumeRequest)(nil), // 113: vtctldata.VDiffResumeRequest
+ (*vtctldata.VDiffShowRequest)(nil), // 114: vtctldata.VDiffShowRequest
+ (*vtctldata.VDiffStopRequest)(nil), // 115: vtctldata.VDiffStopRequest
+ (*vtctldata.WorkflowDeleteRequest)(nil), // 116: vtctldata.WorkflowDeleteRequest
+ (*vtctldata.WorkflowStatusRequest)(nil), // 117: vtctldata.WorkflowStatusRequest
+ (*vtctldata.WorkflowSwitchTrafficRequest)(nil), // 118: vtctldata.WorkflowSwitchTrafficRequest
+ (*vtctldata.WorkflowUpdateRequest)(nil), // 119: vtctldata.WorkflowUpdateRequest
+ (*vtctldata.GetMirrorRulesRequest)(nil), // 120: vtctldata.GetMirrorRulesRequest
+ (*vtctldata.WorkflowMirrorTrafficRequest)(nil), // 121: vtctldata.WorkflowMirrorTrafficRequest
+ (*vtctldata.ExecuteVtctlCommandResponse)(nil), // 122: vtctldata.ExecuteVtctlCommandResponse
+ (*vtctldata.AddCellInfoResponse)(nil), // 123: vtctldata.AddCellInfoResponse
+ (*vtctldata.AddCellsAliasResponse)(nil), // 124: vtctldata.AddCellsAliasResponse
+ (*vtctldata.ApplyRoutingRulesResponse)(nil), // 125: vtctldata.ApplyRoutingRulesResponse
+ (*vtctldata.ApplySchemaResponse)(nil), // 126: vtctldata.ApplySchemaResponse
+ (*vtctldata.ApplyKeyspaceRoutingRulesResponse)(nil), // 127: vtctldata.ApplyKeyspaceRoutingRulesResponse
+ (*vtctldata.ApplyShardRoutingRulesResponse)(nil), // 128: vtctldata.ApplyShardRoutingRulesResponse
+ (*vtctldata.ApplyVSchemaResponse)(nil), // 129: vtctldata.ApplyVSchemaResponse
+ (*vtctldata.BackupResponse)(nil), // 130: vtctldata.BackupResponse
+ (*vtctldata.CancelSchemaMigrationResponse)(nil), // 131: vtctldata.CancelSchemaMigrationResponse
+ (*vtctldata.ChangeTabletTypeResponse)(nil), // 132: vtctldata.ChangeTabletTypeResponse
+ (*vtctldata.CheckThrottlerResponse)(nil), // 133: vtctldata.CheckThrottlerResponse
+ (*vtctldata.CleanupSchemaMigrationResponse)(nil), // 134: vtctldata.CleanupSchemaMigrationResponse
+ (*vtctldata.CompleteSchemaMigrationResponse)(nil), // 135: vtctldata.CompleteSchemaMigrationResponse
+ (*vtctldata.ConcludeTransactionResponse)(nil), // 136: vtctldata.ConcludeTransactionResponse
+ (*vtctldata.CreateKeyspaceResponse)(nil), // 137: vtctldata.CreateKeyspaceResponse
+ (*vtctldata.CreateShardResponse)(nil), // 138: vtctldata.CreateShardResponse
+ (*vtctldata.DeleteCellInfoResponse)(nil), // 139: vtctldata.DeleteCellInfoResponse
+ (*vtctldata.DeleteCellsAliasResponse)(nil), // 140: vtctldata.DeleteCellsAliasResponse
+ (*vtctldata.DeleteKeyspaceResponse)(nil), // 141: vtctldata.DeleteKeyspaceResponse
+ (*vtctldata.DeleteShardsResponse)(nil), // 142: vtctldata.DeleteShardsResponse
+ (*vtctldata.DeleteSrvVSchemaResponse)(nil), // 143: vtctldata.DeleteSrvVSchemaResponse
+ (*vtctldata.DeleteTabletsResponse)(nil), // 144: vtctldata.DeleteTabletsResponse
+ (*vtctldata.EmergencyReparentShardResponse)(nil), // 145: vtctldata.EmergencyReparentShardResponse
+ (*vtctldata.ExecuteFetchAsAppResponse)(nil), // 146: vtctldata.ExecuteFetchAsAppResponse
+ (*vtctldata.ExecuteFetchAsDBAResponse)(nil), // 147: vtctldata.ExecuteFetchAsDBAResponse
+ (*vtctldata.ExecuteHookResponse)(nil), // 148: vtctldata.ExecuteHookResponse
+ (*vtctldata.ExecuteMultiFetchAsDBAResponse)(nil), // 149: vtctldata.ExecuteMultiFetchAsDBAResponse
+ (*vtctldata.FindAllShardsInKeyspaceResponse)(nil), // 150: vtctldata.FindAllShardsInKeyspaceResponse
+ (*vtctldata.ForceCutOverSchemaMigrationResponse)(nil), // 151: vtctldata.ForceCutOverSchemaMigrationResponse
+ (*vtctldata.GetBackupsResponse)(nil), // 152: vtctldata.GetBackupsResponse
+ (*vtctldata.GetCellInfoResponse)(nil), // 153: vtctldata.GetCellInfoResponse
+ (*vtctldata.GetCellInfoNamesResponse)(nil), // 154: vtctldata.GetCellInfoNamesResponse
+ (*vtctldata.GetCellsAliasesResponse)(nil), // 155: vtctldata.GetCellsAliasesResponse
+ (*vtctldata.GetFullStatusResponse)(nil), // 156: vtctldata.GetFullStatusResponse
+ (*vtctldata.GetKeyspaceResponse)(nil), // 157: vtctldata.GetKeyspaceResponse
+ (*vtctldata.GetKeyspacesResponse)(nil), // 158: vtctldata.GetKeyspacesResponse
+ (*vtctldata.GetKeyspaceRoutingRulesResponse)(nil), // 159: vtctldata.GetKeyspaceRoutingRulesResponse
+ (*vtctldata.GetPermissionsResponse)(nil), // 160: vtctldata.GetPermissionsResponse
+ (*vtctldata.GetRoutingRulesResponse)(nil), // 161: vtctldata.GetRoutingRulesResponse
+ (*vtctldata.GetSchemaResponse)(nil), // 162: vtctldata.GetSchemaResponse
+ (*vtctldata.GetSchemaMigrationsResponse)(nil), // 163: vtctldata.GetSchemaMigrationsResponse
+ (*vtctldata.GetShardReplicationResponse)(nil), // 164: vtctldata.GetShardReplicationResponse
+ (*vtctldata.GetShardResponse)(nil), // 165: vtctldata.GetShardResponse
+ (*vtctldata.GetShardRoutingRulesResponse)(nil), // 166: vtctldata.GetShardRoutingRulesResponse
+ (*vtctldata.GetSrvKeyspaceNamesResponse)(nil), // 167: vtctldata.GetSrvKeyspaceNamesResponse
+ (*vtctldata.GetSrvKeyspacesResponse)(nil), // 168: vtctldata.GetSrvKeyspacesResponse
+ (*vtctldata.UpdateThrottlerConfigResponse)(nil), // 169: vtctldata.UpdateThrottlerConfigResponse
+ (*vtctldata.GetSrvVSchemaResponse)(nil), // 170: vtctldata.GetSrvVSchemaResponse
+ (*vtctldata.GetSrvVSchemasResponse)(nil), // 171: vtctldata.GetSrvVSchemasResponse
+ (*vtctldata.GetTabletResponse)(nil), // 172: vtctldata.GetTabletResponse
+ (*vtctldata.GetTabletsResponse)(nil), // 173: vtctldata.GetTabletsResponse
+ (*vtctldata.GetThrottlerStatusResponse)(nil), // 174: vtctldata.GetThrottlerStatusResponse
+ (*vtctldata.GetTopologyPathResponse)(nil), // 175: vtctldata.GetTopologyPathResponse
+ (*vtctldata.GetUnresolvedTransactionsResponse)(nil), // 176: vtctldata.GetUnresolvedTransactionsResponse
+ (*vtctldata.GetVersionResponse)(nil), // 177: vtctldata.GetVersionResponse
+ (*vtctldata.GetVSchemaResponse)(nil), // 178: vtctldata.GetVSchemaResponse
+ (*vtctldata.GetWorkflowsResponse)(nil), // 179: vtctldata.GetWorkflowsResponse
+ (*vtctldata.InitShardPrimaryResponse)(nil), // 180: vtctldata.InitShardPrimaryResponse
+ (*vtctldata.LaunchSchemaMigrationResponse)(nil), // 181: vtctldata.LaunchSchemaMigrationResponse
+ (*vtctldata.LookupVindexCreateResponse)(nil), // 182: vtctldata.LookupVindexCreateResponse
+ (*vtctldata.LookupVindexExternalizeResponse)(nil), // 183: vtctldata.LookupVindexExternalizeResponse
+ (*vtctldata.MaterializeCreateResponse)(nil), // 184: vtctldata.MaterializeCreateResponse
+ (*vtctldata.WorkflowStatusResponse)(nil), // 185: vtctldata.WorkflowStatusResponse
+ (*vtctldata.MountRegisterResponse)(nil), // 186: vtctldata.MountRegisterResponse
+ (*vtctldata.MountUnregisterResponse)(nil), // 187: vtctldata.MountUnregisterResponse
+ (*vtctldata.MountShowResponse)(nil), // 188: vtctldata.MountShowResponse
+ (*vtctldata.MountListResponse)(nil), // 189: vtctldata.MountListResponse
+ (*vtctldata.MoveTablesCompleteResponse)(nil), // 190: vtctldata.MoveTablesCompleteResponse
+ (*vtctldata.PingTabletResponse)(nil), // 191: vtctldata.PingTabletResponse
+ (*vtctldata.PlannedReparentShardResponse)(nil), // 192: vtctldata.PlannedReparentShardResponse
+ (*vtctldata.RebuildKeyspaceGraphResponse)(nil), // 193: vtctldata.RebuildKeyspaceGraphResponse
+ (*vtctldata.RebuildVSchemaGraphResponse)(nil), // 194: vtctldata.RebuildVSchemaGraphResponse
+ (*vtctldata.RefreshStateResponse)(nil), // 195: vtctldata.RefreshStateResponse
+ (*vtctldata.RefreshStateByShardResponse)(nil), // 196: vtctldata.RefreshStateByShardResponse
+ (*vtctldata.ReloadSchemaResponse)(nil), // 197: vtctldata.ReloadSchemaResponse
+ (*vtctldata.ReloadSchemaKeyspaceResponse)(nil), // 198: vtctldata.ReloadSchemaKeyspaceResponse
+ (*vtctldata.ReloadSchemaShardResponse)(nil), // 199: vtctldata.ReloadSchemaShardResponse
+ (*vtctldata.RemoveBackupResponse)(nil), // 200: vtctldata.RemoveBackupResponse
+ (*vtctldata.RemoveKeyspaceCellResponse)(nil), // 201: vtctldata.RemoveKeyspaceCellResponse
+ (*vtctldata.RemoveShardCellResponse)(nil), // 202: vtctldata.RemoveShardCellResponse
+ (*vtctldata.ReparentTabletResponse)(nil), // 203: vtctldata.ReparentTabletResponse
+ (*vtctldata.RestoreFromBackupResponse)(nil), // 204: vtctldata.RestoreFromBackupResponse
+ (*vtctldata.RetrySchemaMigrationResponse)(nil), // 205: vtctldata.RetrySchemaMigrationResponse
+ (*vtctldata.RunHealthCheckResponse)(nil), // 206: vtctldata.RunHealthCheckResponse
+ (*vtctldata.SetKeyspaceDurabilityPolicyResponse)(nil), // 207: vtctldata.SetKeyspaceDurabilityPolicyResponse
+ (*vtctldata.SetShardIsPrimaryServingResponse)(nil), // 208: vtctldata.SetShardIsPrimaryServingResponse
+ (*vtctldata.SetShardTabletControlResponse)(nil), // 209: vtctldata.SetShardTabletControlResponse
+ (*vtctldata.SetWritableResponse)(nil), // 210: vtctldata.SetWritableResponse
+ (*vtctldata.ShardReplicationAddResponse)(nil), // 211: vtctldata.ShardReplicationAddResponse
+ (*vtctldata.ShardReplicationFixResponse)(nil), // 212: vtctldata.ShardReplicationFixResponse
+ (*vtctldata.ShardReplicationPositionsResponse)(nil), // 213: vtctldata.ShardReplicationPositionsResponse
+ (*vtctldata.ShardReplicationRemoveResponse)(nil), // 214: vtctldata.ShardReplicationRemoveResponse
+ (*vtctldata.SleepTabletResponse)(nil), // 215: vtctldata.SleepTabletResponse
+ (*vtctldata.SourceShardAddResponse)(nil), // 216: vtctldata.SourceShardAddResponse
+ (*vtctldata.SourceShardDeleteResponse)(nil), // 217: vtctldata.SourceShardDeleteResponse
+ (*vtctldata.StartReplicationResponse)(nil), // 218: vtctldata.StartReplicationResponse
+ (*vtctldata.StopReplicationResponse)(nil), // 219: vtctldata.StopReplicationResponse
+ (*vtctldata.TabletExternallyReparentedResponse)(nil), // 220: vtctldata.TabletExternallyReparentedResponse
+ (*vtctldata.UpdateCellInfoResponse)(nil), // 221: vtctldata.UpdateCellInfoResponse
+ (*vtctldata.UpdateCellsAliasResponse)(nil), // 222: vtctldata.UpdateCellsAliasResponse
+ (*vtctldata.ValidateResponse)(nil), // 223: vtctldata.ValidateResponse
+ (*vtctldata.ValidateKeyspaceResponse)(nil), // 224: vtctldata.ValidateKeyspaceResponse
+ (*vtctldata.ValidateSchemaKeyspaceResponse)(nil), // 225: vtctldata.ValidateSchemaKeyspaceResponse
+ (*vtctldata.ValidateShardResponse)(nil), // 226: vtctldata.ValidateShardResponse
+ (*vtctldata.ValidateVersionKeyspaceResponse)(nil), // 227: vtctldata.ValidateVersionKeyspaceResponse
+ (*vtctldata.ValidateVersionShardResponse)(nil), // 228: vtctldata.ValidateVersionShardResponse
+ (*vtctldata.ValidateVSchemaResponse)(nil), // 229: vtctldata.ValidateVSchemaResponse
+ (*vtctldata.VDiffCreateResponse)(nil), // 230: vtctldata.VDiffCreateResponse
+ (*vtctldata.VDiffDeleteResponse)(nil), // 231: vtctldata.VDiffDeleteResponse
+ (*vtctldata.VDiffResumeResponse)(nil), // 232: vtctldata.VDiffResumeResponse
+ (*vtctldata.VDiffShowResponse)(nil), // 233: vtctldata.VDiffShowResponse
+ (*vtctldata.VDiffStopResponse)(nil), // 234: vtctldata.VDiffStopResponse
+ (*vtctldata.WorkflowDeleteResponse)(nil), // 235: vtctldata.WorkflowDeleteResponse
+ (*vtctldata.WorkflowSwitchTrafficResponse)(nil), // 236: vtctldata.WorkflowSwitchTrafficResponse
+ (*vtctldata.WorkflowUpdateResponse)(nil), // 237: vtctldata.WorkflowUpdateResponse
+ (*vtctldata.GetMirrorRulesResponse)(nil), // 238: vtctldata.GetMirrorRulesResponse
+ (*vtctldata.WorkflowMirrorTrafficResponse)(nil), // 239: vtctldata.WorkflowMirrorTrafficResponse
}
var file_vtctlservice_proto_depIdxs = []int32{
0, // 0: vtctlservice.Vtctl.ExecuteVtctlCommand:input_type -> vtctldata.ExecuteVtctlCommandRequest
@@ -1023,235 +1031,237 @@ var file_vtctlservice_proto_depIdxs = []int32{
12, // 12: vtctlservice.Vtctld.CheckThrottler:input_type -> vtctldata.CheckThrottlerRequest
13, // 13: vtctlservice.Vtctld.CleanupSchemaMigration:input_type -> vtctldata.CleanupSchemaMigrationRequest
14, // 14: vtctlservice.Vtctld.CompleteSchemaMigration:input_type -> vtctldata.CompleteSchemaMigrationRequest
- 15, // 15: vtctlservice.Vtctld.CreateKeyspace:input_type -> vtctldata.CreateKeyspaceRequest
- 16, // 16: vtctlservice.Vtctld.CreateShard:input_type -> vtctldata.CreateShardRequest
- 17, // 17: vtctlservice.Vtctld.DeleteCellInfo:input_type -> vtctldata.DeleteCellInfoRequest
- 18, // 18: vtctlservice.Vtctld.DeleteCellsAlias:input_type -> vtctldata.DeleteCellsAliasRequest
- 19, // 19: vtctlservice.Vtctld.DeleteKeyspace:input_type -> vtctldata.DeleteKeyspaceRequest
- 20, // 20: vtctlservice.Vtctld.DeleteShards:input_type -> vtctldata.DeleteShardsRequest
- 21, // 21: vtctlservice.Vtctld.DeleteSrvVSchema:input_type -> vtctldata.DeleteSrvVSchemaRequest
- 22, // 22: vtctlservice.Vtctld.DeleteTablets:input_type -> vtctldata.DeleteTabletsRequest
- 23, // 23: vtctlservice.Vtctld.EmergencyReparentShard:input_type -> vtctldata.EmergencyReparentShardRequest
- 24, // 24: vtctlservice.Vtctld.ExecuteFetchAsApp:input_type -> vtctldata.ExecuteFetchAsAppRequest
- 25, // 25: vtctlservice.Vtctld.ExecuteFetchAsDBA:input_type -> vtctldata.ExecuteFetchAsDBARequest
- 26, // 26: vtctlservice.Vtctld.ExecuteHook:input_type -> vtctldata.ExecuteHookRequest
- 27, // 27: vtctlservice.Vtctld.ExecuteMultiFetchAsDBA:input_type -> vtctldata.ExecuteMultiFetchAsDBARequest
- 28, // 28: vtctlservice.Vtctld.FindAllShardsInKeyspace:input_type -> vtctldata.FindAllShardsInKeyspaceRequest
- 29, // 29: vtctlservice.Vtctld.ForceCutOverSchemaMigration:input_type -> vtctldata.ForceCutOverSchemaMigrationRequest
- 30, // 30: vtctlservice.Vtctld.GetBackups:input_type -> vtctldata.GetBackupsRequest
- 31, // 31: vtctlservice.Vtctld.GetCellInfo:input_type -> vtctldata.GetCellInfoRequest
- 32, // 32: vtctlservice.Vtctld.GetCellInfoNames:input_type -> vtctldata.GetCellInfoNamesRequest
- 33, // 33: vtctlservice.Vtctld.GetCellsAliases:input_type -> vtctldata.GetCellsAliasesRequest
- 34, // 34: vtctlservice.Vtctld.GetFullStatus:input_type -> vtctldata.GetFullStatusRequest
- 35, // 35: vtctlservice.Vtctld.GetKeyspace:input_type -> vtctldata.GetKeyspaceRequest
- 36, // 36: vtctlservice.Vtctld.GetKeyspaces:input_type -> vtctldata.GetKeyspacesRequest
- 37, // 37: vtctlservice.Vtctld.GetKeyspaceRoutingRules:input_type -> vtctldata.GetKeyspaceRoutingRulesRequest
- 38, // 38: vtctlservice.Vtctld.GetPermissions:input_type -> vtctldata.GetPermissionsRequest
- 39, // 39: vtctlservice.Vtctld.GetRoutingRules:input_type -> vtctldata.GetRoutingRulesRequest
- 40, // 40: vtctlservice.Vtctld.GetSchema:input_type -> vtctldata.GetSchemaRequest
- 41, // 41: vtctlservice.Vtctld.GetSchemaMigrations:input_type -> vtctldata.GetSchemaMigrationsRequest
- 42, // 42: vtctlservice.Vtctld.GetShardReplication:input_type -> vtctldata.GetShardReplicationRequest
- 43, // 43: vtctlservice.Vtctld.GetShard:input_type -> vtctldata.GetShardRequest
- 44, // 44: vtctlservice.Vtctld.GetShardRoutingRules:input_type -> vtctldata.GetShardRoutingRulesRequest
- 45, // 45: vtctlservice.Vtctld.GetSrvKeyspaceNames:input_type -> vtctldata.GetSrvKeyspaceNamesRequest
- 46, // 46: vtctlservice.Vtctld.GetSrvKeyspaces:input_type -> vtctldata.GetSrvKeyspacesRequest
- 47, // 47: vtctlservice.Vtctld.UpdateThrottlerConfig:input_type -> vtctldata.UpdateThrottlerConfigRequest
- 48, // 48: vtctlservice.Vtctld.GetSrvVSchema:input_type -> vtctldata.GetSrvVSchemaRequest
- 49, // 49: vtctlservice.Vtctld.GetSrvVSchemas:input_type -> vtctldata.GetSrvVSchemasRequest
- 50, // 50: vtctlservice.Vtctld.GetTablet:input_type -> vtctldata.GetTabletRequest
- 51, // 51: vtctlservice.Vtctld.GetTablets:input_type -> vtctldata.GetTabletsRequest
- 52, // 52: vtctlservice.Vtctld.GetThrottlerStatus:input_type -> vtctldata.GetThrottlerStatusRequest
- 53, // 53: vtctlservice.Vtctld.GetTopologyPath:input_type -> vtctldata.GetTopologyPathRequest
- 54, // 54: vtctlservice.Vtctld.GetUnresolvedTransactions:input_type -> vtctldata.GetUnresolvedTransactionsRequest
- 55, // 55: vtctlservice.Vtctld.GetVersion:input_type -> vtctldata.GetVersionRequest
- 56, // 56: vtctlservice.Vtctld.GetVSchema:input_type -> vtctldata.GetVSchemaRequest
- 57, // 57: vtctlservice.Vtctld.GetWorkflows:input_type -> vtctldata.GetWorkflowsRequest
- 58, // 58: vtctlservice.Vtctld.InitShardPrimary:input_type -> vtctldata.InitShardPrimaryRequest
- 59, // 59: vtctlservice.Vtctld.LaunchSchemaMigration:input_type -> vtctldata.LaunchSchemaMigrationRequest
- 60, // 60: vtctlservice.Vtctld.LookupVindexCreate:input_type -> vtctldata.LookupVindexCreateRequest
- 61, // 61: vtctlservice.Vtctld.LookupVindexExternalize:input_type -> vtctldata.LookupVindexExternalizeRequest
- 62, // 62: vtctlservice.Vtctld.MaterializeCreate:input_type -> vtctldata.MaterializeCreateRequest
- 63, // 63: vtctlservice.Vtctld.MigrateCreate:input_type -> vtctldata.MigrateCreateRequest
- 64, // 64: vtctlservice.Vtctld.MountRegister:input_type -> vtctldata.MountRegisterRequest
- 65, // 65: vtctlservice.Vtctld.MountUnregister:input_type -> vtctldata.MountUnregisterRequest
- 66, // 66: vtctlservice.Vtctld.MountShow:input_type -> vtctldata.MountShowRequest
- 67, // 67: vtctlservice.Vtctld.MountList:input_type -> vtctldata.MountListRequest
- 68, // 68: vtctlservice.Vtctld.MoveTablesCreate:input_type -> vtctldata.MoveTablesCreateRequest
- 69, // 69: vtctlservice.Vtctld.MoveTablesComplete:input_type -> vtctldata.MoveTablesCompleteRequest
- 70, // 70: vtctlservice.Vtctld.PingTablet:input_type -> vtctldata.PingTabletRequest
- 71, // 71: vtctlservice.Vtctld.PlannedReparentShard:input_type -> vtctldata.PlannedReparentShardRequest
- 72, // 72: vtctlservice.Vtctld.RebuildKeyspaceGraph:input_type -> vtctldata.RebuildKeyspaceGraphRequest
- 73, // 73: vtctlservice.Vtctld.RebuildVSchemaGraph:input_type -> vtctldata.RebuildVSchemaGraphRequest
- 74, // 74: vtctlservice.Vtctld.RefreshState:input_type -> vtctldata.RefreshStateRequest
- 75, // 75: vtctlservice.Vtctld.RefreshStateByShard:input_type -> vtctldata.RefreshStateByShardRequest
- 76, // 76: vtctlservice.Vtctld.ReloadSchema:input_type -> vtctldata.ReloadSchemaRequest
- 77, // 77: vtctlservice.Vtctld.ReloadSchemaKeyspace:input_type -> vtctldata.ReloadSchemaKeyspaceRequest
- 78, // 78: vtctlservice.Vtctld.ReloadSchemaShard:input_type -> vtctldata.ReloadSchemaShardRequest
- 79, // 79: vtctlservice.Vtctld.RemoveBackup:input_type -> vtctldata.RemoveBackupRequest
- 80, // 80: vtctlservice.Vtctld.RemoveKeyspaceCell:input_type -> vtctldata.RemoveKeyspaceCellRequest
- 81, // 81: vtctlservice.Vtctld.RemoveShardCell:input_type -> vtctldata.RemoveShardCellRequest
- 82, // 82: vtctlservice.Vtctld.ReparentTablet:input_type -> vtctldata.ReparentTabletRequest
- 83, // 83: vtctlservice.Vtctld.ReshardCreate:input_type -> vtctldata.ReshardCreateRequest
- 84, // 84: vtctlservice.Vtctld.RestoreFromBackup:input_type -> vtctldata.RestoreFromBackupRequest
- 85, // 85: vtctlservice.Vtctld.RetrySchemaMigration:input_type -> vtctldata.RetrySchemaMigrationRequest
- 86, // 86: vtctlservice.Vtctld.RunHealthCheck:input_type -> vtctldata.RunHealthCheckRequest
- 87, // 87: vtctlservice.Vtctld.SetKeyspaceDurabilityPolicy:input_type -> vtctldata.SetKeyspaceDurabilityPolicyRequest
- 88, // 88: vtctlservice.Vtctld.SetShardIsPrimaryServing:input_type -> vtctldata.SetShardIsPrimaryServingRequest
- 89, // 89: vtctlservice.Vtctld.SetShardTabletControl:input_type -> vtctldata.SetShardTabletControlRequest
- 90, // 90: vtctlservice.Vtctld.SetWritable:input_type -> vtctldata.SetWritableRequest
- 91, // 91: vtctlservice.Vtctld.ShardReplicationAdd:input_type -> vtctldata.ShardReplicationAddRequest
- 92, // 92: vtctlservice.Vtctld.ShardReplicationFix:input_type -> vtctldata.ShardReplicationFixRequest
- 93, // 93: vtctlservice.Vtctld.ShardReplicationPositions:input_type -> vtctldata.ShardReplicationPositionsRequest
- 94, // 94: vtctlservice.Vtctld.ShardReplicationRemove:input_type -> vtctldata.ShardReplicationRemoveRequest
- 95, // 95: vtctlservice.Vtctld.SleepTablet:input_type -> vtctldata.SleepTabletRequest
- 96, // 96: vtctlservice.Vtctld.SourceShardAdd:input_type -> vtctldata.SourceShardAddRequest
- 97, // 97: vtctlservice.Vtctld.SourceShardDelete:input_type -> vtctldata.SourceShardDeleteRequest
- 98, // 98: vtctlservice.Vtctld.StartReplication:input_type -> vtctldata.StartReplicationRequest
- 99, // 99: vtctlservice.Vtctld.StopReplication:input_type -> vtctldata.StopReplicationRequest
- 100, // 100: vtctlservice.Vtctld.TabletExternallyReparented:input_type -> vtctldata.TabletExternallyReparentedRequest
- 101, // 101: vtctlservice.Vtctld.UpdateCellInfo:input_type -> vtctldata.UpdateCellInfoRequest
- 102, // 102: vtctlservice.Vtctld.UpdateCellsAlias:input_type -> vtctldata.UpdateCellsAliasRequest
- 103, // 103: vtctlservice.Vtctld.Validate:input_type -> vtctldata.ValidateRequest
- 104, // 104: vtctlservice.Vtctld.ValidateKeyspace:input_type -> vtctldata.ValidateKeyspaceRequest
- 105, // 105: vtctlservice.Vtctld.ValidateSchemaKeyspace:input_type -> vtctldata.ValidateSchemaKeyspaceRequest
- 106, // 106: vtctlservice.Vtctld.ValidateShard:input_type -> vtctldata.ValidateShardRequest
- 107, // 107: vtctlservice.Vtctld.ValidateVersionKeyspace:input_type -> vtctldata.ValidateVersionKeyspaceRequest
- 108, // 108: vtctlservice.Vtctld.ValidateVersionShard:input_type -> vtctldata.ValidateVersionShardRequest
- 109, // 109: vtctlservice.Vtctld.ValidateVSchema:input_type -> vtctldata.ValidateVSchemaRequest
- 110, // 110: vtctlservice.Vtctld.VDiffCreate:input_type -> vtctldata.VDiffCreateRequest
- 111, // 111: vtctlservice.Vtctld.VDiffDelete:input_type -> vtctldata.VDiffDeleteRequest
- 112, // 112: vtctlservice.Vtctld.VDiffResume:input_type -> vtctldata.VDiffResumeRequest
- 113, // 113: vtctlservice.Vtctld.VDiffShow:input_type -> vtctldata.VDiffShowRequest
- 114, // 114: vtctlservice.Vtctld.VDiffStop:input_type -> vtctldata.VDiffStopRequest
- 115, // 115: vtctlservice.Vtctld.WorkflowDelete:input_type -> vtctldata.WorkflowDeleteRequest
- 116, // 116: vtctlservice.Vtctld.WorkflowStatus:input_type -> vtctldata.WorkflowStatusRequest
- 117, // 117: vtctlservice.Vtctld.WorkflowSwitchTraffic:input_type -> vtctldata.WorkflowSwitchTrafficRequest
- 118, // 118: vtctlservice.Vtctld.WorkflowUpdate:input_type -> vtctldata.WorkflowUpdateRequest
- 119, // 119: vtctlservice.Vtctld.GetMirrorRules:input_type -> vtctldata.GetMirrorRulesRequest
- 120, // 120: vtctlservice.Vtctld.WorkflowMirrorTraffic:input_type -> vtctldata.WorkflowMirrorTrafficRequest
- 121, // 121: vtctlservice.Vtctl.ExecuteVtctlCommand:output_type -> vtctldata.ExecuteVtctlCommandResponse
- 122, // 122: vtctlservice.Vtctld.AddCellInfo:output_type -> vtctldata.AddCellInfoResponse
- 123, // 123: vtctlservice.Vtctld.AddCellsAlias:output_type -> vtctldata.AddCellsAliasResponse
- 124, // 124: vtctlservice.Vtctld.ApplyRoutingRules:output_type -> vtctldata.ApplyRoutingRulesResponse
- 125, // 125: vtctlservice.Vtctld.ApplySchema:output_type -> vtctldata.ApplySchemaResponse
- 126, // 126: vtctlservice.Vtctld.ApplyKeyspaceRoutingRules:output_type -> vtctldata.ApplyKeyspaceRoutingRulesResponse
- 127, // 127: vtctlservice.Vtctld.ApplyShardRoutingRules:output_type -> vtctldata.ApplyShardRoutingRulesResponse
- 128, // 128: vtctlservice.Vtctld.ApplyVSchema:output_type -> vtctldata.ApplyVSchemaResponse
- 129, // 129: vtctlservice.Vtctld.Backup:output_type -> vtctldata.BackupResponse
- 129, // 130: vtctlservice.Vtctld.BackupShard:output_type -> vtctldata.BackupResponse
- 130, // 131: vtctlservice.Vtctld.CancelSchemaMigration:output_type -> vtctldata.CancelSchemaMigrationResponse
- 131, // 132: vtctlservice.Vtctld.ChangeTabletType:output_type -> vtctldata.ChangeTabletTypeResponse
- 132, // 133: vtctlservice.Vtctld.CheckThrottler:output_type -> vtctldata.CheckThrottlerResponse
- 133, // 134: vtctlservice.Vtctld.CleanupSchemaMigration:output_type -> vtctldata.CleanupSchemaMigrationResponse
- 134, // 135: vtctlservice.Vtctld.CompleteSchemaMigration:output_type -> vtctldata.CompleteSchemaMigrationResponse
- 135, // 136: vtctlservice.Vtctld.CreateKeyspace:output_type -> vtctldata.CreateKeyspaceResponse
- 136, // 137: vtctlservice.Vtctld.CreateShard:output_type -> vtctldata.CreateShardResponse
- 137, // 138: vtctlservice.Vtctld.DeleteCellInfo:output_type -> vtctldata.DeleteCellInfoResponse
- 138, // 139: vtctlservice.Vtctld.DeleteCellsAlias:output_type -> vtctldata.DeleteCellsAliasResponse
- 139, // 140: vtctlservice.Vtctld.DeleteKeyspace:output_type -> vtctldata.DeleteKeyspaceResponse
- 140, // 141: vtctlservice.Vtctld.DeleteShards:output_type -> vtctldata.DeleteShardsResponse
- 141, // 142: vtctlservice.Vtctld.DeleteSrvVSchema:output_type -> vtctldata.DeleteSrvVSchemaResponse
- 142, // 143: vtctlservice.Vtctld.DeleteTablets:output_type -> vtctldata.DeleteTabletsResponse
- 143, // 144: vtctlservice.Vtctld.EmergencyReparentShard:output_type -> vtctldata.EmergencyReparentShardResponse
- 144, // 145: vtctlservice.Vtctld.ExecuteFetchAsApp:output_type -> vtctldata.ExecuteFetchAsAppResponse
- 145, // 146: vtctlservice.Vtctld.ExecuteFetchAsDBA:output_type -> vtctldata.ExecuteFetchAsDBAResponse
- 146, // 147: vtctlservice.Vtctld.ExecuteHook:output_type -> vtctldata.ExecuteHookResponse
- 147, // 148: vtctlservice.Vtctld.ExecuteMultiFetchAsDBA:output_type -> vtctldata.ExecuteMultiFetchAsDBAResponse
- 148, // 149: vtctlservice.Vtctld.FindAllShardsInKeyspace:output_type -> vtctldata.FindAllShardsInKeyspaceResponse
- 149, // 150: vtctlservice.Vtctld.ForceCutOverSchemaMigration:output_type -> vtctldata.ForceCutOverSchemaMigrationResponse
- 150, // 151: vtctlservice.Vtctld.GetBackups:output_type -> vtctldata.GetBackupsResponse
- 151, // 152: vtctlservice.Vtctld.GetCellInfo:output_type -> vtctldata.GetCellInfoResponse
- 152, // 153: vtctlservice.Vtctld.GetCellInfoNames:output_type -> vtctldata.GetCellInfoNamesResponse
- 153, // 154: vtctlservice.Vtctld.GetCellsAliases:output_type -> vtctldata.GetCellsAliasesResponse
- 154, // 155: vtctlservice.Vtctld.GetFullStatus:output_type -> vtctldata.GetFullStatusResponse
- 155, // 156: vtctlservice.Vtctld.GetKeyspace:output_type -> vtctldata.GetKeyspaceResponse
- 156, // 157: vtctlservice.Vtctld.GetKeyspaces:output_type -> vtctldata.GetKeyspacesResponse
- 157, // 158: vtctlservice.Vtctld.GetKeyspaceRoutingRules:output_type -> vtctldata.GetKeyspaceRoutingRulesResponse
- 158, // 159: vtctlservice.Vtctld.GetPermissions:output_type -> vtctldata.GetPermissionsResponse
- 159, // 160: vtctlservice.Vtctld.GetRoutingRules:output_type -> vtctldata.GetRoutingRulesResponse
- 160, // 161: vtctlservice.Vtctld.GetSchema:output_type -> vtctldata.GetSchemaResponse
- 161, // 162: vtctlservice.Vtctld.GetSchemaMigrations:output_type -> vtctldata.GetSchemaMigrationsResponse
- 162, // 163: vtctlservice.Vtctld.GetShardReplication:output_type -> vtctldata.GetShardReplicationResponse
- 163, // 164: vtctlservice.Vtctld.GetShard:output_type -> vtctldata.GetShardResponse
- 164, // 165: vtctlservice.Vtctld.GetShardRoutingRules:output_type -> vtctldata.GetShardRoutingRulesResponse
- 165, // 166: vtctlservice.Vtctld.GetSrvKeyspaceNames:output_type -> vtctldata.GetSrvKeyspaceNamesResponse
- 166, // 167: vtctlservice.Vtctld.GetSrvKeyspaces:output_type -> vtctldata.GetSrvKeyspacesResponse
- 167, // 168: vtctlservice.Vtctld.UpdateThrottlerConfig:output_type -> vtctldata.UpdateThrottlerConfigResponse
- 168, // 169: vtctlservice.Vtctld.GetSrvVSchema:output_type -> vtctldata.GetSrvVSchemaResponse
- 169, // 170: vtctlservice.Vtctld.GetSrvVSchemas:output_type -> vtctldata.GetSrvVSchemasResponse
- 170, // 171: vtctlservice.Vtctld.GetTablet:output_type -> vtctldata.GetTabletResponse
- 171, // 172: vtctlservice.Vtctld.GetTablets:output_type -> vtctldata.GetTabletsResponse
- 172, // 173: vtctlservice.Vtctld.GetThrottlerStatus:output_type -> vtctldata.GetThrottlerStatusResponse
- 173, // 174: vtctlservice.Vtctld.GetTopologyPath:output_type -> vtctldata.GetTopologyPathResponse
- 174, // 175: vtctlservice.Vtctld.GetUnresolvedTransactions:output_type -> vtctldata.GetUnresolvedTransactionsResponse
- 175, // 176: vtctlservice.Vtctld.GetVersion:output_type -> vtctldata.GetVersionResponse
- 176, // 177: vtctlservice.Vtctld.GetVSchema:output_type -> vtctldata.GetVSchemaResponse
- 177, // 178: vtctlservice.Vtctld.GetWorkflows:output_type -> vtctldata.GetWorkflowsResponse
- 178, // 179: vtctlservice.Vtctld.InitShardPrimary:output_type -> vtctldata.InitShardPrimaryResponse
- 179, // 180: vtctlservice.Vtctld.LaunchSchemaMigration:output_type -> vtctldata.LaunchSchemaMigrationResponse
- 180, // 181: vtctlservice.Vtctld.LookupVindexCreate:output_type -> vtctldata.LookupVindexCreateResponse
- 181, // 182: vtctlservice.Vtctld.LookupVindexExternalize:output_type -> vtctldata.LookupVindexExternalizeResponse
- 182, // 183: vtctlservice.Vtctld.MaterializeCreate:output_type -> vtctldata.MaterializeCreateResponse
- 183, // 184: vtctlservice.Vtctld.MigrateCreate:output_type -> vtctldata.WorkflowStatusResponse
- 184, // 185: vtctlservice.Vtctld.MountRegister:output_type -> vtctldata.MountRegisterResponse
- 185, // 186: vtctlservice.Vtctld.MountUnregister:output_type -> vtctldata.MountUnregisterResponse
- 186, // 187: vtctlservice.Vtctld.MountShow:output_type -> vtctldata.MountShowResponse
- 187, // 188: vtctlservice.Vtctld.MountList:output_type -> vtctldata.MountListResponse
- 183, // 189: vtctlservice.Vtctld.MoveTablesCreate:output_type -> vtctldata.WorkflowStatusResponse
- 188, // 190: vtctlservice.Vtctld.MoveTablesComplete:output_type -> vtctldata.MoveTablesCompleteResponse
- 189, // 191: vtctlservice.Vtctld.PingTablet:output_type -> vtctldata.PingTabletResponse
- 190, // 192: vtctlservice.Vtctld.PlannedReparentShard:output_type -> vtctldata.PlannedReparentShardResponse
- 191, // 193: vtctlservice.Vtctld.RebuildKeyspaceGraph:output_type -> vtctldata.RebuildKeyspaceGraphResponse
- 192, // 194: vtctlservice.Vtctld.RebuildVSchemaGraph:output_type -> vtctldata.RebuildVSchemaGraphResponse
- 193, // 195: vtctlservice.Vtctld.RefreshState:output_type -> vtctldata.RefreshStateResponse
- 194, // 196: vtctlservice.Vtctld.RefreshStateByShard:output_type -> vtctldata.RefreshStateByShardResponse
- 195, // 197: vtctlservice.Vtctld.ReloadSchema:output_type -> vtctldata.ReloadSchemaResponse
- 196, // 198: vtctlservice.Vtctld.ReloadSchemaKeyspace:output_type -> vtctldata.ReloadSchemaKeyspaceResponse
- 197, // 199: vtctlservice.Vtctld.ReloadSchemaShard:output_type -> vtctldata.ReloadSchemaShardResponse
- 198, // 200: vtctlservice.Vtctld.RemoveBackup:output_type -> vtctldata.RemoveBackupResponse
- 199, // 201: vtctlservice.Vtctld.RemoveKeyspaceCell:output_type -> vtctldata.RemoveKeyspaceCellResponse
- 200, // 202: vtctlservice.Vtctld.RemoveShardCell:output_type -> vtctldata.RemoveShardCellResponse
- 201, // 203: vtctlservice.Vtctld.ReparentTablet:output_type -> vtctldata.ReparentTabletResponse
- 183, // 204: vtctlservice.Vtctld.ReshardCreate:output_type -> vtctldata.WorkflowStatusResponse
- 202, // 205: vtctlservice.Vtctld.RestoreFromBackup:output_type -> vtctldata.RestoreFromBackupResponse
- 203, // 206: vtctlservice.Vtctld.RetrySchemaMigration:output_type -> vtctldata.RetrySchemaMigrationResponse
- 204, // 207: vtctlservice.Vtctld.RunHealthCheck:output_type -> vtctldata.RunHealthCheckResponse
- 205, // 208: vtctlservice.Vtctld.SetKeyspaceDurabilityPolicy:output_type -> vtctldata.SetKeyspaceDurabilityPolicyResponse
- 206, // 209: vtctlservice.Vtctld.SetShardIsPrimaryServing:output_type -> vtctldata.SetShardIsPrimaryServingResponse
- 207, // 210: vtctlservice.Vtctld.SetShardTabletControl:output_type -> vtctldata.SetShardTabletControlResponse
- 208, // 211: vtctlservice.Vtctld.SetWritable:output_type -> vtctldata.SetWritableResponse
- 209, // 212: vtctlservice.Vtctld.ShardReplicationAdd:output_type -> vtctldata.ShardReplicationAddResponse
- 210, // 213: vtctlservice.Vtctld.ShardReplicationFix:output_type -> vtctldata.ShardReplicationFixResponse
- 211, // 214: vtctlservice.Vtctld.ShardReplicationPositions:output_type -> vtctldata.ShardReplicationPositionsResponse
- 212, // 215: vtctlservice.Vtctld.ShardReplicationRemove:output_type -> vtctldata.ShardReplicationRemoveResponse
- 213, // 216: vtctlservice.Vtctld.SleepTablet:output_type -> vtctldata.SleepTabletResponse
- 214, // 217: vtctlservice.Vtctld.SourceShardAdd:output_type -> vtctldata.SourceShardAddResponse
- 215, // 218: vtctlservice.Vtctld.SourceShardDelete:output_type -> vtctldata.SourceShardDeleteResponse
- 216, // 219: vtctlservice.Vtctld.StartReplication:output_type -> vtctldata.StartReplicationResponse
- 217, // 220: vtctlservice.Vtctld.StopReplication:output_type -> vtctldata.StopReplicationResponse
- 218, // 221: vtctlservice.Vtctld.TabletExternallyReparented:output_type -> vtctldata.TabletExternallyReparentedResponse
- 219, // 222: vtctlservice.Vtctld.UpdateCellInfo:output_type -> vtctldata.UpdateCellInfoResponse
- 220, // 223: vtctlservice.Vtctld.UpdateCellsAlias:output_type -> vtctldata.UpdateCellsAliasResponse
- 221, // 224: vtctlservice.Vtctld.Validate:output_type -> vtctldata.ValidateResponse
- 222, // 225: vtctlservice.Vtctld.ValidateKeyspace:output_type -> vtctldata.ValidateKeyspaceResponse
- 223, // 226: vtctlservice.Vtctld.ValidateSchemaKeyspace:output_type -> vtctldata.ValidateSchemaKeyspaceResponse
- 224, // 227: vtctlservice.Vtctld.ValidateShard:output_type -> vtctldata.ValidateShardResponse
- 225, // 228: vtctlservice.Vtctld.ValidateVersionKeyspace:output_type -> vtctldata.ValidateVersionKeyspaceResponse
- 226, // 229: vtctlservice.Vtctld.ValidateVersionShard:output_type -> vtctldata.ValidateVersionShardResponse
- 227, // 230: vtctlservice.Vtctld.ValidateVSchema:output_type -> vtctldata.ValidateVSchemaResponse
- 228, // 231: vtctlservice.Vtctld.VDiffCreate:output_type -> vtctldata.VDiffCreateResponse
- 229, // 232: vtctlservice.Vtctld.VDiffDelete:output_type -> vtctldata.VDiffDeleteResponse
- 230, // 233: vtctlservice.Vtctld.VDiffResume:output_type -> vtctldata.VDiffResumeResponse
- 231, // 234: vtctlservice.Vtctld.VDiffShow:output_type -> vtctldata.VDiffShowResponse
- 232, // 235: vtctlservice.Vtctld.VDiffStop:output_type -> vtctldata.VDiffStopResponse
- 233, // 236: vtctlservice.Vtctld.WorkflowDelete:output_type -> vtctldata.WorkflowDeleteResponse
- 183, // 237: vtctlservice.Vtctld.WorkflowStatus:output_type -> vtctldata.WorkflowStatusResponse
- 234, // 238: vtctlservice.Vtctld.WorkflowSwitchTraffic:output_type -> vtctldata.WorkflowSwitchTrafficResponse
- 235, // 239: vtctlservice.Vtctld.WorkflowUpdate:output_type -> vtctldata.WorkflowUpdateResponse
- 236, // 240: vtctlservice.Vtctld.GetMirrorRules:output_type -> vtctldata.GetMirrorRulesResponse
- 237, // 241: vtctlservice.Vtctld.WorkflowMirrorTraffic:output_type -> vtctldata.WorkflowMirrorTrafficResponse
- 121, // [121:242] is the sub-list for method output_type
- 0, // [0:121] is the sub-list for method input_type
+ 15, // 15: vtctlservice.Vtctld.ConcludeTransaction:input_type -> vtctldata.ConcludeTransactionRequest
+ 16, // 16: vtctlservice.Vtctld.CreateKeyspace:input_type -> vtctldata.CreateKeyspaceRequest
+ 17, // 17: vtctlservice.Vtctld.CreateShard:input_type -> vtctldata.CreateShardRequest
+ 18, // 18: vtctlservice.Vtctld.DeleteCellInfo:input_type -> vtctldata.DeleteCellInfoRequest
+ 19, // 19: vtctlservice.Vtctld.DeleteCellsAlias:input_type -> vtctldata.DeleteCellsAliasRequest
+ 20, // 20: vtctlservice.Vtctld.DeleteKeyspace:input_type -> vtctldata.DeleteKeyspaceRequest
+ 21, // 21: vtctlservice.Vtctld.DeleteShards:input_type -> vtctldata.DeleteShardsRequest
+ 22, // 22: vtctlservice.Vtctld.DeleteSrvVSchema:input_type -> vtctldata.DeleteSrvVSchemaRequest
+ 23, // 23: vtctlservice.Vtctld.DeleteTablets:input_type -> vtctldata.DeleteTabletsRequest
+ 24, // 24: vtctlservice.Vtctld.EmergencyReparentShard:input_type -> vtctldata.EmergencyReparentShardRequest
+ 25, // 25: vtctlservice.Vtctld.ExecuteFetchAsApp:input_type -> vtctldata.ExecuteFetchAsAppRequest
+ 26, // 26: vtctlservice.Vtctld.ExecuteFetchAsDBA:input_type -> vtctldata.ExecuteFetchAsDBARequest
+ 27, // 27: vtctlservice.Vtctld.ExecuteHook:input_type -> vtctldata.ExecuteHookRequest
+ 28, // 28: vtctlservice.Vtctld.ExecuteMultiFetchAsDBA:input_type -> vtctldata.ExecuteMultiFetchAsDBARequest
+ 29, // 29: vtctlservice.Vtctld.FindAllShardsInKeyspace:input_type -> vtctldata.FindAllShardsInKeyspaceRequest
+ 30, // 30: vtctlservice.Vtctld.ForceCutOverSchemaMigration:input_type -> vtctldata.ForceCutOverSchemaMigrationRequest
+ 31, // 31: vtctlservice.Vtctld.GetBackups:input_type -> vtctldata.GetBackupsRequest
+ 32, // 32: vtctlservice.Vtctld.GetCellInfo:input_type -> vtctldata.GetCellInfoRequest
+ 33, // 33: vtctlservice.Vtctld.GetCellInfoNames:input_type -> vtctldata.GetCellInfoNamesRequest
+ 34, // 34: vtctlservice.Vtctld.GetCellsAliases:input_type -> vtctldata.GetCellsAliasesRequest
+ 35, // 35: vtctlservice.Vtctld.GetFullStatus:input_type -> vtctldata.GetFullStatusRequest
+ 36, // 36: vtctlservice.Vtctld.GetKeyspace:input_type -> vtctldata.GetKeyspaceRequest
+ 37, // 37: vtctlservice.Vtctld.GetKeyspaces:input_type -> vtctldata.GetKeyspacesRequest
+ 38, // 38: vtctlservice.Vtctld.GetKeyspaceRoutingRules:input_type -> vtctldata.GetKeyspaceRoutingRulesRequest
+ 39, // 39: vtctlservice.Vtctld.GetPermissions:input_type -> vtctldata.GetPermissionsRequest
+ 40, // 40: vtctlservice.Vtctld.GetRoutingRules:input_type -> vtctldata.GetRoutingRulesRequest
+ 41, // 41: vtctlservice.Vtctld.GetSchema:input_type -> vtctldata.GetSchemaRequest
+ 42, // 42: vtctlservice.Vtctld.GetSchemaMigrations:input_type -> vtctldata.GetSchemaMigrationsRequest
+ 43, // 43: vtctlservice.Vtctld.GetShardReplication:input_type -> vtctldata.GetShardReplicationRequest
+ 44, // 44: vtctlservice.Vtctld.GetShard:input_type -> vtctldata.GetShardRequest
+ 45, // 45: vtctlservice.Vtctld.GetShardRoutingRules:input_type -> vtctldata.GetShardRoutingRulesRequest
+ 46, // 46: vtctlservice.Vtctld.GetSrvKeyspaceNames:input_type -> vtctldata.GetSrvKeyspaceNamesRequest
+ 47, // 47: vtctlservice.Vtctld.GetSrvKeyspaces:input_type -> vtctldata.GetSrvKeyspacesRequest
+ 48, // 48: vtctlservice.Vtctld.UpdateThrottlerConfig:input_type -> vtctldata.UpdateThrottlerConfigRequest
+ 49, // 49: vtctlservice.Vtctld.GetSrvVSchema:input_type -> vtctldata.GetSrvVSchemaRequest
+ 50, // 50: vtctlservice.Vtctld.GetSrvVSchemas:input_type -> vtctldata.GetSrvVSchemasRequest
+ 51, // 51: vtctlservice.Vtctld.GetTablet:input_type -> vtctldata.GetTabletRequest
+ 52, // 52: vtctlservice.Vtctld.GetTablets:input_type -> vtctldata.GetTabletsRequest
+ 53, // 53: vtctlservice.Vtctld.GetThrottlerStatus:input_type -> vtctldata.GetThrottlerStatusRequest
+ 54, // 54: vtctlservice.Vtctld.GetTopologyPath:input_type -> vtctldata.GetTopologyPathRequest
+ 55, // 55: vtctlservice.Vtctld.GetUnresolvedTransactions:input_type -> vtctldata.GetUnresolvedTransactionsRequest
+ 56, // 56: vtctlservice.Vtctld.GetVersion:input_type -> vtctldata.GetVersionRequest
+ 57, // 57: vtctlservice.Vtctld.GetVSchema:input_type -> vtctldata.GetVSchemaRequest
+ 58, // 58: vtctlservice.Vtctld.GetWorkflows:input_type -> vtctldata.GetWorkflowsRequest
+ 59, // 59: vtctlservice.Vtctld.InitShardPrimary:input_type -> vtctldata.InitShardPrimaryRequest
+ 60, // 60: vtctlservice.Vtctld.LaunchSchemaMigration:input_type -> vtctldata.LaunchSchemaMigrationRequest
+ 61, // 61: vtctlservice.Vtctld.LookupVindexCreate:input_type -> vtctldata.LookupVindexCreateRequest
+ 62, // 62: vtctlservice.Vtctld.LookupVindexExternalize:input_type -> vtctldata.LookupVindexExternalizeRequest
+ 63, // 63: vtctlservice.Vtctld.MaterializeCreate:input_type -> vtctldata.MaterializeCreateRequest
+ 64, // 64: vtctlservice.Vtctld.MigrateCreate:input_type -> vtctldata.MigrateCreateRequest
+ 65, // 65: vtctlservice.Vtctld.MountRegister:input_type -> vtctldata.MountRegisterRequest
+ 66, // 66: vtctlservice.Vtctld.MountUnregister:input_type -> vtctldata.MountUnregisterRequest
+ 67, // 67: vtctlservice.Vtctld.MountShow:input_type -> vtctldata.MountShowRequest
+ 68, // 68: vtctlservice.Vtctld.MountList:input_type -> vtctldata.MountListRequest
+ 69, // 69: vtctlservice.Vtctld.MoveTablesCreate:input_type -> vtctldata.MoveTablesCreateRequest
+ 70, // 70: vtctlservice.Vtctld.MoveTablesComplete:input_type -> vtctldata.MoveTablesCompleteRequest
+ 71, // 71: vtctlservice.Vtctld.PingTablet:input_type -> vtctldata.PingTabletRequest
+ 72, // 72: vtctlservice.Vtctld.PlannedReparentShard:input_type -> vtctldata.PlannedReparentShardRequest
+ 73, // 73: vtctlservice.Vtctld.RebuildKeyspaceGraph:input_type -> vtctldata.RebuildKeyspaceGraphRequest
+ 74, // 74: vtctlservice.Vtctld.RebuildVSchemaGraph:input_type -> vtctldata.RebuildVSchemaGraphRequest
+ 75, // 75: vtctlservice.Vtctld.RefreshState:input_type -> vtctldata.RefreshStateRequest
+ 76, // 76: vtctlservice.Vtctld.RefreshStateByShard:input_type -> vtctldata.RefreshStateByShardRequest
+ 77, // 77: vtctlservice.Vtctld.ReloadSchema:input_type -> vtctldata.ReloadSchemaRequest
+ 78, // 78: vtctlservice.Vtctld.ReloadSchemaKeyspace:input_type -> vtctldata.ReloadSchemaKeyspaceRequest
+ 79, // 79: vtctlservice.Vtctld.ReloadSchemaShard:input_type -> vtctldata.ReloadSchemaShardRequest
+ 80, // 80: vtctlservice.Vtctld.RemoveBackup:input_type -> vtctldata.RemoveBackupRequest
+ 81, // 81: vtctlservice.Vtctld.RemoveKeyspaceCell:input_type -> vtctldata.RemoveKeyspaceCellRequest
+ 82, // 82: vtctlservice.Vtctld.RemoveShardCell:input_type -> vtctldata.RemoveShardCellRequest
+ 83, // 83: vtctlservice.Vtctld.ReparentTablet:input_type -> vtctldata.ReparentTabletRequest
+ 84, // 84: vtctlservice.Vtctld.ReshardCreate:input_type -> vtctldata.ReshardCreateRequest
+ 85, // 85: vtctlservice.Vtctld.RestoreFromBackup:input_type -> vtctldata.RestoreFromBackupRequest
+ 86, // 86: vtctlservice.Vtctld.RetrySchemaMigration:input_type -> vtctldata.RetrySchemaMigrationRequest
+ 87, // 87: vtctlservice.Vtctld.RunHealthCheck:input_type -> vtctldata.RunHealthCheckRequest
+ 88, // 88: vtctlservice.Vtctld.SetKeyspaceDurabilityPolicy:input_type -> vtctldata.SetKeyspaceDurabilityPolicyRequest
+ 89, // 89: vtctlservice.Vtctld.SetShardIsPrimaryServing:input_type -> vtctldata.SetShardIsPrimaryServingRequest
+ 90, // 90: vtctlservice.Vtctld.SetShardTabletControl:input_type -> vtctldata.SetShardTabletControlRequest
+ 91, // 91: vtctlservice.Vtctld.SetWritable:input_type -> vtctldata.SetWritableRequest
+ 92, // 92: vtctlservice.Vtctld.ShardReplicationAdd:input_type -> vtctldata.ShardReplicationAddRequest
+ 93, // 93: vtctlservice.Vtctld.ShardReplicationFix:input_type -> vtctldata.ShardReplicationFixRequest
+ 94, // 94: vtctlservice.Vtctld.ShardReplicationPositions:input_type -> vtctldata.ShardReplicationPositionsRequest
+ 95, // 95: vtctlservice.Vtctld.ShardReplicationRemove:input_type -> vtctldata.ShardReplicationRemoveRequest
+ 96, // 96: vtctlservice.Vtctld.SleepTablet:input_type -> vtctldata.SleepTabletRequest
+ 97, // 97: vtctlservice.Vtctld.SourceShardAdd:input_type -> vtctldata.SourceShardAddRequest
+ 98, // 98: vtctlservice.Vtctld.SourceShardDelete:input_type -> vtctldata.SourceShardDeleteRequest
+ 99, // 99: vtctlservice.Vtctld.StartReplication:input_type -> vtctldata.StartReplicationRequest
+ 100, // 100: vtctlservice.Vtctld.StopReplication:input_type -> vtctldata.StopReplicationRequest
+ 101, // 101: vtctlservice.Vtctld.TabletExternallyReparented:input_type -> vtctldata.TabletExternallyReparentedRequest
+ 102, // 102: vtctlservice.Vtctld.UpdateCellInfo:input_type -> vtctldata.UpdateCellInfoRequest
+ 103, // 103: vtctlservice.Vtctld.UpdateCellsAlias:input_type -> vtctldata.UpdateCellsAliasRequest
+ 104, // 104: vtctlservice.Vtctld.Validate:input_type -> vtctldata.ValidateRequest
+ 105, // 105: vtctlservice.Vtctld.ValidateKeyspace:input_type -> vtctldata.ValidateKeyspaceRequest
+ 106, // 106: vtctlservice.Vtctld.ValidateSchemaKeyspace:input_type -> vtctldata.ValidateSchemaKeyspaceRequest
+ 107, // 107: vtctlservice.Vtctld.ValidateShard:input_type -> vtctldata.ValidateShardRequest
+ 108, // 108: vtctlservice.Vtctld.ValidateVersionKeyspace:input_type -> vtctldata.ValidateVersionKeyspaceRequest
+ 109, // 109: vtctlservice.Vtctld.ValidateVersionShard:input_type -> vtctldata.ValidateVersionShardRequest
+ 110, // 110: vtctlservice.Vtctld.ValidateVSchema:input_type -> vtctldata.ValidateVSchemaRequest
+ 111, // 111: vtctlservice.Vtctld.VDiffCreate:input_type -> vtctldata.VDiffCreateRequest
+ 112, // 112: vtctlservice.Vtctld.VDiffDelete:input_type -> vtctldata.VDiffDeleteRequest
+ 113, // 113: vtctlservice.Vtctld.VDiffResume:input_type -> vtctldata.VDiffResumeRequest
+ 114, // 114: vtctlservice.Vtctld.VDiffShow:input_type -> vtctldata.VDiffShowRequest
+ 115, // 115: vtctlservice.Vtctld.VDiffStop:input_type -> vtctldata.VDiffStopRequest
+ 116, // 116: vtctlservice.Vtctld.WorkflowDelete:input_type -> vtctldata.WorkflowDeleteRequest
+ 117, // 117: vtctlservice.Vtctld.WorkflowStatus:input_type -> vtctldata.WorkflowStatusRequest
+ 118, // 118: vtctlservice.Vtctld.WorkflowSwitchTraffic:input_type -> vtctldata.WorkflowSwitchTrafficRequest
+ 119, // 119: vtctlservice.Vtctld.WorkflowUpdate:input_type -> vtctldata.WorkflowUpdateRequest
+ 120, // 120: vtctlservice.Vtctld.GetMirrorRules:input_type -> vtctldata.GetMirrorRulesRequest
+ 121, // 121: vtctlservice.Vtctld.WorkflowMirrorTraffic:input_type -> vtctldata.WorkflowMirrorTrafficRequest
+ 122, // 122: vtctlservice.Vtctl.ExecuteVtctlCommand:output_type -> vtctldata.ExecuteVtctlCommandResponse
+ 123, // 123: vtctlservice.Vtctld.AddCellInfo:output_type -> vtctldata.AddCellInfoResponse
+ 124, // 124: vtctlservice.Vtctld.AddCellsAlias:output_type -> vtctldata.AddCellsAliasResponse
+ 125, // 125: vtctlservice.Vtctld.ApplyRoutingRules:output_type -> vtctldata.ApplyRoutingRulesResponse
+ 126, // 126: vtctlservice.Vtctld.ApplySchema:output_type -> vtctldata.ApplySchemaResponse
+ 127, // 127: vtctlservice.Vtctld.ApplyKeyspaceRoutingRules:output_type -> vtctldata.ApplyKeyspaceRoutingRulesResponse
+ 128, // 128: vtctlservice.Vtctld.ApplyShardRoutingRules:output_type -> vtctldata.ApplyShardRoutingRulesResponse
+ 129, // 129: vtctlservice.Vtctld.ApplyVSchema:output_type -> vtctldata.ApplyVSchemaResponse
+ 130, // 130: vtctlservice.Vtctld.Backup:output_type -> vtctldata.BackupResponse
+ 130, // 131: vtctlservice.Vtctld.BackupShard:output_type -> vtctldata.BackupResponse
+ 131, // 132: vtctlservice.Vtctld.CancelSchemaMigration:output_type -> vtctldata.CancelSchemaMigrationResponse
+ 132, // 133: vtctlservice.Vtctld.ChangeTabletType:output_type -> vtctldata.ChangeTabletTypeResponse
+ 133, // 134: vtctlservice.Vtctld.CheckThrottler:output_type -> vtctldata.CheckThrottlerResponse
+ 134, // 135: vtctlservice.Vtctld.CleanupSchemaMigration:output_type -> vtctldata.CleanupSchemaMigrationResponse
+ 135, // 136: vtctlservice.Vtctld.CompleteSchemaMigration:output_type -> vtctldata.CompleteSchemaMigrationResponse
+ 136, // 137: vtctlservice.Vtctld.ConcludeTransaction:output_type -> vtctldata.ConcludeTransactionResponse
+ 137, // 138: vtctlservice.Vtctld.CreateKeyspace:output_type -> vtctldata.CreateKeyspaceResponse
+ 138, // 139: vtctlservice.Vtctld.CreateShard:output_type -> vtctldata.CreateShardResponse
+ 139, // 140: vtctlservice.Vtctld.DeleteCellInfo:output_type -> vtctldata.DeleteCellInfoResponse
+ 140, // 141: vtctlservice.Vtctld.DeleteCellsAlias:output_type -> vtctldata.DeleteCellsAliasResponse
+ 141, // 142: vtctlservice.Vtctld.DeleteKeyspace:output_type -> vtctldata.DeleteKeyspaceResponse
+ 142, // 143: vtctlservice.Vtctld.DeleteShards:output_type -> vtctldata.DeleteShardsResponse
+ 143, // 144: vtctlservice.Vtctld.DeleteSrvVSchema:output_type -> vtctldata.DeleteSrvVSchemaResponse
+ 144, // 145: vtctlservice.Vtctld.DeleteTablets:output_type -> vtctldata.DeleteTabletsResponse
+ 145, // 146: vtctlservice.Vtctld.EmergencyReparentShard:output_type -> vtctldata.EmergencyReparentShardResponse
+ 146, // 147: vtctlservice.Vtctld.ExecuteFetchAsApp:output_type -> vtctldata.ExecuteFetchAsAppResponse
+ 147, // 148: vtctlservice.Vtctld.ExecuteFetchAsDBA:output_type -> vtctldata.ExecuteFetchAsDBAResponse
+ 148, // 149: vtctlservice.Vtctld.ExecuteHook:output_type -> vtctldata.ExecuteHookResponse
+ 149, // 150: vtctlservice.Vtctld.ExecuteMultiFetchAsDBA:output_type -> vtctldata.ExecuteMultiFetchAsDBAResponse
+ 150, // 151: vtctlservice.Vtctld.FindAllShardsInKeyspace:output_type -> vtctldata.FindAllShardsInKeyspaceResponse
+ 151, // 152: vtctlservice.Vtctld.ForceCutOverSchemaMigration:output_type -> vtctldata.ForceCutOverSchemaMigrationResponse
+ 152, // 153: vtctlservice.Vtctld.GetBackups:output_type -> vtctldata.GetBackupsResponse
+ 153, // 154: vtctlservice.Vtctld.GetCellInfo:output_type -> vtctldata.GetCellInfoResponse
+ 154, // 155: vtctlservice.Vtctld.GetCellInfoNames:output_type -> vtctldata.GetCellInfoNamesResponse
+ 155, // 156: vtctlservice.Vtctld.GetCellsAliases:output_type -> vtctldata.GetCellsAliasesResponse
+ 156, // 157: vtctlservice.Vtctld.GetFullStatus:output_type -> vtctldata.GetFullStatusResponse
+ 157, // 158: vtctlservice.Vtctld.GetKeyspace:output_type -> vtctldata.GetKeyspaceResponse
+ 158, // 159: vtctlservice.Vtctld.GetKeyspaces:output_type -> vtctldata.GetKeyspacesResponse
+ 159, // 160: vtctlservice.Vtctld.GetKeyspaceRoutingRules:output_type -> vtctldata.GetKeyspaceRoutingRulesResponse
+ 160, // 161: vtctlservice.Vtctld.GetPermissions:output_type -> vtctldata.GetPermissionsResponse
+ 161, // 162: vtctlservice.Vtctld.GetRoutingRules:output_type -> vtctldata.GetRoutingRulesResponse
+ 162, // 163: vtctlservice.Vtctld.GetSchema:output_type -> vtctldata.GetSchemaResponse
+ 163, // 164: vtctlservice.Vtctld.GetSchemaMigrations:output_type -> vtctldata.GetSchemaMigrationsResponse
+ 164, // 165: vtctlservice.Vtctld.GetShardReplication:output_type -> vtctldata.GetShardReplicationResponse
+ 165, // 166: vtctlservice.Vtctld.GetShard:output_type -> vtctldata.GetShardResponse
+ 166, // 167: vtctlservice.Vtctld.GetShardRoutingRules:output_type -> vtctldata.GetShardRoutingRulesResponse
+ 167, // 168: vtctlservice.Vtctld.GetSrvKeyspaceNames:output_type -> vtctldata.GetSrvKeyspaceNamesResponse
+ 168, // 169: vtctlservice.Vtctld.GetSrvKeyspaces:output_type -> vtctldata.GetSrvKeyspacesResponse
+ 169, // 170: vtctlservice.Vtctld.UpdateThrottlerConfig:output_type -> vtctldata.UpdateThrottlerConfigResponse
+ 170, // 171: vtctlservice.Vtctld.GetSrvVSchema:output_type -> vtctldata.GetSrvVSchemaResponse
+ 171, // 172: vtctlservice.Vtctld.GetSrvVSchemas:output_type -> vtctldata.GetSrvVSchemasResponse
+ 172, // 173: vtctlservice.Vtctld.GetTablet:output_type -> vtctldata.GetTabletResponse
+ 173, // 174: vtctlservice.Vtctld.GetTablets:output_type -> vtctldata.GetTabletsResponse
+ 174, // 175: vtctlservice.Vtctld.GetThrottlerStatus:output_type -> vtctldata.GetThrottlerStatusResponse
+ 175, // 176: vtctlservice.Vtctld.GetTopologyPath:output_type -> vtctldata.GetTopologyPathResponse
+ 176, // 177: vtctlservice.Vtctld.GetUnresolvedTransactions:output_type -> vtctldata.GetUnresolvedTransactionsResponse
+ 177, // 178: vtctlservice.Vtctld.GetVersion:output_type -> vtctldata.GetVersionResponse
+ 178, // 179: vtctlservice.Vtctld.GetVSchema:output_type -> vtctldata.GetVSchemaResponse
+ 179, // 180: vtctlservice.Vtctld.GetWorkflows:output_type -> vtctldata.GetWorkflowsResponse
+ 180, // 181: vtctlservice.Vtctld.InitShardPrimary:output_type -> vtctldata.InitShardPrimaryResponse
+ 181, // 182: vtctlservice.Vtctld.LaunchSchemaMigration:output_type -> vtctldata.LaunchSchemaMigrationResponse
+ 182, // 183: vtctlservice.Vtctld.LookupVindexCreate:output_type -> vtctldata.LookupVindexCreateResponse
+ 183, // 184: vtctlservice.Vtctld.LookupVindexExternalize:output_type -> vtctldata.LookupVindexExternalizeResponse
+ 184, // 185: vtctlservice.Vtctld.MaterializeCreate:output_type -> vtctldata.MaterializeCreateResponse
+ 185, // 186: vtctlservice.Vtctld.MigrateCreate:output_type -> vtctldata.WorkflowStatusResponse
+ 186, // 187: vtctlservice.Vtctld.MountRegister:output_type -> vtctldata.MountRegisterResponse
+ 187, // 188: vtctlservice.Vtctld.MountUnregister:output_type -> vtctldata.MountUnregisterResponse
+ 188, // 189: vtctlservice.Vtctld.MountShow:output_type -> vtctldata.MountShowResponse
+ 189, // 190: vtctlservice.Vtctld.MountList:output_type -> vtctldata.MountListResponse
+ 185, // 191: vtctlservice.Vtctld.MoveTablesCreate:output_type -> vtctldata.WorkflowStatusResponse
+ 190, // 192: vtctlservice.Vtctld.MoveTablesComplete:output_type -> vtctldata.MoveTablesCompleteResponse
+ 191, // 193: vtctlservice.Vtctld.PingTablet:output_type -> vtctldata.PingTabletResponse
+ 192, // 194: vtctlservice.Vtctld.PlannedReparentShard:output_type -> vtctldata.PlannedReparentShardResponse
+ 193, // 195: vtctlservice.Vtctld.RebuildKeyspaceGraph:output_type -> vtctldata.RebuildKeyspaceGraphResponse
+ 194, // 196: vtctlservice.Vtctld.RebuildVSchemaGraph:output_type -> vtctldata.RebuildVSchemaGraphResponse
+ 195, // 197: vtctlservice.Vtctld.RefreshState:output_type -> vtctldata.RefreshStateResponse
+ 196, // 198: vtctlservice.Vtctld.RefreshStateByShard:output_type -> vtctldata.RefreshStateByShardResponse
+ 197, // 199: vtctlservice.Vtctld.ReloadSchema:output_type -> vtctldata.ReloadSchemaResponse
+ 198, // 200: vtctlservice.Vtctld.ReloadSchemaKeyspace:output_type -> vtctldata.ReloadSchemaKeyspaceResponse
+ 199, // 201: vtctlservice.Vtctld.ReloadSchemaShard:output_type -> vtctldata.ReloadSchemaShardResponse
+ 200, // 202: vtctlservice.Vtctld.RemoveBackup:output_type -> vtctldata.RemoveBackupResponse
+ 201, // 203: vtctlservice.Vtctld.RemoveKeyspaceCell:output_type -> vtctldata.RemoveKeyspaceCellResponse
+ 202, // 204: vtctlservice.Vtctld.RemoveShardCell:output_type -> vtctldata.RemoveShardCellResponse
+ 203, // 205: vtctlservice.Vtctld.ReparentTablet:output_type -> vtctldata.ReparentTabletResponse
+ 185, // 206: vtctlservice.Vtctld.ReshardCreate:output_type -> vtctldata.WorkflowStatusResponse
+ 204, // 207: vtctlservice.Vtctld.RestoreFromBackup:output_type -> vtctldata.RestoreFromBackupResponse
+ 205, // 208: vtctlservice.Vtctld.RetrySchemaMigration:output_type -> vtctldata.RetrySchemaMigrationResponse
+ 206, // 209: vtctlservice.Vtctld.RunHealthCheck:output_type -> vtctldata.RunHealthCheckResponse
+ 207, // 210: vtctlservice.Vtctld.SetKeyspaceDurabilityPolicy:output_type -> vtctldata.SetKeyspaceDurabilityPolicyResponse
+ 208, // 211: vtctlservice.Vtctld.SetShardIsPrimaryServing:output_type -> vtctldata.SetShardIsPrimaryServingResponse
+ 209, // 212: vtctlservice.Vtctld.SetShardTabletControl:output_type -> vtctldata.SetShardTabletControlResponse
+ 210, // 213: vtctlservice.Vtctld.SetWritable:output_type -> vtctldata.SetWritableResponse
+ 211, // 214: vtctlservice.Vtctld.ShardReplicationAdd:output_type -> vtctldata.ShardReplicationAddResponse
+ 212, // 215: vtctlservice.Vtctld.ShardReplicationFix:output_type -> vtctldata.ShardReplicationFixResponse
+ 213, // 216: vtctlservice.Vtctld.ShardReplicationPositions:output_type -> vtctldata.ShardReplicationPositionsResponse
+ 214, // 217: vtctlservice.Vtctld.ShardReplicationRemove:output_type -> vtctldata.ShardReplicationRemoveResponse
+ 215, // 218: vtctlservice.Vtctld.SleepTablet:output_type -> vtctldata.SleepTabletResponse
+ 216, // 219: vtctlservice.Vtctld.SourceShardAdd:output_type -> vtctldata.SourceShardAddResponse
+ 217, // 220: vtctlservice.Vtctld.SourceShardDelete:output_type -> vtctldata.SourceShardDeleteResponse
+ 218, // 221: vtctlservice.Vtctld.StartReplication:output_type -> vtctldata.StartReplicationResponse
+ 219, // 222: vtctlservice.Vtctld.StopReplication:output_type -> vtctldata.StopReplicationResponse
+ 220, // 223: vtctlservice.Vtctld.TabletExternallyReparented:output_type -> vtctldata.TabletExternallyReparentedResponse
+ 221, // 224: vtctlservice.Vtctld.UpdateCellInfo:output_type -> vtctldata.UpdateCellInfoResponse
+ 222, // 225: vtctlservice.Vtctld.UpdateCellsAlias:output_type -> vtctldata.UpdateCellsAliasResponse
+ 223, // 226: vtctlservice.Vtctld.Validate:output_type -> vtctldata.ValidateResponse
+ 224, // 227: vtctlservice.Vtctld.ValidateKeyspace:output_type -> vtctldata.ValidateKeyspaceResponse
+ 225, // 228: vtctlservice.Vtctld.ValidateSchemaKeyspace:output_type -> vtctldata.ValidateSchemaKeyspaceResponse
+ 226, // 229: vtctlservice.Vtctld.ValidateShard:output_type -> vtctldata.ValidateShardResponse
+ 227, // 230: vtctlservice.Vtctld.ValidateVersionKeyspace:output_type -> vtctldata.ValidateVersionKeyspaceResponse
+ 228, // 231: vtctlservice.Vtctld.ValidateVersionShard:output_type -> vtctldata.ValidateVersionShardResponse
+ 229, // 232: vtctlservice.Vtctld.ValidateVSchema:output_type -> vtctldata.ValidateVSchemaResponse
+ 230, // 233: vtctlservice.Vtctld.VDiffCreate:output_type -> vtctldata.VDiffCreateResponse
+ 231, // 234: vtctlservice.Vtctld.VDiffDelete:output_type -> vtctldata.VDiffDeleteResponse
+ 232, // 235: vtctlservice.Vtctld.VDiffResume:output_type -> vtctldata.VDiffResumeResponse
+ 233, // 236: vtctlservice.Vtctld.VDiffShow:output_type -> vtctldata.VDiffShowResponse
+ 234, // 237: vtctlservice.Vtctld.VDiffStop:output_type -> vtctldata.VDiffStopResponse
+ 235, // 238: vtctlservice.Vtctld.WorkflowDelete:output_type -> vtctldata.WorkflowDeleteResponse
+ 185, // 239: vtctlservice.Vtctld.WorkflowStatus:output_type -> vtctldata.WorkflowStatusResponse
+ 236, // 240: vtctlservice.Vtctld.WorkflowSwitchTraffic:output_type -> vtctldata.WorkflowSwitchTrafficResponse
+ 237, // 241: vtctlservice.Vtctld.WorkflowUpdate:output_type -> vtctldata.WorkflowUpdateResponse
+ 238, // 242: vtctlservice.Vtctld.GetMirrorRules:output_type -> vtctldata.GetMirrorRulesResponse
+ 239, // 243: vtctlservice.Vtctld.WorkflowMirrorTraffic:output_type -> vtctldata.WorkflowMirrorTrafficResponse
+ 122, // [122:244] is the sub-list for method output_type
+ 0, // [0:122] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
0, // [0:0] is the sub-list for extension extendee
0, // [0:0] is the sub-list for field type_name
diff --git a/go/vt/proto/vtctlservice/vtctlservice_grpc.pb.go b/go/vt/proto/vtctlservice/vtctlservice_grpc.pb.go
index e860c53e706..9e6ad8103ad 100644
--- a/go/vt/proto/vtctlservice/vtctlservice_grpc.pb.go
+++ b/go/vt/proto/vtctlservice/vtctlservice_grpc.pb.go
@@ -175,6 +175,8 @@ type VtctldClient interface {
CleanupSchemaMigration(ctx context.Context, in *vtctldata.CleanupSchemaMigrationRequest, opts ...grpc.CallOption) (*vtctldata.CleanupSchemaMigrationResponse, error)
// CompleteSchemaMigration completes one or all migrations executed with --postpone-completion.
CompleteSchemaMigration(ctx context.Context, in *vtctldata.CompleteSchemaMigrationRequest, opts ...grpc.CallOption) (*vtctldata.CompleteSchemaMigrationResponse, error)
+ // CompleteSchemaMigration completes one or all migrations executed with --postpone-completion.
+ ConcludeTransaction(ctx context.Context, in *vtctldata.ConcludeTransactionRequest, opts ...grpc.CallOption) (*vtctldata.ConcludeTransactionResponse, error)
// CreateKeyspace creates the specified keyspace in the topology. For a
// SNAPSHOT keyspace, the request must specify the name of a base keyspace,
// as well as a snapshot time.
@@ -651,6 +653,15 @@ func (c *vtctldClient) CompleteSchemaMigration(ctx context.Context, in *vtctldat
return out, nil
}
+func (c *vtctldClient) ConcludeTransaction(ctx context.Context, in *vtctldata.ConcludeTransactionRequest, opts ...grpc.CallOption) (*vtctldata.ConcludeTransactionResponse, error) {
+ out := new(vtctldata.ConcludeTransactionResponse)
+ err := c.cc.Invoke(ctx, "/vtctlservice.Vtctld/ConcludeTransaction", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
func (c *vtctldClient) CreateKeyspace(ctx context.Context, in *vtctldata.CreateKeyspaceRequest, opts ...grpc.CallOption) (*vtctldata.CreateKeyspaceResponse, error) {
out := new(vtctldata.CreateKeyspaceResponse)
err := c.cc.Invoke(ctx, "/vtctlservice.Vtctld/CreateKeyspace", in, out, opts...)
@@ -1671,6 +1682,8 @@ type VtctldServer interface {
CleanupSchemaMigration(context.Context, *vtctldata.CleanupSchemaMigrationRequest) (*vtctldata.CleanupSchemaMigrationResponse, error)
// CompleteSchemaMigration completes one or all migrations executed with --postpone-completion.
CompleteSchemaMigration(context.Context, *vtctldata.CompleteSchemaMigrationRequest) (*vtctldata.CompleteSchemaMigrationResponse, error)
+ // CompleteSchemaMigration completes one or all migrations executed with --postpone-completion.
+ ConcludeTransaction(context.Context, *vtctldata.ConcludeTransactionRequest) (*vtctldata.ConcludeTransactionResponse, error)
// CreateKeyspace creates the specified keyspace in the topology. For a
// SNAPSHOT keyspace, the request must specify the name of a base keyspace,
// as well as a snapshot time.
@@ -2014,6 +2027,9 @@ func (UnimplementedVtctldServer) CleanupSchemaMigration(context.Context, *vtctld
func (UnimplementedVtctldServer) CompleteSchemaMigration(context.Context, *vtctldata.CompleteSchemaMigrationRequest) (*vtctldata.CompleteSchemaMigrationResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CompleteSchemaMigration not implemented")
}
+func (UnimplementedVtctldServer) ConcludeTransaction(context.Context, *vtctldata.ConcludeTransactionRequest) (*vtctldata.ConcludeTransactionResponse, error) {
+ return nil, status.Errorf(codes.Unimplemented, "method ConcludeTransaction not implemented")
+}
func (UnimplementedVtctldServer) CreateKeyspace(context.Context, *vtctldata.CreateKeyspaceRequest) (*vtctldata.CreateKeyspaceResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateKeyspace not implemented")
}
@@ -2603,6 +2619,24 @@ func _Vtctld_CompleteSchemaMigration_Handler(srv interface{}, ctx context.Contex
return interceptor(ctx, in, info, handler)
}
+func _Vtctld_ConcludeTransaction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(vtctldata.ConcludeTransactionRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(VtctldServer).ConcludeTransaction(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/vtctlservice.Vtctld/ConcludeTransaction",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(VtctldServer).ConcludeTransaction(ctx, req.(*vtctldata.ConcludeTransactionRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
func _Vtctld_CreateKeyspace_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(vtctldata.CreateKeyspaceRequest)
if err := dec(in); err != nil {
@@ -4569,6 +4603,10 @@ var Vtctld_ServiceDesc = grpc.ServiceDesc{
MethodName: "CompleteSchemaMigration",
Handler: _Vtctld_CompleteSchemaMigration_Handler,
},
+ {
+ MethodName: "ConcludeTransaction",
+ Handler: _Vtctld_ConcludeTransaction_Handler,
+ },
{
MethodName: "CreateKeyspace",
Handler: _Vtctld_CreateKeyspace_Handler,
diff --git a/go/vt/proto/vtgate/vtgate.pb.go b/go/vt/proto/vtgate/vtgate.pb.go
index 1b84f6c7efe..58392f86bb3 100644
--- a/go/vt/proto/vtgate/vtgate.pb.go
+++ b/go/vt/proto/vtgate/vtgate.pb.go
@@ -1084,6 +1084,8 @@ type VStreamFlags struct {
TabletOrder string `protobuf:"bytes,6,opt,name=tablet_order,json=tabletOrder,proto3" json:"tablet_order,omitempty"`
// When set, all new row events from the `heartbeat` table, for all shards, in the sidecardb will be streamed.
StreamKeyspaceHeartbeats bool `protobuf:"varint,7,opt,name=stream_keyspace_heartbeats,json=streamKeyspaceHeartbeats,proto3" json:"stream_keyspace_heartbeats,omitempty"`
+ // Include reshard journal events in the stream.
+ IncludeReshardJournalEvents bool `protobuf:"varint,8,opt,name=include_reshard_journal_events,json=includeReshardJournalEvents,proto3" json:"include_reshard_journal_events,omitempty"`
}
func (x *VStreamFlags) Reset() {
@@ -1167,6 +1169,13 @@ func (x *VStreamFlags) GetStreamKeyspaceHeartbeats() bool {
return false
}
+func (x *VStreamFlags) GetIncludeReshardJournalEvents() bool {
+ if x != nil {
+ return x.IncludeReshardJournalEvents
+ }
+ return false
+}
+
// VStreamRequest is the payload for VStream.
type VStreamRequest struct {
state protoimpl.MessageState
@@ -1836,7 +1845,7 @@ var file_vtgate_proto_rawDesc = []byte{
0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x74, 0x69, 0x64,
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x74, 0x69, 0x64, 0x22, 0x1c, 0x0a, 0x1a,
0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xaa, 0x02, 0x0a, 0x0c, 0x56,
+ 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xef, 0x02, 0x0a, 0x0c, 0x56,
0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x46, 0x6c, 0x61, 0x67, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x6d,
0x69, 0x6e, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x5f, 0x73, 0x6b, 0x65, 0x77, 0x18, 0x01, 0x20, 0x01,
0x28, 0x08, 0x52, 0x0c, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x53, 0x6b, 0x65, 0x77,
@@ -1855,68 +1864,72 @@ var file_vtgate_proto_rawDesc = []byte{
0x65, 0x61, 0x6d, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x68, 0x65, 0x61,
0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x18, 0x73,
0x74, 0x72, 0x65, 0x61, 0x6d, 0x4b, 0x65, 0x79, 0x73, 0x70, 0x61, 0x63, 0x65, 0x48, 0x65, 0x61,
- 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x73, 0x22, 0xf6, 0x01, 0x0a, 0x0e, 0x56, 0x53, 0x74, 0x72,
- 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x09, 0x63, 0x61,
- 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
- 0x76, 0x74, 0x72, 0x70, 0x63, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x44, 0x52, 0x08,
- 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x64, 0x12, 0x35, 0x0a, 0x0b, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x14, 0x2e,
- 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54,
- 0x79, 0x70, 0x65, 0x52, 0x0a, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
- 0x27, 0x0a, 0x05, 0x76, 0x67, 0x74, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11,
- 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x47, 0x74, 0x69,
- 0x64, 0x52, 0x05, 0x76, 0x67, 0x74, 0x69, 0x64, 0x12, 0x2a, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x74,
- 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f,
- 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x06, 0x66, 0x69,
- 0x6c, 0x74, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x05, 0x66, 0x6c, 0x61, 0x67, 0x73, 0x18, 0x05, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x76, 0x74, 0x67, 0x61, 0x74, 0x65, 0x2e, 0x56, 0x53, 0x74,
- 0x72, 0x65, 0x61, 0x6d, 0x46, 0x6c, 0x61, 0x67, 0x73, 0x52, 0x05, 0x66, 0x6c, 0x61, 0x67, 0x73,
- 0x22, 0x3d, 0x0a, 0x0f, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20,
- 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x56, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x22,
- 0x92, 0x01, 0x0a, 0x0e, 0x50, 0x72, 0x65, 0x70, 0x61, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x09, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x76, 0x74, 0x72, 0x70, 0x63, 0x2e, 0x43, 0x61,
- 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x44, 0x52, 0x08, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x64,
- 0x12, 0x29, 0x0a, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x0f, 0x2e, 0x76, 0x74, 0x67, 0x61, 0x74, 0x65, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69,
- 0x6f, 0x6e, 0x52, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x27, 0x0a, 0x05, 0x71,
- 0x75, 0x65, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x2e, 0x42, 0x6f, 0x75, 0x6e, 0x64, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x05, 0x71,
- 0x75, 0x65, 0x72, 0x79, 0x22, 0x89, 0x01, 0x0a, 0x0f, 0x50, 0x72, 0x65, 0x70, 0x61, 0x72, 0x65,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x25, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x76, 0x74, 0x72, 0x70, 0x63, 0x2e,
- 0x52, 0x50, 0x43, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12,
- 0x29, 0x0a, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x0f, 0x2e, 0x76, 0x74, 0x67, 0x61, 0x74, 0x65, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x52, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x0a, 0x06, 0x66, 0x69,
- 0x65, 0x6c, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73,
- 0x22, 0x6e, 0x0a, 0x13, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
+ 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x73, 0x12, 0x43, 0x0a, 0x1e, 0x69, 0x6e, 0x63, 0x6c, 0x75,
+ 0x64, 0x65, 0x5f, 0x72, 0x65, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x6a, 0x6f, 0x75, 0x72, 0x6e,
+ 0x61, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52,
+ 0x1b, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x52, 0x65, 0x73, 0x68, 0x61, 0x72, 0x64, 0x4a,
+ 0x6f, 0x75, 0x72, 0x6e, 0x61, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x22, 0xf6, 0x01, 0x0a,
+ 0x0e, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
+ 0x2c, 0x0a, 0x09, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x76, 0x74, 0x72, 0x70, 0x63, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x65,
+ 0x72, 0x49, 0x44, 0x52, 0x08, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x64, 0x12, 0x35, 0x0a,
+ 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01,
+ 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x6f, 0x70, 0x6f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61,
+ 0x62, 0x6c, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0a, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x74,
+ 0x54, 0x79, 0x70, 0x65, 0x12, 0x27, 0x0a, 0x05, 0x76, 0x67, 0x74, 0x69, 0x64, 0x18, 0x03, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x56, 0x47, 0x74, 0x69, 0x64, 0x52, 0x05, 0x76, 0x67, 0x74, 0x69, 0x64, 0x12, 0x2a, 0x0a,
+ 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e,
+ 0x62, 0x69, 0x6e, 0x6c, 0x6f, 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65,
+ 0x72, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x05, 0x66, 0x6c, 0x61,
+ 0x67, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x76, 0x74, 0x67, 0x61, 0x74,
+ 0x65, 0x2e, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x46, 0x6c, 0x61, 0x67, 0x73, 0x52, 0x05,
+ 0x66, 0x6c, 0x61, 0x67, 0x73, 0x22, 0x3d, 0x0a, 0x0f, 0x56, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x62, 0x69, 0x6e, 0x6c, 0x6f,
+ 0x67, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x56, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x73, 0x22, 0x92, 0x01, 0x0a, 0x0e, 0x50, 0x72, 0x65, 0x70, 0x61, 0x72, 0x65,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x09, 0x63, 0x61, 0x6c, 0x6c, 0x65,
0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x76, 0x74, 0x72,
0x70, 0x63, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x44, 0x52, 0x08, 0x63, 0x61, 0x6c,
0x6c, 0x65, 0x72, 0x49, 0x64, 0x12, 0x29, 0x0a, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x76, 0x74, 0x67, 0x61, 0x74, 0x65, 0x2e,
0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
- 0x22, 0x3d, 0x0a, 0x14, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x25, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x76, 0x74, 0x72, 0x70, 0x63, 0x2e,
- 0x52, 0x50, 0x43, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2a,
- 0x44, 0x0a, 0x0f, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f,
- 0x64, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45,
- 0x44, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x53, 0x49, 0x4e, 0x47, 0x4c, 0x45, 0x10, 0x01, 0x12,
- 0x09, 0x0a, 0x05, 0x4d, 0x55, 0x4c, 0x54, 0x49, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x54, 0x57,
- 0x4f, 0x50, 0x43, 0x10, 0x03, 0x2a, 0x3c, 0x0a, 0x0b, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x4f,
- 0x72, 0x64, 0x65, 0x72, 0x12, 0x0a, 0x0a, 0x06, 0x4e, 0x4f, 0x52, 0x4d, 0x41, 0x4c, 0x10, 0x00,
- 0x12, 0x07, 0x0a, 0x03, 0x50, 0x52, 0x45, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x50, 0x4f, 0x53,
- 0x54, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x41, 0x55, 0x54, 0x4f, 0x43, 0x4f, 0x4d, 0x4d, 0x49,
- 0x54, 0x10, 0x03, 0x42, 0x36, 0x0a, 0x0f, 0x69, 0x6f, 0x2e, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5a, 0x23, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2e, 0x69,
- 0x6f, 0x2f, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2f, 0x67, 0x6f, 0x2f, 0x76, 0x74, 0x2f, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x74, 0x67, 0x61, 0x74, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x33,
+ 0x12, 0x27, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
+ 0x11, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x42, 0x6f, 0x75, 0x6e, 0x64, 0x51, 0x75, 0x65,
+ 0x72, 0x79, 0x52, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x22, 0x89, 0x01, 0x0a, 0x0f, 0x50, 0x72,
+ 0x65, 0x70, 0x61, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x25, 0x0a,
+ 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x76,
+ 0x74, 0x72, 0x70, 0x63, 0x2e, 0x52, 0x50, 0x43, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x05, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x12, 0x29, 0x0a, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18,
+ 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x76, 0x74, 0x67, 0x61, 0x74, 0x65, 0x2e, 0x53,
+ 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12,
+ 0x24, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
+ 0x0c, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x06, 0x66,
+ 0x69, 0x65, 0x6c, 0x64, 0x73, 0x22, 0x6e, 0x0a, 0x13, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x53, 0x65,
+ 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x09,
+ 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
+ 0x0f, 0x2e, 0x76, 0x74, 0x72, 0x70, 0x63, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x44,
+ 0x52, 0x08, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x49, 0x64, 0x12, 0x29, 0x0a, 0x07, 0x73, 0x65,
+ 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x76, 0x74,
+ 0x67, 0x61, 0x74, 0x65, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x73, 0x65,
+ 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x3d, 0x0a, 0x14, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x53, 0x65,
+ 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x25, 0x0a,
+ 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x76,
+ 0x74, 0x72, 0x70, 0x63, 0x2e, 0x52, 0x50, 0x43, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x05, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x2a, 0x44, 0x0a, 0x0f, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45,
+ 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x53, 0x49, 0x4e, 0x47,
+ 0x4c, 0x45, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x4d, 0x55, 0x4c, 0x54, 0x49, 0x10, 0x02, 0x12,
+ 0x09, 0x0a, 0x05, 0x54, 0x57, 0x4f, 0x50, 0x43, 0x10, 0x03, 0x2a, 0x3c, 0x0a, 0x0b, 0x43, 0x6f,
+ 0x6d, 0x6d, 0x69, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x0a, 0x0a, 0x06, 0x4e, 0x4f, 0x52,
+ 0x4d, 0x41, 0x4c, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x50, 0x52, 0x45, 0x10, 0x01, 0x12, 0x08,
+ 0x0a, 0x04, 0x50, 0x4f, 0x53, 0x54, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x41, 0x55, 0x54, 0x4f,
+ 0x43, 0x4f, 0x4d, 0x4d, 0x49, 0x54, 0x10, 0x03, 0x42, 0x36, 0x0a, 0x0f, 0x69, 0x6f, 0x2e, 0x76,
+ 0x69, 0x74, 0x65, 0x73, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5a, 0x23, 0x76, 0x69, 0x74,
+ 0x65, 0x73, 0x73, 0x2e, 0x69, 0x6f, 0x2f, 0x76, 0x69, 0x74, 0x65, 0x73, 0x73, 0x2f, 0x67, 0x6f,
+ 0x2f, 0x76, 0x74, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x74, 0x67, 0x61, 0x74, 0x65,
+ 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
diff --git a/go/vt/proto/vtgate/vtgate_vtproto.pb.go b/go/vt/proto/vtgate/vtgate_vtproto.pb.go
index 6f6bbf935e9..d32eee0428a 100644
--- a/go/vt/proto/vtgate/vtgate_vtproto.pb.go
+++ b/go/vt/proto/vtgate/vtgate_vtproto.pb.go
@@ -348,6 +348,7 @@ func (m *VStreamFlags) CloneVT() *VStreamFlags {
r.CellPreference = m.CellPreference
r.TabletOrder = m.TabletOrder
r.StreamKeyspaceHeartbeats = m.StreamKeyspaceHeartbeats
+ r.IncludeReshardJournalEvents = m.IncludeReshardJournalEvents
if len(m.unknownFields) > 0 {
r.unknownFields = make([]byte, len(m.unknownFields))
copy(r.unknownFields, m.unknownFields)
@@ -1463,6 +1464,16 @@ func (m *VStreamFlags) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
i -= len(m.unknownFields)
copy(dAtA[i:], m.unknownFields)
}
+ if m.IncludeReshardJournalEvents {
+ i--
+ if m.IncludeReshardJournalEvents {
+ dAtA[i] = 1
+ } else {
+ dAtA[i] = 0
+ }
+ i--
+ dAtA[i] = 0x40
+ }
if m.StreamKeyspaceHeartbeats {
i--
if m.StreamKeyspaceHeartbeats {
@@ -2263,6 +2274,9 @@ func (m *VStreamFlags) SizeVT() (n int) {
if m.StreamKeyspaceHeartbeats {
n += 2
}
+ if m.IncludeReshardJournalEvents {
+ n += 2
+ }
n += len(m.unknownFields)
return n
}
@@ -5222,6 +5236,26 @@ func (m *VStreamFlags) UnmarshalVT(dAtA []byte) error {
}
}
m.StreamKeyspaceHeartbeats = bool(v != 0)
+ case 8:
+ if wireType != 0 {
+ return fmt.Errorf("proto: wrong wireType = %d for field IncludeReshardJournalEvents", wireType)
+ }
+ var v int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return protohelpers.ErrIntOverflow
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ v |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ m.IncludeReshardJournalEvents = bool(v != 0)
default:
iNdEx = preIndex
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
diff --git a/go/vt/schemadiff/names.go b/go/vt/schemadiff/names.go
index c0878d22eeb..e1d12cc80d4 100644
--- a/go/vt/schemadiff/names.go
+++ b/go/vt/schemadiff/names.go
@@ -20,6 +20,9 @@ import (
"fmt"
"regexp"
"strings"
+
+ "vitess.io/vitess/go/textutil"
+ "vitess.io/vitess/go/vt/sqlparser"
)
// constraint name examples:
@@ -48,3 +51,47 @@ func ExtractConstraintOriginalName(tableName string, constraintName string) stri
return constraintName
}
+
+// newConstraintName generates a new, unique name for a constraint. Our problem is that a MySQL
+// constraint's name is unique in the schema (!). And so as we duplicate the original table, we must
+// create completely new names for all constraints.
+// Moreover, we really want this name to be consistent across all shards. We therefore use a deterministic
+// UUIDv5 (SHA) function over the migration UUID, table name, and constraint's _contents_.
+// We _also_ include the original constraint name as prefix, as room allows
+// for example, if the original constraint name is "check_1",
+// we might generate "check_1_cps1okb4uafunfqusi2lp22u3".
+// If we then again migrate a table whose constraint name is "check_1_cps1okb4uafunfqusi2lp22u3 " we
+// get for example "check_1_19l09s37kbhj4axnzmi10e18k" (hash changes, and we still try to preserve original name)
+//
+// Furthermore, per bug report https://bugs.mysql.com/bug.php?id=107772, if the user doesn't provide a name for
+// their CHECK constraint, then MySQL picks a name in this format _chk_.
+// Example: sometable_chk_1
+// Next, when MySQL is asked to RENAME TABLE and sees a constraint with this format, it attempts to rename
+// the constraint with the new table's name. This is problematic for Vitess, because we often rename tables to
+// very long names, such as _vt_HOLD_394f9e6dfc3d11eca0390a43f95f28a3_20220706091048.
+// As we rename the constraint to e.g. `sometable_chk_1_cps1okb4uafunfqusi2lp22u3`, this makes MySQL want to
+// call the new constraint something like _vt_HOLD_394f9e6dfc3d11eca0390a43f95f28a3_20220706091048_chk_1_cps1okb4uafunfqusi2lp22u3,
+// which exceeds the 64 character limit for table names. Long story short, we also trim down if the constraint seems
+// to be auto-generated.
+func newConstraintName(tableName string, baseUUID string, constraintDefinition *sqlparser.ConstraintDefinition, hashExists map[string]bool, seed string, oldName string) string {
+ constraintType := GetConstraintType(constraintDefinition.Details)
+
+ constraintIndicator := constraintIndicatorMap[int(constraintType)]
+ oldName = ExtractConstraintOriginalName(tableName, oldName)
+ hash := textutil.UUIDv5Base36(baseUUID, tableName, seed)
+ for i := 1; hashExists[hash]; i++ {
+ hash = textutil.UUIDv5Base36(baseUUID, tableName, seed, fmt.Sprintf("%d", i))
+ }
+ hashExists[hash] = true
+ suffix := "_" + hash
+ maxAllowedNameLength := maxConstraintNameLength - len(suffix)
+ newName := oldName
+ if newName == "" {
+ newName = constraintIndicator // start with something that looks consistent with MySQL's naming
+ }
+ if len(newName) > maxAllowedNameLength {
+ newName = newName[0:maxAllowedNameLength]
+ }
+ newName = newName + suffix
+ return newName
+}
diff --git a/go/vt/schemadiff/onlineddl.go b/go/vt/schemadiff/onlineddl.go
index 66908e502f5..f02ccb1224d 100644
--- a/go/vt/schemadiff/onlineddl.go
+++ b/go/vt/schemadiff/onlineddl.go
@@ -17,14 +17,51 @@ limitations under the License.
package schemadiff
import (
+ "errors"
"fmt"
"math"
"sort"
"strings"
+ "vitess.io/vitess/go/mysql/capabilities"
"vitess.io/vitess/go/vt/sqlparser"
)
+var (
+ ErrForeignKeyFound = errors.New("Foreign key found")
+
+ copyAlgorithm = sqlparser.AlgorithmValue(sqlparser.CopyStr)
+)
+
+const (
+ maxConstraintNameLength = 64
+)
+
+type ConstraintType int
+
+const (
+ UnknownConstraintType ConstraintType = iota
+ CheckConstraintType
+ ForeignKeyConstraintType
+)
+
+var (
+ constraintIndicatorMap = map[int]string{
+ int(CheckConstraintType): "chk",
+ int(ForeignKeyConstraintType): "fk",
+ }
+)
+
+func GetConstraintType(constraintInfo sqlparser.ConstraintInfo) ConstraintType {
+ if _, ok := constraintInfo.(*sqlparser.CheckConstraintDefinition); ok {
+ return CheckConstraintType
+ }
+ if _, ok := constraintInfo.(*sqlparser.ForeignKeyDefinition); ok {
+ return ForeignKeyConstraintType
+ }
+ return UnknownConstraintType
+}
+
// ColumnChangeExpandsDataRange sees if target column has any value set/range that is impossible in source column.
func ColumnChangeExpandsDataRange(source *ColumnDefinitionEntity, target *ColumnDefinitionEntity) (bool, string) {
if target.IsNullable() && !source.IsNullable() {
@@ -588,3 +625,154 @@ func OnlineDDLMigrationTablesAnalysis(
return analysis, nil
}
+
+// ValidateAndEditCreateTableStatement inspects the CreateTable AST and does the following:
+// - extra validation (no FKs for now...)
+// - generate new and unique names for all constraints (CHECK and FK; yes, why not handle FK names; even as we don't support FKs today, we may in the future)
+func ValidateAndEditCreateTableStatement(originalTableName string, baseUUID string, createTable *sqlparser.CreateTable, allowForeignKeys bool) (constraintMap map[string]string, err error) {
+ constraintMap = map[string]string{}
+ hashExists := map[string]bool{}
+
+ validateWalk := func(node sqlparser.SQLNode) (kontinue bool, err error) {
+ switch node := node.(type) {
+ case *sqlparser.ForeignKeyDefinition:
+ if !allowForeignKeys {
+ return false, ErrForeignKeyFound
+ }
+ case *sqlparser.ConstraintDefinition:
+ oldName := node.Name.String()
+ newName := newConstraintName(originalTableName, baseUUID, node, hashExists, sqlparser.CanonicalString(node.Details), oldName)
+ node.Name = sqlparser.NewIdentifierCI(newName)
+ constraintMap[oldName] = newName
+ }
+ return true, nil
+ }
+ if err := sqlparser.Walk(validateWalk, createTable); err != nil {
+ return constraintMap, err
+ }
+ return constraintMap, nil
+}
+
+// ValidateAndEditAlterTableStatement inspects the AlterTable statement and:
+// - modifies any CONSTRAINT name according to given name mapping
+// - explode ADD FULLTEXT KEY into multiple statements
+func ValidateAndEditAlterTableStatement(originalTableName string, baseUUID string, capableOf capabilities.CapableOf, alterTable *sqlparser.AlterTable, constraintMap map[string]string) (alters []*sqlparser.AlterTable, err error) {
+ capableOfInstantDDLXtrabackup, err := capableOf(capabilities.InstantDDLXtrabackupCapability)
+ if err != nil {
+ return nil, err
+ }
+
+ hashExists := map[string]bool{}
+ validateWalk := func(node sqlparser.SQLNode) (kontinue bool, err error) {
+ switch node := node.(type) {
+ case *sqlparser.DropKey:
+ if node.Type == sqlparser.CheckKeyType || node.Type == sqlparser.ForeignKeyType {
+ // drop a check or a foreign key constraint
+ mappedName, ok := constraintMap[node.Name.String()]
+ if !ok {
+ return false, fmt.Errorf("Found DROP CONSTRAINT: %v, but could not find constraint name in map", sqlparser.CanonicalString(node))
+ }
+ node.Name = sqlparser.NewIdentifierCI(mappedName)
+ }
+ case *sqlparser.AddConstraintDefinition:
+ oldName := node.ConstraintDefinition.Name.String()
+ newName := newConstraintName(originalTableName, baseUUID, node.ConstraintDefinition, hashExists, sqlparser.CanonicalString(node.ConstraintDefinition.Details), oldName)
+ node.ConstraintDefinition.Name = sqlparser.NewIdentifierCI(newName)
+ constraintMap[oldName] = newName
+ }
+ return true, nil
+ }
+ if err := sqlparser.Walk(validateWalk, alterTable); err != nil {
+ return alters, err
+ }
+ alters = append(alters, alterTable)
+ // Handle ADD FULLTEXT KEY statements
+ countAddFullTextStatements := 0
+ redactedOptions := make([]sqlparser.AlterOption, 0, len(alterTable.AlterOptions))
+ for i := range alterTable.AlterOptions {
+ opt := alterTable.AlterOptions[i]
+ switch opt := opt.(type) {
+ case sqlparser.AlgorithmValue:
+ if !capableOfInstantDDLXtrabackup {
+ // we do not pass ALGORITHM. We choose our own ALGORITHM.
+ continue
+ }
+ case *sqlparser.AddIndexDefinition:
+ if opt.IndexDefinition.Info.Type == sqlparser.IndexTypeFullText {
+ countAddFullTextStatements++
+ if countAddFullTextStatements > 1 {
+ // We've already got one ADD FULLTEXT KEY. We can't have another
+ // in the same statement
+ extraAlterTable := &sqlparser.AlterTable{
+ Table: alterTable.Table,
+ AlterOptions: []sqlparser.AlterOption{opt},
+ }
+ if !capableOfInstantDDLXtrabackup {
+ extraAlterTable.AlterOptions = append(extraAlterTable.AlterOptions, copyAlgorithm)
+ }
+ alters = append(alters, extraAlterTable)
+ continue
+ }
+ }
+ }
+ redactedOptions = append(redactedOptions, opt)
+ }
+ alterTable.AlterOptions = redactedOptions
+ if !capableOfInstantDDLXtrabackup {
+ alterTable.AlterOptions = append(alterTable.AlterOptions, copyAlgorithm)
+ }
+ return alters, nil
+}
+
+// AddInstantAlgorithm adds or modifies the AlterTable's ALGORITHM to INSTANT
+func AddInstantAlgorithm(alterTable *sqlparser.AlterTable) {
+ instantOpt := sqlparser.AlgorithmValue("INSTANT")
+ for i, opt := range alterTable.AlterOptions {
+ if _, ok := opt.(sqlparser.AlgorithmValue); ok {
+ // replace an existing algorithm
+ alterTable.AlterOptions[i] = instantOpt
+ return
+ }
+ }
+ // append an algorithm
+ alterTable.AlterOptions = append(alterTable.AlterOptions, instantOpt)
+}
+
+// DuplicateCreateTable parses the given `CREATE TABLE` statement, and returns:
+// - The format CreateTable AST
+// - A new CreateTable AST, with the table renamed as `newTableName`, and with constraints renamed deterministically
+// - Map of renamed constraints
+func DuplicateCreateTable(originalCreateTable *sqlparser.CreateTable, baseUUID string, newTableName string, allowForeignKeys bool) (
+ newCreateTable *sqlparser.CreateTable,
+ constraintMap map[string]string,
+ err error,
+) {
+ newCreateTable = sqlparser.Clone(originalCreateTable)
+ newCreateTable.SetTable(newCreateTable.GetTable().Qualifier.CompliantName(), newTableName)
+
+ // If this table has a self-referencing foreign key constraint, ensure the referenced table gets renamed:
+ renameSelfFK := func(node sqlparser.SQLNode) (kontinue bool, err error) {
+ switch node := node.(type) {
+ case *sqlparser.ConstraintDefinition:
+ fk, ok := node.Details.(*sqlparser.ForeignKeyDefinition)
+ if !ok {
+ return true, nil
+ }
+ if referencedTableName := fk.ReferenceDefinition.ReferencedTable.Name.String(); referencedTableName == originalCreateTable.Table.Name.String() {
+ // This is a self-referencing foreign key
+ // We need to rename the referenced table as well
+ fk.ReferenceDefinition.ReferencedTable.Name = sqlparser.NewIdentifierCS(newTableName)
+ }
+ }
+ return true, nil
+ }
+ _ = sqlparser.Walk(renameSelfFK, newCreateTable)
+
+ // manipulate CreateTable statement: take care of constraints names which have to be
+ // unique across the schema
+ constraintMap, err = ValidateAndEditCreateTableStatement(originalCreateTable.Table.Name.String(), baseUUID, newCreateTable, allowForeignKeys)
+ if err != nil {
+ return nil, nil, err
+ }
+ return newCreateTable, constraintMap, nil
+}
diff --git a/go/vt/schemadiff/onlineddl_test.go b/go/vt/schemadiff/onlineddl_test.go
index bd08bedfe8a..834490dca1b 100644
--- a/go/vt/schemadiff/onlineddl_test.go
+++ b/go/vt/schemadiff/onlineddl_test.go
@@ -24,9 +24,21 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
+ "vitess.io/vitess/go/mysql/capabilities"
"vitess.io/vitess/go/vt/sqlparser"
)
+func TestGetConstraintType(t *testing.T) {
+ {
+ typ := GetConstraintType(&sqlparser.CheckConstraintDefinition{})
+ assert.Equal(t, CheckConstraintType, typ)
+ }
+ {
+ typ := GetConstraintType(&sqlparser.ForeignKeyDefinition{})
+ assert.Equal(t, ForeignKeyConstraintType, typ)
+ }
+}
+
func TestPrioritizedUniqueKeys(t *testing.T) {
table := `
create table t (
@@ -958,3 +970,372 @@ func TestRevertible(t *testing.T) {
})
}
}
+
+func TestValidateAndEditCreateTableStatement(t *testing.T) {
+ tt := []struct {
+ name string
+ query string
+ allowForeignKeys bool
+ expectError string
+ countConstraints int
+ expectConstraintMap map[string]string
+ }{
+ {
+ name: "table with FK, not allowed",
+ query: `
+ create table onlineddl_test (
+ id int auto_increment,
+ i int not null,
+ parent_id int not null,
+ primary key(id),
+ constraint test_ibfk foreign key (parent_id) references onlineddl_test_parent (id) on delete no action
+ )
+ `,
+ expectError: ErrForeignKeyFound.Error(),
+ },
+ {
+ name: "table with FK, allowed",
+ query: `
+ create table onlineddl_test (
+ id int auto_increment,
+ i int not null,
+ parent_id int not null,
+ primary key(id),
+ constraint test_ibfk foreign key (parent_id) references onlineddl_test_parent (id) on delete no action
+ )
+ `,
+ allowForeignKeys: true,
+ countConstraints: 1,
+ expectConstraintMap: map[string]string{"test_ibfk": "test_ibfk_2wtivm6zk4lthpz14g9uoyaqk"},
+ },
+ {
+ name: "table with default FK name, strip table name",
+ query: `
+ create table onlineddl_test (
+ id int auto_increment,
+ i int not null,
+ parent_id int not null,
+ primary key(id),
+ constraint onlineddl_test_ibfk_1 foreign key (parent_id) references onlineddl_test_parent (id) on delete no action
+ )
+ `,
+ allowForeignKeys: true,
+ countConstraints: 1,
+ // we want 'onlineddl_test_' to be stripped out:
+ expectConstraintMap: map[string]string{"onlineddl_test_ibfk_1": "ibfk_1_2wtivm6zk4lthpz14g9uoyaqk"},
+ },
+ {
+ name: "table with anonymous FK, allowed",
+ query: `
+ create table onlineddl_test (
+ id int auto_increment,
+ i int not null,
+ parent_id int not null,
+ primary key(id),
+ foreign key (parent_id) references onlineddl_test_parent (id) on delete no action
+ )
+ `,
+ allowForeignKeys: true,
+ countConstraints: 1,
+ expectConstraintMap: map[string]string{"": "fk_2wtivm6zk4lthpz14g9uoyaqk"},
+ },
+ {
+ name: "table with CHECK constraints",
+ query: `
+ create table onlineddl_test (
+ id int auto_increment,
+ i int not null,
+ primary key(id),
+ constraint check_1 CHECK ((i >= 0)),
+ constraint check_2 CHECK ((i <> 5)),
+ constraint check_3 CHECK ((i >= 0)),
+ constraint chk_1111033c1d2d5908bf1f956ba900b192_check_4 CHECK ((i >= 0))
+ )
+ `,
+ countConstraints: 4,
+ expectConstraintMap: map[string]string{
+ "check_1": "check_1_7dbssrkwdaxhdunwi5zj53q83",
+ "check_2": "check_2_ehg3rtk6ejvbxpucimeess30o",
+ "check_3": "check_3_0se0t8x98mf8v7lqmj2la8j9u",
+ "chk_1111033c1d2d5908bf1f956ba900b192_check_4": "chk_1111033c1d2d5908bf1f956ba900b192_c_0c2c3bxi9jp4evqrct44wg3xh",
+ },
+ },
+ {
+ name: "table with both FOREIGN and CHECK constraints",
+ query: `
+ create table onlineddl_test (
+ id int auto_increment,
+ i int not null,
+ primary key(id),
+ constraint check_1 CHECK ((i >= 0)),
+ constraint test_ibfk foreign key (parent_id) references onlineddl_test_parent (id) on delete no action,
+ constraint chk_1111033c1d2d5908bf1f956ba900b192_check_4 CHECK ((i >= 0))
+ )
+ `,
+ allowForeignKeys: true,
+ countConstraints: 3,
+ expectConstraintMap: map[string]string{
+ "check_1": "check_1_7dbssrkwdaxhdunwi5zj53q83",
+ "chk_1111033c1d2d5908bf1f956ba900b192_check_4": "chk_1111033c1d2d5908bf1f956ba900b192_c_0se0t8x98mf8v7lqmj2la8j9u",
+ "test_ibfk": "test_ibfk_2wtivm6zk4lthpz14g9uoyaqk",
+ },
+ },
+ }
+ env := NewTestEnv()
+ for _, tc := range tt {
+ t.Run(tc.name, func(t *testing.T) {
+ stmt, err := env.Parser().ParseStrictDDL(tc.query)
+ require.NoError(t, err)
+ createTable, ok := stmt.(*sqlparser.CreateTable)
+ require.True(t, ok)
+
+ table := "onlineddl_test"
+ baseUUID := "a5a563da_dc1a_11ec_a416_0a43f95f28a3"
+ constraintMap, err := ValidateAndEditCreateTableStatement(table, baseUUID, createTable, tc.allowForeignKeys)
+ if tc.expectError != "" {
+ assert.ErrorContains(t, err, tc.expectError)
+ return
+ }
+ assert.NoError(t, err)
+ assert.Equal(t, tc.expectConstraintMap, constraintMap)
+
+ uniqueConstraintNames := map[string]bool{}
+ err = sqlparser.Walk(func(node sqlparser.SQLNode) (kontinue bool, err error) {
+ switch node := node.(type) {
+ case *sqlparser.ConstraintDefinition:
+ uniqueConstraintNames[node.Name.String()] = true
+ }
+ return true, nil
+ }, createTable)
+ assert.NoError(t, err)
+ assert.Equal(t, tc.countConstraints, len(uniqueConstraintNames))
+ assert.Equalf(t, tc.countConstraints, len(constraintMap), "got contraints: %v", constraintMap)
+ })
+ }
+}
+
+func TestValidateAndEditAlterTableStatement(t *testing.T) {
+ capableOf := func(capability capabilities.FlavorCapability) (bool, error) {
+ switch capability {
+ case
+ capabilities.InstantDDLXtrabackupCapability,
+ capabilities.InstantDDLFlavorCapability,
+ capabilities.InstantAddLastColumnFlavorCapability,
+ capabilities.InstantAddDropVirtualColumnFlavorCapability,
+ capabilities.InstantAddDropColumnFlavorCapability,
+ capabilities.InstantChangeColumnDefaultFlavorCapability,
+ capabilities.InstantChangeColumnVisibilityCapability,
+ capabilities.InstantExpandEnumCapability:
+ return true, nil
+ }
+ return false, nil
+ }
+ incapableOf := func(capability capabilities.FlavorCapability) (bool, error) {
+ return false, nil
+ }
+
+ tt := []struct {
+ alter string
+ capableOf capabilities.CapableOf
+ m map[string]string
+ expect []string
+ }{
+ {
+ alter: "alter table t add column i int",
+ capableOf: incapableOf,
+ expect: []string{"alter table t add column i int, algorithm = copy"},
+ },
+ {
+ alter: "alter table t add column i int",
+ capableOf: capableOf,
+ expect: []string{"alter table t add column i int"},
+ },
+ {
+ alter: "alter table t add column i int, add fulltext key name1_ft (name1)",
+ expect: []string{"alter table t add column i int, add fulltext key name1_ft (name1)"},
+ },
+ {
+ alter: "alter table t add column i int, add fulltext key name1_ft (name1), add fulltext key name2_ft (name2)",
+ expect: []string{"alter table t add column i int, add fulltext key name1_ft (name1)", "alter table t add fulltext key name2_ft (name2)"},
+ },
+ {
+ alter: "alter table t add fulltext key name0_ft (name0), add column i int, add fulltext key name1_ft (name1), add fulltext key name2_ft (name2)",
+ expect: []string{"alter table t add fulltext key name0_ft (name0), add column i int", "alter table t add fulltext key name1_ft (name1)", "alter table t add fulltext key name2_ft (name2)"},
+ },
+ {
+ alter: "alter table t add constraint check (id != 1)",
+ expect: []string{"alter table t add constraint chk_aulpn7bjeortljhguy86phdn9 check (id != 1)"},
+ },
+ {
+ alter: "alter table t add constraint t_chk_1 check (id != 1)",
+ expect: []string{"alter table t add constraint chk_1_aulpn7bjeortljhguy86phdn9 check (id != 1)"},
+ },
+ {
+ alter: "alter table t add constraint some_check check (id != 1)",
+ expect: []string{"alter table t add constraint some_check_aulpn7bjeortljhguy86phdn9 check (id != 1)"},
+ },
+ {
+ alter: "alter table t add constraint some_check check (id != 1), add constraint another_check check (id != 2)",
+ expect: []string{"alter table t add constraint some_check_aulpn7bjeortljhguy86phdn9 check (id != 1), add constraint another_check_4fa197273p3w96267pzm3gfi3 check (id != 2)"},
+ },
+ {
+ alter: "alter table t add foreign key (parent_id) references onlineddl_test_parent (id) on delete no action",
+ expect: []string{"alter table t add constraint fk_6fmhzdlya89128u5j3xapq34i foreign key (parent_id) references onlineddl_test_parent (id) on delete no action"},
+ },
+ {
+ alter: "alter table t add constraint myfk foreign key (parent_id) references onlineddl_test_parent (id) on delete no action",
+ expect: []string{"alter table t add constraint myfk_6fmhzdlya89128u5j3xapq34i foreign key (parent_id) references onlineddl_test_parent (id) on delete no action"},
+ },
+ {
+ // strip out table name
+ alter: "alter table t add constraint t_ibfk_1 foreign key (parent_id) references onlineddl_test_parent (id) on delete no action",
+ expect: []string{"alter table t add constraint ibfk_1_6fmhzdlya89128u5j3xapq34i foreign key (parent_id) references onlineddl_test_parent (id) on delete no action"},
+ },
+ {
+ // stript out table name
+ alter: "alter table t add constraint t_ibfk_1 foreign key (parent_id) references onlineddl_test_parent (id) on delete no action",
+ expect: []string{"alter table t add constraint ibfk_1_6fmhzdlya89128u5j3xapq34i foreign key (parent_id) references onlineddl_test_parent (id) on delete no action"},
+ },
+ {
+ alter: "alter table t add constraint t_ibfk_1 foreign key (parent_id) references onlineddl_test_parent (id) on delete no action, add constraint some_check check (id != 1)",
+ expect: []string{"alter table t add constraint ibfk_1_6fmhzdlya89128u5j3xapq34i foreign key (parent_id) references onlineddl_test_parent (id) on delete no action, add constraint some_check_aulpn7bjeortljhguy86phdn9 check (id != 1)"},
+ },
+ {
+ alter: "alter table t drop foreign key t_ibfk_1",
+ m: map[string]string{
+ "t_ibfk_1": "ibfk_1_aaaaaaaaaaaaaa",
+ },
+ expect: []string{"alter table t drop foreign key ibfk_1_aaaaaaaaaaaaaa"},
+ },
+ }
+
+ env := NewTestEnv()
+ for _, tc := range tt {
+ t.Run(tc.alter, func(t *testing.T) {
+ if tc.capableOf == nil {
+ tc.capableOf = capableOf
+ }
+ stmt, err := env.Parser().ParseStrictDDL(tc.alter)
+ require.NoError(t, err)
+ alterTable, ok := stmt.(*sqlparser.AlterTable)
+ require.True(t, ok)
+
+ m := map[string]string{}
+ for k, v := range tc.m {
+ m[k] = v
+ }
+ baseUUID := "a5a563da_dc1a_11ec_a416_0a43f95f28a3"
+ tableName := "t"
+ alters, err := ValidateAndEditAlterTableStatement(tableName, baseUUID, tc.capableOf, alterTable, m)
+ assert.NoError(t, err)
+ var altersStrings []string
+ for _, alter := range alters {
+ altersStrings = append(altersStrings, sqlparser.String(alter))
+ }
+ assert.Equal(t, tc.expect, altersStrings)
+ })
+ }
+}
+
+func TestAddInstantAlgorithm(t *testing.T) {
+ tt := []struct {
+ alter string
+ expect string
+ }{
+ {
+ alter: "alter table t add column i2 int not null",
+ expect: "ALTER TABLE `t` ADD COLUMN `i2` int NOT NULL, ALGORITHM = INSTANT",
+ },
+ {
+ alter: "alter table t add column i2 int not null, lock=none",
+ expect: "ALTER TABLE `t` ADD COLUMN `i2` int NOT NULL, LOCK NONE, ALGORITHM = INSTANT",
+ },
+ {
+ alter: "alter table t add column i2 int not null, algorithm=inplace",
+ expect: "ALTER TABLE `t` ADD COLUMN `i2` int NOT NULL, ALGORITHM = INSTANT",
+ },
+ {
+ alter: "alter table t add column i2 int not null, algorithm=inplace, lock=none",
+ expect: "ALTER TABLE `t` ADD COLUMN `i2` int NOT NULL, ALGORITHM = INSTANT, LOCK NONE",
+ },
+ }
+ env := NewTestEnv()
+ for _, tc := range tt {
+ t.Run(tc.alter, func(t *testing.T) {
+ stmt, err := env.Parser().ParseStrictDDL(tc.alter)
+ require.NoError(t, err)
+ alterTable, ok := stmt.(*sqlparser.AlterTable)
+ require.True(t, ok)
+
+ AddInstantAlgorithm(alterTable)
+ alterInstant := sqlparser.CanonicalString(alterTable)
+
+ assert.Equal(t, tc.expect, alterInstant)
+
+ stmt, err = env.Parser().ParseStrictDDL(alterInstant)
+ require.NoError(t, err)
+ _, ok = stmt.(*sqlparser.AlterTable)
+ require.True(t, ok)
+ })
+ }
+}
+
+func TestDuplicateCreateTable(t *testing.T) {
+ baseUUID := "a5a563da_dc1a_11ec_a416_0a43f95f28a3"
+ allowForeignKeys := true
+
+ tcases := []struct {
+ sql string
+ newName string
+ expectSQL string
+ expectMapSize int
+ }{
+ {
+ sql: "create table t (id int primary key)",
+ newName: "mytable",
+ expectSQL: "create table mytable (\n\tid int primary key\n)",
+ },
+ {
+ sql: "create table t (id int primary key, i int, constraint f foreign key (i) references parent (id) on delete cascade)",
+ newName: "mytable",
+ expectSQL: "create table mytable (\n\tid int primary key,\n\ti int,\n\tconstraint f_ewl7lthyax2xxocpib3hyyvxx foreign key (i) references parent (id) on delete cascade\n)",
+ expectMapSize: 1,
+ },
+ {
+ sql: "create table self (id int primary key, i int, constraint f foreign key (i) references self (id))",
+ newName: "mytable",
+ expectSQL: "create table mytable (\n\tid int primary key,\n\ti int,\n\tconstraint f_6tlv90d9gcf4h6roalfnkdhar foreign key (i) references mytable (id)\n)",
+ expectMapSize: 1,
+ },
+ {
+ sql: "create table self (id int primary key, i1 int, i2 int, constraint f1 foreign key (i1) references self (id), constraint f1 foreign key (i2) references parent (id))",
+ newName: "mytable",
+ expectSQL: `create table mytable (
+ id int primary key,
+ i1 int,
+ i2 int,
+ constraint f1_95jpox7sx4w0cv7dpspzmjbxu foreign key (i1) references mytable (id),
+ constraint f1_1fg002b1cuqoavgti5zp8pu91 foreign key (i2) references parent (id)
+)`,
+ expectMapSize: 1,
+ },
+ }
+ env := NewTestEnv()
+ for _, tcase := range tcases {
+ t.Run(tcase.sql, func(t *testing.T) {
+ stmt, err := env.Parser().ParseStrictDDL(tcase.sql)
+ require.NoError(t, err)
+ originalCreateTable, ok := stmt.(*sqlparser.CreateTable)
+ require.True(t, ok)
+ require.NotNil(t, originalCreateTable)
+ newCreateTable, constraintMap, err := DuplicateCreateTable(originalCreateTable, baseUUID, tcase.newName, allowForeignKeys)
+ assert.NoError(t, err)
+ assert.NotNil(t, newCreateTable)
+ assert.NotNil(t, constraintMap)
+
+ newSQL := sqlparser.String(newCreateTable)
+ assert.Equal(t, tcase.expectSQL, newSQL)
+ assert.Equal(t, tcase.expectMapSize, len(constraintMap))
+ })
+ }
+}
diff --git a/go/vt/sqlparser/ast_funcs.go b/go/vt/sqlparser/ast_funcs.go
index ea7a6e93e0e..69a097bb31e 100644
--- a/go/vt/sqlparser/ast_funcs.go
+++ b/go/vt/sqlparser/ast_funcs.go
@@ -1923,6 +1923,8 @@ func (ty VExplainType) ToString() string {
return QueriesStr
case AllVExplainType:
return AllVExplainStr
+ case TraceVExplainType:
+ return TraceStr
default:
return "Unknown VExplainType"
}
diff --git a/go/vt/sqlparser/constants.go b/go/vt/sqlparser/constants.go
index fa243c88d86..cfd18670b23 100644
--- a/go/vt/sqlparser/constants.go
+++ b/go/vt/sqlparser/constants.go
@@ -276,6 +276,7 @@ const (
QueriesStr = "queries"
AllVExplainStr = "all"
PlanStr = "plan"
+ TraceStr = "trace"
// Lock Types
ReadStr = "read"
@@ -846,6 +847,7 @@ const (
QueriesVExplainType VExplainType = iota
PlanVExplainType
AllVExplainType
+ TraceVExplainType
)
// Constant for Enum Type - SelectIntoType
diff --git a/go/vt/sqlparser/keywords.go b/go/vt/sqlparser/keywords.go
index 57c52dcdac7..e32d7d0b72a 100644
--- a/go/vt/sqlparser/keywords.go
+++ b/go/vt/sqlparser/keywords.go
@@ -711,6 +711,7 @@ var keywords = []keyword{
{"tinyint", TINYINT},
{"tinytext", TINYTEXT},
{"to", TO},
+ {"trace", TRACE},
{"trailing", TRAILING},
{"transaction", TRANSACTION},
{"transactions", TRANSACTIONS},
diff --git a/go/vt/sqlparser/parse_test.go b/go/vt/sqlparser/parse_test.go
index bb582cc27a4..ae73be485d6 100644
--- a/go/vt/sqlparser/parse_test.go
+++ b/go/vt/sqlparser/parse_test.go
@@ -2573,6 +2573,9 @@ var (
}, {
input: "vexplain select * from t",
output: "vexplain plan select * from t",
+ }, {
+ input: "vexplain trace select * from t",
+ output: "vexplain trace select * from t",
}, {
input: "explain analyze select * from t",
}, {
diff --git a/go/vt/sqlparser/sql.go b/go/vt/sqlparser/sql.go
index 747c5489d8a..754242606ce 100644
--- a/go/vt/sqlparser/sql.go
+++ b/go/vt/sqlparser/sql.go
@@ -174,596 +174,597 @@ const BOTH = 57481
const LEADING = 57482
const TRAILING = 57483
const KILL = 57484
-const EMPTY_FROM_CLAUSE = 57485
-const LOWER_THAN_CHARSET = 57486
-const CHARSET = 57487
-const UNIQUE = 57488
-const KEY = 57489
-const EXPRESSION_PREC_SETTER = 57490
-const OR = 57491
-const XOR = 57492
-const AND = 57493
-const NOT = 57494
-const BETWEEN = 57495
-const CASE = 57496
-const WHEN = 57497
-const THEN = 57498
-const ELSE = 57499
-const END = 57500
-const LE = 57501
-const GE = 57502
-const NE = 57503
-const NULL_SAFE_EQUAL = 57504
-const IS = 57505
-const LIKE = 57506
-const REGEXP = 57507
-const RLIKE = 57508
-const IN = 57509
-const ASSIGNMENT_OPT = 57510
-const SHIFT_LEFT = 57511
-const SHIFT_RIGHT = 57512
-const DIV = 57513
-const MOD = 57514
-const UNARY = 57515
-const COLLATE = 57516
-const BINARY = 57517
-const UNDERSCORE_ARMSCII8 = 57518
-const UNDERSCORE_ASCII = 57519
-const UNDERSCORE_BIG5 = 57520
-const UNDERSCORE_BINARY = 57521
-const UNDERSCORE_CP1250 = 57522
-const UNDERSCORE_CP1251 = 57523
-const UNDERSCORE_CP1256 = 57524
-const UNDERSCORE_CP1257 = 57525
-const UNDERSCORE_CP850 = 57526
-const UNDERSCORE_CP852 = 57527
-const UNDERSCORE_CP866 = 57528
-const UNDERSCORE_CP932 = 57529
-const UNDERSCORE_DEC8 = 57530
-const UNDERSCORE_EUCJPMS = 57531
-const UNDERSCORE_EUCKR = 57532
-const UNDERSCORE_GB18030 = 57533
-const UNDERSCORE_GB2312 = 57534
-const UNDERSCORE_GBK = 57535
-const UNDERSCORE_GEOSTD8 = 57536
-const UNDERSCORE_GREEK = 57537
-const UNDERSCORE_HEBREW = 57538
-const UNDERSCORE_HP8 = 57539
-const UNDERSCORE_KEYBCS2 = 57540
-const UNDERSCORE_KOI8R = 57541
-const UNDERSCORE_KOI8U = 57542
-const UNDERSCORE_LATIN1 = 57543
-const UNDERSCORE_LATIN2 = 57544
-const UNDERSCORE_LATIN5 = 57545
-const UNDERSCORE_LATIN7 = 57546
-const UNDERSCORE_MACCE = 57547
-const UNDERSCORE_MACROMAN = 57548
-const UNDERSCORE_SJIS = 57549
-const UNDERSCORE_SWE7 = 57550
-const UNDERSCORE_TIS620 = 57551
-const UNDERSCORE_UCS2 = 57552
-const UNDERSCORE_UJIS = 57553
-const UNDERSCORE_UTF16 = 57554
-const UNDERSCORE_UTF16LE = 57555
-const UNDERSCORE_UTF32 = 57556
-const UNDERSCORE_UTF8 = 57557
-const UNDERSCORE_UTF8MB4 = 57558
-const UNDERSCORE_UTF8MB3 = 57559
-const INTERVAL = 57560
-const WINDOW_EXPR = 57561
-const JSON_EXTRACT_OP = 57562
-const JSON_UNQUOTE_EXTRACT_OP = 57563
-const CREATE = 57564
-const ALTER = 57565
-const DROP = 57566
-const RENAME = 57567
-const ANALYZE = 57568
-const ADD = 57569
-const FLUSH = 57570
-const CHANGE = 57571
-const MODIFY = 57572
-const DEALLOCATE = 57573
-const REVERT = 57574
-const QUERIES = 57575
-const SCHEMA = 57576
-const TABLE = 57577
-const INDEX = 57578
-const VIEW = 57579
-const TO = 57580
-const IGNORE = 57581
-const IF = 57582
-const PRIMARY = 57583
-const COLUMN = 57584
-const SPATIAL = 57585
-const FULLTEXT = 57586
-const KEY_BLOCK_SIZE = 57587
-const CHECK = 57588
-const INDEXES = 57589
-const ACTION = 57590
-const CASCADE = 57591
-const CONSTRAINT = 57592
-const FOREIGN = 57593
-const NO = 57594
-const REFERENCES = 57595
-const RESTRICT = 57596
-const SHOW = 57597
-const DESCRIBE = 57598
-const EXPLAIN = 57599
-const DATE = 57600
-const ESCAPE = 57601
-const REPAIR = 57602
-const OPTIMIZE = 57603
-const TRUNCATE = 57604
-const COALESCE = 57605
-const EXCHANGE = 57606
-const REBUILD = 57607
-const PARTITIONING = 57608
-const REMOVE = 57609
-const PREPARE = 57610
-const EXECUTE = 57611
-const MAXVALUE = 57612
-const PARTITION = 57613
-const REORGANIZE = 57614
-const LESS = 57615
-const THAN = 57616
-const PROCEDURE = 57617
-const TRIGGER = 57618
-const VINDEX = 57619
-const VINDEXES = 57620
-const DIRECTORY = 57621
-const NAME = 57622
-const UPGRADE = 57623
-const STATUS = 57624
-const VARIABLES = 57625
-const WARNINGS = 57626
-const CASCADED = 57627
-const DEFINER = 57628
-const OPTION = 57629
-const SQL = 57630
-const UNDEFINED = 57631
-const SEQUENCE = 57632
-const MERGE = 57633
-const TEMPORARY = 57634
-const TEMPTABLE = 57635
-const INVOKER = 57636
-const SECURITY = 57637
-const FIRST = 57638
-const AFTER = 57639
-const LAST = 57640
-const VITESS_MIGRATION = 57641
-const CANCEL = 57642
-const RETRY = 57643
-const LAUNCH = 57644
-const COMPLETE = 57645
-const CLEANUP = 57646
-const THROTTLE = 57647
-const UNTHROTTLE = 57648
-const FORCE_CUTOVER = 57649
-const EXPIRE = 57650
-const RATIO = 57651
-const VITESS_THROTTLER = 57652
-const BEGIN = 57653
-const START = 57654
-const TRANSACTION = 57655
-const COMMIT = 57656
-const ROLLBACK = 57657
-const SAVEPOINT = 57658
-const RELEASE = 57659
-const WORK = 57660
-const CONSISTENT = 57661
-const SNAPSHOT = 57662
-const UNRESOLVED = 57663
-const TRANSACTIONS = 57664
-const BIT = 57665
-const TINYINT = 57666
-const SMALLINT = 57667
-const MEDIUMINT = 57668
-const INT = 57669
-const INTEGER = 57670
-const BIGINT = 57671
-const INTNUM = 57672
-const REAL = 57673
-const DOUBLE = 57674
-const FLOAT_TYPE = 57675
-const FLOAT4_TYPE = 57676
-const FLOAT8_TYPE = 57677
-const DECIMAL_TYPE = 57678
-const NUMERIC = 57679
-const TIME = 57680
-const TIMESTAMP = 57681
-const DATETIME = 57682
-const YEAR = 57683
-const CHAR = 57684
-const VARCHAR = 57685
-const BOOL = 57686
-const CHARACTER = 57687
-const VARBINARY = 57688
-const NCHAR = 57689
-const TEXT = 57690
-const TINYTEXT = 57691
-const MEDIUMTEXT = 57692
-const LONGTEXT = 57693
-const BLOB = 57694
-const TINYBLOB = 57695
-const MEDIUMBLOB = 57696
-const LONGBLOB = 57697
-const JSON = 57698
-const JSON_SCHEMA_VALID = 57699
-const JSON_SCHEMA_VALIDATION_REPORT = 57700
-const ENUM = 57701
-const GEOMETRY = 57702
-const POINT = 57703
-const LINESTRING = 57704
-const POLYGON = 57705
-const GEOMCOLLECTION = 57706
-const GEOMETRYCOLLECTION = 57707
-const MULTIPOINT = 57708
-const MULTILINESTRING = 57709
-const MULTIPOLYGON = 57710
-const ASCII = 57711
-const UNICODE = 57712
-const VECTOR = 57713
-const NULLX = 57714
-const AUTO_INCREMENT = 57715
-const APPROXNUM = 57716
-const SIGNED = 57717
-const UNSIGNED = 57718
-const ZEROFILL = 57719
-const PURGE = 57720
-const BEFORE = 57721
-const CODE = 57722
-const COLLATION = 57723
-const COLUMNS = 57724
-const DATABASES = 57725
-const ENGINES = 57726
-const EVENT = 57727
-const EXTENDED = 57728
-const FIELDS = 57729
-const FULL = 57730
-const FUNCTION = 57731
-const GTID_EXECUTED = 57732
-const KEYSPACES = 57733
-const OPEN = 57734
-const PLUGINS = 57735
-const PRIVILEGES = 57736
-const PROCESSLIST = 57737
-const SCHEMAS = 57738
-const TABLES = 57739
-const TRIGGERS = 57740
-const USER = 57741
-const VGTID_EXECUTED = 57742
-const VITESS_KEYSPACES = 57743
-const VITESS_METADATA = 57744
-const VITESS_MIGRATIONS = 57745
-const VITESS_REPLICATION_STATUS = 57746
-const VITESS_SHARDS = 57747
-const VITESS_TABLETS = 57748
-const VITESS_TARGET = 57749
-const VSCHEMA = 57750
-const VITESS_THROTTLED_APPS = 57751
-const NAMES = 57752
-const GLOBAL = 57753
-const SESSION = 57754
-const ISOLATION = 57755
-const LEVEL = 57756
-const READ = 57757
-const WRITE = 57758
-const ONLY = 57759
-const REPEATABLE = 57760
-const COMMITTED = 57761
-const UNCOMMITTED = 57762
-const SERIALIZABLE = 57763
-const ADDDATE = 57764
-const CURRENT_TIMESTAMP = 57765
-const DATABASE = 57766
-const CURRENT_DATE = 57767
-const CURDATE = 57768
-const DATE_ADD = 57769
-const DATE_SUB = 57770
-const NOW = 57771
-const SUBDATE = 57772
-const CURTIME = 57773
-const CURRENT_TIME = 57774
-const LOCALTIME = 57775
-const LOCALTIMESTAMP = 57776
-const CURRENT_USER = 57777
-const UTC_DATE = 57778
-const UTC_TIME = 57779
-const UTC_TIMESTAMP = 57780
-const SYSDATE = 57781
-const DAY = 57782
-const DAY_HOUR = 57783
-const DAY_MICROSECOND = 57784
-const DAY_MINUTE = 57785
-const DAY_SECOND = 57786
-const HOUR = 57787
-const HOUR_MICROSECOND = 57788
-const HOUR_MINUTE = 57789
-const HOUR_SECOND = 57790
-const MICROSECOND = 57791
-const MINUTE = 57792
-const MINUTE_MICROSECOND = 57793
-const MINUTE_SECOND = 57794
-const MONTH = 57795
-const QUARTER = 57796
-const SECOND = 57797
-const SECOND_MICROSECOND = 57798
-const YEAR_MONTH = 57799
-const WEEK = 57800
-const SQL_TSI_DAY = 57801
-const SQL_TSI_WEEK = 57802
-const SQL_TSI_HOUR = 57803
-const SQL_TSI_MINUTE = 57804
-const SQL_TSI_MONTH = 57805
-const SQL_TSI_QUARTER = 57806
-const SQL_TSI_SECOND = 57807
-const SQL_TSI_MICROSECOND = 57808
-const SQL_TSI_YEAR = 57809
-const REPLACE = 57810
-const CONVERT = 57811
-const CAST = 57812
-const SUBSTR = 57813
-const SUBSTRING = 57814
-const MID = 57815
-const SEPARATOR = 57816
-const TIMESTAMPADD = 57817
-const TIMESTAMPDIFF = 57818
-const WEIGHT_STRING = 57819
-const LTRIM = 57820
-const RTRIM = 57821
-const TRIM = 57822
-const JSON_ARRAY = 57823
-const JSON_OBJECT = 57824
-const JSON_QUOTE = 57825
-const JSON_DEPTH = 57826
-const JSON_TYPE = 57827
-const JSON_LENGTH = 57828
-const JSON_VALID = 57829
-const JSON_ARRAY_APPEND = 57830
-const JSON_ARRAY_INSERT = 57831
-const JSON_INSERT = 57832
-const JSON_MERGE = 57833
-const JSON_MERGE_PATCH = 57834
-const JSON_MERGE_PRESERVE = 57835
-const JSON_REMOVE = 57836
-const JSON_REPLACE = 57837
-const JSON_SET = 57838
-const JSON_UNQUOTE = 57839
-const COUNT = 57840
-const AVG = 57841
-const MAX = 57842
-const MIN = 57843
-const SUM = 57844
-const GROUP_CONCAT = 57845
-const BIT_AND = 57846
-const BIT_OR = 57847
-const BIT_XOR = 57848
-const STD = 57849
-const STDDEV = 57850
-const STDDEV_POP = 57851
-const STDDEV_SAMP = 57852
-const VAR_POP = 57853
-const VAR_SAMP = 57854
-const VARIANCE = 57855
-const ANY_VALUE = 57856
-const REGEXP_INSTR = 57857
-const REGEXP_LIKE = 57858
-const REGEXP_REPLACE = 57859
-const REGEXP_SUBSTR = 57860
-const ExtractValue = 57861
-const UpdateXML = 57862
-const GET_LOCK = 57863
-const RELEASE_LOCK = 57864
-const RELEASE_ALL_LOCKS = 57865
-const IS_FREE_LOCK = 57866
-const IS_USED_LOCK = 57867
-const LOCATE = 57868
-const POSITION = 57869
-const ST_GeometryCollectionFromText = 57870
-const ST_GeometryFromText = 57871
-const ST_LineStringFromText = 57872
-const ST_MultiLineStringFromText = 57873
-const ST_MultiPointFromText = 57874
-const ST_MultiPolygonFromText = 57875
-const ST_PointFromText = 57876
-const ST_PolygonFromText = 57877
-const ST_GeometryCollectionFromWKB = 57878
-const ST_GeometryFromWKB = 57879
-const ST_LineStringFromWKB = 57880
-const ST_MultiLineStringFromWKB = 57881
-const ST_MultiPointFromWKB = 57882
-const ST_MultiPolygonFromWKB = 57883
-const ST_PointFromWKB = 57884
-const ST_PolygonFromWKB = 57885
-const ST_AsBinary = 57886
-const ST_AsText = 57887
-const ST_Dimension = 57888
-const ST_Envelope = 57889
-const ST_IsSimple = 57890
-const ST_IsEmpty = 57891
-const ST_GeometryType = 57892
-const ST_X = 57893
-const ST_Y = 57894
-const ST_Latitude = 57895
-const ST_Longitude = 57896
-const ST_EndPoint = 57897
-const ST_IsClosed = 57898
-const ST_Length = 57899
-const ST_NumPoints = 57900
-const ST_StartPoint = 57901
-const ST_PointN = 57902
-const ST_Area = 57903
-const ST_Centroid = 57904
-const ST_ExteriorRing = 57905
-const ST_InteriorRingN = 57906
-const ST_NumInteriorRings = 57907
-const ST_NumGeometries = 57908
-const ST_GeometryN = 57909
-const ST_LongFromGeoHash = 57910
-const ST_PointFromGeoHash = 57911
-const ST_LatFromGeoHash = 57912
-const ST_GeoHash = 57913
-const ST_AsGeoJSON = 57914
-const ST_GeomFromGeoJSON = 57915
-const MATCH = 57916
-const AGAINST = 57917
-const BOOLEAN = 57918
-const LANGUAGE = 57919
-const WITH = 57920
-const QUERY = 57921
-const EXPANSION = 57922
-const WITHOUT = 57923
-const VALIDATION = 57924
-const ROLLUP = 57925
-const UNUSED = 57926
-const ARRAY = 57927
-const BYTE = 57928
-const CUME_DIST = 57929
-const DESCRIPTION = 57930
-const DENSE_RANK = 57931
-const EMPTY = 57932
-const EXCEPT = 57933
-const FIRST_VALUE = 57934
-const GROUPING = 57935
-const GROUPS = 57936
-const JSON_TABLE = 57937
-const LAG = 57938
-const LAST_VALUE = 57939
-const LATERAL = 57940
-const LEAD = 57941
-const NTH_VALUE = 57942
-const NTILE = 57943
-const OF = 57944
-const OVER = 57945
-const PERCENT_RANK = 57946
-const RANK = 57947
-const RECURSIVE = 57948
-const ROW_NUMBER = 57949
-const SYSTEM = 57950
-const WINDOW = 57951
-const ACTIVE = 57952
-const ADMIN = 57953
-const AUTOEXTEND_SIZE = 57954
-const BUCKETS = 57955
-const CLONE = 57956
-const COLUMN_FORMAT = 57957
-const COMPONENT = 57958
-const DEFINITION = 57959
-const ENFORCED = 57960
-const ENGINE_ATTRIBUTE = 57961
-const EXCLUDE = 57962
-const FOLLOWING = 57963
-const GET_MASTER_PUBLIC_KEY = 57964
-const HISTOGRAM = 57965
-const HISTORY = 57966
-const INACTIVE = 57967
-const INVISIBLE = 57968
-const LOCKED = 57969
-const MASTER_COMPRESSION_ALGORITHMS = 57970
-const MASTER_PUBLIC_KEY_PATH = 57971
-const MASTER_TLS_CIPHERSUITES = 57972
-const MASTER_ZSTD_COMPRESSION_LEVEL = 57973
-const NESTED = 57974
-const NETWORK_NAMESPACE = 57975
-const NOWAIT = 57976
-const NULLS = 57977
-const OJ = 57978
-const OLD = 57979
-const OPTIONAL = 57980
-const ORDINALITY = 57981
-const ORGANIZATION = 57982
-const OTHERS = 57983
-const PARTIAL = 57984
-const PATH = 57985
-const PERSIST = 57986
-const PERSIST_ONLY = 57987
-const PRECEDING = 57988
-const PRIVILEGE_CHECKS_USER = 57989
-const PROCESS = 57990
-const RANDOM = 57991
-const REFERENCE = 57992
-const REQUIRE_ROW_FORMAT = 57993
-const RESOURCE = 57994
-const RESPECT = 57995
-const RESTART = 57996
-const RETAIN = 57997
-const REUSE = 57998
-const ROLE = 57999
-const SECONDARY = 58000
-const SECONDARY_ENGINE = 58001
-const SECONDARY_ENGINE_ATTRIBUTE = 58002
-const SECONDARY_LOAD = 58003
-const SECONDARY_UNLOAD = 58004
-const SIMPLE = 58005
-const SKIP = 58006
-const SRID = 58007
-const THREAD_PRIORITY = 58008
-const TIES = 58009
-const UNBOUNDED = 58010
-const VCPU = 58011
-const VISIBLE = 58012
-const RETURNING = 58013
-const FORMAT_BYTES = 58014
-const FORMAT_PICO_TIME = 58015
-const PS_CURRENT_THREAD_ID = 58016
-const PS_THREAD_ID = 58017
-const GTID_SUBSET = 58018
-const GTID_SUBTRACT = 58019
-const WAIT_FOR_EXECUTED_GTID_SET = 58020
-const WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS = 58021
-const FORMAT = 58022
-const TREE = 58023
-const VITESS = 58024
-const TRADITIONAL = 58025
-const VTEXPLAIN = 58026
-const VEXPLAIN = 58027
-const PLAN = 58028
-const LOCAL = 58029
-const LOW_PRIORITY = 58030
-const NO_WRITE_TO_BINLOG = 58031
-const LOGS = 58032
-const ERROR = 58033
-const GENERAL = 58034
-const HOSTS = 58035
-const OPTIMIZER_COSTS = 58036
-const USER_RESOURCES = 58037
-const SLOW = 58038
-const CHANNEL = 58039
-const RELAY = 58040
-const EXPORT = 58041
-const CURRENT = 58042
-const ROW = 58043
-const ROWS = 58044
-const AVG_ROW_LENGTH = 58045
-const CONNECTION = 58046
-const CHECKSUM = 58047
-const DELAY_KEY_WRITE = 58048
-const ENCRYPTION = 58049
-const ENGINE = 58050
-const INSERT_METHOD = 58051
-const MAX_ROWS = 58052
-const MIN_ROWS = 58053
-const PACK_KEYS = 58054
-const PASSWORD = 58055
-const FIXED = 58056
-const DYNAMIC = 58057
-const COMPRESSED = 58058
-const REDUNDANT = 58059
-const COMPACT = 58060
-const ROW_FORMAT = 58061
-const STATS_AUTO_RECALC = 58062
-const STATS_PERSISTENT = 58063
-const STATS_SAMPLE_PAGES = 58064
-const STORAGE = 58065
-const MEMORY = 58066
-const DISK = 58067
-const PARTITIONS = 58068
-const LINEAR = 58069
-const RANGE = 58070
-const LIST = 58071
-const SUBPARTITION = 58072
-const SUBPARTITIONS = 58073
-const HASH = 58074
+const TRACE = 57485
+const EMPTY_FROM_CLAUSE = 57486
+const LOWER_THAN_CHARSET = 57487
+const CHARSET = 57488
+const UNIQUE = 57489
+const KEY = 57490
+const EXPRESSION_PREC_SETTER = 57491
+const OR = 57492
+const XOR = 57493
+const AND = 57494
+const NOT = 57495
+const BETWEEN = 57496
+const CASE = 57497
+const WHEN = 57498
+const THEN = 57499
+const ELSE = 57500
+const END = 57501
+const LE = 57502
+const GE = 57503
+const NE = 57504
+const NULL_SAFE_EQUAL = 57505
+const IS = 57506
+const LIKE = 57507
+const REGEXP = 57508
+const RLIKE = 57509
+const IN = 57510
+const ASSIGNMENT_OPT = 57511
+const SHIFT_LEFT = 57512
+const SHIFT_RIGHT = 57513
+const DIV = 57514
+const MOD = 57515
+const UNARY = 57516
+const COLLATE = 57517
+const BINARY = 57518
+const UNDERSCORE_ARMSCII8 = 57519
+const UNDERSCORE_ASCII = 57520
+const UNDERSCORE_BIG5 = 57521
+const UNDERSCORE_BINARY = 57522
+const UNDERSCORE_CP1250 = 57523
+const UNDERSCORE_CP1251 = 57524
+const UNDERSCORE_CP1256 = 57525
+const UNDERSCORE_CP1257 = 57526
+const UNDERSCORE_CP850 = 57527
+const UNDERSCORE_CP852 = 57528
+const UNDERSCORE_CP866 = 57529
+const UNDERSCORE_CP932 = 57530
+const UNDERSCORE_DEC8 = 57531
+const UNDERSCORE_EUCJPMS = 57532
+const UNDERSCORE_EUCKR = 57533
+const UNDERSCORE_GB18030 = 57534
+const UNDERSCORE_GB2312 = 57535
+const UNDERSCORE_GBK = 57536
+const UNDERSCORE_GEOSTD8 = 57537
+const UNDERSCORE_GREEK = 57538
+const UNDERSCORE_HEBREW = 57539
+const UNDERSCORE_HP8 = 57540
+const UNDERSCORE_KEYBCS2 = 57541
+const UNDERSCORE_KOI8R = 57542
+const UNDERSCORE_KOI8U = 57543
+const UNDERSCORE_LATIN1 = 57544
+const UNDERSCORE_LATIN2 = 57545
+const UNDERSCORE_LATIN5 = 57546
+const UNDERSCORE_LATIN7 = 57547
+const UNDERSCORE_MACCE = 57548
+const UNDERSCORE_MACROMAN = 57549
+const UNDERSCORE_SJIS = 57550
+const UNDERSCORE_SWE7 = 57551
+const UNDERSCORE_TIS620 = 57552
+const UNDERSCORE_UCS2 = 57553
+const UNDERSCORE_UJIS = 57554
+const UNDERSCORE_UTF16 = 57555
+const UNDERSCORE_UTF16LE = 57556
+const UNDERSCORE_UTF32 = 57557
+const UNDERSCORE_UTF8 = 57558
+const UNDERSCORE_UTF8MB4 = 57559
+const UNDERSCORE_UTF8MB3 = 57560
+const INTERVAL = 57561
+const WINDOW_EXPR = 57562
+const JSON_EXTRACT_OP = 57563
+const JSON_UNQUOTE_EXTRACT_OP = 57564
+const CREATE = 57565
+const ALTER = 57566
+const DROP = 57567
+const RENAME = 57568
+const ANALYZE = 57569
+const ADD = 57570
+const FLUSH = 57571
+const CHANGE = 57572
+const MODIFY = 57573
+const DEALLOCATE = 57574
+const REVERT = 57575
+const QUERIES = 57576
+const SCHEMA = 57577
+const TABLE = 57578
+const INDEX = 57579
+const VIEW = 57580
+const TO = 57581
+const IGNORE = 57582
+const IF = 57583
+const PRIMARY = 57584
+const COLUMN = 57585
+const SPATIAL = 57586
+const FULLTEXT = 57587
+const KEY_BLOCK_SIZE = 57588
+const CHECK = 57589
+const INDEXES = 57590
+const ACTION = 57591
+const CASCADE = 57592
+const CONSTRAINT = 57593
+const FOREIGN = 57594
+const NO = 57595
+const REFERENCES = 57596
+const RESTRICT = 57597
+const SHOW = 57598
+const DESCRIBE = 57599
+const EXPLAIN = 57600
+const DATE = 57601
+const ESCAPE = 57602
+const REPAIR = 57603
+const OPTIMIZE = 57604
+const TRUNCATE = 57605
+const COALESCE = 57606
+const EXCHANGE = 57607
+const REBUILD = 57608
+const PARTITIONING = 57609
+const REMOVE = 57610
+const PREPARE = 57611
+const EXECUTE = 57612
+const MAXVALUE = 57613
+const PARTITION = 57614
+const REORGANIZE = 57615
+const LESS = 57616
+const THAN = 57617
+const PROCEDURE = 57618
+const TRIGGER = 57619
+const VINDEX = 57620
+const VINDEXES = 57621
+const DIRECTORY = 57622
+const NAME = 57623
+const UPGRADE = 57624
+const STATUS = 57625
+const VARIABLES = 57626
+const WARNINGS = 57627
+const CASCADED = 57628
+const DEFINER = 57629
+const OPTION = 57630
+const SQL = 57631
+const UNDEFINED = 57632
+const SEQUENCE = 57633
+const MERGE = 57634
+const TEMPORARY = 57635
+const TEMPTABLE = 57636
+const INVOKER = 57637
+const SECURITY = 57638
+const FIRST = 57639
+const AFTER = 57640
+const LAST = 57641
+const VITESS_MIGRATION = 57642
+const CANCEL = 57643
+const RETRY = 57644
+const LAUNCH = 57645
+const COMPLETE = 57646
+const CLEANUP = 57647
+const THROTTLE = 57648
+const UNTHROTTLE = 57649
+const FORCE_CUTOVER = 57650
+const EXPIRE = 57651
+const RATIO = 57652
+const VITESS_THROTTLER = 57653
+const BEGIN = 57654
+const START = 57655
+const TRANSACTION = 57656
+const COMMIT = 57657
+const ROLLBACK = 57658
+const SAVEPOINT = 57659
+const RELEASE = 57660
+const WORK = 57661
+const CONSISTENT = 57662
+const SNAPSHOT = 57663
+const UNRESOLVED = 57664
+const TRANSACTIONS = 57665
+const BIT = 57666
+const TINYINT = 57667
+const SMALLINT = 57668
+const MEDIUMINT = 57669
+const INT = 57670
+const INTEGER = 57671
+const BIGINT = 57672
+const INTNUM = 57673
+const REAL = 57674
+const DOUBLE = 57675
+const FLOAT_TYPE = 57676
+const FLOAT4_TYPE = 57677
+const FLOAT8_TYPE = 57678
+const DECIMAL_TYPE = 57679
+const NUMERIC = 57680
+const TIME = 57681
+const TIMESTAMP = 57682
+const DATETIME = 57683
+const YEAR = 57684
+const CHAR = 57685
+const VARCHAR = 57686
+const BOOL = 57687
+const CHARACTER = 57688
+const VARBINARY = 57689
+const NCHAR = 57690
+const TEXT = 57691
+const TINYTEXT = 57692
+const MEDIUMTEXT = 57693
+const LONGTEXT = 57694
+const BLOB = 57695
+const TINYBLOB = 57696
+const MEDIUMBLOB = 57697
+const LONGBLOB = 57698
+const JSON = 57699
+const JSON_SCHEMA_VALID = 57700
+const JSON_SCHEMA_VALIDATION_REPORT = 57701
+const ENUM = 57702
+const GEOMETRY = 57703
+const POINT = 57704
+const LINESTRING = 57705
+const POLYGON = 57706
+const GEOMCOLLECTION = 57707
+const GEOMETRYCOLLECTION = 57708
+const MULTIPOINT = 57709
+const MULTILINESTRING = 57710
+const MULTIPOLYGON = 57711
+const ASCII = 57712
+const UNICODE = 57713
+const VECTOR = 57714
+const NULLX = 57715
+const AUTO_INCREMENT = 57716
+const APPROXNUM = 57717
+const SIGNED = 57718
+const UNSIGNED = 57719
+const ZEROFILL = 57720
+const PURGE = 57721
+const BEFORE = 57722
+const CODE = 57723
+const COLLATION = 57724
+const COLUMNS = 57725
+const DATABASES = 57726
+const ENGINES = 57727
+const EVENT = 57728
+const EXTENDED = 57729
+const FIELDS = 57730
+const FULL = 57731
+const FUNCTION = 57732
+const GTID_EXECUTED = 57733
+const KEYSPACES = 57734
+const OPEN = 57735
+const PLUGINS = 57736
+const PRIVILEGES = 57737
+const PROCESSLIST = 57738
+const SCHEMAS = 57739
+const TABLES = 57740
+const TRIGGERS = 57741
+const USER = 57742
+const VGTID_EXECUTED = 57743
+const VITESS_KEYSPACES = 57744
+const VITESS_METADATA = 57745
+const VITESS_MIGRATIONS = 57746
+const VITESS_REPLICATION_STATUS = 57747
+const VITESS_SHARDS = 57748
+const VITESS_TABLETS = 57749
+const VITESS_TARGET = 57750
+const VSCHEMA = 57751
+const VITESS_THROTTLED_APPS = 57752
+const NAMES = 57753
+const GLOBAL = 57754
+const SESSION = 57755
+const ISOLATION = 57756
+const LEVEL = 57757
+const READ = 57758
+const WRITE = 57759
+const ONLY = 57760
+const REPEATABLE = 57761
+const COMMITTED = 57762
+const UNCOMMITTED = 57763
+const SERIALIZABLE = 57764
+const ADDDATE = 57765
+const CURRENT_TIMESTAMP = 57766
+const DATABASE = 57767
+const CURRENT_DATE = 57768
+const CURDATE = 57769
+const DATE_ADD = 57770
+const DATE_SUB = 57771
+const NOW = 57772
+const SUBDATE = 57773
+const CURTIME = 57774
+const CURRENT_TIME = 57775
+const LOCALTIME = 57776
+const LOCALTIMESTAMP = 57777
+const CURRENT_USER = 57778
+const UTC_DATE = 57779
+const UTC_TIME = 57780
+const UTC_TIMESTAMP = 57781
+const SYSDATE = 57782
+const DAY = 57783
+const DAY_HOUR = 57784
+const DAY_MICROSECOND = 57785
+const DAY_MINUTE = 57786
+const DAY_SECOND = 57787
+const HOUR = 57788
+const HOUR_MICROSECOND = 57789
+const HOUR_MINUTE = 57790
+const HOUR_SECOND = 57791
+const MICROSECOND = 57792
+const MINUTE = 57793
+const MINUTE_MICROSECOND = 57794
+const MINUTE_SECOND = 57795
+const MONTH = 57796
+const QUARTER = 57797
+const SECOND = 57798
+const SECOND_MICROSECOND = 57799
+const YEAR_MONTH = 57800
+const WEEK = 57801
+const SQL_TSI_DAY = 57802
+const SQL_TSI_WEEK = 57803
+const SQL_TSI_HOUR = 57804
+const SQL_TSI_MINUTE = 57805
+const SQL_TSI_MONTH = 57806
+const SQL_TSI_QUARTER = 57807
+const SQL_TSI_SECOND = 57808
+const SQL_TSI_MICROSECOND = 57809
+const SQL_TSI_YEAR = 57810
+const REPLACE = 57811
+const CONVERT = 57812
+const CAST = 57813
+const SUBSTR = 57814
+const SUBSTRING = 57815
+const MID = 57816
+const SEPARATOR = 57817
+const TIMESTAMPADD = 57818
+const TIMESTAMPDIFF = 57819
+const WEIGHT_STRING = 57820
+const LTRIM = 57821
+const RTRIM = 57822
+const TRIM = 57823
+const JSON_ARRAY = 57824
+const JSON_OBJECT = 57825
+const JSON_QUOTE = 57826
+const JSON_DEPTH = 57827
+const JSON_TYPE = 57828
+const JSON_LENGTH = 57829
+const JSON_VALID = 57830
+const JSON_ARRAY_APPEND = 57831
+const JSON_ARRAY_INSERT = 57832
+const JSON_INSERT = 57833
+const JSON_MERGE = 57834
+const JSON_MERGE_PATCH = 57835
+const JSON_MERGE_PRESERVE = 57836
+const JSON_REMOVE = 57837
+const JSON_REPLACE = 57838
+const JSON_SET = 57839
+const JSON_UNQUOTE = 57840
+const COUNT = 57841
+const AVG = 57842
+const MAX = 57843
+const MIN = 57844
+const SUM = 57845
+const GROUP_CONCAT = 57846
+const BIT_AND = 57847
+const BIT_OR = 57848
+const BIT_XOR = 57849
+const STD = 57850
+const STDDEV = 57851
+const STDDEV_POP = 57852
+const STDDEV_SAMP = 57853
+const VAR_POP = 57854
+const VAR_SAMP = 57855
+const VARIANCE = 57856
+const ANY_VALUE = 57857
+const REGEXP_INSTR = 57858
+const REGEXP_LIKE = 57859
+const REGEXP_REPLACE = 57860
+const REGEXP_SUBSTR = 57861
+const ExtractValue = 57862
+const UpdateXML = 57863
+const GET_LOCK = 57864
+const RELEASE_LOCK = 57865
+const RELEASE_ALL_LOCKS = 57866
+const IS_FREE_LOCK = 57867
+const IS_USED_LOCK = 57868
+const LOCATE = 57869
+const POSITION = 57870
+const ST_GeometryCollectionFromText = 57871
+const ST_GeometryFromText = 57872
+const ST_LineStringFromText = 57873
+const ST_MultiLineStringFromText = 57874
+const ST_MultiPointFromText = 57875
+const ST_MultiPolygonFromText = 57876
+const ST_PointFromText = 57877
+const ST_PolygonFromText = 57878
+const ST_GeometryCollectionFromWKB = 57879
+const ST_GeometryFromWKB = 57880
+const ST_LineStringFromWKB = 57881
+const ST_MultiLineStringFromWKB = 57882
+const ST_MultiPointFromWKB = 57883
+const ST_MultiPolygonFromWKB = 57884
+const ST_PointFromWKB = 57885
+const ST_PolygonFromWKB = 57886
+const ST_AsBinary = 57887
+const ST_AsText = 57888
+const ST_Dimension = 57889
+const ST_Envelope = 57890
+const ST_IsSimple = 57891
+const ST_IsEmpty = 57892
+const ST_GeometryType = 57893
+const ST_X = 57894
+const ST_Y = 57895
+const ST_Latitude = 57896
+const ST_Longitude = 57897
+const ST_EndPoint = 57898
+const ST_IsClosed = 57899
+const ST_Length = 57900
+const ST_NumPoints = 57901
+const ST_StartPoint = 57902
+const ST_PointN = 57903
+const ST_Area = 57904
+const ST_Centroid = 57905
+const ST_ExteriorRing = 57906
+const ST_InteriorRingN = 57907
+const ST_NumInteriorRings = 57908
+const ST_NumGeometries = 57909
+const ST_GeometryN = 57910
+const ST_LongFromGeoHash = 57911
+const ST_PointFromGeoHash = 57912
+const ST_LatFromGeoHash = 57913
+const ST_GeoHash = 57914
+const ST_AsGeoJSON = 57915
+const ST_GeomFromGeoJSON = 57916
+const MATCH = 57917
+const AGAINST = 57918
+const BOOLEAN = 57919
+const LANGUAGE = 57920
+const WITH = 57921
+const QUERY = 57922
+const EXPANSION = 57923
+const WITHOUT = 57924
+const VALIDATION = 57925
+const ROLLUP = 57926
+const UNUSED = 57927
+const ARRAY = 57928
+const BYTE = 57929
+const CUME_DIST = 57930
+const DESCRIPTION = 57931
+const DENSE_RANK = 57932
+const EMPTY = 57933
+const EXCEPT = 57934
+const FIRST_VALUE = 57935
+const GROUPING = 57936
+const GROUPS = 57937
+const JSON_TABLE = 57938
+const LAG = 57939
+const LAST_VALUE = 57940
+const LATERAL = 57941
+const LEAD = 57942
+const NTH_VALUE = 57943
+const NTILE = 57944
+const OF = 57945
+const OVER = 57946
+const PERCENT_RANK = 57947
+const RANK = 57948
+const RECURSIVE = 57949
+const ROW_NUMBER = 57950
+const SYSTEM = 57951
+const WINDOW = 57952
+const ACTIVE = 57953
+const ADMIN = 57954
+const AUTOEXTEND_SIZE = 57955
+const BUCKETS = 57956
+const CLONE = 57957
+const COLUMN_FORMAT = 57958
+const COMPONENT = 57959
+const DEFINITION = 57960
+const ENFORCED = 57961
+const ENGINE_ATTRIBUTE = 57962
+const EXCLUDE = 57963
+const FOLLOWING = 57964
+const GET_MASTER_PUBLIC_KEY = 57965
+const HISTOGRAM = 57966
+const HISTORY = 57967
+const INACTIVE = 57968
+const INVISIBLE = 57969
+const LOCKED = 57970
+const MASTER_COMPRESSION_ALGORITHMS = 57971
+const MASTER_PUBLIC_KEY_PATH = 57972
+const MASTER_TLS_CIPHERSUITES = 57973
+const MASTER_ZSTD_COMPRESSION_LEVEL = 57974
+const NESTED = 57975
+const NETWORK_NAMESPACE = 57976
+const NOWAIT = 57977
+const NULLS = 57978
+const OJ = 57979
+const OLD = 57980
+const OPTIONAL = 57981
+const ORDINALITY = 57982
+const ORGANIZATION = 57983
+const OTHERS = 57984
+const PARTIAL = 57985
+const PATH = 57986
+const PERSIST = 57987
+const PERSIST_ONLY = 57988
+const PRECEDING = 57989
+const PRIVILEGE_CHECKS_USER = 57990
+const PROCESS = 57991
+const RANDOM = 57992
+const REFERENCE = 57993
+const REQUIRE_ROW_FORMAT = 57994
+const RESOURCE = 57995
+const RESPECT = 57996
+const RESTART = 57997
+const RETAIN = 57998
+const REUSE = 57999
+const ROLE = 58000
+const SECONDARY = 58001
+const SECONDARY_ENGINE = 58002
+const SECONDARY_ENGINE_ATTRIBUTE = 58003
+const SECONDARY_LOAD = 58004
+const SECONDARY_UNLOAD = 58005
+const SIMPLE = 58006
+const SKIP = 58007
+const SRID = 58008
+const THREAD_PRIORITY = 58009
+const TIES = 58010
+const UNBOUNDED = 58011
+const VCPU = 58012
+const VISIBLE = 58013
+const RETURNING = 58014
+const FORMAT_BYTES = 58015
+const FORMAT_PICO_TIME = 58016
+const PS_CURRENT_THREAD_ID = 58017
+const PS_THREAD_ID = 58018
+const GTID_SUBSET = 58019
+const GTID_SUBTRACT = 58020
+const WAIT_FOR_EXECUTED_GTID_SET = 58021
+const WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS = 58022
+const FORMAT = 58023
+const TREE = 58024
+const VITESS = 58025
+const TRADITIONAL = 58026
+const VTEXPLAIN = 58027
+const VEXPLAIN = 58028
+const PLAN = 58029
+const LOCAL = 58030
+const LOW_PRIORITY = 58031
+const NO_WRITE_TO_BINLOG = 58032
+const LOGS = 58033
+const ERROR = 58034
+const GENERAL = 58035
+const HOSTS = 58036
+const OPTIMIZER_COSTS = 58037
+const USER_RESOURCES = 58038
+const SLOW = 58039
+const CHANNEL = 58040
+const RELAY = 58041
+const EXPORT = 58042
+const CURRENT = 58043
+const ROW = 58044
+const ROWS = 58045
+const AVG_ROW_LENGTH = 58046
+const CONNECTION = 58047
+const CHECKSUM = 58048
+const DELAY_KEY_WRITE = 58049
+const ENCRYPTION = 58050
+const ENGINE = 58051
+const INSERT_METHOD = 58052
+const MAX_ROWS = 58053
+const MIN_ROWS = 58054
+const PACK_KEYS = 58055
+const PASSWORD = 58056
+const FIXED = 58057
+const DYNAMIC = 58058
+const COMPRESSED = 58059
+const REDUNDANT = 58060
+const COMPACT = 58061
+const ROW_FORMAT = 58062
+const STATS_AUTO_RECALC = 58063
+const STATS_PERSISTENT = 58064
+const STATS_SAMPLE_PAGES = 58065
+const STORAGE = 58066
+const MEMORY = 58067
+const DISK = 58068
+const PARTITIONS = 58069
+const LINEAR = 58070
+const RANGE = 58071
+const LIST = 58072
+const SUBPARTITION = 58073
+const SUBPARTITIONS = 58074
+const HASH = 58075
var yyToknames = [...]string{
"$end",
@@ -911,6 +912,7 @@ var yyToknames = [...]string{
"LEADING",
"TRAILING",
"KILL",
+ "TRACE",
"EMPTY_FROM_CLAUSE",
"LOWER_THAN_CHARSET",
"CHARSET",
@@ -1535,117 +1537,116 @@ var yyExca = [...]int{
-2, 40,
-1, 52,
1, 157,
- 750, 157,
+ 751, 157,
-2, 165,
-1, 53,
- 148, 165,
- 190, 165,
- 362, 165,
+ 149, 165,
+ 191, 165,
+ 363, 165,
-2, 524,
-1, 61,
38, 784,
- 253, 784,
- 264, 784,
- 299, 798,
+ 254, 784,
+ 265, 784,
300, 798,
+ 301, 798,
-2, 786,
-1, 66,
- 255, 822,
+ 256, 822,
-2, 820,
-1, 122,
- 252, 1619,
+ 253, 1620,
-2, 131,
-1, 124,
1, 158,
- 750, 158,
+ 751, 158,
-2, 165,
-1, 135,
- 149, 409,
- 258, 409,
+ 150, 409,
+ 259, 409,
-2, 513,
-1, 154,
- 148, 165,
- 190, 165,
- 362, 165,
+ 149, 165,
+ 191, 165,
+ 363, 165,
-2, 533,
- -1, 747,
- 176, 41,
+ -1, 748,
+ 177, 41,
-2, 43,
- -1, 956,
- 95, 1636,
- -2, 1480,
-1, 957,
95, 1637,
- 235, 1641,
-2, 1481,
-1, 958,
- 235, 1640,
+ 95, 1638,
+ 236, 1642,
+ -2, 1482,
+ -1, 959,
+ 236, 1641,
-2, 42,
- -1, 1042,
- 65, 894,
- -2, 907,
- -1, 1130,
- 263, 1107,
- 268, 1107,
+ -1, 1043,
+ 65, 895,
+ -2, 908,
+ -1, 1131,
+ 264, 1108,
+ 269, 1108,
-2, 420,
- -1, 1215,
+ -1, 1216,
1, 581,
- 750, 581,
+ 751, 581,
-2, 165,
- -1, 1524,
- 235, 1641,
- -2, 1481,
- -1, 1737,
- 65, 895,
- -2, 911,
- -1, 1738,
+ -1, 1526,
+ 236, 1642,
+ -2, 1482,
+ -1, 1739,
65, 896,
-2, 912,
- -1, 1798,
- 148, 165,
- 190, 165,
- 362, 165,
+ -1, 1740,
+ 65, 897,
+ -2, 913,
+ -1, 1800,
+ 149, 165,
+ 191, 165,
+ 363, 165,
-2, 459,
- -1, 1881,
- 149, 409,
- 258, 409,
+ -1, 1883,
+ 150, 409,
+ 259, 409,
-2, 513,
- -1, 1890,
- 263, 1108,
- 268, 1108,
+ -1, 1892,
+ 264, 1109,
+ 269, 1109,
-2, 421,
- -1, 2339,
- 235, 1645,
- -2, 1639,
- -1, 2340,
- 235, 1641,
- -2, 1637,
- -1, 2443,
- 148, 165,
- 190, 165,
- 362, 165,
+ -1, 2341,
+ 236, 1646,
+ -2, 1640,
+ -1, 2342,
+ 236, 1642,
+ -2, 1638,
+ -1, 2445,
+ 149, 165,
+ 191, 165,
+ 363, 165,
-2, 460,
- -1, 2450,
+ -1, 2452,
28, 186,
-2, 188,
- -1, 2913,
+ -1, 2915,
86, 96,
96, 96,
- -2, 974,
- -1, 2981,
- 725, 702,
+ -2, 975,
+ -1, 2983,
+ 726, 702,
-2, 676,
- -1, 3205,
- 55, 1584,
- -2, 1578,
- -1, 4042,
- 725, 702,
+ -1, 3207,
+ 55, 1585,
+ -2, 1579,
+ -1, 4044,
+ 726, 702,
-2, 690,
- -1, 4134,
+ -1, 4136,
98, 634,
104, 634,
114, 634,
- 192, 634,
193, 634,
194, 634,
195, 634,
@@ -1687,393 +1688,394 @@ var yyExca = [...]int{
231, 634,
232, 634,
233, 634,
- -2, 2016,
+ 234, 634,
+ -2, 2017,
}
const yyPrivate = 57344
-const yyLast = 57472
+const yyLast = 56459
var yyAct = [...]int{
- 972, 3693, 3694, 87, 3692, 4023, 4177, 4209, 960, 4113,
- 4132, 2144, 3356, 2368, 4005, 4222, 4101, 1281, 4176, 1283,
- 967, 3642, 959, 2132, 3257, 2440, 3264, 3928, 3305, 3218,
- 4003, 3314, 3492, 3319, 3316, 3071, 3315, 3313, 3318, 3317,
- 3629, 3156, 3334, 2370, 2515, 3272, 3333, 751, 2011, 3222,
- 3219, 3538, 3532, 2070, 3045, 3070, 5, 3735, 3216, 2478,
- 2395, 746, 921, 3206, 2873, 3522, 745, 779, 2947, 3363,
- 1858, 1801, 920, 3027, 2502, 2978, 2483, 1757, 1092, 4074,
- 3336, 2948, 2546, 2949, 163, 2411, 1040, 2428, 87, 2416,
- 41, 1162, 1060, 1067, 2898, 1037, 2879, 2865, 2849, 2166,
- 925, 2414, 43, 42, 2324, 1138, 2292, 1040, 2078, 3019,
- 2415, 2291, 2524, 2128, 1888, 149, 3560, 2501, 2403, 2563,
- 2485, 2940, 1102, 1120, 1125, 2915, 1790, 1770, 2418, 1718,
- 100, 2172, 1537, 2103, 2092, 104, 1906, 1462, 105, 1447,
- 2007, 1895, 1099, 1096, 1987, 3221, 761, 1131, 1867, 1126,
- 1128, 1100, 2474, 1127, 1789, 1077, 1775, 1079, 99, 1049,
- 1740, 1520, 1496, 2199, 2069, 2180, 3730, 2475, 748, 2396,
- 2847, 756, 1046, 107, 2886, 85, 2019, 127, 1044, 1271,
- 167, 1880, 3493, 1059, 125, 3722, 1039, 126, 1043, 1072,
- 1045, 132, 133, 922, 3549, 1211, 93, 1035, 1047, 84,
- 755, 749, 1541, 98, 4210, 106, 1071, 1062, 1279, 3630,
- 3302, 1257, 2517, 2518, 2519, 4058, 738, 2517, 3001, 3000,
- 1546, 2969, 2561, 3622, 1034, 4159, 3035, 3585, 3036, 4054,
- 1052, 681, 2085, 128, 2084, 134, 2083, 3697, 4053, 1167,
- 2082, 4059, 1142, 1164, 1093, 2365, 2366, 2081, 2080, 2050,
- 1227, 678, 3697, 679, 4153, 2845, 1181, 1182, 1183, 1053,
- 1186, 1187, 1188, 1189, 1175, 3202, 1192, 1193, 1194, 1195,
- 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205,
- 1206, 1207, 1208, 2, 2614, 1038, 1087, 1141, 1086, 739,
- 1036, 1479, 4180, 3160, 4215, 1761, 1759, 1972, 1117, 3324,
- 1751, 3324, 1116, 1061, 95, 128, 1168, 1171, 1172, 1115,
- 1458, 95, 1114, 4032, 3321, 4232, 2971, 95, 2875, 4214,
- 4175, 4200, 4163, 2550, 2106, 1762, 1760, 3496, 111, 112,
- 113, 3495, 116, 3696, 723, 122, 1228, 1184, 191, 4054,
- 2389, 673, 1109, 1104, 4161, 717, 95, 4162, 3696, 1033,
- 2994, 2392, 926, 736, 737, 975, 976, 977, 2391, 3322,
- 723, 3322, 2991, 1028, 1029, 1030, 1031, 2549, 190, 4160,
- 1042, 4006, 2810, 128, 2090, 3382, 1085, 1089, 924, 4128,
- 3924, 3923, 3635, 1166, 1165, 3636, 4190, 1118, 3328, 190,
- 3328, 129, 3934, 4157, 3654, 1449, 3643, 4102, 1074, 1075,
- 4110, 2621, 1085, 1089, 924, 2543, 3933, 172, 717, 86,
- 2137, 4137, 129, 3408, 1869, 1113, 2846, 1220, 1221, 975,
- 976, 977, 3254, 3255, 717, 86, 86, 3253, 172, 2435,
- 2436, 2924, 2889, 1108, 2923, 4142, 1110, 2925, 3034, 1476,
- 1475, 1477, 1478, 2062, 2063, 1791, 3653, 1792, 2618, 1223,
- 717, 712, 2434, 2929, 1264, 4140, 1266, 2548, 3018, 1247,
- 2890, 1252, 1253, 1026, 1235, 4146, 4147, 169, 1025, 1236,
- 170, 2619, 4114, 1111, 3274, 3275, 3749, 1234, 1276, 1233,
- 1235, 4141, 717, 4024, 4118, 1236, 1248, 1241, 169, 2936,
- 3360, 170, 95, 2015, 1263, 1265, 189, 2453, 2452, 697,
- 3358, 3390, 3325, 4037, 3325, 2882, 2883, 1442, 95, 95,
- 3388, 2612, 695, 717, 717, 2061, 731, 189, 2367, 1459,
- 3364, 1722, 3092, 2065, 735, 2399, 3020, 1962, 729, 1787,
- 86, 2979, 2525, 88, 1210, 1113, 3976, 1105, 3977, 3351,
- 1463, 3004, 2564, 4212, 1107, 1106, 4181, 3352, 4118, 2588,
- 1988, 2589, 692, 2590, 1268, 1185, 1250, 1251, 1448, 718,
- 2568, 707, 2570, 1441, 1273, 1256, 1216, 4182, 3022, 1254,
- 3624, 1963, 1873, 1964, 3623, 2591, 702, 1191, 1190, 1255,
- 2566, 3908, 3620, 3273, 1249, 1242, 3361, 705, 1140, 1140,
- 715, 1275, 1151, 1111, 1149, 3276, 3359, 1274, 716, 1121,
- 2528, 3701, 2567, 1122, 1261, 1112, 1078, 2412, 1262, 2615,
- 173, 2616, 3008, 95, 3009, 2569, 1511, 2571, 1267, 179,
- 1122, 1160, 718, 2577, 2573, 2575, 2576, 2574, 2578, 2579,
- 2580, 173, 1511, 1159, 2016, 1158, 1157, 1725, 718, 1156,
- 179, 1155, 1154, 1260, 1153, 1161, 1148, 3276, 1473, 1097,
- 4233, 1097, 4187, 1097, 1134, 1095, 4154, 3535, 682, 1133,
- 684, 698, 2008, 720, 718, 719, 688, 1868, 686, 690,
- 699, 691, 1073, 685, 3023, 696, 2554, 2553, 687, 700,
- 701, 704, 708, 709, 710, 706, 703, 2004, 694, 721,
- 3093, 1139, 1139, 2880, 1866, 1450, 718, 3619, 1178, 3296,
- 3003, 1865, 3039, 1088, 1082, 1080, 2972, 3159, 4155, 1864,
- 2989, 2005, 1280, 1170, 1280, 1280, 1862, 1226, 2636, 1133,
- 2397, 2398, 672, 1169, 1497, 1112, 4019, 718, 718, 1088,
- 1082, 1080, 3187, 3185, 3017, 1512, 1513, 3016, 3574, 3556,
- 2920, 1152, 2885, 1150, 2822, 2140, 3379, 164, 1498, 1499,
- 1500, 1501, 1502, 1503, 1504, 1506, 1505, 1507, 1508, 1788,
- 1469, 1779, 1675, 1461, 1040, 1521, 1526, 1527, 164, 1530,
- 1532, 1533, 1534, 1535, 1536, 1225, 1539, 1540, 1542, 1542,
- 3168, 1542, 1542, 1547, 1547, 1547, 1550, 1551, 1552, 1553,
- 1554, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563,
- 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573,
- 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583,
- 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593,
- 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603,
- 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613,
- 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623,
- 1624, 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633,
- 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643,
- 1644, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653,
- 1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663,
- 1664, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673,
- 1518, 3695, 4031, 1269, 1674, 2970, 1676, 1677, 1678, 1679,
- 1680, 1119, 1439, 1440, 3583, 3584, 3695, 973, 1547, 1547,
- 1547, 1547, 1547, 1547, 973, 4116, 2547, 2938, 1531, 4077,
- 973, 1438, 1894, 1687, 1688, 1689, 1690, 1691, 1692, 1693,
- 1694, 1695, 1696, 1697, 1698, 1699, 1700, 3652, 1522, 1514,
- 1515, 1516, 1517, 1463, 722, 3536, 3006, 4115, 4145, 1528,
- 2620, 2993, 1457, 1245, 1715, 3480, 3326, 3327, 3326, 3327,
- 1081, 1543, 1214, 1544, 1545, 713, 165, 717, 1140, 3330,
- 3167, 3330, 94, 177, 1974, 1973, 1975, 1976, 1977, 4116,
- 714, 2494, 1232, 89, 1548, 1549, 1081, 165, 94, 94,
- 2973, 680, 4144, 124, 177, 2992, 1222, 1219, 2441, 1231,
- 1511, 1237, 1238, 1239, 1240, 2488, 3252, 1508, 1721, 2647,
- 2399, 4115, 2850, 2852, 185, 1993, 1491, 1040, 1056, 1272,
- 1750, 1040, 2619, 3026, 2545, 1277, 1278, 1040, 4045, 1230,
- 4226, 1893, 1140, 119, 1163, 185, 1468, 1465, 1466, 1467,
- 1472, 1474, 1471, 1713, 1470, 1503, 1504, 1506, 1505, 1507,
- 1508, 1473, 2208, 1712, 1464, 1751, 1992, 166, 171, 168,
- 174, 175, 176, 178, 180, 181, 182, 183, 3615, 3548,
- 2565, 1139, 2074, 184, 186, 187, 188, 2001, 166, 171,
- 168, 174, 175, 176, 178, 180, 181, 182, 183, 1177,
- 2173, 1140, 2181, 94, 184, 186, 187, 188, 1498, 1499,
- 1500, 1501, 1502, 1503, 1504, 1506, 1505, 1507, 1508, 2182,
- 120, 1713, 1731, 1793, 1258, 1732, 104, 1729, 3066, 105,
- 2173, 1733, 2656, 1113, 1209, 2020, 2507, 1039, 1681, 1682,
- 1683, 1684, 1685, 1686, 1719, 1139, 1477, 1478, 2647, 4191,
- 1478, 1133, 1136, 1137, 3744, 1097, 3380, 3590, 1706, 1130,
- 1134, 2200, 3589, 1479, 107, 2532, 2202, 2487, 1903, 1902,
- 2207, 2203, 1892, 1469, 2204, 2205, 2206, 2542, 1244, 2201,
- 2209, 2210, 2211, 2212, 2213, 2214, 2215, 2216, 2217, 1246,
- 2540, 718, 1229, 1753, 3260, 2851, 1215, 1886, 1213, 1870,
- 1871, 1872, 3029, 3029, 1139, 1151, 1149, 3028, 3028, 1727,
- 1133, 1136, 1137, 4183, 1097, 2397, 2398, 3575, 1130, 1134,
- 1989, 1140, 1990, 1728, 1140, 1991, 1730, 1051, 1957, 2329,
- 1879, 1716, 1896, 1896, 1036, 2013, 1038, 1756, 3046, 1129,
- 2544, 1939, 4078, 1898, 1997, 3261, 1995, 1996, 1994, 1998,
- 1999, 2000, 4011, 4234, 1784, 1785, 4228, 2179, 1280, 2167,
- 2164, 3916, 2096, 2097, 2094, 2095, 1947, 1948, 1853, 1897,
- 3263, 4224, 1953, 1954, 4225, 1908, 4223, 1909, 2537, 1911,
- 1913, 1259, 2108, 1917, 1919, 1921, 1923, 1925, 2093, 1861,
- 3258, 4079, 2021, 2537, 3915, 1876, 2109, 1509, 1510, 2107,
- 1751, 4012, 1479, 1889, 1140, 1877, 1875, 1212, 2178, 3274,
- 3275, 1476, 1479, 1477, 1478, 1734, 3259, 975, 976, 977,
- 3068, 2541, 3048, 1112, 1139, 1900, 1176, 1139, 1982, 3906,
- 1173, 1479, 1143, 1133, 741, 3666, 2539, 1145, 1943, 3665,
- 3597, 1146, 1144, 2096, 2097, 2626, 2627, 3596, 1980, 4235,
- 3265, 3586, 1935, 2009, 3649, 1938, 3650, 1940, 3303, 2156,
- 2145, 2146, 2147, 2148, 2158, 2149, 2150, 2151, 2163, 2159,
- 2152, 2153, 2160, 2161, 2162, 2154, 2155, 2157, 3292, 2945,
- 1969, 2944, 1479, 1116, 2645, 2329, 128, 2943, 2497, 2326,
- 1115, 1983, 1479, 1114, 2644, 3058, 3057, 3056, 2328, 1981,
- 3050, 1967, 3054, 3355, 3049, 1751, 3047, 1139, 2404, 2405,
- 2026, 3052, 1143, 1133, 971, 1966, 1479, 1145, 3273, 1979,
- 3051, 1146, 1144, 4196, 1751, 1965, 1955, 1949, 1280, 1280,
- 3276, 1946, 1444, 1945, 1944, 2022, 2023, 1915, 2048, 3053,
- 3055, 1726, 1147, 1479, 87, 723, 3580, 87, 723, 2027,
- 1476, 1968, 1477, 1478, 1787, 4184, 2034, 2035, 2036, 2927,
- 1476, 723, 1477, 1478, 4040, 1497, 2047, 3038, 4039, 1468,
- 1465, 1466, 1467, 1472, 1474, 1471, 1751, 1470, 4015, 1476,
- 1479, 1477, 1478, 1497, 4194, 1751, 1493, 1464, 1494, 1498,
- 1499, 1500, 1501, 1502, 1503, 1504, 1506, 1505, 1507, 1508,
- 2491, 4014, 1495, 1509, 1510, 1492, 4013, 1498, 1499, 1500,
- 1501, 1502, 1503, 1504, 1506, 1505, 1507, 1508, 2513, 4033,
- 2512, 1479, 3911, 2135, 2135, 2133, 2133, 2136, 2695, 1497,
- 1476, 3895, 1477, 1478, 2098, 4124, 1751, 1764, 1475, 1751,
- 1476, 2492, 1477, 1478, 42, 2871, 4211, 42, 2490, 3894,
- 3262, 2697, 3743, 1498, 1499, 1500, 1501, 1502, 1503, 1504,
- 1506, 1505, 1507, 1508, 1476, 1479, 1477, 1478, 2024, 4171,
- 1751, 2219, 4122, 1751, 1497, 2028, 2635, 2030, 2031, 2032,
- 2033, 2511, 2493, 2510, 2037, 2509, 1765, 2508, 1479, 2683,
- 3741, 1476, 2489, 1477, 1478, 3662, 2049, 1711, 1498, 1499,
- 1500, 1501, 1502, 1503, 1504, 1506, 1505, 1507, 1508, 1710,
- 1479, 2075, 1709, 1713, 4185, 101, 85, 101, 3594, 85,
- 3579, 103, 3365, 1712, 2168, 102, 3362, 102, 1476, 2105,
- 1477, 1478, 3397, 2871, 1751, 3943, 2055, 2056, 1501, 1502,
- 1503, 1504, 1506, 1505, 1507, 1508, 2110, 1475, 1751, 2871,
- 4109, 2871, 4088, 2111, 3295, 2113, 2114, 2115, 2116, 2117,
- 2118, 2120, 2122, 2123, 2124, 2125, 2126, 2127, 1497, 1476,
- 3294, 1477, 1478, 2139, 2871, 4084, 3942, 1479, 2954, 2243,
- 4120, 1751, 3899, 2337, 2941, 2339, 1751, 2112, 1751, 3996,
- 1751, 3898, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1506,
- 1505, 1507, 1508, 1751, 3641, 1522, 1708, 2183, 2184, 2185,
- 2186, 3633, 4030, 1476, 2338, 1477, 1478, 3919, 1751, 2980,
- 2325, 2197, 2218, 2174, 2327, 1499, 1500, 1501, 1502, 1503,
- 1504, 1506, 1505, 1507, 1508, 1701, 1476, 2609, 1477, 1478,
- 2235, 1485, 1486, 1487, 1488, 1489, 1490, 1484, 1481, 2871,
- 3907, 2959, 1497, 3633, 1751, 2871, 3631, 2449, 1476, 1479,
- 1477, 1478, 2537, 1751, 2336, 1479, 2601, 2342, 2343, 3989,
- 1751, 3554, 1751, 2777, 1751, 2420, 1498, 1499, 1500, 1501,
- 1502, 1503, 1504, 1506, 1505, 1507, 1508, 2337, 2600, 2339,
- 1479, 110, 3266, 3285, 3284, 104, 3270, 2559, 105, 1479,
- 3282, 3283, 109, 3269, 108, 1479, 3280, 3281, 3280, 3279,
- 1479, 2372, 103, 2558, 2643, 1479, 104, 2450, 2409, 105,
- 2384, 2895, 1751, 3547, 2693, 1476, 1479, 1477, 1478, 2619,
- 3002, 1857, 2983, 1479, 2394, 2104, 2373, 3271, 1479, 2976,
- 2977, 95, 3267, 2051, 1479, 2871, 2870, 3268, 1102, 2916,
- 2017, 3987, 1751, 2138, 1751, 1475, 1978, 3984, 1751, 103,
- 1970, 1960, 2360, 2459, 2460, 2461, 2462, 2454, 2445, 2455,
- 2456, 2457, 2458, 2444, 1052, 2422, 1956, 1751, 4072, 1952,
- 1479, 2868, 1102, 2464, 2426, 1479, 2466, 2467, 2468, 2469,
- 2385, 3966, 1751, 2887, 1951, 103, 1950, 3521, 1751, 1857,
- 1856, 2916, 2480, 1751, 2378, 2387, 2379, 1476, 4028, 1477,
- 1478, 1799, 1798, 1476, 2448, 1477, 1478, 2917, 3514, 1751,
- 2526, 2486, 1766, 2407, 1751, 3511, 1751, 2919, 1270, 1479,
- 3509, 1751, 2431, 2432, 2430, 2887, 3472, 1751, 1476, 2447,
- 1477, 1478, 3551, 2446, 109, 1479, 1087, 1476, 1086, 1477,
- 1478, 1479, 3247, 1476, 2523, 1477, 1478, 2164, 1476, 2866,
- 1477, 1478, 2619, 1476, 3217, 1477, 1478, 2496, 2894, 2917,
- 2895, 4044, 3470, 1751, 1476, 3547, 1477, 1478, 3903, 2619,
- 1142, 1476, 2538, 1477, 1478, 2871, 1476, 2481, 1477, 1478,
- 1896, 2895, 1476, 2477, 1477, 1478, 2499, 2531, 3500, 2495,
- 2534, 2500, 2535, 110, 2470, 2472, 2473, 2551, 3282, 3190,
- 3550, 1479, 3547, 2433, 109, 1479, 108, 2777, 1475, 2680,
- 2679, 3466, 1751, 2481, 2530, 1141, 2533, 2529, 1476, 2895,
- 1477, 1478, 1479, 1476, 2537, 1477, 1478, 3463, 1751, 2520,
- 2402, 1479, 2552, 3461, 1751, 1479, 2537, 2555, 1755, 1479,
- 2363, 2556, 2557, 2138, 2076, 2060, 2156, 2145, 2146, 2147,
- 2148, 2158, 2149, 2150, 2151, 2163, 2159, 2152, 2153, 2160,
- 2161, 2162, 2154, 2155, 2157, 1752, 1754, 1476, 1479, 1477,
- 1478, 2624, 2003, 1786, 2562, 1041, 3598, 1124, 4150, 1751,
- 1040, 1040, 1040, 1476, 1931, 1477, 1478, 1123, 4091, 1476,
- 3930, 1477, 1478, 3459, 1751, 1479, 4048, 3457, 1751, 1479,
- 1532, 1758, 1532, 1479, 3896, 3756, 3614, 3611, 3592, 3413,
- 1479, 3412, 1859, 3602, 3455, 1751, 2479, 3353, 2639, 3308,
- 3304, 1479, 1927, 3453, 1751, 2984, 2594, 3451, 1751, 2476,
- 3306, 3449, 1751, 3599, 3600, 3601, 2471, 1479, 2642, 2465,
- 2339, 1932, 1933, 1934, 1479, 2950, 2463, 1985, 1479, 1476,
- 1891, 1477, 1478, 1476, 1887, 1477, 1478, 1855, 95, 2951,
- 3447, 1751, 121, 1479, 1214, 2053, 3603, 3604, 3605, 2338,
- 1476, 1479, 1477, 1478, 4206, 1928, 1929, 1930, 3357, 1476,
- 2611, 1477, 1478, 1476, 1479, 1477, 1478, 1476, 3616, 1477,
- 1478, 3445, 1751, 3931, 2617, 3443, 1751, 1479, 2494, 2951,
- 2376, 1479, 3441, 1751, 3561, 3562, 4204, 4178, 2625, 1479,
- 4052, 3971, 3564, 3439, 1751, 1479, 1476, 3300, 1477, 1478,
- 3299, 2631, 1714, 1479, 3298, 3567, 2628, 2629, 2630, 3437,
- 1751, 1479, 2054, 3217, 2105, 1479, 3435, 1751, 2963, 2595,
- 3433, 1751, 3721, 1476, 3720, 1477, 1478, 1476, 3566, 1477,
- 1478, 1476, 3236, 1477, 1478, 3419, 1751, 2632, 1476, 2634,
- 1477, 1478, 1479, 3395, 1751, 3235, 1479, 1763, 2637, 1476,
- 2638, 1477, 1478, 3239, 3237, 3932, 2842, 1751, 3240, 3238,
- 2652, 2393, 677, 2655, 4010, 1476, 2382, 1477, 1478, 2840,
- 1751, 2633, 1476, 3938, 1477, 1478, 1476, 3719, 1477, 1478,
- 3555, 2815, 1751, 3241, 1479, 2904, 2905, 2792, 1751, 3195,
- 1479, 1476, 2640, 1477, 1478, 2784, 1751, 1054, 2821, 1476,
- 3194, 1477, 1478, 2775, 1751, 3734, 1479, 2773, 1751, 3736,
- 3543, 3204, 1476, 1479, 1477, 1478, 2002, 1479, 2809, 2603,
- 2604, 2691, 1024, 3278, 2606, 1476, 2587, 1477, 1478, 1476,
- 2853, 1477, 1478, 2607, 2760, 1751, 740, 1476, 2651, 1477,
- 1478, 2934, 2955, 1476, 3540, 1477, 1478, 2181, 1055, 1040,
- 1479, 1476, 3539, 1477, 1478, 2135, 1479, 2133, 2856, 1476,
- 1057, 1477, 1478, 1476, 2182, 1477, 1478, 1479, 1058, 3207,
- 3209, 2586, 2892, 2893, 1066, 2854, 2758, 1751, 3210, 2585,
- 2584, 2420, 2756, 1751, 1040, 2912, 1479, 1180, 1065, 2583,
- 1476, 2582, 1477, 1478, 1476, 2581, 1477, 1478, 2754, 1751,
- 1179, 2857, 3373, 2859, 1479, 2752, 1751, 2950, 3032, 2750,
- 1751, 2101, 2099, 2100, 101, 2872, 1479, 101, 1443, 2990,
- 2104, 129, 3545, 103, 102, 2891, 103, 102, 2404, 2405,
- 4220, 2967, 1476, 2598, 1477, 1478, 4127, 4029, 1476, 1479,
- 1477, 1478, 2748, 1751, 3926, 3277, 2908, 2388, 2746, 1751,
- 3193, 3523, 1719, 2844, 1476, 2881, 1477, 1478, 3192, 2744,
- 1751, 1476, 2623, 1477, 1478, 1476, 1479, 1477, 1478, 2059,
- 1479, 1713, 42, 2058, 2864, 1479, 2937, 2939, 2742, 1751,
- 1479, 2909, 2910, 108, 2911, 109, 1479, 3995, 2930, 3533,
- 2884, 3994, 1479, 3974, 2914, 2869, 2740, 1751, 1476, 2988,
- 1477, 1478, 1479, 3742, 1476, 3731, 1477, 1478, 2738, 1751,
- 1479, 110, 110, 2918, 1479, 1476, 3740, 1477, 1478, 2486,
- 2921, 2887, 109, 109, 108, 108, 2928, 1479, 3739, 3705,
- 2931, 2736, 1751, 103, 1476, 1768, 1477, 1478, 3732, 2953,
- 3612, 2999, 3544, 2176, 2956, 2957, 110, 2942, 2177, 3542,
- 3309, 2521, 1476, 1874, 1477, 1478, 1064, 109, 2734, 1751,
- 4208, 4207, 2732, 1751, 1476, 2952, 1477, 1478, 2946, 2868,
- 3096, 2681, 2730, 1751, 2374, 1479, 1780, 2960, 3569, 2961,
- 1479, 2964, 2965, 2966, 2728, 1751, 2239, 1476, 2996, 1477,
- 1478, 1772, 4207, 4208, 2726, 1751, 1879, 114, 115, 4016,
- 3578, 1479, 2721, 1751, 3, 1479, 1767, 2985, 2986, 3042,
- 3043, 97, 2073, 1479, 1476, 10, 1477, 1478, 1476, 3516,
- 1477, 1478, 1, 1476, 2995, 1477, 1478, 1032, 1476, 1446,
- 1477, 1478, 1479, 1445, 1476, 2071, 1477, 1478, 9, 3582,
- 1476, 1479, 1477, 1478, 2072, 1479, 4139, 8, 693, 2364,
- 1476, 1479, 1477, 1478, 1717, 3021, 1479, 3040, 1476, 3059,
- 1477, 1478, 1476, 3024, 1477, 1478, 2322, 2717, 1751, 4179,
- 4135, 4136, 2715, 1751, 1971, 1476, 1961, 1477, 1478, 3644,
- 1479, 2290, 3927, 3077, 3078, 3079, 3080, 3081, 3082, 3083,
- 3084, 3085, 3086, 2708, 1751, 1479, 2354, 2706, 1751, 3312,
- 2527, 3610, 2484, 3094, 1132, 3512, 154, 2997, 2442, 2443,
- 4104, 118, 1090, 117, 1752, 2361, 1135, 1243, 2522, 3060,
- 3634, 2935, 1479, 1476, 3478, 1477, 1478, 2451, 1476, 1805,
- 1477, 1478, 1803, 3474, 1804, 1479, 1802, 3410, 2900, 2903,
- 2904, 2905, 2901, 3409, 2902, 2906, 1807, 1479, 3401, 1476,
- 1806, 1477, 1478, 1476, 2386, 1477, 1478, 4076, 3381, 2682,
- 3479, 1476, 1714, 1477, 1478, 2064, 730, 2907, 3044, 3098,
- 724, 3154, 3399, 192, 3030, 1794, 3061, 3031, 1773, 2057,
- 1476, 1174, 1477, 1478, 683, 3286, 2560, 2838, 689, 1476,
- 1479, 1477, 1478, 1476, 1529, 1477, 1478, 2052, 3041, 1476,
- 3172, 1477, 1478, 3191, 1476, 2922, 1477, 1478, 3161, 2233,
- 1084, 1076, 2375, 2858, 2837, 1083, 3163, 3904, 3225, 3537,
- 1479, 3203, 2975, 3205, 2874, 3208, 3201, 2833, 1476, 2420,
- 1477, 1478, 4009, 1479, 3733, 3087, 2325, 4089, 2325, 2832,
- 2327, 2932, 2327, 1476, 3134, 1477, 1478, 1479, 1769, 3499,
- 2654, 3224, 2171, 87, 1519, 2419, 2420, 2420, 2420, 2420,
- 2420, 2498, 1479, 3172, 3700, 3144, 3145, 3146, 3147, 3148,
- 1476, 2091, 1477, 1478, 753, 752, 2420, 750, 3162, 2420,
- 3164, 3171, 2831, 1476, 3229, 1477, 1478, 3246, 2860, 2316,
- 2317, 2318, 2319, 2320, 1479, 1476, 2888, 1477, 1478, 1483,
- 2013, 1482, 1479, 961, 2848, 1781, 2341, 3183, 2899, 2344,
- 2345, 2897, 2830, 1479, 2896, 2596, 3184, 3186, 3188, 2427,
- 3198, 3563, 3196, 3559, 1479, 2829, 4131, 2421, 2417, 2422,
- 3199, 1479, 2867, 3211, 3212, 912, 911, 762, 1476, 2828,
- 1477, 1478, 3329, 1044, 754, 2362, 3231, 3232, 1479, 3234,
- 3189, 744, 3337, 1043, 2819, 1045, 2422, 2422, 2422, 2422,
- 2422, 3242, 104, 1479, 974, 105, 3230, 3250, 1476, 3233,
- 1477, 1478, 910, 1479, 3256, 909, 2422, 3248, 3339, 2422,
- 3249, 1476, 3340, 1477, 1478, 3005, 2818, 3354, 3007, 3287,
- 3228, 3289, 3288, 2933, 2817, 1476, 3350, 1477, 1478, 1460,
- 3197, 1736, 3290, 3291, 1739, 2816, 2383, 1103, 3378, 4035,
- 1476, 2622, 1477, 1478, 3341, 3310, 2813, 3407, 2486, 3338,
- 3331, 1735, 4042, 2808, 3342, 3320, 1479, 3628, 3301, 2981,
- 3214, 3348, 2514, 1479, 69, 46, 4004, 4073, 904, 901,
- 2801, 3702, 1476, 3220, 1477, 1478, 3703, 3704, 3220, 3157,
- 1476, 3366, 1477, 1478, 3369, 2800, 3158, 4055, 3368, 1479,
- 3376, 1476, 4056, 1477, 1478, 2799, 900, 4057, 1479, 2228,
- 3386, 1456, 1476, 1453, 1477, 1478, 4152, 3383, 3384, 1476,
- 3385, 1477, 1478, 3387, 2066, 3389, 96, 3391, 3402, 3403,
- 3404, 3405, 3406, 36, 35, 34, 1476, 33, 1477, 1478,
- 32, 26, 25, 24, 23, 22, 29, 19, 21, 20,
- 18, 1476, 3323, 1477, 1478, 4174, 4219, 123, 2798, 55,
- 52, 1476, 50, 1477, 1478, 2797, 1532, 131, 130, 53,
- 1532, 49, 1217, 3311, 47, 31, 30, 17, 16, 15,
- 2641, 14, 13, 12, 2646, 11, 3524, 7, 3526, 6,
- 39, 2796, 3494, 38, 37, 28, 27, 40, 4, 3498,
- 2795, 2968, 2516, 0, 0, 0, 0, 2649, 0, 2650,
- 0, 0, 0, 0, 1476, 2658, 1477, 1478, 0, 2660,
- 2661, 1476, 0, 1477, 1478, 0, 0, 0, 2667, 2668,
- 2669, 2670, 2671, 2672, 2673, 2674, 2675, 2676, 0, 2678,
- 0, 3377, 0, 3223, 0, 0, 0, 1476, 2420, 1477,
- 1478, 0, 3525, 0, 3527, 0, 1476, 3529, 1477, 1478,
- 0, 3576, 2684, 2685, 2686, 2687, 3534, 2689, 2690, 3541,
- 2692, 0, 0, 0, 2694, 0, 0, 3546, 2699, 2700,
- 0, 2701, 1479, 0, 2704, 2705, 2707, 2709, 2710, 2711,
- 2712, 2713, 2714, 2716, 2718, 2719, 2720, 2722, 742, 2724,
- 2725, 2727, 2729, 2731, 2733, 2735, 2737, 2739, 2741, 2743,
- 2745, 2747, 2749, 2751, 2753, 2755, 2757, 2759, 2761, 2762,
- 2763, 3568, 2765, 3341, 2767, 3332, 2769, 2770, 3338, 2772,
- 2774, 2776, 3570, 3342, 3501, 2779, 3503, 3504, 3505, 2783,
- 3593, 3577, 3595, 2788, 2789, 2790, 2791, 1720, 2422, 3571,
- 3565, 1479, 3638, 3639, 0, 1479, 2802, 2803, 2804, 2805,
- 2806, 2807, 3587, 3588, 2811, 2812, 0, 3371, 3372, 0,
- 1479, 3531, 2814, 0, 2794, 0, 0, 2820, 0, 1479,
- 0, 0, 2823, 2824, 2825, 2826, 2827, 0, 1479, 0,
- 0, 0, 0, 2834, 2835, 1479, 2836, 0, 0, 2839,
- 2841, 2386, 1479, 2843, 3558, 0, 675, 1063, 0, 0,
- 1069, 1069, 1479, 2855, 3621, 0, 1479, 0, 3625, 3626,
- 3627, 0, 1479, 3572, 3573, 0, 1027, 3640, 0, 0,
- 1476, 0, 1477, 1478, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 2793, 0, 3656, 0, 2787, 0, 0,
- 2662, 0, 0, 0, 0, 1479, 0, 0, 0, 0,
- 0, 0, 2786, 1479, 0, 0, 0, 2677, 1098, 1479,
- 3667, 2785, 0, 0, 0, 0, 0, 1479, 0, 0,
- 2782, 0, 1479, 0, 0, 0, 1479, 2781, 0, 0,
- 1479, 0, 0, 0, 2780, 1479, 0, 0, 0, 1476,
- 0, 1477, 1478, 1476, 2778, 1477, 1478, 0, 2771, 0,
- 0, 0, 1479, 3708, 2768, 3709, 3710, 3711, 1476, 0,
- 1477, 1478, 0, 3718, 1479, 0, 3725, 1476, 3727, 1477,
- 1478, 1479, 0, 0, 0, 3698, 1476, 0, 1477, 1478,
- 0, 0, 3728, 1476, 0, 1477, 1478, 2766, 0, 0,
- 1476, 3224, 1477, 1478, 87, 2764, 3224, 0, 0, 0,
- 1476, 2723, 1477, 1478, 1476, 0, 1477, 1478, 0, 2703,
- 1476, 0, 1477, 1478, 2702, 0, 0, 0, 2698, 0,
- 0, 0, 2696, 0, 3729, 0, 0, 2688, 0, 3738,
- 2135, 3661, 2133, 3758, 3737, 3748, 0, 0, 3745, 0,
- 3747, 0, 0, 1476, 2659, 1477, 1478, 3750, 0, 0,
- 0, 1476, 0, 1477, 1478, 0, 2653, 1476, 0, 1477,
- 1478, 3910, 0, 2648, 0, 1476, 3762, 1477, 1478, 0,
- 1476, 0, 1477, 1478, 1476, 0, 1477, 1478, 1476, 0,
- 1477, 1478, 0, 1476, 0, 1477, 1478, 0, 0, 3617,
- 3618, 0, 0, 0, 42, 0, 0, 3902, 3901, 0,
- 1476, 3929, 1477, 1478, 0, 0, 0, 0, 0, 0,
- 0, 3917, 1476, 0, 1477, 1478, 3922, 3921, 0, 1476,
- 0, 1477, 1478, 1741, 3900, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 3968, 3969, 0, 1749, 0, 0,
- 1742, 3752, 0, 3072, 3073, 3074, 3075, 3076, 0, 0,
- 0, 0, 3726, 0, 3912, 3913, 3914, 0, 2135, 0,
- 2133, 3972, 0, 3091, 0, 2380, 2381, 1748, 1746, 1747,
- 1743, 0, 1744, 0, 0, 0, 0, 0, 0, 0,
- 0, 3220, 0, 0, 3975, 3759, 3760, 0, 3978, 4017,
- 3224, 0, 0, 0, 0, 1745, 3754, 0, 0, 0,
- 0, 0, 0, 0, 1550, 1551, 1552, 1553, 1554, 1555,
+ 973, 3695, 3696, 87, 3694, 4025, 4179, 4211, 961, 4115,
+ 4134, 2146, 3358, 2370, 3930, 4224, 4103, 3316, 3644, 4178,
+ 968, 2134, 1284, 960, 3259, 3266, 2169, 3220, 2442, 3494,
+ 3321, 3318, 3317, 4007, 1282, 3307, 4005, 3073, 3315, 3320,
+ 3319, 2072, 2372, 3336, 5, 3631, 752, 3274, 2013, 2517,
+ 3158, 3335, 3224, 3221, 3540, 3534, 3047, 3072, 3218, 3737,
+ 922, 2480, 780, 3208, 747, 746, 3524, 921, 2949, 2875,
+ 3029, 1803, 3338, 2485, 3365, 2950, 2980, 2504, 1093, 4076,
+ 2951, 1759, 2900, 2548, 163, 2413, 1041, 2430, 87, 1860,
+ 41, 2397, 2417, 43, 1068, 2881, 1908, 2867, 1061, 2851,
+ 2416, 742, 926, 3562, 1139, 42, 2418, 1041, 2293, 2326,
+ 1038, 2168, 2294, 3021, 2130, 2526, 2503, 2080, 149, 2405,
+ 1890, 2487, 1103, 2565, 2942, 1126, 1121, 1792, 2917, 1772,
+ 2174, 1720, 100, 2420, 2105, 1539, 2094, 1464, 1448, 2888,
+ 2009, 104, 1897, 1100, 1097, 3223, 762, 1129, 1132, 1869,
+ 1101, 2476, 1989, 105, 1127, 1128, 2477, 1791, 757, 1777,
+ 1078, 1080, 1742, 1050, 2182, 99, 3732, 2201, 2849, 1522,
+ 1498, 1047, 749, 2398, 85, 107, 2071, 1272, 1045, 2021,
+ 3495, 1046, 127, 167, 125, 3724, 126, 1212, 1040, 1882,
+ 1044, 132, 923, 133, 3551, 1073, 739, 1036, 756, 1060,
+ 750, 106, 1543, 1048, 1548, 98, 4212, 1072, 3632, 1063,
+ 1258, 1280, 3304, 84, 2519, 2520, 2521, 2519, 4060, 3003,
+ 3002, 93, 2971, 2563, 3587, 3624, 1035, 4161, 3037, 3038,
+ 4055, 4056, 1053, 2367, 2368, 682, 128, 1974, 2087, 1168,
+ 2086, 1143, 2085, 134, 4061, 1094, 2084, 2083, 2082, 2052,
+ 1228, 2847, 679, 3699, 680, 2616, 3204, 3162, 4182, 1763,
+ 4217, 1761, 2552, 1176, 4234, 4177, 1054, 4155, 4202, 740,
+ 4165, 2394, 4163, 3498, 2, 1087, 3497, 2393, 2550, 2996,
+ 2877, 4008, 2812, 2092, 1142, 4216, 1037, 1481, 3326, 1764,
+ 1088, 1762, 3384, 4130, 3926, 4164, 3699, 4162, 1105, 1039,
+ 95, 3323, 1118, 1169, 1172, 1173, 2551, 1117, 128, 1116,
+ 3925, 1115, 1167, 2391, 3326, 4034, 95, 2973, 1459, 111,
+ 112, 113, 3637, 116, 1110, 3638, 122, 1166, 1062, 191,
+ 4192, 4056, 674, 95, 3936, 1229, 718, 724, 4159, 3656,
+ 1450, 1185, 3645, 4104, 737, 738, 95, 4112, 3324, 3698,
+ 2545, 1034, 927, 3935, 1029, 1030, 1031, 1032, 2139, 1753,
+ 4139, 1043, 3410, 1086, 1090, 925, 2108, 2848, 190, 724,
+ 1871, 1086, 1090, 925, 3324, 2436, 128, 3330, 1119, 3256,
+ 3257, 2437, 2438, 976, 977, 978, 718, 2993, 3255, 1075,
+ 1076, 129, 3698, 976, 977, 978, 86, 3020, 3010, 86,
+ 3011, 2064, 2065, 3330, 1215, 3036, 2620, 172, 1265, 1793,
+ 1267, 1794, 718, 1248, 86, 1109, 2623, 1236, 1111, 2891,
+ 718, 2926, 1237, 1461, 2925, 1477, 1027, 2927, 1277, 713,
+ 1235, 1114, 1234, 1221, 1222, 1026, 1478, 4116, 1479, 1480,
+ 1236, 2974, 4026, 1253, 1254, 1237, 1249, 2892, 1264, 1266,
+ 3751, 1242, 2938, 2931, 4144, 2017, 2455, 2454, 2884, 2885,
+ 3362, 718, 718, 3392, 718, 1224, 3390, 169, 3360, 1443,
+ 170, 2614, 3537, 2063, 4142, 732, 2067, 698, 736, 95,
+ 730, 3366, 95, 3022, 4148, 4149, 2621, 3094, 1789, 1112,
+ 696, 1465, 3327, 4039, 3276, 3277, 189, 95, 3978, 1964,
+ 3979, 4143, 3655, 1449, 1186, 1724, 2369, 2401, 2496, 2981,
+ 2527, 3006, 4183, 4120, 2572, 2566, 1211, 1114, 3327, 1106,
+ 4214, 86, 3048, 4120, 88, 1269, 1108, 1107, 1460, 3353,
+ 693, 1990, 2490, 4184, 1465, 1251, 1252, 3354, 2590, 708,
+ 2591, 1276, 2592, 1965, 1250, 1966, 1442, 1275, 1274, 1243,
+ 719, 1255, 1257, 3024, 703, 1217, 3363, 3626, 1262, 1499,
+ 3910, 1256, 1263, 2570, 3361, 706, 1114, 1210, 716, 2573,
+ 3625, 2593, 1268, 1192, 1141, 1112, 717, 1191, 1152, 2568,
+ 2617, 3381, 2618, 1500, 1501, 1502, 1503, 1504, 1505, 1506,
+ 1508, 1507, 1509, 1510, 1079, 2530, 2018, 1261, 3703, 1475,
+ 719, 1875, 1150, 3275, 95, 2569, 3050, 1141, 1122, 2414,
+ 1123, 173, 1123, 2210, 3622, 3278, 1161, 1160, 2571, 1513,
+ 179, 1113, 1159, 1158, 1157, 1156, 719, 1155, 1154, 1149,
+ 3278, 1214, 1162, 1727, 719, 1098, 683, 4189, 685, 699,
+ 1135, 721, 1475, 720, 689, 4235, 687, 691, 700, 692,
+ 1098, 686, 1896, 697, 1096, 3095, 688, 701, 702, 705,
+ 709, 710, 711, 707, 704, 1098, 695, 722, 1134, 4156,
+ 2010, 3161, 1513, 3025, 1870, 719, 719, 1140, 719, 3060,
+ 3059, 3058, 1074, 2556, 3052, 2489, 3056, 2555, 3051, 2006,
+ 3049, 1089, 1083, 1081, 4157, 3054, 1451, 1179, 3298, 1089,
+ 1083, 1081, 2399, 2400, 3053, 3041, 3005, 1113, 1868, 1867,
+ 1140, 1471, 2202, 1281, 1463, 1281, 1281, 2204, 3189, 1790,
+ 1866, 2209, 2205, 3055, 3057, 2206, 2207, 2208, 1153, 3621,
+ 2203, 2211, 2212, 2213, 2214, 2215, 2216, 2217, 2218, 2219,
+ 1213, 2991, 2007, 1864, 1227, 673, 2975, 3019, 164, 1171,
+ 3018, 3187, 1151, 3008, 1471, 1134, 1113, 2549, 2638, 1170,
+ 3170, 1895, 1514, 1515, 4021, 1041, 1523, 1528, 1529, 3576,
+ 1532, 1534, 1535, 1536, 1537, 1538, 3558, 1541, 1542, 1544,
+ 1544, 3538, 1544, 1544, 1549, 1549, 1549, 1552, 1553, 1554,
+ 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564,
+ 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574,
+ 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584,
+ 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594,
+ 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604,
+ 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614,
+ 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624,
+ 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634,
+ 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644,
+ 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654,
+ 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664,
+ 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673, 1674,
+ 1675, 1520, 1120, 1270, 4033, 1676, 2972, 1678, 1679, 1680,
+ 1681, 1682, 3585, 3586, 974, 4079, 1440, 1441, 3697, 1549,
+ 1549, 1549, 1549, 1549, 1549, 1976, 1975, 1977, 1978, 1979,
+ 974, 2547, 723, 1533, 1689, 1690, 1691, 1692, 1693, 1694,
+ 1695, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1524, 1516,
+ 1517, 1518, 1519, 714, 4118, 1233, 3328, 3329, 1082, 1530,
+ 974, 3697, 3482, 1220, 4118, 1717, 1082, 1439, 715, 3332,
+ 94, 1458, 1545, 94, 1546, 1547, 2622, 165, 4147, 1550,
+ 1551, 1246, 3328, 3329, 177, 89, 4117, 2995, 94, 1223,
+ 1716, 3382, 1994, 1141, 2922, 3332, 4117, 1470, 1467, 1468,
+ 1469, 1474, 1476, 1473, 3654, 1472, 2621, 3028, 2493, 1232,
+ 2887, 1238, 1239, 1240, 1241, 1466, 718, 2824, 2142, 1723,
+ 1781, 4228, 4146, 1677, 1226, 185, 3169, 2882, 1041, 681,
+ 1752, 2994, 1041, 2852, 2854, 1278, 1279, 1178, 1041, 2443,
+ 1470, 1467, 1468, 1469, 1474, 1476, 1473, 1513, 1472, 2494,
+ 1995, 1510, 3254, 915, 1715, 1141, 2492, 2649, 1466, 2401,
+ 1505, 1506, 1508, 1507, 1509, 1510, 1714, 124, 166, 171,
+ 168, 174, 175, 176, 178, 180, 181, 182, 183, 1493,
+ 4047, 2183, 1141, 119, 184, 186, 187, 188, 1057, 1273,
+ 2495, 1753, 1164, 1141, 1259, 94, 1140, 3068, 2184, 3617,
+ 2491, 2579, 2575, 2577, 2578, 2576, 2580, 2581, 2582, 193,
+ 2022, 3550, 677, 1503, 1504, 1505, 1506, 1508, 1507, 1509,
+ 1510, 2567, 1715, 1683, 1684, 1685, 1686, 1687, 1688, 1733,
+ 1731, 2076, 677, 104, 1735, 2003, 1795, 2175, 2546, 2110,
+ 1040, 1734, 2175, 4193, 2658, 105, 2509, 1991, 1051, 1992,
+ 1721, 1163, 1993, 2111, 1511, 1512, 2109, 1708, 1140, 1231,
+ 1141, 120, 1480, 1144, 1134, 1071, 1071, 107, 1146, 1479,
+ 1480, 3746, 1147, 1145, 677, 2649, 3592, 3031, 3031, 3591,
+ 2534, 1905, 3030, 3030, 2166, 1140, 2539, 1904, 1894, 1499,
+ 1144, 1134, 2539, 1148, 2544, 1146, 1140, 1245, 1888, 1147,
+ 1145, 1755, 1134, 1137, 1138, 2542, 1098, 2853, 1247, 1152,
+ 1131, 1135, 1718, 1500, 1501, 1502, 1503, 1504, 1505, 1506,
+ 1508, 1507, 1509, 1510, 1150, 4185, 1729, 1732, 1959, 2543,
+ 719, 1037, 1898, 1898, 1881, 2541, 1910, 2181, 1911, 2015,
+ 1913, 1915, 1941, 1758, 1919, 1921, 1923, 1925, 1927, 1730,
+ 1900, 1039, 1260, 4226, 2399, 2400, 4227, 1141, 4225, 1281,
+ 1216, 1786, 1787, 1140, 3577, 1177, 1052, 1855, 2023, 1174,
+ 1999, 1899, 1997, 1998, 1996, 2000, 2001, 2002, 2098, 2099,
+ 2096, 2097, 1863, 2158, 2147, 2148, 2149, 2150, 2160, 2151,
+ 2152, 2153, 2165, 2161, 2154, 2155, 2162, 2163, 2164, 2156,
+ 2157, 2159, 1891, 1165, 1878, 2095, 1879, 1736, 1877, 3651,
+ 1481, 3652, 4230, 1230, 4236, 1481, 1182, 1183, 1184, 3918,
+ 1187, 1188, 1189, 1190, 4080, 1902, 1193, 1194, 1195, 1196,
+ 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206,
+ 1207, 1208, 1209, 1945, 1487, 1488, 1489, 1490, 1491, 1492,
+ 1486, 1483, 1937, 1499, 2011, 1940, 3917, 1942, 3262, 3908,
+ 1140, 2098, 2099, 2628, 2629, 1481, 1134, 1137, 1138, 1984,
+ 1098, 3668, 1481, 4081, 1131, 1135, 4013, 1500, 1501, 1502,
+ 1503, 1504, 1505, 1506, 1508, 1507, 1509, 1510, 3667, 1117,
+ 128, 1116, 1481, 1115, 2166, 1130, 1500, 1501, 1502, 1503,
+ 1504, 1505, 1506, 1508, 1507, 1509, 1510, 4198, 1753, 3263,
+ 4237, 1982, 1971, 3599, 2028, 1501, 1502, 1503, 1504, 1505,
+ 1506, 1508, 1507, 1509, 1510, 4014, 976, 977, 978, 1281,
+ 1281, 1753, 3598, 3588, 3265, 2024, 2025, 2050, 1481, 2180,
+ 1983, 3305, 1481, 3294, 2947, 87, 2946, 2945, 87, 2029,
+ 2499, 1985, 1969, 1481, 3260, 1968, 2036, 2037, 2038, 1478,
+ 1481, 1479, 1480, 1967, 1478, 1753, 1479, 1480, 3070, 1957,
+ 2049, 2940, 1951, 2331, 3276, 3277, 1948, 1481, 1947, 1946,
+ 1917, 3261, 1981, 1970, 4196, 1753, 2406, 2407, 1728, 3582,
+ 3357, 724, 724, 2158, 2147, 2148, 2149, 2150, 2160, 2151,
+ 2152, 2153, 2165, 2161, 2154, 2155, 2162, 2163, 2164, 2156,
+ 2157, 2159, 1445, 1789, 1478, 3267, 1479, 1480, 2929, 4186,
+ 724, 1478, 4042, 1479, 1480, 2137, 2137, 2138, 2135, 2135,
+ 4126, 1753, 1753, 1499, 4124, 1753, 1495, 4041, 1496, 2100,
+ 1481, 1478, 4017, 1479, 1480, 4122, 1753, 42, 2873, 4213,
+ 42, 1716, 1497, 1511, 1512, 1494, 4016, 1500, 1501, 1502,
+ 1503, 1504, 1505, 1506, 1508, 1507, 1509, 1510, 2026, 3991,
+ 1753, 4035, 2331, 2221, 1766, 2030, 2328, 2032, 2033, 2034,
+ 2035, 1481, 4015, 3275, 2039, 2330, 2515, 1478, 2514, 1479,
+ 1480, 1478, 1481, 1479, 1480, 3278, 2051, 2513, 2235, 2512,
+ 3913, 972, 1478, 3399, 1479, 1480, 2511, 3897, 2510, 1478,
+ 3896, 1479, 1480, 4173, 1753, 1715, 85, 3745, 1499, 85,
+ 3040, 1481, 3743, 1767, 2077, 2697, 1478, 1714, 1479, 1480,
+ 3664, 2107, 3989, 1753, 3945, 1477, 1753, 3944, 2170, 1713,
+ 2057, 2058, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1508,
+ 1507, 1509, 1510, 2873, 1753, 3901, 2112, 1477, 1753, 2113,
+ 1712, 2115, 2116, 2117, 2118, 2119, 2120, 2122, 2124, 2125,
+ 2126, 2127, 2128, 2129, 1753, 2873, 4111, 3900, 2318, 2319,
+ 2320, 2321, 2322, 2141, 3986, 1753, 3643, 101, 2114, 1478,
+ 2341, 1479, 1480, 2245, 1481, 2343, 1711, 102, 2346, 2347,
+ 1481, 3596, 2339, 3581, 1481, 3367, 1524, 3364, 2185, 2186,
+ 2187, 2188, 1481, 3968, 1753, 3264, 2340, 1481, 2873, 4090,
+ 2327, 3297, 2199, 1499, 2176, 2329, 3296, 677, 2220, 677,
+ 1478, 2956, 1479, 1480, 2364, 1499, 2943, 2637, 2873, 4086,
+ 2982, 1478, 1710, 1479, 1480, 2699, 2237, 1500, 1501, 1502,
+ 1503, 1504, 1505, 1506, 1508, 1507, 1509, 1510, 1753, 1500,
+ 1501, 1502, 1503, 1504, 1505, 1506, 1508, 1507, 1509, 1510,
+ 1478, 1703, 1479, 1480, 3998, 1753, 2918, 2422, 2338, 2611,
+ 1481, 2344, 2345, 2603, 1481, 2602, 3523, 1753, 110, 3635,
+ 4032, 677, 3516, 1753, 2341, 2561, 3513, 1753, 2961, 109,
+ 2560, 108, 2396, 104, 3511, 1753, 2339, 3921, 1753, 3474,
+ 1753, 1481, 2873, 3909, 3553, 105, 3635, 1753, 2451, 1527,
+ 2411, 2375, 2452, 2386, 104, 2374, 1481, 2873, 3633, 2539,
+ 1753, 3219, 1770, 2053, 1481, 2019, 105, 2106, 3556, 1753,
+ 2779, 1753, 3549, 1478, 2919, 1479, 1480, 1980, 2695, 1478,
+ 1103, 1479, 1480, 1478, 2921, 1479, 1480, 3287, 3286, 3284,
+ 3285, 1478, 1481, 1479, 1480, 1972, 1478, 1962, 1479, 1480,
+ 2447, 2362, 3472, 1753, 1753, 2446, 3468, 1753, 1053, 2424,
+ 3282, 3283, 3552, 1481, 1103, 3282, 3281, 1481, 2456, 1958,
+ 2457, 2458, 2459, 2460, 2387, 2428, 2461, 2462, 2463, 2464,
+ 1481, 2897, 1753, 1769, 2466, 2540, 2482, 2468, 2469, 2470,
+ 2471, 2389, 2621, 3004, 1859, 2985, 3549, 2450, 3465, 1753,
+ 1481, 1954, 2380, 2528, 2381, 1953, 2488, 1753, 2409, 1478,
+ 110, 1479, 1480, 1478, 1952, 1479, 1480, 1087, 2434, 2433,
+ 2432, 109, 1768, 108, 2685, 1271, 2449, 2448, 1481, 2978,
+ 2979, 103, 1088, 1481, 3463, 1753, 2525, 3268, 103, 190,
+ 1478, 3272, 1479, 1480, 1481, 2873, 2872, 2896, 3271, 2539,
+ 2498, 1481, 2140, 1753, 3249, 1478, 4187, 1479, 1480, 3461,
+ 1753, 1143, 129, 1478, 2621, 1479, 1480, 2870, 1859, 1858,
+ 2483, 1898, 3459, 1753, 2479, 2472, 2474, 2475, 172, 1481,
+ 2497, 103, 3273, 1477, 2502, 2533, 2501, 3269, 2536, 2553,
+ 2537, 1478, 3270, 1479, 1480, 109, 1753, 1481, 1801, 1800,
+ 2918, 4074, 1527, 1753, 1142, 1481, 2483, 2532, 2897, 2535,
+ 2531, 4046, 1478, 1481, 1479, 1480, 1478, 2873, 1479, 1480,
+ 3457, 1753, 2889, 1481, 2889, 3455, 1753, 2554, 2897, 1478,
+ 2557, 1479, 1480, 3502, 2558, 2559, 3453, 1753, 169, 3284,
+ 3192, 170, 2435, 3451, 1753, 2868, 1481, 2779, 2682, 1478,
+ 2681, 1479, 1480, 2539, 3600, 2522, 1754, 1756, 2404, 1757,
+ 677, 2647, 2365, 2626, 2140, 2078, 2062, 189, 2919, 1477,
+ 2005, 2646, 1041, 1041, 1041, 2564, 1481, 1478, 2621, 1479,
+ 1480, 101, 1478, 1051, 1479, 1480, 1933, 103, 1481, 3449,
+ 1753, 102, 1534, 1478, 1534, 1479, 1480, 3447, 1753, 2897,
+ 1478, 3549, 1479, 1480, 1788, 3445, 1753, 677, 1125, 1042,
+ 2641, 3601, 3602, 3603, 1124, 3443, 1753, 95, 2596, 1481,
+ 4152, 4093, 3932, 1760, 1481, 3898, 677, 3758, 1478, 1481,
+ 1479, 1480, 3616, 3613, 3594, 2341, 3415, 3359, 3441, 1753,
+ 1481, 3414, 1861, 1934, 1935, 1936, 1478, 2644, 1479, 1480,
+ 4208, 2481, 1753, 1481, 1478, 3355, 1479, 1480, 3310, 3306,
+ 1481, 2340, 1478, 2986, 1479, 1480, 2478, 3308, 3439, 1753,
+ 2473, 2613, 1478, 2467, 1479, 1480, 1527, 1481, 2465, 2664,
+ 3437, 1753, 173, 1987, 2645, 1893, 2619, 1889, 1857, 121,
+ 2953, 179, 95, 2952, 1481, 1478, 2679, 1479, 1480, 1215,
+ 3933, 4206, 2627, 1527, 3604, 2496, 1527, 2378, 1527, 677,
+ 3569, 3435, 1753, 4180, 2633, 4054, 3421, 1753, 2630, 2631,
+ 2632, 3397, 1753, 1481, 3973, 1478, 2107, 1479, 1480, 1960,
+ 3563, 3564, 2844, 1753, 3568, 3566, 3302, 1478, 3301, 1479,
+ 1480, 3238, 3237, 3300, 677, 2842, 1753, 2953, 3219, 2965,
+ 1872, 1873, 1874, 2634, 2055, 2636, 1481, 3605, 3606, 3607,
+ 2014, 677, 2597, 4050, 2639, 3934, 2640, 1481, 1478, 3940,
+ 1479, 1480, 1481, 1478, 2657, 1479, 1480, 677, 1478, 2395,
+ 1479, 1480, 2635, 3241, 677, 1481, 2817, 1753, 3242, 1478,
+ 1481, 1479, 1480, 2040, 2041, 677, 677, 677, 677, 677,
+ 677, 677, 1478, 2642, 1479, 1480, 1055, 678, 1481, 1478,
+ 2823, 1479, 1480, 1481, 1765, 2794, 1753, 1949, 1950, 164,
+ 3239, 2056, 2384, 1955, 1956, 3240, 1478, 3557, 1479, 1480,
+ 2605, 2606, 2811, 3197, 3196, 2608, 2693, 1929, 1481, 3723,
+ 4012, 3722, 2855, 1478, 2609, 1479, 1480, 3736, 2786, 1753,
+ 1481, 3738, 3545, 3243, 1481, 2906, 2907, 1056, 3542, 2777,
+ 1753, 1041, 3206, 1058, 2775, 1753, 3541, 2137, 2858, 3280,
+ 2135, 1059, 1478, 2004, 1479, 1480, 1025, 2762, 1753, 2936,
+ 1481, 741, 2760, 1753, 2894, 2895, 2856, 1481, 2957, 2589,
+ 1930, 1931, 1932, 2422, 3721, 1067, 1041, 2914, 2183, 1481,
+ 2758, 1753, 3209, 3211, 2588, 1478, 4030, 1479, 1480, 1066,
+ 2587, 3212, 2859, 2586, 2861, 2184, 1478, 1481, 1479, 1480,
+ 2585, 1478, 2584, 1479, 1480, 2893, 2103, 2101, 2102, 2583,
+ 2756, 1753, 2106, 1481, 1478, 1181, 1479, 1480, 1180, 1478,
+ 3375, 1479, 1480, 3905, 2952, 3034, 2754, 1753, 2902, 2905,
+ 2906, 2907, 2903, 1481, 2904, 2908, 1444, 1478, 2874, 1479,
+ 1480, 1481, 1478, 3547, 1479, 1480, 2883, 2846, 1481, 1721,
+ 2992, 101, 2752, 1753, 129, 103, 4222, 103, 1481, 2750,
+ 1753, 102, 2969, 1715, 1481, 2600, 42, 1478, 2866, 1479,
+ 1480, 2748, 1753, 2912, 1481, 2911, 4129, 677, 2913, 1478,
+ 2932, 1479, 1480, 1478, 2886, 1479, 1480, 2871, 101, 2746,
+ 1753, 2990, 4031, 2406, 2407, 2916, 3928, 3279, 102, 2939,
+ 2941, 2910, 2390, 3525, 2625, 2744, 1753, 3195, 2920, 1478,
+ 2061, 1479, 1480, 2923, 2488, 3194, 1478, 2060, 1479, 1480,
+ 108, 2930, 3997, 2933, 3996, 2742, 1753, 3976, 1478, 3744,
+ 1479, 1480, 3742, 2740, 1753, 2178, 3001, 1527, 165, 3741,
+ 2179, 3618, 2944, 3734, 3614, 177, 1478, 3546, 1479, 1480,
+ 2738, 1753, 1481, 3544, 3311, 1527, 2736, 1753, 2954, 2523,
+ 1876, 1065, 1478, 109, 1479, 1480, 2734, 1753, 1481, 3535,
+ 2962, 3733, 2966, 2967, 2968, 2963, 1481, 110, 2241, 2889,
+ 1481, 2998, 1478, 3707, 1479, 1480, 185, 2870, 109, 3098,
+ 1478, 1881, 1479, 1480, 4210, 4209, 4209, 1478, 2683, 1479,
+ 1480, 3044, 3045, 2376, 1782, 2987, 2988, 1478, 1774, 1479,
+ 1480, 114, 115, 1478, 4210, 1479, 1480, 4018, 1481, 2997,
+ 3580, 3, 97, 1478, 1481, 1479, 1480, 3064, 1, 166,
+ 171, 168, 174, 175, 176, 178, 180, 181, 182, 183,
+ 1033, 1481, 1447, 110, 3571, 184, 186, 187, 188, 1446,
+ 3584, 3023, 3042, 3061, 109, 1481, 108, 4141, 2324, 694,
+ 2732, 1753, 1481, 2075, 3026, 2366, 10, 1481, 2730, 1753,
+ 1719, 2073, 2728, 1753, 9, 4181, 4137, 3079, 3080, 3081,
+ 3082, 3083, 3084, 3085, 3086, 3087, 3088, 2074, 2356, 1481,
+ 8, 2014, 4138, 1973, 1963, 3646, 2292, 3096, 2999, 3929,
+ 3314, 1478, 2529, 1479, 1480, 3612, 1754, 2363, 2486, 1133,
+ 2723, 1753, 3062, 1481, 154, 2444, 3518, 1478, 1481, 1479,
+ 1480, 2445, 4106, 118, 1091, 1478, 117, 1479, 1480, 1478,
+ 1136, 1479, 1480, 2719, 1753, 1244, 1960, 1481, 2524, 3636,
+ 2937, 2453, 1481, 1807, 1805, 110, 2388, 2717, 1753, 1806,
+ 1804, 2654, 1071, 1809, 2710, 1753, 109, 1808, 108, 3138,
+ 2948, 3140, 3100, 3156, 3046, 3032, 103, 1478, 3033, 1479,
+ 1480, 1051, 3063, 1478, 4078, 1479, 1480, 3151, 3152, 3153,
+ 3154, 2708, 1753, 3383, 2684, 3481, 2066, 2977, 677, 3043,
+ 1478, 731, 1479, 1480, 2909, 2014, 677, 725, 677, 192,
+ 677, 2431, 3163, 1796, 1478, 3514, 1479, 1480, 1775, 3174,
+ 3480, 1478, 1481, 1479, 1480, 2059, 1478, 3165, 1479, 1480,
+ 1175, 2422, 684, 3288, 2562, 690, 2327, 3089, 2327, 2653,
+ 1531, 2329, 2054, 2329, 3476, 1481, 3193, 2924, 1478, 1481,
+ 1479, 1480, 3136, 3226, 1481, 87, 1085, 1077, 2422, 2422,
+ 2422, 2422, 2422, 2500, 3146, 3147, 3148, 3149, 3150, 2377,
+ 2860, 1084, 1478, 3906, 1479, 1480, 3227, 1478, 2422, 1479,
+ 1480, 2422, 3174, 3539, 3231, 3164, 3205, 3166, 3207, 3248,
+ 2876, 3210, 3203, 2508, 4011, 3173, 1478, 3735, 1479, 1480,
+ 4091, 1478, 2934, 1479, 1480, 2015, 1771, 3501, 2656, 2173,
+ 3185, 1521, 3191, 2421, 3412, 1481, 3702, 3186, 3188, 3190,
+ 1481, 2093, 754, 3200, 3198, 753, 751, 2862, 1481, 2890,
+ 1485, 3201, 1481, 2424, 3213, 3214, 1484, 3411, 962, 1481,
+ 2850, 3403, 1783, 2901, 3331, 1045, 3401, 2899, 1046, 2898,
+ 3232, 3244, 3230, 3235, 3339, 2598, 2429, 1044, 1481, 3565,
+ 2424, 2424, 2424, 2424, 2424, 3233, 3234, 3199, 3236, 3252,
+ 104, 1478, 3561, 1479, 1480, 4133, 3258, 2423, 3250, 2419,
+ 2424, 3251, 105, 2424, 1481, 2869, 913, 3291, 912, 763,
+ 755, 3290, 3289, 745, 1478, 975, 1479, 1480, 1478, 911,
+ 1479, 1480, 910, 1478, 3341, 1479, 1480, 2840, 1481, 3342,
+ 3007, 677, 2839, 3356, 3343, 3009, 3340, 3312, 677, 3333,
+ 2835, 3344, 2935, 2488, 2834, 3352, 1462, 1481, 1738, 677,
+ 677, 2833, 1741, 677, 3350, 2601, 2385, 1481, 1104, 3380,
+ 4037, 2624, 3409, 1737, 3222, 677, 4044, 3322, 3216, 3222,
+ 2832, 3630, 677, 3303, 2983, 1481, 3371, 3370, 3368, 2516,
+ 1481, 69, 46, 4006, 1478, 3378, 1479, 1480, 4075, 1478,
+ 1481, 1479, 1480, 905, 3388, 902, 2831, 1478, 677, 1479,
+ 1480, 1478, 3704, 1479, 1480, 2612, 3705, 3706, 1478, 3159,
+ 1479, 1480, 3404, 3405, 3406, 3407, 3408, 3160, 3385, 3386,
+ 2830, 3387, 4057, 4058, 3389, 901, 3391, 1478, 3393, 1479,
+ 1480, 2902, 2905, 2906, 2907, 2903, 4059, 2904, 2908, 2821,
+ 2230, 3563, 3564, 1457, 1454, 4154, 2068, 96, 1534, 2820,
+ 36, 35, 1534, 1478, 3313, 1479, 1480, 34, 33, 32,
+ 26, 25, 2643, 24, 23, 22, 2648, 2819, 3526, 29,
+ 3528, 19, 2818, 21, 20, 18, 3496, 1478, 3325, 1479,
+ 1480, 4176, 2815, 3500, 1527, 4221, 2014, 123, 55, 2651,
+ 52, 2652, 50, 131, 130, 53, 1478, 2660, 1479, 1480,
+ 49, 2662, 2663, 1218, 47, 31, 1478, 30, 1479, 1480,
+ 2669, 2670, 2671, 2672, 2673, 2674, 2675, 2676, 2677, 2678,
+ 17, 2680, 3379, 16, 1478, 3225, 1479, 1480, 15, 1478,
+ 2422, 1479, 1480, 1716, 14, 3527, 13, 3529, 3531, 1478,
+ 12, 1479, 1480, 3578, 2686, 2687, 2688, 2689, 743, 2691,
+ 2692, 3543, 2694, 3536, 11, 7, 2696, 6, 39, 3548,
+ 2701, 2702, 38, 2703, 37, 28, 2706, 2707, 2709, 2711,
+ 2712, 2713, 2714, 2715, 2716, 2718, 2720, 2721, 2722, 2724,
+ 3334, 2726, 2727, 2729, 2731, 2733, 2735, 2737, 2739, 2741,
+ 2743, 2745, 2747, 2749, 2751, 2753, 2755, 2757, 2759, 2761,
+ 2763, 2764, 2765, 3343, 2767, 3340, 2769, 3570, 2771, 2772,
+ 3344, 2774, 2776, 2778, 3572, 3579, 1481, 2781, 3533, 3567,
+ 3503, 2785, 3505, 3506, 3507, 2790, 2791, 2792, 2793, 1481,
+ 3573, 27, 2424, 1481, 3640, 3641, 40, 1481, 2804, 2805,
+ 2806, 2807, 2808, 2809, 4, 2970, 2813, 2814, 3373, 3374,
+ 2518, 3560, 1481, 3595, 2816, 3597, 0, 1064, 0, 2822,
+ 1070, 1070, 0, 1481, 2825, 2826, 2827, 2828, 2829, 1481,
+ 3574, 3575, 0, 0, 0, 2836, 2837, 1481, 2838, 0,
+ 0, 2841, 2843, 2388, 0, 2845, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 2857, 0, 0, 1481, 0,
+ 0, 0, 1481, 0, 0, 0, 0, 0, 2810, 677,
+ 1481, 0, 0, 3642, 1481, 0, 0, 1960, 0, 1481,
+ 0, 2803, 0, 0, 0, 2802, 0, 0, 0, 2801,
+ 1481, 0, 0, 0, 0, 1481, 0, 0, 0, 1481,
+ 0, 0, 0, 1481, 2800, 0, 0, 0, 0, 1481,
+ 0, 0, 0, 0, 3669, 2799, 0, 0, 3658, 0,
+ 0, 2798, 0, 0, 0, 1478, 677, 1479, 1480, 2797,
+ 0, 677, 1481, 0, 0, 0, 0, 0, 1478, 0,
+ 1479, 1480, 1478, 3691, 1479, 1480, 1478, 0, 1479, 1480,
+ 2796, 0, 0, 0, 2795, 3710, 0, 3711, 3712, 3713,
+ 0, 1478, 2789, 1479, 1480, 3720, 2788, 0, 3727, 0,
+ 3729, 2787, 1478, 0, 1479, 1480, 0, 1481, 1478, 3700,
+ 1479, 1480, 2784, 0, 3730, 0, 1478, 2783, 1479, 1480,
+ 1481, 2782, 0, 3226, 0, 2780, 87, 0, 3226, 0,
+ 0, 2773, 0, 0, 0, 0, 677, 1478, 0, 1479,
+ 1480, 1478, 0, 1479, 1480, 1481, 0, 0, 0, 1478,
+ 0, 1479, 1480, 1478, 2770, 1479, 1480, 0, 1478, 3731,
+ 1479, 1480, 2137, 3760, 3740, 2135, 3750, 3752, 3739, 1478,
+ 0, 1479, 1480, 3747, 1478, 3749, 1479, 1480, 1478, 3663,
+ 1479, 1480, 1478, 0, 1479, 1480, 0, 0, 1478, 1527,
+ 1479, 1480, 0, 3912, 3619, 3620, 0, 3764, 0, 2768,
+ 0, 0, 677, 677, 677, 677, 677, 677, 0, 0,
+ 0, 1478, 2766, 1479, 1480, 0, 0, 0, 0, 0,
+ 0, 2955, 0, 0, 0, 0, 2958, 2959, 42, 0,
+ 677, 677, 0, 0, 3904, 3903, 0, 2725, 0, 0,
+ 0, 0, 3919, 0, 0, 0, 0, 0, 0, 3924,
+ 3931, 3923, 0, 0, 0, 677, 1478, 0, 1479, 1480,
+ 3902, 0, 0, 0, 0, 0, 3970, 3971, 0, 1478,
+ 0, 1479, 1480, 3754, 0, 3074, 3075, 3076, 3077, 3078,
+ 0, 0, 3761, 3762, 3728, 0, 0, 0, 0, 0,
+ 2137, 3974, 0, 2135, 1478, 3093, 1479, 1480, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 3222, 0, 0, 0, 0, 0, 0, 0,
+ 0, 4019, 3226, 0, 0, 3977, 0, 0, 3756, 3980,
+ 0, 4010, 0, 0, 0, 0, 1552, 1553, 1554, 1555,
1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565,
- 1566, 1567, 1568, 1570, 1571, 1572, 1573, 1574, 1575, 1576,
+ 1566, 1567, 1568, 1569, 1570, 1572, 1573, 1574, 1575, 1576,
1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586,
1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595, 1596,
1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606,
@@ -2081,770 +2083,632 @@ var yyAct = [...]int{
1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626,
1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636,
1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646,
- 1647, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657,
- 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1670, 1671, 1672,
- 1673, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695,
- 1696, 1697, 1698, 1699, 1700, 4018, 4002, 0, 3973, 4001,
- 0, 0, 0, 3223, 3992, 0, 0, 0, 3223, 4036,
- 0, 3998, 0, 4000, 0, 0, 0, 0, 3062, 0,
- 1741, 0, 0, 0, 0, 0, 0, 87, 0, 0,
- 0, 0, 0, 3226, 1749, 0, 0, 1742, 4021, 2900,
- 2903, 2904, 2905, 2901, 0, 2902, 2906, 4020, 0, 3561,
- 3562, 3244, 0, 0, 0, 3905, 4038, 4025, 0, 0,
- 4041, 0, 1737, 1738, 1748, 1746, 1747, 1743, 0, 1744,
- 0, 0, 0, 3909, 0, 0, 0, 0, 0, 0,
- 4043, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 1745, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 4061, 0, 0, 4062, 0, 0, 0, 0, 0,
- 1218, 0, 1224, 0, 0, 4086, 0, 42, 0, 0,
- 87, 0, 0, 4071, 0, 0, 0, 0, 0, 0,
- 0, 0, 1480, 0, 0, 0, 4080, 0, 0, 0,
- 3136, 0, 3138, 0, 0, 0, 0, 0, 0, 0,
- 0, 4092, 3929, 4106, 0, 0, 4117, 0, 3149, 3150,
- 3151, 3152, 4103, 1538, 4095, 0, 4100, 4097, 3375, 4096,
- 4094, 4099, 4098, 4090, 1452, 0, 0, 4125, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 4022, 0, 4130,
- 3392, 3393, 3223, 3394, 3396, 3398, 0, 4148, 0, 0,
- 0, 0, 0, 0, 4138, 0, 4143, 0, 0, 0,
- 0, 0, 4156, 4117, 4158, 0, 0, 0, 4169, 0,
- 42, 3411, 0, 0, 0, 0, 3414, 0, 3416, 3417,
- 3418, 3420, 3421, 3422, 3423, 3424, 3425, 3426, 3427, 3428,
- 3429, 3430, 3431, 3432, 3434, 3436, 3438, 3440, 3442, 3444,
- 3446, 3448, 3450, 3452, 3454, 3456, 3458, 3460, 3462, 3464,
- 3465, 3467, 3468, 3469, 3471, 2013, 4192, 3473, 4189, 3475,
- 3476, 3477, 4199, 4203, 3481, 3482, 3483, 3484, 3485, 3486,
- 3487, 3488, 3489, 3490, 3491, 2135, 4205, 2133, 4202, 4201,
- 4117, 4213, 4198, 3497, 4188, 4173, 4168, 3502, 4221, 4087,
- 3220, 3506, 3507, 4082, 3508, 3510, 0, 3513, 3515, 4229,
- 3517, 3518, 3519, 3520, 4227, 0, 0, 0, 0, 0,
- 3528, 0, 0, 0, 0, 0, 0, 4027, 4238, 4239,
- 3969, 4237, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 2135, 0, 2133, 4236, 0, 0, 0,
- 0, 4034, 0, 0, 0, 3552, 3553, 0, 0, 3557,
- 0, 4046, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 4164, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 4172, 0, 0, 0, 0, 0, 0, 0, 0,
- 1823, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 4081, 0,
- 0, 0, 0, 1771, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 3632, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 1860, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 3651,
- 1783, 0, 3655, 0, 957, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 1800,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 3668, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 1810, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 195, 0, 0, 195, 0, 0, 0, 728, 0, 0,
- 0, 4186, 734, 0, 1714, 0, 0, 0, 0, 0,
- 0, 0, 0, 195, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 195,
- 3691, 0, 1941, 0, 0, 0, 0, 0, 0, 2018,
- 0, 0, 0, 3699, 0, 0, 0, 0, 0, 0,
- 3706, 0, 0, 0, 734, 195, 734, 0, 0, 0,
- 1824, 0, 0, 0, 0, 0, 0, 1986, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 2014, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 2025, 0, 0, 0, 0, 0, 0, 2029, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 2040, 2041,
- 2042, 2043, 2044, 2045, 2046, 1837, 1840, 1841, 1842, 1843,
- 1844, 1845, 0, 1846, 1847, 1849, 1850, 1848, 1851, 1852,
- 1825, 1826, 1827, 1828, 1808, 1809, 1838, 0, 1811, 0,
- 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819, 1820, 0,
- 0, 1821, 1829, 1830, 1831, 1832, 0, 1833, 1834, 1835,
- 1836, 0, 0, 1822, 0, 0, 0, 0, 0, 3918,
- 0, 0, 0, 0, 0, 0, 0, 0, 3925, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 3935, 3936,
- 3937, 0, 3939, 0, 3940, 3941, 0, 0, 0, 0,
- 3944, 3945, 3946, 3947, 3948, 3949, 3950, 3951, 3952, 3953,
+ 1647, 1648, 1649, 1651, 1652, 1653, 1654, 1655, 1656, 1657,
+ 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1672,
+ 1673, 1674, 1675, 1689, 1690, 1691, 1692, 1693, 1694, 1695,
+ 1696, 1697, 1698, 1699, 1700, 1701, 1702, 4020, 4004, 4003,
+ 3975, 1481, 0, 0, 0, 3225, 3994, 1481, 0, 0,
+ 3225, 4038, 0, 4000, 0, 4002, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 87,
+ 3907, 0, 1071, 0, 677, 3228, 0, 0, 0, 1716,
+ 0, 0, 1481, 0, 0, 0, 1481, 0, 0, 4022,
+ 0, 0, 0, 3246, 0, 1527, 4023, 4040, 0, 4027,
+ 1527, 677, 677, 677, 677, 677, 0, 4043, 0, 0,
+ 4045, 1481, 0, 3245, 0, 3911, 0, 1743, 0, 1960,
+ 0, 677, 0, 0, 677, 3253, 2014, 0, 0, 0,
+ 0, 1751, 0, 2705, 1744, 4052, 0, 0, 0, 2704,
+ 0, 0, 0, 4062, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 1482, 0, 4063, 0, 0, 4064, 2382,
+ 2383, 1750, 1748, 1749, 1745, 0, 1746, 4088, 0, 677,
+ 0, 42, 87, 0, 2700, 0, 0, 0, 2698, 0,
+ 0, 4073, 0, 0, 1540, 1527, 4082, 0, 0, 1747,
+ 1478, 0, 1479, 1480, 0, 677, 1478, 0, 1479, 1480,
+ 0, 4105, 4097, 2690, 0, 1716, 0, 0, 4119, 677,
+ 4094, 0, 4024, 4092, 0, 4102, 4099, 4098, 0, 0,
+ 3377, 3931, 4108, 4096, 4101, 4100, 0, 0, 0, 677,
+ 0, 1478, 677, 1479, 1480, 1478, 0, 1479, 1480, 0,
+ 0, 4132, 3394, 3395, 3225, 3396, 3398, 3400, 4127, 4150,
+ 0, 0, 0, 0, 3292, 3293, 4140, 4145, 0, 0,
+ 1478, 0, 1479, 1480, 4158, 4119, 4160, 0, 0, 0,
+ 4171, 0, 0, 3413, 42, 0, 0, 1481, 3416, 0,
+ 3418, 3419, 3420, 3422, 3423, 3424, 3425, 3426, 3427, 3428,
+ 3429, 3430, 3431, 3432, 3433, 3434, 3436, 3438, 3440, 3442,
+ 3444, 3446, 3448, 3450, 3452, 3454, 3456, 3458, 3460, 3462,
+ 3464, 3466, 3467, 3469, 3470, 3471, 3473, 4191, 4194, 3475,
+ 2015, 3477, 3478, 3479, 4201, 4205, 3483, 3484, 3485, 3486,
+ 3487, 3488, 3489, 3490, 3491, 3492, 3493, 2137, 4204, 4207,
+ 2135, 4200, 4119, 4215, 4203, 3499, 4190, 4175, 4170, 3504,
+ 4223, 3222, 4029, 3508, 3509, 4084, 3510, 3512, 1481, 3515,
+ 3517, 4231, 3519, 3520, 3521, 3522, 4229, 4089, 4174, 2661,
+ 1481, 1743, 3530, 0, 0, 0, 0, 1825, 0, 0,
+ 4240, 4241, 3971, 4239, 0, 1751, 4048, 0, 1744, 0,
+ 0, 0, 0, 0, 0, 2137, 4238, 677, 2135, 0,
+ 0, 0, 0, 4036, 0, 0, 0, 3554, 3555, 0,
+ 0, 3559, 0, 1739, 1740, 1750, 1748, 1749, 1745, 0,
+ 1746, 0, 0, 0, 0, 0, 1478, 0, 1479, 1480,
+ 0, 0, 0, 4166, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 1747, 0, 0, 0, 0, 0, 0,
+ 2655, 0, 0, 677, 0, 0, 0, 0, 0, 0,
+ 0, 0, 2650, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 4083, 1773, 0, 0, 0, 0, 0,
+ 0, 0, 677, 0, 0, 0, 0, 0, 1722, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 677, 0, 677, 677, 677, 1478, 0, 1479,
+ 1480, 0, 1862, 0, 0, 0, 3634, 0, 0, 1478,
+ 0, 1479, 1480, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 1812, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 676, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 3653, 0, 0, 3657, 0, 0, 1028, 0, 0,
+ 0, 0, 0, 0, 3589, 3590, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 3670, 0,
+ 0, 0, 0, 0, 0, 0, 4188, 0, 0, 1099,
+ 0, 0, 0, 0, 0, 0, 0, 0, 1826, 0,
+ 0, 0, 0, 0, 0, 0, 3623, 0, 0, 0,
+ 3627, 3628, 3629, 0, 0, 0, 0, 0, 0, 0,
+ 2020, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 3693, 1023, 0, 0, 2331, 0, 0, 1024,
+ 0, 0, 0, 0, 0, 3701, 0, 0, 0, 2136,
+ 0, 0, 3708, 1839, 1842, 1843, 1844, 1845, 1846, 1847,
+ 0, 1848, 1849, 1851, 1852, 1850, 1853, 1854, 1827, 1828,
+ 1829, 1830, 1810, 1811, 1840, 0, 1813, 0, 1814, 1815,
+ 1816, 1817, 1818, 1819, 1820, 1821, 1822, 0, 0, 1823,
+ 1831, 1832, 1833, 1834, 0, 1835, 1836, 1837, 1838, 0,
+ 0, 1824, 0, 0, 1960, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 1527, 0, 0, 0, 1960, 981, 982,
+ 983, 984, 985, 986, 987, 988, 989, 990, 991, 992,
+ 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002,
+ 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012,
+ 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 3920, 0, 0, 0, 0, 0, 0, 0, 0,
+ 3927, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 1960, 0, 0, 0, 0, 0, 0,
+ 3937, 3938, 3939, 0, 3941, 0, 3942, 3943, 0, 0,
+ 0, 0, 3946, 3947, 3948, 3949, 3950, 3951, 3952, 3953,
3954, 3955, 3956, 3957, 3958, 3959, 3960, 3961, 3962, 3963,
- 3964, 3965, 0, 3967, 3970, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 3689, 0, 0, 0, 0, 3979,
- 3980, 3981, 3982, 3983, 3985, 3986, 3988, 3990, 3991, 3993,
- 0, 0, 0, 3997, 0, 0, 0, 3999, 0, 0,
- 0, 0, 0, 0, 2086, 2087, 2088, 2089, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 2102, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 4026, 0, 0, 0, 0, 0, 0, 2079,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 2141, 2142, 0, 0, 0,
- 0, 2165, 0, 0, 2169, 2170, 0, 0, 0, 2175,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 2187, 2188, 2189, 2190, 2191, 2192,
- 2193, 2194, 2195, 2196, 0, 2198, 0, 0, 1839, 2220,
- 2221, 2222, 2223, 2224, 2225, 2226, 2227, 2229, 0, 2234,
- 0, 2236, 2237, 2238, 0, 2240, 2241, 2242, 0, 2244,
- 2245, 2246, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2254,
+ 3964, 3965, 3966, 3967, 0, 3969, 3972, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 2088, 2089, 2090, 2091,
+ 0, 3981, 3982, 3983, 3984, 3985, 3987, 3988, 3990, 3992,
+ 3993, 3995, 2104, 0, 0, 3999, 0, 0, 0, 4001,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 3914, 3915, 3916, 0,
+ 0, 0, 0, 0, 0, 0, 1841, 2143, 2144, 0,
+ 0, 0, 0, 2167, 4028, 0, 2171, 2172, 0, 0,
+ 0, 2177, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 2189, 2190, 2191, 2192,
+ 2193, 2194, 2195, 2196, 2197, 2198, 0, 2200, 0, 0,
+ 0, 2222, 2223, 2224, 2225, 2226, 2227, 2228, 2229, 2231,
+ 0, 2236, 0, 2238, 2239, 2240, 0, 2242, 2243, 2244,
+ 0, 2246, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2254,
2255, 2256, 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2264,
2265, 2266, 2267, 2268, 2269, 2270, 2271, 2272, 2273, 2274,
2275, 2276, 2277, 2278, 2279, 2280, 2281, 2282, 2283, 2284,
- 2285, 2286, 2287, 2288, 2289, 2293, 2294, 2295, 2296, 2297,
+ 2285, 2286, 2287, 2288, 2289, 2290, 2291, 2295, 2296, 2297,
2298, 2299, 2300, 2301, 2302, 2303, 2304, 2305, 2306, 2307,
- 2308, 2309, 2310, 2311, 2312, 2313, 2314, 2315, 0, 0,
- 0, 0, 0, 2321, 0, 2323, 0, 2330, 2331, 2332,
- 2333, 2334, 2335, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 2346, 2347, 2348, 2349,
- 2350, 2351, 2352, 2353, 0, 2355, 2356, 2357, 2358, 2359,
- 0, 0, 4008, 0, 86, 44, 45, 88, 0, 4051,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 92, 0, 0, 0, 48, 76, 77,
- 0, 74, 78, 4066, 0, 1069, 0, 0, 0, 4069,
- 0, 4070, 0, 75, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 4085, 0, 2400, 2401, 0, 0,
- 0, 0, 0, 0, 0, 62, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 95, 0, 0,
- 4111, 4112, 2439, 0, 0, 0, 0, 195, 0, 195,
- 0, 0, 0, 0, 4119, 4121, 4123, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 2406, 0, 4129, 0, 0, 0, 0, 0, 2410, 0,
- 2413, 0, 0, 2079, 4151, 0, 734, 83, 734, 734,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 2482, 0, 0, 0, 0, 0,
- 734, 195, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 4170, 0, 0, 0, 0, 0, 0, 0,
- 1714, 0, 0, 0, 0, 0, 0, 0, 0, 1524,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 4193, 4195, 4197, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 51, 54, 57, 56, 59, 4050, 73, 0, 4218,
- 82, 79, 0, 0, 4060, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 4230, 4231, 0,
- 0, 0, 0, 0, 61, 91, 90, 0, 0, 71,
- 72, 58, 0, 0, 0, 0, 0, 80, 81, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 1714, 0, 0, 0,
- 0, 1022, 0, 0, 2329, 0, 0, 1023, 0, 0,
- 63, 64, 0, 65, 66, 67, 68, 2134, 0, 0,
- 0, 0, 0, 2079, 0, 0, 0, 0, 0, 0,
- 2572, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 2592, 2593, 0, 0, 2597, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 2602, 0, 0,
- 0, 0, 0, 0, 2605, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 60, 0, 0,
- 0, 0, 1524, 0, 0, 0, 0, 0, 0, 0,
- 2608, 1823, 0, 0, 0, 980, 981, 982, 983, 984,
- 985, 986, 987, 988, 989, 990, 991, 992, 993, 994,
- 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004,
- 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014,
- 1015, 1016, 1017, 1018, 1019, 1020, 1021, 0, 0, 0,
- 195, 0, 0, 0, 734, 734, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 2657, 195, 0, 0, 0, 89, 0, 0,
- 0, 0, 2663, 2664, 2665, 2666, 0, 0, 0, 0,
- 0, 0, 0, 0, 734, 0, 0, 195, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 734,
- 0, 0, 0, 0, 0, 0, 195, 0, 0, 0,
- 734, 0, 0, 0, 0, 0, 0, 1538, 0, 190,
- 734, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 129, 734, 151, 734, 0, 1810, 0, 0,
- 0, 0, 0, 734, 0, 0, 1524, 734, 172, 0,
- 734, 734, 734, 734, 0, 734, 0, 734, 734, 0,
- 734, 734, 734, 734, 734, 734, 0, 94, 0, 0,
- 0, 0, 0, 1524, 734, 734, 1524, 734, 1524, 195,
- 734, 0, 162, 0, 0, 0, 0, 0, 150, 0,
+ 2308, 2309, 2310, 2311, 2312, 2313, 2314, 2315, 2316, 2317,
+ 0, 0, 0, 0, 0, 2323, 0, 2325, 0, 2332,
+ 2333, 2334, 2335, 2336, 2337, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 2348, 2349,
+ 2350, 2351, 2352, 2353, 2354, 2355, 0, 2357, 2358, 2359,
+ 2360, 2361, 0, 0, 0, 0, 0, 0, 1960, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 677, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 1070, 0, 1825,
+ 0, 4053, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 1219, 0, 1225, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 4068, 0, 0, 2402, 2403,
+ 0, 4071, 0, 4072, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 2441, 0, 4087, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 1527, 0, 0, 0, 1453, 0, 0, 0,
+ 0, 0, 4113, 4114, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 4121, 4123, 4125, 0,
+ 0, 4107, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 958, 0, 4131, 0, 2484, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 4153, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 1960, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 1812, 0, 0, 0,
+ 0, 0, 0, 0, 4172, 0, 0, 0, 195, 0,
+ 0, 195, 0, 0, 0, 729, 0, 0, 0, 0,
+ 735, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 195, 0, 0, 0, 0, 0, 0, 4195, 4197,
+ 4199, 0, 0, 0, 0, 0, 0, 195, 0, 0,
+ 0, 2014, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 4220, 735, 195, 735, 0, 0, 0, 0, 0,
+ 1826, 0, 0, 0, 0, 0, 0, 0, 0, 4232,
+ 4233, 0, 0, 0, 0, 0, 0, 0, 0, 1023,
+ 0, 0, 0, 0, 0, 1024, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 2136, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 3785, 3787, 3786, 3852, 3853, 3854, 3855, 3856,
+ 3857, 3858, 3788, 3789, 805, 1839, 1842, 1843, 1844, 1845,
+ 1846, 1847, 0, 1848, 1849, 1851, 1852, 1850, 1853, 1854,
+ 1827, 1828, 1829, 1830, 1810, 1811, 1840, 0, 1813, 0,
+ 1814, 1815, 1816, 1817, 1818, 1819, 1820, 1821, 1822, 0,
+ 0, 1823, 1831, 1832, 1833, 1834, 0, 1835, 1836, 1837,
+ 1838, 0, 0, 1824, 981, 982, 983, 984, 985, 986,
+ 987, 988, 989, 990, 991, 992, 993, 994, 995, 996,
+ 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006,
+ 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016,
+ 1017, 1018, 1019, 1020, 1021, 1022, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 1785, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 1802, 0, 0, 2659, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 2665, 2666, 2667, 2668, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 1540,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 1943, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 3793, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 1988,
+ 3801, 3802, 0, 0, 3877, 3876, 3875, 0, 1841, 3873,
+ 3874, 3872, 0, 0, 0, 0, 2016, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 2027, 0, 0, 0, 0, 0, 0, 2031,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 2042, 2043, 2044, 2045, 2046, 2047, 2048, 0, 0, 0,
+ 0, 0, 0, 0, 0, 3878, 928, 0, 781, 782,
+ 3879, 3880, 932, 3881, 784, 785, 929, 930, 0, 779,
+ 783, 931, 933, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 1773, 0, 0, 0, 0, 3782, 3783,
+ 3784, 3790, 3791, 3792, 3803, 3850, 3851, 3859, 3861, 884,
+ 3860, 3862, 3863, 3864, 3867, 3868, 3869, 3870, 3865, 3866,
+ 3871, 3765, 3769, 3766, 3767, 3768, 3780, 3770, 3771, 3772,
+ 3773, 3774, 3775, 3776, 3777, 3778, 3779, 3781, 3882, 3883,
+ 3884, 3885, 3886, 3887, 3796, 3800, 3799, 3797, 3798, 3794,
+ 3795, 3822, 3821, 3823, 3824, 3825, 3826, 3827, 3828, 3830,
+ 3829, 3831, 3832, 3833, 3834, 3835, 3836, 3804, 3805, 3808,
+ 3809, 3807, 3806, 3810, 3819, 3820, 3811, 3812, 3813, 3814,
+ 3815, 3816, 3818, 3817, 3837, 3838, 3839, 3840, 3841, 3843,
+ 3842, 3846, 3847, 3845, 3844, 3849, 3848, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 934, 0, 935, 0, 0, 939, 195, 0, 195, 941,
+ 940, 0, 942, 904, 903, 0, 0, 936, 937, 0,
+ 938, 0, 2081, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 735, 0, 735, 735, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 735,
+ 195, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 3888, 3889, 3890, 3891, 3892,
+ 3893, 3894, 3895, 0, 0, 0, 0, 0, 1526, 0,
+ 0, 0, 0, 0, 0, 3039, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 3065, 3066, 3067, 0, 0, 3069, 0, 0,
+ 3071, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 3090, 3091, 3092, 0, 0, 0, 0, 0, 0, 3097,
+ 0, 0, 0, 0, 3099, 0, 0, 3101, 3102, 3103,
+ 0, 0, 0, 3104, 3105, 0, 0, 3106, 0, 3107,
+ 0, 0, 0, 0, 0, 0, 3108, 0, 3109, 0,
+ 0, 0, 3110, 0, 3111, 0, 0, 3112, 0, 3113,
+ 0, 3114, 0, 3115, 0, 3116, 0, 3117, 0, 3118,
+ 0, 3119, 0, 3120, 0, 3121, 0, 3122, 0, 3123,
+ 0, 3124, 0, 3125, 0, 3126, 0, 3127, 0, 3128,
+ 0, 3129, 0, 0, 0, 3130, 0, 3131, 0, 3132,
+ 0, 0, 3133, 0, 3134, 0, 3135, 0, 2295, 3137,
+ 0, 0, 3139, 0, 0, 3141, 3142, 3143, 3144, 0,
+ 0, 0, 0, 3145, 2295, 2295, 2295, 2295, 2295, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 3155,
+ 0, 0, 0, 0, 0, 0, 0, 3168, 0, 0,
+ 3172, 1526, 0, 0, 0, 0, 0, 0, 0, 3175,
+ 3176, 3177, 3178, 3179, 3180, 0, 0, 0, 3181, 3182,
+ 0, 3183, 0, 3184, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 2408, 0, 0, 0, 0, 0, 0,
+ 0, 2412, 0, 2415, 0, 0, 2081, 1070, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 195,
- 0, 0, 0, 0, 0, 0, 0, 0, 169, 0,
- 0, 170, 734, 0, 195, 0, 0, 0, 0, 0,
- 0, 1824, 0, 0, 0, 734, 0, 0, 734, 0,
- 195, 195, 0, 138, 139, 161, 160, 189, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 195, 0, 0,
- 0, 0, 0, 0, 195, 0, 0, 0, 0, 0,
- 0, 0, 0, 195, 195, 195, 195, 195, 195, 195,
- 195, 195, 734, 0, 70, 0, 0, 0, 0, 0,
- 0, 1771, 0, 0, 0, 0, 1837, 1840, 1841, 1842,
- 1843, 1844, 1845, 0, 1846, 1847, 1849, 1850, 1848, 1851,
- 1852, 1825, 1826, 1827, 1828, 1808, 1809, 1838, 0, 1811,
- 0, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819, 1820,
- 0, 0, 1821, 1829, 1830, 1831, 1832, 0, 1833, 1834,
- 1835, 1836, 0, 0, 1822, 0, 0, 0, 155, 136,
- 158, 143, 135, 0, 156, 157, 0, 0, 0, 0,
- 0, 173, 0, 2913, 0, 0, 0, 0, 0, 0,
- 179, 144, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 147, 145, 140, 141, 142,
- 146, 0, 0, 0, 0, 0, 0, 137, 0, 0,
- 0, 0, 0, 0, 0, 0, 148, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 2962, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 734, 734, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 734, 0, 0,
- 0, 0, 0, 0, 0, 0, 195, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 164, 0,
- 0, 0, 0, 0, 3010, 3011, 3012, 3013, 3014, 3015,
- 0, 0, 0, 3037, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 734, 0, 0, 0,
- 0, 0, 2079, 3025, 0, 0, 1524, 0, 0, 0,
- 3063, 3064, 3065, 0, 0, 3067, 0, 0, 3069, 1839,
- 0, 0, 0, 0, 1524, 0, 0, 3033, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 3088, 3089,
- 3090, 0, 0, 0, 0, 0, 0, 3095, 0, 0,
- 0, 0, 3097, 0, 0, 3099, 3100, 3101, 0, 0,
- 0, 3102, 3103, 0, 159, 3104, 0, 3105, 0, 0,
- 0, 0, 0, 0, 3106, 0, 3107, 0, 0, 0,
- 3108, 0, 3109, 0, 0, 3110, 0, 3111, 0, 3112,
- 0, 3113, 0, 3114, 0, 3115, 0, 3116, 0, 3117,
- 0, 3118, 0, 3119, 0, 3120, 0, 3121, 0, 3122,
- 0, 3123, 0, 3124, 0, 3125, 0, 3126, 0, 3127,
- 0, 0, 0, 3128, 0, 3129, 0, 3130, 0, 0,
- 3131, 0, 3132, 0, 3133, 0, 2293, 3135, 0, 0,
- 3137, 0, 0, 3139, 3140, 3141, 3142, 0, 0, 0,
- 0, 3143, 2293, 2293, 2293, 2293, 2293, 0, 0, 0,
- 2340, 0, 0, 0, 0, 0, 0, 3153, 0, 0,
- 0, 0, 0, 152, 0, 3166, 153, 0, 3170, 0,
- 0, 0, 0, 0, 0, 0, 0, 3173, 3174, 3175,
- 3176, 3177, 3178, 0, 0, 0, 3179, 3180, 0, 3181,
- 0, 3182, 0, 0, 0, 195, 0, 165, 0, 0,
- 734, 0, 0, 0, 177, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 1069, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 195, 0, 0, 734, 0, 0, 3215, 0, 0, 0,
- 0, 0, 0, 0, 0, 185, 0, 195, 0, 0,
- 0, 734, 0, 0, 2340, 195, 0, 195, 0, 195,
- 195, 3245, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 734, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 166, 171,
- 168, 174, 175, 176, 178, 180, 181, 182, 183, 0,
- 0, 0, 0, 0, 184, 186, 187, 188, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 3307, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 734, 0, 0, 0, 0, 0, 0, 734,
- 734, 734, 195, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 734, 3297, 0, 0, 0, 0, 734, 734, 0, 0,
- 734, 0, 734, 0, 0, 0, 0, 0, 734, 0,
- 0, 0, 0, 0, 0, 0, 0, 3335, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 3349, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 734, 0, 956, 0, 3400, 734, 0,
- 0, 3367, 734, 734, 3370, 0, 0, 0, 0, 0,
- 190, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 2974, 0, 0, 0, 3415, 0, 0, 0, 0,
- 0, 0, 0, 129, 0, 151, 0, 0, 0, 0,
- 195, 0, 0, 0, 0, 0, 0, 195, 0, 172,
- 0, 0, 0, 0, 0, 0, 0, 711, 195, 195,
- 0, 0, 195, 733, 195, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 195, 0, 0, 0, 0, 0,
- 0, 195, 0, 162, 0, 0, 0, 0, 0, 150,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 195, 0, 169,
- 0, 0, 170, 0, 195, 733, 0, 733, 0, 734,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 1882, 1883, 161, 160, 189, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 3530,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 1022, 0, 0, 0, 0,
- 0, 1023, 0, 1524, 0, 2340, 0, 0, 0, 0,
- 0, 2134, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 3613, 0, 0, 0, 0, 0, 155,
- 1884, 158, 0, 1881, 0, 156, 157, 0, 0, 0,
- 0, 0, 173, 0, 3591, 0, 0, 0, 0, 0,
- 0, 179, 0, 0, 0, 0, 3637, 0, 0, 0,
- 0, 0, 0, 0, 3606, 0, 3607, 3608, 3609, 980,
- 981, 982, 983, 984, 985, 986, 987, 988, 989, 990,
- 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000,
- 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010,
- 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020,
- 1021, 0, 0, 0, 3657, 0, 3658, 0, 3659, 0,
- 3660, 0, 0, 0, 0, 0, 0, 0, 3663, 3664,
- 0, 0, 0, 0, 0, 0, 0, 0, 3669, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 3670, 0, 3671, 0, 3672, 0, 3673, 0,
- 3674, 0, 3675, 0, 3676, 0, 3677, 0, 3678, 0,
- 3679, 0, 3680, 0, 3681, 0, 3682, 0, 3683, 164,
- 3684, 0, 3685, 0, 0, 3686, 0, 0, 0, 3687,
- 0, 3688, 0, 0, 0, 0, 0, 3690, 0, 0,
+ 0, 0, 0, 735, 735, 0, 0, 0, 3217, 0,
+ 0, 0, 0, 0, 0, 0, 0, 86, 44, 45,
+ 88, 0, 195, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 3247, 0, 0, 92, 0, 0, 0,
+ 48, 76, 77, 735, 74, 78, 195, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 75, 0, 735, 0,
+ 0, 0, 0, 0, 0, 195, 0, 0, 0, 735,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 735,
+ 0, 0, 0, 0, 0, 0, 0, 0, 62, 0,
+ 0, 0, 0, 3309, 0, 0, 0, 0, 0, 0,
+ 95, 0, 735, 0, 735, 0, 0, 0, 0, 0,
+ 0, 0, 735, 0, 0, 1526, 735, 0, 0, 735,
+ 735, 735, 735, 0, 735, 0, 735, 735, 0, 735,
+ 735, 735, 735, 735, 735, 0, 0, 0, 0, 0,
+ 0, 0, 1526, 735, 735, 1526, 735, 1526, 195, 735,
+ 83, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 195, 0,
- 0, 0, 0, 0, 0, 0, 195, 0, 0, 3707,
- 0, 0, 0, 0, 0, 0, 0, 734, 3712, 0,
- 3713, 3714, 0, 3715, 0, 3716, 0, 0, 0, 0,
- 3717, 734, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 195, 0, 3746, 0, 0,
- 195, 0, 0, 0, 0, 159, 0, 0, 0, 0,
- 3755, 0, 0, 3757, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 3761, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 3897, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 734,
- 0, 0, 0, 0, 0, 195, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 734, 913, 0, 0,
- 0, 0, 0, 734, 0, 0, 0, 734, 734, 0,
- 0, 0, 734, 0, 152, 0, 0, 153, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 1524, 734,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 195, 195, 195, 195, 195, 195, 0, 165, 0,
- 0, 0, 0, 0, 0, 177, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 732, 0, 0, 0, 195,
- 195, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 4007, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 195, 0, 185, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 1094, 0, 1101,
- 734, 0, 0, 0, 0, 0, 0, 733, 1437, 733,
- 733, 0, 0, 0, 0, 0, 0, 0, 0, 166,
- 171, 168, 174, 175, 176, 178, 180, 181, 182, 183,
- 0, 733, 0, 0, 0, 184, 186, 187, 188, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 734, 0, 0, 0, 190, 0, 0, 0, 0, 0,
- 1523, 0, 0, 0, 0, 1878, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 129, 0, 151,
+ 0, 735, 0, 195, 0, 0, 2081, 0, 0, 3402,
+ 0, 0, 0, 2574, 735, 0, 0, 735, 0, 195,
+ 195, 0, 0, 0, 2594, 2595, 0, 0, 2599, 0,
+ 0, 0, 0, 0, 0, 0, 195, 3417, 0, 0,
+ 2604, 0, 0, 195, 0, 0, 0, 2607, 0, 0,
+ 0, 0, 195, 195, 195, 195, 195, 195, 195, 195,
+ 195, 735, 0, 0, 0, 51, 54, 57, 56, 59,
+ 0, 73, 0, 2610, 82, 79, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 172, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 61, 91,
+ 90, 0, 0, 71, 72, 58, 0, 0, 0, 0,
+ 0, 80, 81, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 162, 0, 0,
- 0, 0, 0, 150, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 169, 0, 0, 170, 0, 0, 0,
- 0, 0, 0, 0, 0, 734, 0, 4049, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 734, 1882, 1883,
- 161, 160, 189, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 734, 4047,
- 0, 0, 0, 4063, 0, 0, 4064, 0, 4065, 0,
- 0, 0, 0, 195, 0, 0, 734, 0, 0, 0,
+ 0, 0, 0, 0, 63, 64, 0, 65, 66, 67,
+ 68, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 734, 0, 0, 0, 1524, 0, 0, 734, 734, 1524,
- 195, 195, 195, 195, 195, 0, 0, 0, 0, 0,
- 0, 0, 195, 1523, 0, 0, 0, 0, 195, 0,
- 195, 0, 0, 195, 195, 195, 0, 0, 0, 0,
- 0, 0, 0, 155, 1884, 158, 0, 1881, 0, 156,
- 157, 0, 0, 0, 0, 0, 173, 0, 0, 0,
- 0, 0, 0, 0, 0, 179, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 195, 0,
- 4149, 0, 0, 0, 0, 733, 733, 0, 0, 0,
- 0, 734, 0, 0, 1524, 0, 0, 0, 0, 734,
- 0, 0, 0, 0, 195, 0, 0, 0, 0, 4165,
- 0, 4166, 0, 4167, 0, 0, 0, 0, 195, 0,
- 0, 0, 0, 0, 0, 733, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 195, 0,
- 733, 195, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 733, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 733, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 4216, 733, 4217, 733, 0, 0, 0,
- 0, 0, 0, 164, 733, 0, 0, 1523, 733, 0,
- 0, 733, 733, 733, 733, 0, 733, 0, 733, 733,
- 0, 733, 733, 733, 733, 733, 733, 0, 0, 0,
- 0, 0, 0, 0, 1523, 733, 733, 1523, 733, 1523,
- 0, 733, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 733, 0, 0, 0, 0, 0, 734,
- 0, 0, 0, 0, 0, 0, 733, 0, 0, 733,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 159,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 60, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 735, 735, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 3615, 735, 0, 0, 0,
0, 0, 0, 0, 0, 0, 195, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 733, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 1282,
- 0, 1282, 1282, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 195, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 1451, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 195, 0, 0, 0, 0, 0, 0, 152, 0,
- 0, 153, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 195, 0, 195, 195, 195, 0, 0, 0, 0,
- 0, 0, 0, 734, 734, 0, 0, 0, 0, 0,
- 0, 0, 165, 0, 0, 0, 0, 0, 0, 177,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 734, 734, 734, 734, 0, 0, 0, 0,
- 185, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 733, 733, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 733, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 166, 171, 168, 174, 175, 176, 178,
- 180, 181, 182, 183, 0, 0, 0, 0, 0, 184,
- 186, 187, 188, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 733, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 1523, 0, 0,
- 0, 0, 0, 0, 0, 0, 2143, 0, 0, 0,
- 0, 0, 0, 0, 0, 1523, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 3639, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 734,
- 0, 734, 0, 195, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 735, 0, 0, 0,
+ 0, 89, 0, 0, 0, 0, 1526, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 1524, 0, 0, 0, 195, 1723, 1724, 734,
- 0, 734, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 1526, 0, 3659, 0, 3660, 0,
+ 3661, 0, 3662, 0, 0, 0, 0, 0, 0, 0,
+ 3665, 3666, 0, 0, 0, 0, 0, 0, 0, 0,
+ 3671, 957, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 3672, 0, 3673, 0, 3674, 0,
+ 3675, 0, 3676, 0, 3677, 0, 3678, 0, 3679, 0,
+ 3680, 0, 3681, 0, 3682, 0, 3683, 0, 3684, 0,
+ 3685, 0, 3686, 0, 3687, 0, 0, 3688, 0, 0,
+ 0, 3689, 0, 3690, 0, 0, 0, 0, 0, 3692,
+ 0, 94, 0, 712, 0, 0, 0, 0, 0, 734,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 3709, 0, 0, 0, 0, 2915, 0, 0, 0,
+ 3714, 0, 3715, 3716, 0, 3717, 0, 3718, 0, 0,
+ 0, 0, 3719, 0, 0, 0, 0, 0, 0, 0,
+ 2342, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 734, 0, 734, 0, 0, 0, 0, 0, 3748,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 1777, 0, 0,
+ 0, 0, 3757, 0, 0, 3759, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 195, 0, 3763, 0, 0,
+ 735, 2964, 0, 0, 0, 0, 0, 0, 70, 0,
+ 0, 0, 0, 3899, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 1795, 0, 0, 0, 0, 0, 0, 734,
- 0, 733, 0, 1854, 0, 0, 0, 0, 0, 0,
- 0, 0, 195, 1863, 0, 734, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 734, 0,
- 0, 0, 0, 0, 0, 0, 1094, 0, 1890, 0,
- 0, 0, 0, 0, 0, 0, 1899, 0, 0, 0,
- 1901, 733, 0, 1904, 1905, 1907, 1907, 0, 1907, 0,
- 1907, 1907, 0, 1916, 1907, 1907, 1907, 1907, 1907, 0,
- 0, 0, 0, 0, 0, 0, 0, 1936, 1937, 0,
- 1094, 0, 0, 1942, 733, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 733, 734, 0, 733, 0, 0, 0, 0,
- 734, 0, 734, 0, 0, 1984, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 733, 0, 0, 2006, 0,
- 0, 2010, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 734, 0, 0, 0, 0, 0, 0, 0, 914,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 1282, 0, 0, 0, 0,
- 0, 0, 0, 733, 0, 0, 0, 0, 0, 0,
- 733, 733, 733, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 193, 0, 0, 676, 0,
- 0, 733, 0, 0, 0, 0, 0, 733, 733, 0,
- 0, 733, 0, 733, 0, 0, 0, 0, 676, 733,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 1050, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 1070, 1070, 0, 733, 0, 0, 0, 0, 733,
- 676, 0, 0, 733, 733, 0, 0, 0, 0, 0,
- 0, 734, 0, 0, 0, 0, 0, 0, 0, 0,
+ 195, 0, 0, 735, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 195, 0, 0,
+ 0, 735, 0, 0, 2342, 195, 0, 195, 0, 195,
+ 195, 0, 0, 0, 0, 0, 0, 3012, 3013, 3014,
+ 3015, 3016, 3017, 0, 735, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 2081, 3027, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 190, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 2976, 0, 0,
+ 3035, 0, 0, 0, 0, 0, 0, 0, 0, 129,
+ 0, 151, 735, 0, 0, 0, 0, 0, 0, 735,
+ 735, 735, 195, 0, 0, 172, 0, 0, 0, 0,
+ 0, 0, 4009, 0, 0, 0, 0, 0, 0, 0,
+ 735, 0, 0, 0, 190, 0, 735, 735, 0, 0,
+ 735, 0, 735, 0, 0, 0, 0, 0, 735, 162,
+ 0, 0, 0, 0, 0, 150, 914, 129, 0, 151,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 172, 0, 169, 0, 0, 170, 0,
+ 0, 0, 0, 735, 0, 0, 0, 0, 735, 0,
+ 0, 0, 735, 735, 0, 0, 0, 0, 0, 0,
+ 1884, 1885, 161, 160, 189, 0, 0, 162, 0, 0,
+ 0, 0, 0, 150, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 733, 0, 0, 0, 0, 0,
+ 195, 0, 0, 169, 0, 0, 170, 195, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 195, 195,
+ 0, 0, 195, 0, 195, 0, 0, 0, 138, 139,
+ 161, 160, 189, 0, 195, 0, 0, 0, 0, 0,
+ 0, 195, 0, 0, 0, 0, 1095, 0, 1102, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 734, 195, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 1282, 1282, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 2067, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 734, 0, 0, 0, 0, 0, 0, 0, 0,
- 733, 734, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 1524, 734, 0, 734, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 2129,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 734,
- 2340, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 1523, 0, 733, 0, 0, 0,
- 195, 734, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 95, 0,
- 0, 1022, 0, 0, 0, 0, 962, 1023, 975, 976,
- 977, 963, 0, 0, 964, 965, 0, 966, 0, 0,
- 0, 734, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 971, 0, 978, 979, 0, 0, 0,
- 0, 0, 0, 0, 0, 734, 0, 0, 0, 0,
- 195, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 734, 0, 734, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 3343, 3344, 0, 0, 0, 0, 0,
- 0, 0, 0, 1282, 0, 980, 981, 982, 983, 984,
- 985, 986, 987, 988, 989, 990, 991, 992, 993, 994,
- 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004,
- 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014,
- 1015, 1016, 1017, 1018, 1019, 1020, 1021, 0, 0, 0,
- 0, 0, 0, 2377, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 2390, 0, 3345, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 1777, 0, 0, 1282, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 1094, 733, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 733, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 3346, 3347,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 1101, 0, 2926, 0, 0,
- 0, 0, 2503, 2504, 2505, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 1094, 0, 0, 0, 0, 0, 1101,
- 1899, 0, 0, 1899, 0, 1899, 0, 0, 0, 0,
- 0, 2536, 0, 0, 0, 0, 0, 0, 0, 0,
- 733, 0, 676, 0, 676, 0, 0, 0, 0, 0,
- 0, 0, 0, 927, 0, 0, 0, 0, 0, 931,
- 0, 0, 0, 928, 929, 0, 1094, 733, 930, 932,
- 0, 2129, 0, 0, 733, 2129, 2129, 0, 733, 733,
- 0, 0, 0, 733, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 1523,
- 733, 0, 0, 0, 0, 0, 676, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 1525, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 733, 2613, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 195, 0, 0,
+ 0, 0, 0, 0, 195, 0, 155, 1886, 158, 735,
+ 1883, 0, 156, 157, 0, 0, 0, 0, 0, 173,
+ 0, 0, 0, 0, 0, 0, 0, 0, 179, 4051,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 733, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 1282, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 155, 136, 158, 143, 135, 0,
+ 156, 157, 0, 0, 0, 4065, 0, 173, 4066, 0,
+ 4067, 0, 0, 1526, 0, 2342, 179, 144, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 147, 145, 140, 141, 142, 146, 0, 0, 0,
+ 0, 0, 0, 137, 0, 0, 0, 0, 0, 0,
+ 0, 0, 148, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 3299, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 164, 0, 0, 0,
+ 3337, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 3351, 0, 0, 0, 0, 0,
+ 0, 0, 4151, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 3369, 0, 0, 3372, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 4167, 0, 4168, 164, 4169, 0, 0, 0, 0,
+ 0, 0, 0, 0, 734, 1438, 734, 734, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 734, 0,
+ 0, 0, 159, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 1525, 0, 0,
+ 0, 0, 0, 0, 0, 4218, 0, 4219, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 733, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 733, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 676, 0, 0, 0, 733,
+ 0, 0, 0, 0, 0, 0, 0, 0, 195, 0,
+ 159, 0, 0, 0, 0, 0, 195, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 735, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 733, 1050, 0,
+ 0, 735, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 733, 0, 0, 0, 1523, 0, 0, 733, 733,
- 1523, 0, 676, 0, 0, 0, 0, 0, 0, 0,
+ 0, 152, 3532, 0, 153, 195, 0, 0, 0, 0,
+ 195, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 676, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 165, 0, 0, 0, 0,
+ 0, 0, 177, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 152,
+ 0, 0, 153, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 735,
+ 0, 0, 0, 185, 0, 195, 0, 3593, 0, 0,
+ 0, 0, 0, 165, 0, 0, 0, 0, 0, 0,
+ 177, 0, 0, 0, 0, 0, 735, 3608, 0, 3609,
+ 3610, 3611, 0, 735, 0, 0, 0, 735, 735, 0,
+ 1525, 0, 735, 0, 0, 0, 166, 171, 168, 174,
+ 175, 176, 178, 180, 181, 182, 183, 0, 1526, 735,
+ 0, 185, 184, 186, 187, 188, 0, 0, 0, 0,
+ 0, 195, 195, 195, 195, 195, 195, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 195,
+ 195, 0, 734, 734, 166, 171, 168, 174, 175, 176,
+ 178, 180, 181, 182, 183, 0, 0, 0, 0, 0,
+ 184, 186, 187, 188, 195, 0, 0, 0, 0, 1283,
+ 0, 1283, 1283, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 734, 0, 0, 0, 0, 0, 0, 0,
+ 735, 0, 0, 1452, 0, 0, 0, 734, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 734, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 734, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 3293, 0, 0, 0, 0, 0, 0, 0, 0,
- 2861, 1525, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 733, 0, 2876, 1523, 0, 0, 0, 0,
- 733, 0, 0, 0, 0, 0, 0, 0, 1525, 0,
- 0, 1525, 0, 1525, 676, 0, 0, 0, 0, 0,
+ 735, 734, 0, 734, 0, 0, 0, 0, 0, 0,
+ 0, 734, 0, 0, 1525, 734, 0, 0, 734, 734,
+ 734, 734, 0, 734, 0, 734, 734, 0, 734, 734,
+ 734, 734, 734, 734, 0, 0, 0, 0, 0, 0,
+ 0, 1525, 734, 734, 1525, 734, 1525, 0, 734, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 1958, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 676,
- 0, 0, 3374, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 2012, 676, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 676, 0, 0, 0, 0, 0, 0, 676,
- 0, 0, 2958, 0, 0, 0, 0, 0, 2038, 2039,
- 676, 676, 676, 676, 676, 676, 676, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 2390,
- 0, 0, 0, 0, 0, 0, 2982, 0, 0, 0,
- 1899, 1899, 0, 0, 0, 2987, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 2998, 0, 0, 0, 0, 0, 0, 0,
+ 734, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 734, 0, 0, 734, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 733, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 735, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 735, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 734, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 735, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 195, 0, 0, 735, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 735, 0, 0, 0, 1526, 0, 0, 735, 735, 1526,
+ 195, 195, 195, 195, 195, 0, 0, 0, 0, 0,
+ 0, 0, 195, 0, 0, 0, 0, 0, 195, 0,
+ 195, 0, 0, 195, 195, 195, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 1725, 1726, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 195, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 2129, 0, 0, 0, 0, 0, 0,
+ 0, 735, 0, 0, 1526, 0, 0, 1779, 0, 735,
+ 0, 0, 0, 0, 195, 0, 0, 0, 0, 0,
+ 0, 0, 1797, 0, 0, 0, 0, 0, 195, 0,
+ 734, 734, 0, 1856, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 1865, 0, 734, 0, 0, 195, 0,
+ 190, 195, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 1880, 0, 0, 0, 0, 1095, 0, 1892, 0,
+ 0, 0, 0, 129, 0, 151, 1901, 0, 0, 0,
+ 1903, 0, 0, 1906, 1907, 1909, 1909, 0, 1909, 172,
+ 1909, 1909, 0, 1918, 1909, 1909, 1909, 1909, 1909, 0,
+ 0, 0, 0, 0, 0, 734, 0, 1938, 1939, 0,
+ 1095, 0, 0, 1944, 0, 1525, 0, 0, 0, 0,
+ 0, 0, 0, 162, 2145, 0, 0, 0, 0, 150,
+ 0, 0, 0, 1525, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 1986, 0, 0, 0, 169,
+ 0, 0, 170, 0, 0, 0, 0, 0, 2008, 0,
+ 0, 2012, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 1884, 1885, 161, 160, 189, 735,
+ 0, 0, 4049, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 1283, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 195, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 3581, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 2129, 0, 0, 0, 0, 0, 0,
- 0, 676, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 733, 733, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 734,
+ 0, 0, 195, 0, 0, 0, 0, 0, 0, 0,
+ 155, 1886, 158, 0, 1883, 0, 156, 157, 0, 0,
+ 0, 0, 0, 173, 0, 0, 0, 0, 0, 0,
+ 0, 195, 179, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 734,
+ 0, 195, 0, 195, 195, 195, 0, 0, 0, 0,
+ 0, 0, 0, 735, 735, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 734, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 1525, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 733, 733, 733, 733, 0, 0, 1525,
+ 734, 0, 0, 734, 0, 1283, 1283, 0, 0, 0,
+ 0, 0, 735, 735, 735, 735, 0, 0, 0, 0,
+ 2069, 0, 0, 734, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 3155, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 1282, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 164, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 2131, 734, 0, 0, 0, 0, 0, 0, 734, 734,
+ 734, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 734,
+ 0, 0, 0, 0, 0, 734, 734, 0, 0, 734,
+ 0, 734, 0, 0, 0, 0, 0, 734, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 1907, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 3200,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 1282, 0, 0, 0, 0, 0, 0,
- 3227, 1907, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 159, 0, 0, 0,
+ 0, 0, 734, 0, 0, 0, 0, 734, 0, 0,
+ 0, 734, 734, 0, 0, 0, 0, 0, 0, 735,
+ 0, 735, 0, 195, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 2012, 0, 0, 0, 0,
+ 0, 0, 1526, 0, 0, 0, 195, 0, 0, 735,
+ 0, 735, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 733, 0, 733, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 1283, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 1958, 0, 0, 1523, 0, 0, 0, 0, 0, 0,
- 733, 0, 733, 0, 1094, 0, 1070, 0, 0, 0,
- 0, 0, 2390, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 1050, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 152, 0, 0, 153, 735,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 676, 0, 0, 0, 0, 0, 0, 2012,
- 676, 0, 676, 0, 676, 2429, 0, 0, 0, 0,
- 733, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 733, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 733,
+ 0, 0, 195, 0, 0, 735, 0, 0, 734, 0,
+ 0, 0, 0, 0, 2379, 0, 0, 0, 735, 165,
+ 0, 0, 0, 0, 0, 0, 177, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 2392, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 1779, 0, 185, 1283, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 1525, 0, 734, 0, 0, 0, 1095, 0,
+ 0, 0, 0, 735, 0, 0, 0, 0, 0, 0,
+ 735, 0, 735, 0, 0, 0, 0, 0, 0, 0,
+ 166, 171, 168, 174, 175, 176, 178, 180, 181, 182,
+ 183, 0, 0, 0, 0, 0, 184, 186, 187, 188,
+ 0, 735, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 1102, 0, 0, 0,
+ 0, 0, 0, 2505, 2506, 2507, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 2506, 0, 0,
+ 0, 0, 0, 0, 1095, 0, 0, 0, 0, 0,
+ 1102, 1901, 0, 0, 1901, 0, 1901, 0, 0, 0,
+ 0, 0, 2538, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 733, 0, 0, 0, 0, 0,
- 0, 733, 0, 733, 0, 0, 0, 0, 0, 0,
- 0, 0, 1854, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 1095, 0, 0,
+ 0, 0, 2131, 0, 0, 0, 2131, 2131, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 733, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 735, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 195, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 735, 195, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 676, 0, 0, 0, 0,
- 0, 0, 676, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 676, 676, 0, 0, 676, 0, 2599,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 676,
- 0, 0, 0, 0, 0, 0, 676, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 734, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 734, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 2615, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 676, 0, 0, 0, 0, 0, 0, 2610,
- 0, 0, 0, 0, 0, 0, 2390, 2390, 0, 0,
- 0, 0, 733, 0, 0, 0, 0, 0, 0, 0,
+ 0, 735, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 735, 0, 0, 0, 2928, 0, 0, 0, 0,
+ 0, 1526, 735, 0, 735, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 735,
+ 2342, 0, 0, 0, 0, 0, 0, 0, 0, 1283,
+ 0, 0, 0, 0, 0, 0, 0, 0, 734, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 733, 0, 0, 0,
- 0, 0, 0, 0, 0, 3645, 3646, 3647, 3648, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 1525, 0,
- 2012, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 195, 735, 0, 0, 0, 734, 0, 0, 0, 0,
+ 0, 0, 734, 0, 0, 0, 734, 734, 0, 0,
+ 0, 734, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 95, 1525, 734, 1023,
+ 0, 735, 0, 0, 963, 1024, 976, 977, 978, 964,
+ 0, 0, 965, 966, 0, 967, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 735, 0, 0, 0, 0,
+ 195, 972, 0, 979, 980, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 735, 0, 735, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 733, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 733, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 1523, 733, 0, 733, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 3345, 3346, 0, 0, 0, 0, 0, 734,
+ 0, 0, 0, 0, 981, 982, 983, 984, 985, 986,
+ 987, 988, 989, 990, 991, 992, 993, 994, 995, 996,
+ 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006,
+ 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016,
+ 1017, 1018, 1019, 1020, 1021, 1022, 0, 0, 0, 734,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 733, 733, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 2863, 0, 0, 0, 0, 0, 3347, 0, 0,
+ 0, 0, 0, 0, 0, 2878, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 733, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 3723, 0, 3723, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 733, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 3751, 0, 3753, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 733, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 733, 0, 733, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 676, 0, 0, 0, 0, 0, 0,
- 0, 1958, 2390, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 3920, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 1282, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 734, 0, 0, 3348, 3349, 0,
+ 0, 0, 0, 0, 0, 0, 734, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 676, 0, 0, 0, 0, 676, 0, 0, 0, 0,
+ 0, 0, 0, 2960, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 734, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 2392, 0, 0, 0, 0, 734, 0, 2984, 0, 0,
+ 0, 1901, 1901, 0, 0, 0, 2989, 0, 0, 734,
+ 0, 0, 0, 1525, 0, 0, 734, 734, 1525, 0,
+ 0, 0, 928, 3000, 0, 0, 0, 0, 932, 0,
+ 0, 0, 929, 930, 0, 0, 0, 931, 933, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 3723, 0, 0, 0,
- 0, 0, 0, 3723, 0, 3723, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 3295,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 676, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 2390, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 734, 0, 0, 1525, 0, 0, 0, 0, 734, 0,
+ 0, 0, 0, 0, 2131, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 1525, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 676, 676, 676, 676,
- 676, 676, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 676, 676, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 676,
+ 3376, 0, 0, 0, 2131, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 2390, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 2390, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 3783, 3785, 3784,
- 3850, 3851, 3852, 3853, 3854, 3855, 3856, 3786, 3787, 804,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 4067, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 4075, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 2390, 0, 4083, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 734, 3157,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 1282, 1282, 0, 0, 0, 0, 0, 0,
+ 0, 1283, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 1909, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 4133, 0, 0, 0, 0, 0,
+ 3202, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 1283, 0, 0, 0, 0, 0,
+ 0, 3229, 1909, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 1070, 0, 676, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 3583,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 4075, 0, 0, 0, 0, 1525,
- 0, 0, 0, 0, 1525, 676, 676, 676, 676, 676,
- 0, 0, 0, 0, 0, 0, 0, 3243, 2390, 0,
- 0, 0, 0, 1958, 0, 676, 0, 0, 676, 3251,
- 2012, 0, 0, 0, 0, 0, 0, 1854, 0, 4133,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 3791,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 676, 3799, 3800, 0, 0, 3875, 3874,
- 3873, 0, 0, 3871, 3872, 3870, 0, 0, 0, 1525,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 676,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 676, 0, 0, 0, 0, 0, 0,
+ 0, 0, 734, 734, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 1095, 0, 0, 0, 0,
+ 0, 0, 0, 2392, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 676, 0, 0, 676, 0, 0, 3876,
- 927, 0, 780, 781, 3877, 3878, 931, 3879, 783, 784,
- 928, 929, 0, 778, 782, 930, 932, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 734, 734, 734, 734, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 3780, 3781, 3782, 3788, 3789, 3790, 3801, 3848,
- 3849, 3857, 3859, 883, 3858, 3860, 3861, 3862, 3865, 3866,
- 3867, 3868, 3863, 3864, 3869, 3763, 3767, 3764, 3765, 3766,
- 3778, 3768, 3769, 3770, 3771, 3772, 3773, 3774, 3775, 3776,
- 3777, 3779, 3880, 3881, 3882, 3883, 3884, 3885, 3794, 3798,
- 3797, 3795, 3796, 3792, 3793, 3820, 3819, 3821, 3822, 3823,
- 3824, 3825, 3826, 3828, 3827, 3829, 3830, 3831, 3832, 3833,
- 3834, 3802, 3803, 3806, 3807, 3805, 3804, 3808, 3817, 3818,
- 3809, 3810, 3811, 3812, 3813, 3814, 3816, 3815, 3835, 3836,
- 3837, 3838, 3839, 3841, 3840, 3844, 3845, 3843, 3842, 3847,
- 3846, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 676, 0, 0, 933, 0, 934, 0, 0, 938,
- 0, 0, 0, 940, 939, 0, 941, 903, 902, 0,
- 0, 935, 936, 0, 937, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 676, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 676, 0, 0, 3886,
- 3887, 3888, 3889, 3890, 3891, 3892, 3893, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 676, 0, 676, 676,
- 676, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
@@ -2852,4019 +2716,1832 @@ var yyAct = [...]int{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 1856, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 734, 0,
+ 734, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 1525, 0, 0, 0, 0, 0, 0, 734, 0,
+ 734, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 734, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 734, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 734, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 2392, 2392, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 3647, 3648, 3649, 3650,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 734, 0, 0, 0, 0, 0, 0, 734,
+ 0, 734, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 1958, 0,
+ 734, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 1525, 0, 0,
- 0, 1958, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 1958, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 3725, 0, 3725, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 734, 0, 0, 3753, 0, 3755, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 734, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 2392, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 3922,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 1283, 0, 0, 0, 0, 0, 0, 0,
+ 734, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 734, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 1525, 734, 0, 734, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 734, 734,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 3725, 0, 0,
+ 0, 0, 0, 0, 3725, 0, 3725, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 734, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 2392, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 734, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 734, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 734, 0, 734, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 2392, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 2392,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 1958, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 676, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 4069, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 4077, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 2392, 0, 4085, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 1283, 1283, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 1525, 0, 0, 0,
+ 0, 0, 0, 0, 0, 4135, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 4105, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 4077, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 2392,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 1958, 0, 0, 396, 0,
- 0, 0, 0, 0, 0, 1420, 1404, 528, 0, 1346,
- 1423, 1314, 1333, 1433, 1336, 1339, 1383, 1292, 1361, 416,
- 1330, 1318, 1287, 1325, 1288, 1316, 1348, 270, 1313, 1406,
- 1365, 1422, 366, 267, 1294, 1285, 204, 505, 1319, 430,
- 1335, 203, 1385, 487, 252, 377, 374, 583, 282, 273,
- 269, 250, 317, 385, 428, 518, 422, 1429, 370, 1371,
- 0, 497, 401, 0, 0, 2012, 1410, 1409, 1340, 1350,
- 1412, 1359, 1397, 1345, 1384, 1302, 1370, 1424, 1331, 1380,
- 1425, 323, 248, 325, 202, 413, 498, 286, 0, 0,
- 0, 0, 4107, 507, 958, 0, 0, 0, 0, 4108,
- 0, 0, 0, 0, 238, 0, 0, 245, 0, 0,
- 0, 351, 360, 359, 339, 340, 342, 344, 350, 357,
- 363, 336, 345, 1327, 1377, 608, 1419, 1328, 1379, 265,
- 321, 272, 264, 580, 1430, 1411, 1291, 1358, 1418, 1353,
- 0, 0, 229, 1421, 1352, 0, 1382, 0, 1436, 1286,
- 1373, 0, 1289, 1293, 1432, 1416, 1322, 275, 0, 0,
- 0, 0, 0, 0, 0, 1349, 1360, 1394, 1398, 1343,
- 0, 0, 0, 0, 0, 0, 0, 0, 1320, 0,
- 1369, 0, 0, 0, 1298, 1290, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 1347, 0,
- 0, 0, 0, 1301, 0, 1321, 1395, 0, 1284, 297,
- 1295, 402, 257, 0, 453, 1402, 1415, 1344, 628, 1417,
- 1342, 1341, 1389, 1299, 1408, 1334, 365, 1297, 330, 197,
- 225, 0, 1332, 412, 461, 473, 1407, 1317, 1326, 253,
- 1324, 471, 426, 603, 233, 284, 458, 432, 469, 440,
- 287, 1368, 1387, 470, 372, 585, 450, 600, 629, 630,
- 263, 406, 614, 522, 622, 647, 226, 260, 420, 506,
- 606, 494, 397, 581, 582, 329, 493, 295, 201, 369,
- 635, 224, 479, 371, 242, 231, 587, 611, 299, 289,
- 456, 642, 213, 517, 597, 239, 483, 0, 0, 650,
- 247, 504, 609, 598, 215, 594, 503, 393, 326, 327,
- 214, 0, 457, 268, 293, 0, 0, 258, 415, 589,
- 590, 256, 651, 228, 621, 220, 1296, 620, 408, 584,
- 595, 394, 383, 219, 593, 392, 382, 334, 355, 356,
- 280, 307, 447, 375, 448, 306, 308, 404, 403, 405,
- 207, 607, 625, 0, 208, 0, 499, 610, 652, 452,
- 212, 234, 235, 237, 1312, 279, 283, 291, 294, 303,
- 304, 313, 367, 419, 446, 442, 451, 1403, 579, 601,
- 615, 627, 633, 634, 636, 637, 638, 639, 640, 643,
- 641, 407, 311, 495, 333, 373, 1392, 1435, 425, 472,
- 240, 605, 496, 199, 1306, 1311, 1304, 0, 254, 255,
- 1374, 575, 1307, 1305, 1363, 1364, 1308, 1426, 1427, 1428,
- 1413, 653, 654, 655, 656, 657, 658, 659, 660, 661,
- 662, 663, 664, 665, 666, 667, 668, 669, 670, 648,
- 508, 514, 509, 510, 511, 512, 513, 0, 515, 1396,
- 1300, 0, 1309, 1310, 398, 1405, 591, 592, 671, 384,
- 486, 602, 335, 349, 352, 341, 361, 0, 362, 337,
- 338, 343, 346, 347, 348, 353, 354, 358, 364, 249,
- 210, 390, 399, 578, 312, 216, 217, 218, 524, 525,
- 526, 527, 618, 619, 623, 205, 462, 463, 464, 465,
- 292, 613, 309, 468, 467, 331, 332, 379, 449, 540,
- 542, 553, 557, 559, 561, 567, 570, 541, 543, 554,
- 558, 560, 562, 568, 571, 530, 532, 534, 536, 549,
- 548, 545, 573, 574, 551, 556, 535, 547, 552, 565,
- 572, 569, 529, 533, 537, 546, 564, 563, 544, 555,
- 566, 550, 538, 531, 539, 1367, 196, 221, 368, 1431,
- 454, 288, 649, 617, 484, 612, 206, 223, 1303, 262,
- 1315, 1323, 0, 1329, 1337, 1338, 1351, 1354, 1355, 1356,
- 1357, 1375, 1376, 1378, 1386, 1388, 1391, 1393, 1400, 1414,
- 1434, 198, 200, 209, 222, 232, 236, 243, 261, 276,
- 278, 285, 298, 310, 318, 319, 322, 328, 380, 386,
- 387, 388, 389, 409, 410, 411, 414, 417, 418, 421,
- 423, 424, 427, 431, 435, 436, 437, 439, 441, 443,
- 455, 460, 474, 475, 476, 477, 478, 481, 482, 488,
- 489, 490, 491, 492, 500, 501, 516, 586, 588, 604,
- 624, 631, 480, 301, 302, 444, 445, 314, 315, 645,
- 646, 300, 599, 632, 596, 644, 626, 438, 378, 1366,
- 1372, 381, 281, 305, 320, 1381, 616, 502, 227, 466,
- 290, 251, 1399, 1401, 211, 246, 230, 259, 274, 277,
- 324, 391, 400, 429, 434, 296, 271, 244, 459, 241,
- 485, 519, 520, 521, 523, 395, 266, 433, 1362, 1390,
- 376, 576, 577, 316, 396, 0, 0, 0, 0, 0,
- 0, 1420, 1404, 528, 0, 1346, 1423, 1314, 1333, 1433,
- 1336, 1339, 1383, 1292, 1361, 416, 1330, 1318, 1287, 1325,
- 1288, 1316, 1348, 270, 1313, 1406, 1365, 1422, 366, 267,
- 1294, 1285, 204, 505, 1319, 430, 1335, 203, 1385, 487,
+ 0, 0, 0, 0, 396, 0, 0, 0, 1856, 0,
+ 4135, 1421, 1405, 528, 0, 1347, 1424, 1315, 1334, 1434,
+ 1337, 1340, 1384, 1293, 1362, 416, 1331, 1319, 1288, 1326,
+ 1289, 1317, 1349, 270, 1314, 1407, 1366, 1423, 366, 267,
+ 1295, 1286, 204, 505, 1320, 430, 1336, 203, 1386, 487,
252, 377, 374, 583, 282, 273, 269, 250, 317, 385,
- 428, 518, 422, 1429, 370, 1371, 0, 497, 401, 0,
- 0, 0, 1410, 1409, 1340, 1350, 1412, 1359, 1397, 1345,
- 1384, 1302, 1370, 1424, 1331, 1380, 1425, 323, 248, 325,
- 202, 413, 498, 286, 0, 0, 0, 0, 0, 507,
- 194, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 428, 518, 422, 1430, 370, 1372, 0, 497, 401, 0,
+ 0, 0, 1411, 1410, 1341, 1351, 1413, 1360, 1398, 1346,
+ 1385, 1303, 1371, 1425, 1332, 1381, 1426, 323, 248, 325,
+ 202, 413, 498, 286, 0, 0, 0, 0, 4109, 507,
+ 959, 0, 0, 0, 0, 4110, 0, 0, 0, 0,
238, 0, 0, 245, 0, 0, 0, 351, 360, 359,
- 339, 340, 342, 344, 350, 357, 363, 336, 345, 1327,
- 1377, 608, 1419, 1328, 1379, 265, 321, 272, 264, 580,
- 1430, 1411, 1291, 1358, 1418, 1353, 0, 0, 229, 1421,
- 1352, 0, 1382, 0, 1436, 1286, 1373, 0, 1289, 1293,
- 1432, 1416, 1322, 275, 0, 0, 0, 0, 0, 0,
- 0, 1349, 1360, 1394, 1398, 1343, 0, 0, 0, 0,
- 0, 0, 3252, 0, 1320, 0, 1369, 0, 0, 0,
- 1298, 1290, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 1347, 0, 0, 0, 0, 1301,
- 0, 1321, 1395, 0, 1284, 297, 1295, 402, 257, 0,
- 453, 1402, 1415, 1344, 628, 1417, 1342, 1341, 1389, 1299,
- 1408, 1334, 365, 1297, 330, 197, 225, 0, 1332, 412,
- 461, 473, 1407, 1317, 1326, 253, 1324, 471, 426, 603,
- 233, 284, 458, 432, 469, 440, 287, 1368, 1387, 470,
- 372, 585, 450, 600, 629, 630, 263, 406, 614, 522,
- 622, 647, 226, 260, 420, 506, 606, 494, 397, 581,
- 582, 329, 493, 295, 201, 369, 635, 224, 479, 371,
- 242, 231, 587, 611, 299, 289, 456, 642, 213, 517,
- 597, 239, 483, 0, 0, 650, 247, 504, 609, 598,
- 215, 594, 503, 393, 326, 327, 214, 0, 457, 268,
- 293, 0, 0, 258, 415, 589, 590, 256, 651, 228,
- 621, 220, 1296, 620, 408, 584, 595, 394, 383, 219,
- 593, 392, 382, 334, 355, 356, 280, 307, 447, 375,
- 448, 306, 308, 404, 403, 405, 207, 607, 625, 0,
- 208, 0, 499, 610, 652, 452, 212, 234, 235, 237,
- 1312, 279, 283, 291, 294, 303, 304, 313, 367, 419,
- 446, 442, 451, 1403, 579, 601, 615, 627, 633, 634,
- 636, 637, 638, 639, 640, 643, 641, 407, 311, 495,
- 333, 373, 1392, 1435, 425, 472, 240, 605, 496, 199,
- 1306, 1311, 1304, 0, 254, 255, 1374, 575, 1307, 1305,
- 1363, 1364, 1308, 1426, 1427, 1428, 1413, 653, 654, 655,
+ 339, 340, 342, 344, 350, 357, 363, 336, 345, 1328,
+ 1378, 609, 1420, 1329, 1380, 265, 321, 272, 264, 580,
+ 1431, 1412, 1292, 1359, 1419, 1354, 596, 0, 0, 229,
+ 1422, 1353, 0, 1383, 0, 1437, 1287, 1374, 0, 1290,
+ 1294, 1433, 1417, 1323, 275, 0, 0, 0, 0, 0,
+ 0, 0, 1350, 1361, 1395, 1399, 1344, 0, 0, 0,
+ 0, 0, 0, 0, 0, 1321, 0, 1370, 0, 0,
+ 0, 1299, 1291, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 1348, 0, 0, 0, 0,
+ 1302, 0, 1322, 1396, 0, 1285, 297, 1296, 402, 257,
+ 0, 453, 1403, 1416, 1345, 629, 1418, 1343, 1342, 1390,
+ 1300, 1409, 1335, 365, 1298, 330, 197, 225, 0, 1333,
+ 412, 461, 473, 1408, 1318, 1327, 253, 1325, 471, 426,
+ 604, 233, 284, 458, 432, 469, 440, 287, 1369, 1388,
+ 470, 372, 585, 450, 601, 630, 631, 263, 406, 615,
+ 522, 623, 648, 226, 260, 420, 506, 607, 494, 397,
+ 581, 582, 329, 493, 295, 201, 369, 636, 224, 479,
+ 371, 242, 231, 587, 612, 299, 289, 456, 643, 213,
+ 517, 598, 239, 483, 0, 0, 651, 247, 504, 610,
+ 599, 215, 594, 503, 393, 326, 327, 214, 0, 457,
+ 268, 293, 0, 0, 258, 415, 589, 590, 256, 652,
+ 228, 622, 220, 1297, 621, 408, 584, 595, 394, 383,
+ 219, 593, 392, 382, 334, 355, 356, 280, 307, 447,
+ 375, 448, 306, 308, 404, 403, 405, 207, 608, 626,
+ 0, 208, 0, 499, 611, 653, 452, 212, 234, 235,
+ 237, 1313, 279, 283, 291, 294, 303, 304, 313, 367,
+ 419, 446, 442, 451, 1404, 579, 602, 616, 628, 634,
+ 635, 637, 638, 639, 640, 641, 644, 642, 407, 311,
+ 495, 333, 373, 1393, 1436, 425, 472, 240, 606, 496,
+ 199, 1307, 1312, 1305, 0, 254, 255, 1375, 575, 1308,
+ 1306, 1364, 1365, 1309, 1427, 1428, 1429, 1414, 654, 655,
656, 657, 658, 659, 660, 661, 662, 663, 664, 665,
- 666, 667, 668, 669, 670, 648, 508, 514, 509, 510,
- 511, 512, 513, 0, 515, 1396, 1300, 0, 1309, 1310,
- 398, 1405, 591, 592, 671, 384, 486, 602, 335, 349,
- 352, 341, 361, 0, 362, 337, 338, 343, 346, 347,
- 348, 353, 354, 358, 364, 249, 210, 390, 399, 578,
- 312, 216, 217, 218, 524, 525, 526, 527, 618, 619,
- 623, 205, 462, 463, 464, 465, 292, 613, 309, 468,
- 467, 331, 332, 379, 449, 540, 542, 553, 557, 559,
- 561, 567, 570, 541, 543, 554, 558, 560, 562, 568,
- 571, 530, 532, 534, 536, 549, 548, 545, 573, 574,
- 551, 556, 535, 547, 552, 565, 572, 569, 529, 533,
- 537, 546, 564, 563, 544, 555, 566, 550, 538, 531,
- 539, 1367, 196, 221, 368, 1431, 454, 288, 649, 617,
- 484, 612, 206, 223, 1303, 262, 1315, 1323, 0, 1329,
- 1337, 1338, 1351, 1354, 1355, 1356, 1357, 1375, 1376, 1378,
- 1386, 1388, 1391, 1393, 1400, 1414, 1434, 198, 200, 209,
- 222, 232, 236, 243, 261, 276, 278, 285, 298, 310,
- 318, 319, 322, 328, 380, 386, 387, 388, 389, 409,
- 410, 411, 414, 417, 418, 421, 423, 424, 427, 431,
- 435, 436, 437, 439, 441, 443, 455, 460, 474, 475,
- 476, 477, 478, 481, 482, 488, 489, 490, 491, 492,
- 500, 501, 516, 586, 588, 604, 624, 631, 480, 301,
- 302, 444, 445, 314, 315, 645, 646, 300, 599, 632,
- 596, 644, 626, 438, 378, 1366, 1372, 381, 281, 305,
- 320, 1381, 616, 502, 227, 466, 290, 251, 1399, 1401,
- 211, 246, 230, 259, 274, 277, 324, 391, 400, 429,
- 434, 296, 271, 244, 459, 241, 485, 519, 520, 521,
- 523, 395, 266, 433, 1362, 1390, 376, 576, 577, 316,
- 396, 0, 0, 0, 0, 0, 0, 1420, 1404, 528,
- 0, 1346, 1423, 1314, 1333, 1433, 1336, 1339, 1383, 1292,
- 1361, 416, 1330, 1318, 1287, 1325, 1288, 1316, 1348, 270,
- 1313, 1406, 1365, 1422, 366, 267, 1294, 1285, 204, 505,
- 1319, 430, 1335, 203, 1385, 487, 252, 377, 374, 583,
- 282, 273, 269, 250, 317, 385, 428, 518, 422, 1429,
- 370, 1371, 0, 497, 401, 0, 0, 0, 1410, 1409,
- 1340, 1350, 1412, 1359, 1397, 1345, 1384, 1302, 1370, 1424,
- 1331, 1380, 1425, 323, 248, 325, 202, 413, 498, 286,
- 0, 0, 0, 0, 0, 507, 723, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 238, 0, 0, 245,
- 0, 0, 0, 351, 360, 359, 339, 340, 342, 344,
- 350, 357, 363, 336, 345, 1327, 1377, 608, 1419, 1328,
- 1379, 265, 321, 272, 264, 580, 1430, 1411, 1291, 1358,
- 1418, 1353, 0, 0, 229, 1421, 1352, 0, 1382, 0,
- 1436, 1286, 1373, 0, 1289, 1293, 1432, 1416, 1322, 275,
- 0, 0, 0, 0, 0, 0, 0, 1349, 1360, 1394,
- 1398, 1343, 0, 0, 0, 0, 0, 0, 3213, 0,
- 1320, 0, 1369, 0, 0, 0, 1298, 1290, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 1347, 0, 0, 0, 0, 1301, 0, 1321, 1395, 0,
- 1284, 297, 1295, 402, 257, 0, 453, 1402, 1415, 1344,
- 628, 1417, 1342, 1341, 1389, 1299, 1408, 1334, 365, 1297,
- 330, 197, 225, 0, 1332, 412, 461, 473, 1407, 1317,
- 1326, 253, 1324, 471, 426, 603, 233, 284, 458, 432,
- 469, 440, 287, 1368, 1387, 470, 372, 585, 450, 600,
- 629, 630, 263, 406, 614, 522, 622, 647, 226, 260,
- 420, 506, 606, 494, 397, 581, 582, 329, 493, 295,
- 201, 369, 635, 224, 479, 371, 242, 231, 587, 611,
- 299, 289, 456, 642, 213, 517, 597, 239, 483, 0,
- 0, 650, 247, 504, 609, 598, 215, 594, 503, 393,
- 326, 327, 214, 0, 457, 268, 293, 0, 0, 258,
- 415, 589, 590, 256, 651, 228, 621, 220, 1296, 620,
- 408, 584, 595, 394, 383, 219, 593, 392, 382, 334,
- 355, 356, 280, 307, 447, 375, 448, 306, 308, 404,
- 403, 405, 207, 607, 625, 0, 208, 0, 499, 610,
- 652, 452, 212, 234, 235, 237, 1312, 279, 283, 291,
- 294, 303, 304, 313, 367, 419, 446, 442, 451, 1403,
- 579, 601, 615, 627, 633, 634, 636, 637, 638, 639,
- 640, 643, 641, 407, 311, 495, 333, 373, 1392, 1435,
- 425, 472, 240, 605, 496, 199, 1306, 1311, 1304, 0,
- 254, 255, 1374, 575, 1307, 1305, 1363, 1364, 1308, 1426,
- 1427, 1428, 1413, 653, 654, 655, 656, 657, 658, 659,
- 660, 661, 662, 663, 664, 665, 666, 667, 668, 669,
- 670, 648, 508, 514, 509, 510, 511, 512, 513, 0,
- 515, 1396, 1300, 0, 1309, 1310, 398, 1405, 591, 592,
- 671, 384, 486, 602, 335, 349, 352, 341, 361, 0,
- 362, 337, 338, 343, 346, 347, 348, 353, 354, 358,
- 364, 249, 210, 390, 399, 578, 312, 216, 217, 218,
- 524, 525, 526, 527, 618, 619, 623, 205, 462, 463,
- 464, 465, 292, 613, 309, 468, 467, 331, 332, 379,
- 449, 540, 542, 553, 557, 559, 561, 567, 570, 541,
- 543, 554, 558, 560, 562, 568, 571, 530, 532, 534,
- 536, 549, 548, 545, 573, 574, 551, 556, 535, 547,
- 552, 565, 572, 569, 529, 533, 537, 546, 564, 563,
- 544, 555, 566, 550, 538, 531, 539, 1367, 196, 221,
- 368, 1431, 454, 288, 649, 617, 484, 612, 206, 223,
- 1303, 262, 1315, 1323, 0, 1329, 1337, 1338, 1351, 1354,
- 1355, 1356, 1357, 1375, 1376, 1378, 1386, 1388, 1391, 1393,
- 1400, 1414, 1434, 198, 200, 209, 222, 232, 236, 243,
- 261, 276, 278, 285, 298, 310, 318, 319, 322, 328,
- 380, 386, 387, 388, 389, 409, 410, 411, 414, 417,
- 418, 421, 423, 424, 427, 431, 435, 436, 437, 439,
- 441, 443, 455, 460, 474, 475, 476, 477, 478, 481,
- 482, 488, 489, 490, 491, 492, 500, 501, 516, 586,
- 588, 604, 624, 631, 480, 301, 302, 444, 445, 314,
- 315, 645, 646, 300, 599, 632, 596, 644, 626, 438,
- 378, 1366, 1372, 381, 281, 305, 320, 1381, 616, 502,
- 227, 466, 290, 251, 1399, 1401, 211, 246, 230, 259,
- 274, 277, 324, 391, 400, 429, 434, 296, 271, 244,
- 459, 241, 485, 519, 520, 521, 523, 395, 266, 433,
- 1362, 1390, 376, 576, 577, 316, 396, 0, 0, 0,
- 0, 0, 0, 1420, 1404, 528, 0, 1346, 1423, 1314,
- 1333, 1433, 1336, 1339, 1383, 1292, 1361, 416, 1330, 1318,
- 1287, 1325, 1288, 1316, 1348, 270, 1313, 1406, 1365, 1422,
- 366, 267, 1294, 1285, 204, 505, 1319, 430, 1335, 203,
- 1385, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 1429, 370, 1371, 0, 497,
- 401, 0, 0, 0, 1410, 1409, 1340, 1350, 1412, 1359,
- 1397, 1345, 1384, 1302, 1370, 1424, 1331, 1380, 1425, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 958, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 1327, 1377, 608, 1419, 1328, 1379, 265, 321, 272,
- 264, 580, 1430, 1411, 1291, 1358, 1418, 1353, 0, 0,
- 229, 1421, 1352, 0, 1382, 0, 1436, 1286, 1373, 0,
- 1289, 1293, 1432, 1416, 1322, 275, 0, 0, 0, 0,
- 0, 0, 0, 1349, 1360, 1394, 1398, 1343, 0, 0,
- 0, 0, 0, 0, 2408, 0, 1320, 0, 1369, 0,
- 0, 0, 1298, 1290, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 1347, 0, 0, 0,
- 0, 1301, 0, 1321, 1395, 0, 1284, 297, 1295, 402,
- 257, 0, 453, 1402, 1415, 1344, 628, 1417, 1342, 1341,
- 1389, 1299, 1408, 1334, 365, 1297, 330, 197, 225, 0,
- 1332, 412, 461, 473, 1407, 1317, 1326, 253, 1324, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 1368,
- 1387, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
+ 666, 667, 668, 669, 670, 671, 649, 508, 514, 509,
+ 510, 511, 512, 513, 0, 515, 1397, 1301, 0, 1310,
+ 1311, 398, 1406, 591, 592, 672, 384, 486, 603, 335,
+ 349, 352, 341, 361, 0, 362, 337, 338, 343, 346,
+ 347, 348, 353, 354, 358, 364, 249, 210, 390, 399,
+ 578, 312, 216, 217, 218, 524, 525, 526, 527, 619,
+ 620, 624, 205, 462, 463, 464, 465, 292, 614, 309,
+ 468, 467, 331, 332, 379, 449, 540, 542, 553, 557,
+ 559, 561, 567, 570, 541, 543, 554, 558, 560, 562,
+ 568, 571, 530, 532, 534, 536, 549, 548, 545, 573,
+ 574, 551, 556, 535, 547, 552, 565, 572, 569, 529,
+ 533, 537, 546, 564, 563, 544, 555, 566, 550, 538,
+ 531, 539, 1368, 196, 221, 368, 1432, 454, 288, 650,
+ 618, 484, 613, 206, 223, 1304, 262, 1316, 1324, 0,
+ 1330, 1338, 1339, 1352, 1355, 1356, 1357, 1358, 1376, 1377,
+ 1379, 1387, 1389, 1392, 1394, 1401, 1415, 1435, 198, 200,
+ 209, 222, 232, 236, 243, 261, 276, 278, 285, 298,
+ 310, 318, 319, 322, 328, 380, 386, 387, 388, 389,
+ 409, 410, 411, 414, 417, 418, 421, 423, 424, 427,
+ 431, 435, 436, 437, 439, 441, 443, 455, 460, 474,
+ 475, 476, 477, 478, 481, 482, 488, 489, 490, 491,
+ 492, 500, 501, 516, 586, 588, 605, 625, 632, 480,
+ 301, 302, 444, 445, 314, 315, 646, 647, 300, 600,
+ 633, 597, 645, 627, 438, 378, 1367, 1373, 381, 281,
+ 305, 320, 1382, 617, 502, 227, 466, 290, 251, 1400,
+ 1402, 211, 246, 230, 259, 274, 277, 324, 391, 400,
+ 429, 434, 296, 271, 244, 459, 241, 485, 519, 520,
+ 521, 523, 395, 266, 433, 1363, 1391, 376, 576, 577,
+ 316, 396, 0, 0, 0, 0, 0, 0, 1421, 1405,
+ 528, 0, 1347, 1424, 1315, 1334, 1434, 1337, 1340, 1384,
+ 1293, 1362, 416, 1331, 1319, 1288, 1326, 1289, 1317, 1349,
+ 270, 1314, 1407, 1366, 1423, 366, 267, 1295, 1286, 204,
+ 505, 1320, 430, 1336, 203, 1386, 487, 252, 377, 374,
+ 583, 282, 273, 269, 250, 317, 385, 428, 518, 422,
+ 1430, 370, 1372, 0, 497, 401, 0, 0, 0, 1411,
+ 1410, 1341, 1351, 1413, 1360, 1398, 1346, 1385, 1303, 1371,
+ 1425, 1332, 1381, 1426, 323, 248, 325, 202, 413, 498,
+ 286, 0, 0, 0, 0, 0, 507, 194, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 238, 0, 0,
+ 245, 0, 0, 0, 351, 360, 359, 339, 340, 342,
+ 344, 350, 357, 363, 336, 345, 1328, 1378, 609, 1420,
+ 1329, 1380, 265, 321, 272, 264, 580, 1431, 1412, 1292,
+ 1359, 1419, 1354, 596, 0, 0, 229, 1422, 1353, 0,
+ 1383, 0, 1437, 1287, 1374, 0, 1290, 1294, 1433, 1417,
+ 1323, 275, 0, 0, 0, 0, 0, 0, 0, 1350,
+ 1361, 1395, 1399, 1344, 0, 0, 0, 0, 0, 0,
+ 3254, 0, 1321, 0, 1370, 0, 0, 0, 1299, 1291,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 1348, 0, 0, 0, 0, 1302, 0, 1322,
+ 1396, 0, 1285, 297, 1296, 402, 257, 0, 453, 1403,
+ 1416, 1345, 629, 1418, 1343, 1342, 1390, 1300, 1409, 1335,
+ 365, 1298, 330, 197, 225, 0, 1333, 412, 461, 473,
+ 1408, 1318, 1327, 253, 1325, 471, 426, 604, 233, 284,
+ 458, 432, 469, 440, 287, 1369, 1388, 470, 372, 585,
+ 450, 601, 630, 631, 263, 406, 615, 522, 623, 648,
+ 226, 260, 420, 506, 607, 494, 397, 581, 582, 329,
+ 493, 295, 201, 369, 636, 224, 479, 371, 242, 231,
+ 587, 612, 299, 289, 456, 643, 213, 517, 598, 239,
+ 483, 0, 0, 651, 247, 504, 610, 599, 215, 594,
+ 503, 393, 326, 327, 214, 0, 457, 268, 293, 0,
+ 0, 258, 415, 589, 590, 256, 652, 228, 622, 220,
+ 1297, 621, 408, 584, 595, 394, 383, 219, 593, 392,
+ 382, 334, 355, 356, 280, 307, 447, 375, 448, 306,
+ 308, 404, 403, 405, 207, 608, 626, 0, 208, 0,
+ 499, 611, 653, 452, 212, 234, 235, 237, 1313, 279,
+ 283, 291, 294, 303, 304, 313, 367, 419, 446, 442,
+ 451, 1404, 579, 602, 616, 628, 634, 635, 637, 638,
+ 639, 640, 641, 644, 642, 407, 311, 495, 333, 373,
+ 1393, 1436, 425, 472, 240, 606, 496, 199, 1307, 1312,
+ 1305, 0, 254, 255, 1375, 575, 1308, 1306, 1364, 1365,
+ 1309, 1427, 1428, 1429, 1414, 654, 655, 656, 657, 658,
+ 659, 660, 661, 662, 663, 664, 665, 666, 667, 668,
+ 669, 670, 671, 649, 508, 514, 509, 510, 511, 512,
+ 513, 0, 515, 1397, 1301, 0, 1310, 1311, 398, 1406,
+ 591, 592, 672, 384, 486, 603, 335, 349, 352, 341,
+ 361, 0, 362, 337, 338, 343, 346, 347, 348, 353,
+ 354, 358, 364, 249, 210, 390, 399, 578, 312, 216,
+ 217, 218, 524, 525, 526, 527, 619, 620, 624, 205,
+ 462, 463, 464, 465, 292, 614, 309, 468, 467, 331,
+ 332, 379, 449, 540, 542, 553, 557, 559, 561, 567,
+ 570, 541, 543, 554, 558, 560, 562, 568, 571, 530,
+ 532, 534, 536, 549, 548, 545, 573, 574, 551, 556,
+ 535, 547, 552, 565, 572, 569, 529, 533, 537, 546,
+ 564, 563, 544, 555, 566, 550, 538, 531, 539, 1368,
+ 196, 221, 368, 1432, 454, 288, 650, 618, 484, 613,
+ 206, 223, 1304, 262, 1316, 1324, 0, 1330, 1338, 1339,
+ 1352, 1355, 1356, 1357, 1358, 1376, 1377, 1379, 1387, 1389,
+ 1392, 1394, 1401, 1415, 1435, 198, 200, 209, 222, 232,
+ 236, 243, 261, 276, 278, 285, 298, 310, 318, 319,
+ 322, 328, 380, 386, 387, 388, 389, 409, 410, 411,
+ 414, 417, 418, 421, 423, 424, 427, 431, 435, 436,
+ 437, 439, 441, 443, 455, 460, 474, 475, 476, 477,
+ 478, 481, 482, 488, 489, 490, 491, 492, 500, 501,
+ 516, 586, 588, 605, 625, 632, 480, 301, 302, 444,
+ 445, 314, 315, 646, 647, 300, 600, 633, 597, 645,
+ 627, 438, 378, 1367, 1373, 381, 281, 305, 320, 1382,
+ 617, 502, 227, 466, 290, 251, 1400, 1402, 211, 246,
+ 230, 259, 274, 277, 324, 391, 400, 429, 434, 296,
+ 271, 244, 459, 241, 485, 519, 520, 521, 523, 395,
+ 266, 433, 1363, 1391, 376, 576, 577, 316, 396, 0,
+ 0, 0, 0, 0, 0, 1421, 1405, 528, 0, 1347,
+ 1424, 1315, 1334, 1434, 1337, 1340, 1384, 1293, 1362, 416,
+ 1331, 1319, 1288, 1326, 1289, 1317, 1349, 270, 1314, 1407,
+ 1366, 1423, 366, 267, 1295, 1286, 204, 505, 1320, 430,
+ 1336, 203, 1386, 487, 252, 377, 374, 583, 282, 273,
+ 269, 250, 317, 385, 428, 518, 422, 1430, 370, 1372,
+ 0, 497, 401, 0, 0, 0, 1411, 1410, 1341, 1351,
+ 1413, 1360, 1398, 1346, 1385, 1303, 1371, 1425, 1332, 1381,
+ 1426, 323, 248, 325, 202, 413, 498, 286, 0, 0,
+ 0, 0, 0, 507, 724, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 238, 0, 0, 245, 0, 0,
+ 0, 351, 360, 359, 339, 340, 342, 344, 350, 357,
+ 363, 336, 345, 1328, 1378, 609, 1420, 1329, 1380, 265,
+ 321, 272, 264, 580, 1431, 1412, 1292, 1359, 1419, 1354,
+ 596, 0, 0, 229, 1422, 1353, 0, 1383, 0, 1437,
+ 1287, 1374, 0, 1290, 1294, 1433, 1417, 1323, 275, 0,
+ 0, 0, 0, 0, 0, 0, 1350, 1361, 1395, 1399,
+ 1344, 0, 0, 0, 0, 0, 0, 3215, 0, 1321,
+ 0, 1370, 0, 0, 0, 1299, 1291, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 1348,
+ 0, 0, 0, 0, 1302, 0, 1322, 1396, 0, 1285,
+ 297, 1296, 402, 257, 0, 453, 1403, 1416, 1345, 629,
+ 1418, 1343, 1342, 1390, 1300, 1409, 1335, 365, 1298, 330,
+ 197, 225, 0, 1333, 412, 461, 473, 1408, 1318, 1327,
+ 253, 1325, 471, 426, 604, 233, 284, 458, 432, 469,
+ 440, 287, 1369, 1388, 470, 372, 585, 450, 601, 630,
+ 631, 263, 406, 615, 522, 623, 648, 226, 260, 420,
+ 506, 607, 494, 397, 581, 582, 329, 493, 295, 201,
+ 369, 636, 224, 479, 371, 242, 231, 587, 612, 299,
+ 289, 456, 643, 213, 517, 598, 239, 483, 0, 0,
+ 651, 247, 504, 610, 599, 215, 594, 503, 393, 326,
+ 327, 214, 0, 457, 268, 293, 0, 0, 258, 415,
+ 589, 590, 256, 652, 228, 622, 220, 1297, 621, 408,
+ 584, 595, 394, 383, 219, 593, 392, 382, 334, 355,
+ 356, 280, 307, 447, 375, 448, 306, 308, 404, 403,
+ 405, 207, 608, 626, 0, 208, 0, 499, 611, 653,
+ 452, 212, 234, 235, 237, 1313, 279, 283, 291, 294,
+ 303, 304, 313, 367, 419, 446, 442, 451, 1404, 579,
+ 602, 616, 628, 634, 635, 637, 638, 639, 640, 641,
+ 644, 642, 407, 311, 495, 333, 373, 1393, 1436, 425,
+ 472, 240, 606, 496, 199, 1307, 1312, 1305, 0, 254,
+ 255, 1375, 575, 1308, 1306, 1364, 1365, 1309, 1427, 1428,
+ 1429, 1414, 654, 655, 656, 657, 658, 659, 660, 661,
+ 662, 663, 664, 665, 666, 667, 668, 669, 670, 671,
+ 649, 508, 514, 509, 510, 511, 512, 513, 0, 515,
+ 1397, 1301, 0, 1310, 1311, 398, 1406, 591, 592, 672,
+ 384, 486, 603, 335, 349, 352, 341, 361, 0, 362,
+ 337, 338, 343, 346, 347, 348, 353, 354, 358, 364,
+ 249, 210, 390, 399, 578, 312, 216, 217, 218, 524,
+ 525, 526, 527, 619, 620, 624, 205, 462, 463, 464,
+ 465, 292, 614, 309, 468, 467, 331, 332, 379, 449,
+ 540, 542, 553, 557, 559, 561, 567, 570, 541, 543,
+ 554, 558, 560, 562, 568, 571, 530, 532, 534, 536,
+ 549, 548, 545, 573, 574, 551, 556, 535, 547, 552,
+ 565, 572, 569, 529, 533, 537, 546, 564, 563, 544,
+ 555, 566, 550, 538, 531, 539, 1368, 196, 221, 368,
+ 1432, 454, 288, 650, 618, 484, 613, 206, 223, 1304,
+ 262, 1316, 1324, 0, 1330, 1338, 1339, 1352, 1355, 1356,
+ 1357, 1358, 1376, 1377, 1379, 1387, 1389, 1392, 1394, 1401,
+ 1415, 1435, 198, 200, 209, 222, 232, 236, 243, 261,
+ 276, 278, 285, 298, 310, 318, 319, 322, 328, 380,
+ 386, 387, 388, 389, 409, 410, 411, 414, 417, 418,
+ 421, 423, 424, 427, 431, 435, 436, 437, 439, 441,
+ 443, 455, 460, 474, 475, 476, 477, 478, 481, 482,
+ 488, 489, 490, 491, 492, 500, 501, 516, 586, 588,
+ 605, 625, 632, 480, 301, 302, 444, 445, 314, 315,
+ 646, 647, 300, 600, 633, 597, 645, 627, 438, 378,
+ 1367, 1373, 381, 281, 305, 320, 1382, 617, 502, 227,
+ 466, 290, 251, 1400, 1402, 211, 246, 230, 259, 274,
+ 277, 324, 391, 400, 429, 434, 296, 271, 244, 459,
+ 241, 485, 519, 520, 521, 523, 395, 266, 433, 1363,
+ 1391, 376, 576, 577, 316, 396, 0, 0, 0, 0,
+ 0, 0, 1421, 1405, 528, 0, 1347, 1424, 1315, 1334,
+ 1434, 1337, 1340, 1384, 1293, 1362, 416, 1331, 1319, 1288,
+ 1326, 1289, 1317, 1349, 270, 1314, 1407, 1366, 1423, 366,
+ 267, 1295, 1286, 204, 505, 1320, 430, 1336, 203, 1386,
+ 487, 252, 377, 374, 583, 282, 273, 269, 250, 317,
+ 385, 428, 518, 422, 1430, 370, 1372, 0, 497, 401,
+ 0, 0, 0, 1411, 1410, 1341, 1351, 1413, 1360, 1398,
+ 1346, 1385, 1303, 1371, 1425, 1332, 1381, 1426, 323, 248,
+ 325, 202, 413, 498, 286, 0, 0, 0, 0, 0,
+ 507, 959, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 238, 0, 0, 245, 0, 0, 0, 351, 360,
+ 359, 339, 340, 342, 344, 350, 357, 363, 336, 345,
+ 1328, 1378, 609, 1420, 1329, 1380, 265, 321, 272, 264,
+ 580, 1431, 1412, 1292, 1359, 1419, 1354, 596, 0, 0,
+ 229, 1422, 1353, 0, 1383, 0, 1437, 1287, 1374, 0,
+ 1290, 1294, 1433, 1417, 1323, 275, 0, 0, 0, 0,
+ 0, 0, 0, 1350, 1361, 1395, 1399, 1344, 0, 0,
+ 0, 0, 0, 0, 2410, 0, 1321, 0, 1370, 0,
+ 0, 0, 1299, 1291, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 1348, 0, 0, 0,
+ 0, 1302, 0, 1322, 1396, 0, 1285, 297, 1296, 402,
+ 257, 0, 453, 1403, 1416, 1345, 629, 1418, 1343, 1342,
+ 1390, 1300, 1409, 1335, 365, 1298, 330, 197, 225, 0,
+ 1333, 412, 461, 473, 1408, 1318, 1327, 253, 1325, 471,
+ 426, 604, 233, 284, 458, 432, 469, 440, 287, 1369,
+ 1388, 470, 372, 585, 450, 601, 630, 631, 263, 406,
+ 615, 522, 623, 648, 226, 260, 420, 506, 607, 494,
+ 397, 581, 582, 329, 493, 295, 201, 369, 636, 224,
+ 479, 371, 242, 231, 587, 612, 299, 289, 456, 643,
+ 213, 517, 598, 239, 483, 0, 0, 651, 247, 504,
+ 610, 599, 215, 594, 503, 393, 326, 327, 214, 0,
457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 1296, 620, 408, 584, 595, 394,
+ 652, 228, 622, 220, 1297, 621, 408, 584, 595, 394,
383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 1312, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 1403, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 1392, 1435, 425, 472, 240, 605,
- 496, 199, 1306, 1311, 1304, 0, 254, 255, 1374, 575,
- 1307, 1305, 1363, 1364, 1308, 1426, 1427, 1428, 1413, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 1396, 1300, 0,
- 1309, 1310, 398, 1405, 591, 592, 671, 384, 486, 602,
+ 447, 375, 448, 306, 308, 404, 403, 405, 207, 608,
+ 626, 0, 208, 0, 499, 611, 653, 452, 212, 234,
+ 235, 237, 1313, 279, 283, 291, 294, 303, 304, 313,
+ 367, 419, 446, 442, 451, 1404, 579, 602, 616, 628,
+ 634, 635, 637, 638, 639, 640, 641, 644, 642, 407,
+ 311, 495, 333, 373, 1393, 1436, 425, 472, 240, 606,
+ 496, 199, 1307, 1312, 1305, 0, 254, 255, 1375, 575,
+ 1308, 1306, 1364, 1365, 1309, 1427, 1428, 1429, 1414, 654,
+ 655, 656, 657, 658, 659, 660, 661, 662, 663, 664,
+ 665, 666, 667, 668, 669, 670, 671, 649, 508, 514,
+ 509, 510, 511, 512, 513, 0, 515, 1397, 1301, 0,
+ 1310, 1311, 398, 1406, 591, 592, 672, 384, 486, 603,
335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
+ 619, 620, 624, 205, 462, 463, 464, 465, 292, 614,
309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 1367, 196, 221, 368, 1431, 454, 288,
- 649, 617, 484, 612, 206, 223, 1303, 262, 1315, 1323,
- 0, 1329, 1337, 1338, 1351, 1354, 1355, 1356, 1357, 1375,
- 1376, 1378, 1386, 1388, 1391, 1393, 1400, 1414, 1434, 198,
+ 538, 531, 539, 1368, 196, 221, 368, 1432, 454, 288,
+ 650, 618, 484, 613, 206, 223, 1304, 262, 1316, 1324,
+ 0, 1330, 1338, 1339, 1352, 1355, 1356, 1357, 1358, 1376,
+ 1377, 1379, 1387, 1389, 1392, 1394, 1401, 1415, 1435, 198,
200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 1366, 1372, 381,
- 281, 305, 320, 1381, 616, 502, 227, 466, 290, 251,
- 1399, 1401, 211, 246, 230, 259, 274, 277, 324, 391,
+ 491, 492, 500, 501, 516, 586, 588, 605, 625, 632,
+ 480, 301, 302, 444, 445, 314, 315, 646, 647, 300,
+ 600, 633, 597, 645, 627, 438, 378, 1367, 1373, 381,
+ 281, 305, 320, 1382, 617, 502, 227, 466, 290, 251,
+ 1400, 1402, 211, 246, 230, 259, 274, 277, 324, 391,
400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 1362, 1390, 376, 576,
- 577, 316, 396, 0, 0, 0, 0, 0, 0, 1420,
- 1404, 528, 0, 1346, 1423, 1314, 1333, 1433, 1336, 1339,
- 1383, 1292, 1361, 416, 1330, 1318, 1287, 1325, 1288, 1316,
- 1348, 270, 1313, 1406, 1365, 1422, 366, 267, 1294, 1285,
- 204, 505, 1319, 430, 1335, 203, 1385, 487, 252, 377,
+ 520, 521, 523, 395, 266, 433, 1363, 1391, 376, 576,
+ 577, 316, 396, 0, 0, 0, 0, 0, 0, 1421,
+ 1405, 528, 0, 1347, 1424, 1315, 1334, 1434, 1337, 1340,
+ 1384, 1293, 1362, 416, 1331, 1319, 1288, 1326, 1289, 1317,
+ 1349, 270, 1314, 1407, 1366, 1423, 366, 267, 1295, 1286,
+ 204, 505, 1320, 430, 1336, 203, 1386, 487, 252, 377,
374, 583, 282, 273, 269, 250, 317, 385, 428, 518,
- 422, 1429, 370, 1371, 0, 497, 401, 0, 0, 0,
- 1410, 1409, 1340, 1350, 1412, 1359, 1397, 1345, 1384, 1302,
- 1370, 1424, 1331, 1380, 1425, 323, 248, 325, 202, 413,
- 498, 286, 0, 95, 0, 0, 0, 507, 723, 0,
+ 422, 1430, 370, 1372, 0, 497, 401, 0, 0, 0,
+ 1411, 1410, 1341, 1351, 1413, 1360, 1398, 1346, 1385, 1303,
+ 1371, 1425, 1332, 1381, 1426, 323, 248, 325, 202, 413,
+ 498, 286, 0, 95, 0, 0, 0, 507, 724, 0,
0, 0, 0, 0, 0, 0, 0, 0, 238, 0,
0, 245, 0, 0, 0, 351, 360, 359, 339, 340,
- 342, 344, 350, 357, 363, 336, 345, 1327, 1377, 608,
- 1419, 1328, 1379, 265, 321, 272, 264, 580, 1430, 1411,
- 1291, 1358, 1418, 1353, 0, 0, 229, 1421, 1352, 0,
- 1382, 0, 1436, 1286, 1373, 0, 1289, 1293, 1432, 1416,
- 1322, 275, 0, 0, 0, 0, 0, 0, 0, 1349,
- 1360, 1394, 1398, 1343, 0, 0, 0, 0, 0, 0,
- 0, 0, 1320, 0, 1369, 0, 0, 0, 1298, 1290,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 1347, 0, 0, 0, 0, 1301, 0, 1321,
- 1395, 0, 1284, 297, 1295, 402, 257, 0, 453, 1402,
- 1415, 1344, 628, 1417, 1342, 1341, 1389, 1299, 1408, 1334,
- 365, 1297, 330, 197, 225, 0, 1332, 412, 461, 473,
- 1407, 1317, 1326, 253, 1324, 471, 426, 603, 233, 284,
- 458, 432, 469, 440, 287, 1368, 1387, 470, 372, 585,
- 450, 600, 629, 630, 263, 406, 614, 522, 622, 647,
- 226, 260, 420, 506, 606, 494, 397, 581, 582, 329,
- 493, 295, 201, 369, 635, 224, 479, 371, 242, 231,
- 587, 611, 299, 289, 456, 642, 213, 517, 597, 239,
- 483, 0, 0, 650, 247, 504, 609, 598, 215, 594,
- 503, 393, 326, 327, 214, 0, 457, 268, 293, 0,
- 0, 258, 415, 589, 590, 256, 651, 228, 621, 220,
- 1296, 620, 408, 584, 595, 394, 383, 219, 593, 392,
- 382, 334, 355, 356, 280, 307, 447, 375, 448, 306,
- 308, 404, 403, 405, 207, 607, 625, 0, 208, 0,
- 499, 610, 652, 452, 212, 234, 235, 237, 1312, 279,
- 283, 291, 294, 303, 304, 313, 367, 419, 446, 442,
- 451, 1403, 579, 601, 615, 627, 633, 634, 636, 637,
- 638, 639, 640, 643, 641, 407, 311, 495, 333, 373,
- 1392, 1435, 425, 472, 240, 605, 496, 199, 1306, 1311,
- 1304, 0, 254, 255, 1374, 575, 1307, 1305, 1363, 1364,
- 1308, 1426, 1427, 1428, 1413, 653, 654, 655, 656, 657,
+ 342, 344, 350, 357, 363, 336, 345, 1328, 1378, 609,
+ 1420, 1329, 1380, 265, 321, 272, 264, 580, 1431, 1412,
+ 1292, 1359, 1419, 1354, 596, 0, 0, 229, 1422, 1353,
+ 0, 1383, 0, 1437, 1287, 1374, 0, 1290, 1294, 1433,
+ 1417, 1323, 275, 0, 0, 0, 0, 0, 0, 0,
+ 1350, 1361, 1395, 1399, 1344, 0, 0, 0, 0, 0,
+ 0, 0, 0, 1321, 0, 1370, 0, 0, 0, 1299,
+ 1291, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 1348, 0, 0, 0, 0, 1302, 0,
+ 1322, 1396, 0, 1285, 297, 1296, 402, 257, 0, 453,
+ 1403, 1416, 1345, 629, 1418, 1343, 1342, 1390, 1300, 1409,
+ 1335, 365, 1298, 330, 197, 225, 0, 1333, 412, 461,
+ 473, 1408, 1318, 1327, 253, 1325, 471, 426, 604, 233,
+ 284, 458, 432, 469, 440, 287, 1369, 1388, 470, 372,
+ 585, 450, 601, 630, 631, 263, 406, 615, 522, 623,
+ 648, 226, 260, 420, 506, 607, 494, 397, 581, 582,
+ 329, 493, 295, 201, 369, 636, 224, 479, 371, 242,
+ 231, 587, 612, 299, 289, 456, 643, 213, 517, 598,
+ 239, 483, 0, 0, 651, 247, 504, 610, 599, 215,
+ 594, 503, 393, 326, 327, 214, 0, 457, 268, 293,
+ 0, 0, 258, 415, 589, 590, 256, 652, 228, 622,
+ 220, 1297, 621, 408, 584, 595, 394, 383, 219, 593,
+ 392, 382, 334, 355, 356, 280, 307, 447, 375, 448,
+ 306, 308, 404, 403, 405, 207, 608, 626, 0, 208,
+ 0, 499, 611, 653, 452, 212, 234, 235, 237, 1313,
+ 279, 283, 291, 294, 303, 304, 313, 367, 419, 446,
+ 442, 451, 1404, 579, 602, 616, 628, 634, 635, 637,
+ 638, 639, 640, 641, 644, 642, 407, 311, 495, 333,
+ 373, 1393, 1436, 425, 472, 240, 606, 496, 199, 1307,
+ 1312, 1305, 0, 254, 255, 1375, 575, 1308, 1306, 1364,
+ 1365, 1309, 1427, 1428, 1429, 1414, 654, 655, 656, 657,
658, 659, 660, 661, 662, 663, 664, 665, 666, 667,
- 668, 669, 670, 648, 508, 514, 509, 510, 511, 512,
- 513, 0, 515, 1396, 1300, 0, 1309, 1310, 398, 1405,
- 591, 592, 671, 384, 486, 602, 335, 349, 352, 341,
- 361, 0, 362, 337, 338, 343, 346, 347, 348, 353,
- 354, 358, 364, 249, 210, 390, 399, 578, 312, 216,
- 217, 218, 524, 525, 526, 527, 618, 619, 623, 205,
- 462, 463, 464, 465, 292, 613, 309, 468, 467, 331,
- 332, 379, 449, 540, 542, 553, 557, 559, 561, 567,
- 570, 541, 543, 554, 558, 560, 562, 568, 571, 530,
- 532, 534, 536, 549, 548, 545, 573, 574, 551, 556,
- 535, 547, 552, 565, 572, 569, 529, 533, 537, 546,
- 564, 563, 544, 555, 566, 550, 538, 531, 539, 1367,
- 196, 221, 368, 1431, 454, 288, 649, 617, 484, 612,
- 206, 223, 1303, 262, 1315, 1323, 0, 1329, 1337, 1338,
- 1351, 1354, 1355, 1356, 1357, 1375, 1376, 1378, 1386, 1388,
- 1391, 1393, 1400, 1414, 1434, 198, 200, 209, 222, 232,
- 236, 243, 261, 276, 278, 285, 298, 310, 318, 319,
- 322, 328, 380, 386, 387, 388, 389, 409, 410, 411,
- 414, 417, 418, 421, 423, 424, 427, 431, 435, 436,
- 437, 439, 441, 443, 455, 460, 474, 475, 476, 477,
- 478, 481, 482, 488, 489, 490, 491, 492, 500, 501,
- 516, 586, 588, 604, 624, 631, 480, 301, 302, 444,
- 445, 314, 315, 645, 646, 300, 599, 632, 596, 644,
- 626, 438, 378, 1366, 1372, 381, 281, 305, 320, 1381,
- 616, 502, 227, 466, 290, 251, 1399, 1401, 211, 246,
- 230, 259, 274, 277, 324, 391, 400, 429, 434, 296,
- 271, 244, 459, 241, 485, 519, 520, 521, 523, 395,
- 266, 433, 1362, 1390, 376, 576, 577, 316, 396, 0,
- 0, 0, 0, 0, 0, 1420, 1404, 528, 0, 1346,
- 1423, 1314, 1333, 1433, 1336, 1339, 1383, 1292, 1361, 416,
- 1330, 1318, 1287, 1325, 1288, 1316, 1348, 270, 1313, 1406,
- 1365, 1422, 366, 267, 1294, 1285, 204, 505, 1319, 430,
- 1335, 203, 1385, 487, 252, 377, 374, 583, 282, 273,
- 269, 250, 317, 385, 428, 518, 422, 1429, 370, 1371,
- 0, 497, 401, 0, 0, 0, 1410, 1409, 1340, 1350,
- 1412, 1359, 1397, 1345, 1384, 1302, 1370, 1424, 1331, 1380,
- 1425, 323, 248, 325, 202, 413, 498, 286, 0, 0,
- 0, 0, 0, 507, 194, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 238, 0, 0, 245, 0, 0,
- 0, 351, 360, 359, 339, 340, 342, 344, 350, 357,
- 363, 336, 345, 1327, 1377, 608, 1419, 1328, 1379, 265,
- 321, 272, 264, 580, 1430, 1411, 1291, 1358, 1418, 1353,
- 0, 0, 229, 1421, 1352, 0, 1382, 0, 1436, 1286,
- 1373, 0, 1289, 1293, 1432, 1416, 1322, 275, 0, 0,
- 0, 0, 0, 0, 0, 1349, 1360, 1394, 1398, 1343,
- 0, 0, 0, 0, 0, 0, 0, 0, 1320, 0,
- 1369, 0, 0, 0, 1298, 1290, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 1347, 0,
- 0, 0, 0, 1301, 0, 1321, 1395, 0, 1284, 297,
- 1295, 402, 257, 0, 453, 1402, 1415, 1344, 628, 1417,
- 1342, 1341, 1389, 1299, 1408, 1334, 365, 1297, 330, 197,
- 225, 0, 1332, 412, 461, 473, 1407, 1317, 1326, 253,
- 1324, 471, 426, 603, 233, 284, 458, 432, 469, 440,
- 287, 1368, 1387, 470, 372, 585, 450, 600, 629, 630,
- 263, 406, 614, 522, 622, 647, 226, 260, 420, 506,
- 606, 494, 397, 581, 582, 329, 493, 295, 201, 369,
- 635, 224, 479, 371, 242, 231, 587, 611, 299, 289,
- 456, 642, 213, 517, 597, 239, 483, 0, 0, 650,
- 247, 504, 609, 598, 215, 594, 503, 393, 326, 327,
- 214, 0, 457, 268, 293, 0, 0, 258, 415, 589,
- 590, 256, 651, 228, 621, 220, 1296, 620, 408, 584,
- 595, 394, 383, 219, 593, 392, 382, 334, 355, 356,
- 280, 307, 447, 375, 448, 306, 308, 404, 403, 405,
- 207, 607, 625, 0, 208, 0, 499, 610, 652, 452,
- 212, 234, 235, 237, 1312, 279, 283, 291, 294, 303,
- 304, 313, 367, 419, 446, 442, 451, 1403, 579, 601,
- 615, 627, 633, 634, 636, 637, 638, 639, 640, 643,
- 641, 407, 311, 495, 333, 373, 1392, 1435, 425, 472,
- 240, 605, 496, 199, 1306, 1311, 1304, 0, 254, 255,
- 1374, 575, 1307, 1305, 1363, 1364, 1308, 1426, 1427, 1428,
- 1413, 653, 654, 655, 656, 657, 658, 659, 660, 661,
- 662, 663, 664, 665, 666, 667, 668, 669, 670, 648,
- 508, 514, 509, 510, 511, 512, 513, 0, 515, 1396,
- 1300, 0, 1309, 1310, 398, 1405, 591, 592, 671, 384,
- 486, 602, 335, 349, 352, 341, 361, 0, 362, 337,
- 338, 343, 346, 347, 348, 353, 354, 358, 364, 249,
- 210, 390, 399, 578, 312, 216, 217, 218, 524, 525,
- 526, 527, 618, 619, 623, 205, 462, 463, 464, 465,
- 292, 613, 309, 468, 467, 331, 332, 379, 449, 540,
- 542, 553, 557, 559, 561, 567, 570, 541, 543, 554,
- 558, 560, 562, 568, 571, 530, 532, 534, 536, 549,
- 548, 545, 573, 574, 551, 556, 535, 547, 552, 565,
- 572, 569, 529, 533, 537, 546, 564, 563, 544, 555,
- 566, 550, 538, 531, 539, 1367, 196, 221, 368, 1431,
- 454, 288, 649, 617, 484, 612, 206, 223, 1303, 262,
- 1315, 1323, 0, 1329, 1337, 1338, 1351, 1354, 1355, 1356,
- 1357, 1375, 1376, 1378, 1386, 1388, 1391, 1393, 1400, 1414,
- 1434, 198, 200, 209, 222, 232, 236, 243, 261, 276,
- 278, 285, 298, 310, 318, 319, 322, 328, 380, 386,
- 387, 388, 389, 409, 410, 411, 414, 417, 418, 421,
- 423, 424, 427, 431, 435, 436, 437, 439, 441, 443,
- 455, 460, 474, 475, 476, 477, 478, 481, 482, 488,
- 489, 490, 491, 492, 500, 501, 516, 586, 588, 604,
- 624, 631, 480, 301, 302, 444, 445, 314, 315, 645,
- 646, 300, 599, 632, 596, 644, 626, 438, 378, 1366,
- 1372, 381, 281, 305, 320, 1381, 616, 502, 227, 466,
- 290, 251, 1399, 1401, 211, 246, 230, 259, 274, 277,
- 324, 391, 400, 429, 434, 296, 271, 244, 459, 241,
- 485, 519, 520, 521, 523, 395, 266, 433, 1362, 1390,
- 376, 576, 577, 316, 396, 0, 0, 0, 0, 0,
- 0, 1420, 1404, 528, 0, 1346, 1423, 1314, 1333, 1433,
- 1336, 1339, 1383, 1292, 1361, 416, 1330, 1318, 1287, 1325,
- 1288, 1316, 1348, 270, 1313, 1406, 1365, 1422, 366, 267,
- 1294, 1285, 204, 505, 1319, 430, 1335, 203, 1385, 487,
- 252, 377, 374, 583, 282, 273, 269, 250, 317, 385,
- 428, 518, 422, 1429, 370, 1371, 0, 497, 401, 0,
- 0, 0, 1410, 1409, 1340, 1350, 1412, 1359, 1397, 1345,
- 1384, 1302, 1370, 1424, 1331, 1380, 1425, 323, 248, 325,
- 202, 413, 498, 286, 0, 0, 0, 0, 0, 507,
- 723, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 238, 0, 0, 245, 0, 0, 0, 351, 360, 359,
- 339, 340, 342, 344, 350, 357, 363, 336, 345, 1327,
- 1377, 608, 1419, 1328, 1379, 265, 321, 272, 264, 580,
- 1430, 1411, 1291, 1358, 1418, 1353, 0, 0, 229, 1421,
- 1352, 0, 1382, 0, 1436, 1286, 1373, 0, 1289, 1293,
- 1432, 1416, 1322, 275, 0, 0, 0, 0, 0, 0,
- 0, 1349, 1360, 1394, 1398, 1343, 0, 0, 0, 0,
- 0, 0, 0, 0, 1320, 0, 1369, 0, 0, 0,
- 1298, 1290, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 1347, 0, 0, 0, 0, 1301,
- 0, 1321, 1395, 0, 1284, 297, 1295, 402, 257, 0,
- 453, 1402, 1415, 1344, 628, 1417, 1342, 1341, 1389, 1299,
- 1408, 1334, 365, 1297, 330, 197, 225, 0, 1332, 412,
- 461, 473, 1407, 1317, 1326, 253, 1324, 471, 426, 603,
- 233, 284, 458, 432, 469, 440, 287, 1368, 1387, 470,
- 372, 585, 450, 600, 629, 630, 263, 406, 614, 522,
- 622, 647, 226, 260, 420, 506, 606, 494, 397, 581,
- 582, 329, 493, 295, 201, 369, 635, 224, 479, 371,
- 242, 231, 587, 611, 299, 289, 456, 642, 213, 517,
- 597, 239, 483, 0, 0, 650, 247, 504, 609, 598,
- 215, 594, 503, 393, 326, 327, 214, 0, 457, 268,
- 293, 0, 0, 258, 415, 589, 590, 256, 651, 228,
- 621, 220, 1296, 620, 408, 584, 595, 394, 383, 219,
- 593, 392, 382, 334, 355, 356, 280, 307, 447, 375,
- 448, 306, 308, 404, 403, 405, 207, 607, 625, 0,
- 208, 0, 499, 610, 652, 452, 212, 234, 235, 237,
- 1312, 279, 283, 291, 294, 303, 304, 313, 367, 419,
- 446, 442, 451, 1403, 579, 601, 615, 627, 633, 634,
- 636, 637, 638, 639, 640, 643, 641, 407, 311, 495,
- 333, 373, 1392, 1435, 425, 472, 240, 605, 496, 199,
- 1306, 1311, 1304, 0, 254, 255, 1374, 575, 1307, 1305,
- 1363, 1364, 1308, 1426, 1427, 1428, 1413, 653, 654, 655,
- 656, 657, 658, 659, 660, 661, 662, 663, 664, 665,
- 666, 667, 668, 669, 670, 648, 508, 514, 509, 510,
- 511, 512, 513, 0, 515, 1396, 1300, 0, 1309, 1310,
- 398, 1405, 591, 592, 671, 384, 486, 602, 335, 349,
- 352, 341, 361, 0, 362, 337, 338, 343, 346, 347,
- 348, 353, 354, 358, 364, 249, 210, 390, 399, 578,
- 312, 216, 217, 218, 524, 525, 526, 527, 618, 619,
- 623, 205, 462, 463, 464, 465, 292, 613, 309, 468,
- 467, 331, 332, 379, 449, 540, 542, 553, 557, 559,
- 561, 567, 570, 541, 543, 554, 558, 560, 562, 568,
- 571, 530, 532, 534, 536, 549, 548, 545, 573, 574,
- 551, 556, 535, 547, 552, 565, 572, 569, 529, 533,
- 537, 546, 564, 563, 544, 555, 566, 550, 538, 531,
- 539, 1367, 196, 221, 368, 1431, 454, 288, 649, 617,
- 484, 612, 206, 223, 1303, 262, 1315, 1323, 0, 1329,
- 1337, 1338, 1351, 1354, 1355, 1356, 1357, 1375, 1376, 1378,
- 1386, 1388, 1391, 1393, 1400, 1414, 1434, 198, 200, 209,
- 222, 232, 236, 243, 261, 276, 278, 285, 298, 310,
- 318, 319, 322, 328, 380, 386, 387, 388, 389, 409,
- 410, 411, 414, 417, 418, 421, 423, 424, 427, 431,
- 435, 436, 437, 439, 441, 443, 455, 460, 474, 475,
- 476, 477, 478, 481, 482, 488, 489, 490, 491, 492,
- 500, 501, 516, 586, 588, 604, 624, 631, 480, 301,
- 302, 444, 445, 314, 315, 645, 646, 300, 599, 632,
- 596, 644, 626, 438, 378, 1366, 1372, 381, 281, 305,
- 320, 1381, 616, 502, 227, 466, 290, 251, 1399, 1401,
- 211, 246, 230, 259, 274, 277, 324, 391, 400, 429,
- 434, 296, 271, 244, 459, 241, 485, 519, 520, 521,
- 523, 395, 266, 433, 1362, 1390, 376, 576, 577, 316,
- 396, 0, 0, 0, 0, 0, 0, 1420, 1404, 528,
- 0, 1346, 1423, 1314, 1333, 1433, 1336, 1339, 1383, 1292,
- 1361, 416, 1330, 1318, 1287, 1325, 1288, 1316, 1348, 270,
- 1313, 1406, 1365, 1422, 366, 267, 1294, 1285, 204, 505,
- 1319, 430, 1335, 203, 1385, 487, 252, 377, 374, 583,
- 282, 273, 269, 250, 317, 385, 428, 518, 422, 1429,
- 370, 1371, 0, 497, 401, 0, 0, 0, 1410, 1409,
- 1340, 1350, 1412, 1359, 1397, 1345, 1384, 1302, 1370, 1424,
- 1331, 1380, 1425, 323, 248, 325, 202, 413, 498, 286,
- 0, 0, 0, 0, 0, 507, 958, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 238, 0, 0, 245,
- 0, 0, 0, 351, 360, 359, 339, 340, 342, 344,
- 350, 357, 363, 336, 345, 1327, 1377, 608, 1419, 1328,
- 1379, 265, 321, 272, 264, 580, 1430, 1411, 1291, 1358,
- 1418, 1353, 0, 0, 229, 1421, 1352, 0, 1382, 0,
- 1436, 1286, 1373, 0, 1289, 1293, 1432, 1416, 1322, 275,
- 0, 0, 0, 0, 0, 0, 0, 1349, 1360, 1394,
- 1398, 1343, 0, 0, 0, 0, 0, 0, 0, 0,
- 1320, 0, 1369, 0, 0, 0, 1298, 1290, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 1347, 0, 0, 0, 0, 1301, 0, 1321, 1395, 0,
- 1284, 297, 1295, 402, 257, 0, 453, 1402, 1415, 1344,
- 628, 1417, 1342, 1341, 1389, 1299, 1408, 1334, 365, 1297,
- 330, 197, 225, 0, 1332, 412, 461, 473, 1407, 1317,
- 1326, 253, 1324, 471, 426, 603, 233, 284, 458, 432,
- 469, 440, 287, 1368, 1387, 470, 372, 585, 450, 600,
- 629, 630, 263, 406, 614, 522, 622, 647, 226, 260,
- 420, 506, 606, 494, 397, 581, 582, 329, 493, 295,
- 201, 369, 635, 224, 479, 371, 242, 231, 587, 611,
- 299, 289, 456, 642, 213, 517, 597, 239, 483, 0,
- 0, 650, 247, 504, 609, 598, 215, 594, 503, 393,
+ 668, 669, 670, 671, 649, 508, 514, 509, 510, 511,
+ 512, 513, 0, 515, 1397, 1301, 0, 1310, 1311, 398,
+ 1406, 591, 592, 672, 384, 486, 603, 335, 349, 352,
+ 341, 361, 0, 362, 337, 338, 343, 346, 347, 348,
+ 353, 354, 358, 364, 249, 210, 390, 399, 578, 312,
+ 216, 217, 218, 524, 525, 526, 527, 619, 620, 624,
+ 205, 462, 463, 464, 465, 292, 614, 309, 468, 467,
+ 331, 332, 379, 449, 540, 542, 553, 557, 559, 561,
+ 567, 570, 541, 543, 554, 558, 560, 562, 568, 571,
+ 530, 532, 534, 536, 549, 548, 545, 573, 574, 551,
+ 556, 535, 547, 552, 565, 572, 569, 529, 533, 537,
+ 546, 564, 563, 544, 555, 566, 550, 538, 531, 539,
+ 1368, 196, 221, 368, 1432, 454, 288, 650, 618, 484,
+ 613, 206, 223, 1304, 262, 1316, 1324, 0, 1330, 1338,
+ 1339, 1352, 1355, 1356, 1357, 1358, 1376, 1377, 1379, 1387,
+ 1389, 1392, 1394, 1401, 1415, 1435, 198, 200, 209, 222,
+ 232, 236, 243, 261, 276, 278, 285, 298, 310, 318,
+ 319, 322, 328, 380, 386, 387, 388, 389, 409, 410,
+ 411, 414, 417, 418, 421, 423, 424, 427, 431, 435,
+ 436, 437, 439, 441, 443, 455, 460, 474, 475, 476,
+ 477, 478, 481, 482, 488, 489, 490, 491, 492, 500,
+ 501, 516, 586, 588, 605, 625, 632, 480, 301, 302,
+ 444, 445, 314, 315, 646, 647, 300, 600, 633, 597,
+ 645, 627, 438, 378, 1367, 1373, 381, 281, 305, 320,
+ 1382, 617, 502, 227, 466, 290, 251, 1400, 1402, 211,
+ 246, 230, 259, 274, 277, 324, 391, 400, 429, 434,
+ 296, 271, 244, 459, 241, 485, 519, 520, 521, 523,
+ 395, 266, 433, 1363, 1391, 376, 576, 577, 316, 396,
+ 0, 0, 0, 0, 0, 0, 1421, 1405, 528, 0,
+ 1347, 1424, 1315, 1334, 1434, 1337, 1340, 1384, 1293, 1362,
+ 416, 1331, 1319, 1288, 1326, 1289, 1317, 1349, 270, 1314,
+ 1407, 1366, 1423, 366, 267, 1295, 1286, 204, 505, 1320,
+ 430, 1336, 203, 1386, 487, 252, 377, 374, 583, 282,
+ 273, 269, 250, 317, 385, 428, 518, 422, 1430, 370,
+ 1372, 0, 497, 401, 0, 0, 0, 1411, 1410, 1341,
+ 1351, 1413, 1360, 1398, 1346, 1385, 1303, 1371, 1425, 1332,
+ 1381, 1426, 323, 248, 325, 202, 413, 498, 286, 0,
+ 0, 0, 0, 0, 507, 194, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 238, 0, 0, 245, 0,
+ 0, 0, 351, 360, 359, 339, 340, 342, 344, 350,
+ 357, 363, 336, 345, 1328, 1378, 609, 1420, 1329, 1380,
+ 265, 321, 272, 264, 580, 1431, 1412, 1292, 1359, 1419,
+ 1354, 596, 0, 0, 229, 1422, 1353, 0, 1383, 0,
+ 1437, 1287, 1374, 0, 1290, 1294, 1433, 1417, 1323, 275,
+ 0, 0, 0, 0, 0, 0, 0, 1350, 1361, 1395,
+ 1399, 1344, 0, 0, 0, 0, 0, 0, 0, 0,
+ 1321, 0, 1370, 0, 0, 0, 1299, 1291, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 1348, 0, 0, 0, 0, 1302, 0, 1322, 1396, 0,
+ 1285, 297, 1296, 402, 257, 0, 453, 1403, 1416, 1345,
+ 629, 1418, 1343, 1342, 1390, 1300, 1409, 1335, 365, 1298,
+ 330, 197, 225, 0, 1333, 412, 461, 473, 1408, 1318,
+ 1327, 253, 1325, 471, 426, 604, 233, 284, 458, 432,
+ 469, 440, 287, 1369, 1388, 470, 372, 585, 450, 601,
+ 630, 631, 263, 406, 615, 522, 623, 648, 226, 260,
+ 420, 506, 607, 494, 397, 581, 582, 329, 493, 295,
+ 201, 369, 636, 224, 479, 371, 242, 231, 587, 612,
+ 299, 289, 456, 643, 213, 517, 598, 239, 483, 0,
+ 0, 651, 247, 504, 610, 599, 215, 594, 503, 393,
326, 327, 214, 0, 457, 268, 293, 0, 0, 258,
- 415, 589, 590, 256, 651, 228, 621, 220, 1296, 620,
+ 415, 589, 590, 256, 652, 228, 622, 220, 1297, 621,
408, 584, 595, 394, 383, 219, 593, 392, 382, 334,
355, 356, 280, 307, 447, 375, 448, 306, 308, 404,
- 403, 405, 207, 607, 625, 0, 208, 0, 499, 610,
- 652, 452, 212, 234, 235, 237, 1312, 279, 283, 291,
- 294, 303, 304, 313, 367, 419, 446, 442, 451, 1403,
- 579, 601, 615, 627, 633, 634, 636, 637, 638, 639,
- 640, 643, 641, 407, 311, 495, 333, 373, 1392, 1435,
- 425, 472, 240, 605, 496, 199, 1306, 1311, 1304, 0,
- 254, 255, 1374, 575, 1307, 1305, 1363, 1364, 1308, 1426,
- 1427, 1428, 1413, 653, 654, 655, 656, 657, 658, 659,
- 660, 661, 662, 663, 664, 665, 666, 667, 668, 669,
- 670, 648, 508, 514, 509, 510, 511, 512, 513, 0,
- 515, 1396, 1300, 0, 1309, 1310, 398, 1405, 591, 592,
- 671, 384, 486, 602, 335, 349, 352, 341, 361, 0,
+ 403, 405, 207, 608, 626, 0, 208, 0, 499, 611,
+ 653, 452, 212, 234, 235, 237, 1313, 279, 283, 291,
+ 294, 303, 304, 313, 367, 419, 446, 442, 451, 1404,
+ 579, 602, 616, 628, 634, 635, 637, 638, 639, 640,
+ 641, 644, 642, 407, 311, 495, 333, 373, 1393, 1436,
+ 425, 472, 240, 606, 496, 199, 1307, 1312, 1305, 0,
+ 254, 255, 1375, 575, 1308, 1306, 1364, 1365, 1309, 1427,
+ 1428, 1429, 1414, 654, 655, 656, 657, 658, 659, 660,
+ 661, 662, 663, 664, 665, 666, 667, 668, 669, 670,
+ 671, 649, 508, 514, 509, 510, 511, 512, 513, 0,
+ 515, 1397, 1301, 0, 1310, 1311, 398, 1406, 591, 592,
+ 672, 384, 486, 603, 335, 349, 352, 341, 361, 0,
362, 337, 338, 343, 346, 347, 348, 353, 354, 358,
364, 249, 210, 390, 399, 578, 312, 216, 217, 218,
- 524, 525, 526, 527, 618, 619, 623, 205, 462, 463,
- 464, 465, 292, 613, 309, 468, 467, 331, 332, 379,
+ 524, 525, 526, 527, 619, 620, 624, 205, 462, 463,
+ 464, 465, 292, 614, 309, 468, 467, 331, 332, 379,
449, 540, 542, 553, 557, 559, 561, 567, 570, 541,
543, 554, 558, 560, 562, 568, 571, 530, 532, 534,
536, 549, 548, 545, 573, 574, 551, 556, 535, 547,
552, 565, 572, 569, 529, 533, 537, 546, 564, 563,
- 544, 555, 566, 550, 538, 531, 539, 1367, 196, 221,
- 368, 1431, 454, 288, 649, 617, 484, 612, 206, 223,
- 1303, 262, 1315, 1323, 0, 1329, 1337, 1338, 1351, 1354,
- 1355, 1356, 1357, 1375, 1376, 1378, 1386, 1388, 1391, 1393,
- 1400, 1414, 1434, 198, 200, 209, 222, 232, 236, 243,
+ 544, 555, 566, 550, 538, 531, 539, 1368, 196, 221,
+ 368, 1432, 454, 288, 650, 618, 484, 613, 206, 223,
+ 1304, 262, 1316, 1324, 0, 1330, 1338, 1339, 1352, 1355,
+ 1356, 1357, 1358, 1376, 1377, 1379, 1387, 1389, 1392, 1394,
+ 1401, 1415, 1435, 198, 200, 209, 222, 232, 236, 243,
261, 276, 278, 285, 298, 310, 318, 319, 322, 328,
380, 386, 387, 388, 389, 409, 410, 411, 414, 417,
418, 421, 423, 424, 427, 431, 435, 436, 437, 439,
441, 443, 455, 460, 474, 475, 476, 477, 478, 481,
482, 488, 489, 490, 491, 492, 500, 501, 516, 586,
- 588, 604, 624, 631, 480, 301, 302, 444, 445, 314,
- 315, 645, 646, 300, 599, 632, 596, 644, 626, 438,
- 378, 1366, 1372, 381, 281, 305, 320, 1381, 616, 502,
- 227, 466, 290, 251, 1399, 1401, 211, 246, 230, 259,
+ 588, 605, 625, 632, 480, 301, 302, 444, 445, 314,
+ 315, 646, 647, 300, 600, 633, 597, 645, 627, 438,
+ 378, 1367, 1373, 381, 281, 305, 320, 1382, 617, 502,
+ 227, 466, 290, 251, 1400, 1402, 211, 246, 230, 259,
274, 277, 324, 391, 400, 429, 434, 296, 271, 244,
459, 241, 485, 519, 520, 521, 523, 395, 266, 433,
- 1362, 1390, 376, 576, 577, 316, 396, 0, 0, 0,
- 0, 0, 0, 0, 0, 528, 0, 776, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 763, 0, 0, 0, 270, 768, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 775, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 770,
- 771, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 95, 0, 0,
- 1022, 507, 958, 747, 924, 962, 1023, 975, 976, 977,
- 963, 0, 238, 964, 965, 245, 966, 0, 923, 806,
- 808, 807, 873, 874, 875, 876, 877, 878, 879, 809,
- 810, 804, 971, 608, 978, 979, 0, 265, 321, 272,
- 264, 580, 0, 0, 2230, 2231, 2232, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 743, 760,
- 0, 774, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 757, 758, 0, 0, 0, 0, 918, 0,
- 759, 0, 0, 767, 980, 981, 982, 983, 984, 985,
- 986, 987, 988, 989, 990, 991, 992, 993, 994, 995,
- 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005,
- 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015,
- 1016, 1017, 1018, 1019, 1020, 1021, 769, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 917, 0, 0, 628, 0, 0, 915,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 968, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 969, 970, 256,
- 651, 814, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 822, 823, 280, 307,
- 899, 898, 897, 306, 308, 895, 896, 894, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 905, 927, 916, 780, 781, 906, 907, 931, 908,
- 783, 784, 928, 929, 777, 778, 782, 930, 932, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 919, 766, 765,
- 0, 772, 773, 0, 802, 803, 805, 811, 812, 813,
- 824, 871, 872, 880, 882, 883, 881, 884, 885, 886,
- 889, 890, 891, 892, 887, 888, 893, 785, 789, 786,
- 787, 788, 800, 790, 791, 792, 793, 794, 795, 796,
- 797, 798, 799, 801, 942, 943, 944, 945, 946, 947,
- 817, 821, 820, 818, 819, 815, 816, 843, 842, 844,
- 845, 846, 847, 848, 849, 851, 850, 852, 853, 854,
- 855, 856, 857, 825, 826, 829, 830, 828, 827, 831,
- 840, 841, 832, 833, 834, 835, 836, 837, 839, 838,
- 858, 859, 860, 861, 862, 864, 863, 867, 868, 866,
- 865, 870, 869, 764, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 933, 262, 934, 0,
- 0, 938, 0, 0, 0, 940, 939, 0, 941, 903,
- 902, 0, 0, 935, 936, 0, 937, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 948, 949, 950, 951, 952, 953, 954, 955, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 973, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 776, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 763, 0, 0, 0, 270, 768, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 775, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 770,
- 771, 0, 0, 0, 0, 0, 0, 2437, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 95, 0, 0,
- 1022, 507, 958, 747, 924, 962, 1023, 975, 976, 977,
- 963, 0, 238, 964, 965, 245, 966, 0, 923, 806,
- 808, 807, 873, 874, 875, 876, 877, 878, 879, 809,
- 810, 804, 971, 608, 978, 979, 2438, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 743, 760,
- 0, 774, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 757, 758, 0, 0, 0, 0, 918, 0,
- 759, 0, 0, 767, 980, 981, 982, 983, 984, 985,
- 986, 987, 988, 989, 990, 991, 992, 993, 994, 995,
- 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005,
- 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015,
- 1016, 1017, 1018, 1019, 1020, 1021, 769, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 917, 0, 0, 628, 0, 0, 915,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 968, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 969, 970, 256,
- 651, 814, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 822, 823, 280, 307,
- 899, 898, 897, 306, 308, 895, 896, 894, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 905, 927, 916, 780, 781, 906, 907, 931, 908,
- 783, 784, 928, 929, 777, 778, 782, 930, 932, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 919, 766, 765,
- 0, 772, 773, 0, 802, 803, 805, 811, 812, 813,
- 824, 871, 872, 880, 882, 883, 881, 884, 885, 886,
- 889, 890, 891, 892, 887, 888, 893, 785, 789, 786,
- 787, 788, 800, 790, 791, 792, 793, 794, 795, 796,
- 797, 798, 799, 801, 942, 943, 944, 945, 946, 947,
- 817, 821, 820, 818, 819, 815, 816, 843, 842, 844,
- 845, 846, 847, 848, 849, 851, 850, 852, 853, 854,
- 855, 856, 857, 825, 826, 829, 830, 828, 827, 831,
- 840, 841, 832, 833, 834, 835, 836, 837, 839, 838,
- 858, 859, 860, 861, 862, 864, 863, 867, 868, 866,
- 865, 870, 869, 764, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 933, 262, 934, 0,
- 0, 938, 0, 0, 0, 940, 939, 0, 941, 903,
- 902, 0, 0, 935, 936, 0, 937, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 948, 949, 950, 951, 952, 953, 954, 955, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 973, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 86, 528, 0, 776, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 763, 0, 0, 0, 270, 768, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 775, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 770,
- 771, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 95, 0, 0,
- 1022, 507, 958, 747, 924, 962, 1023, 975, 976, 977,
- 963, 0, 238, 964, 965, 245, 966, 0, 923, 806,
- 808, 807, 873, 874, 875, 876, 877, 878, 879, 809,
- 810, 804, 971, 608, 978, 979, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 743, 760,
- 0, 774, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 757, 758, 0, 0, 0, 0, 918, 0,
- 759, 0, 0, 767, 980, 981, 982, 983, 984, 985,
- 986, 987, 988, 989, 990, 991, 992, 993, 994, 995,
- 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005,
- 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015,
- 1016, 1017, 1018, 1019, 1020, 1021, 769, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 917, 0, 0, 628, 0, 0, 915,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 968, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 969, 970, 256,
- 651, 814, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 822, 823, 280, 307,
- 899, 898, 897, 306, 308, 895, 896, 894, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 905, 927, 916, 780, 781, 906, 907, 931, 908,
- 783, 784, 928, 929, 777, 778, 782, 930, 932, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 919, 766, 765,
- 0, 772, 773, 0, 802, 803, 805, 811, 812, 813,
- 824, 871, 872, 880, 882, 883, 881, 884, 885, 886,
- 889, 890, 891, 892, 887, 888, 893, 785, 789, 786,
- 787, 788, 800, 790, 791, 792, 793, 794, 795, 796,
- 797, 798, 799, 801, 942, 943, 944, 945, 946, 947,
- 817, 821, 820, 818, 819, 815, 816, 843, 842, 844,
- 845, 846, 847, 848, 849, 851, 850, 852, 853, 854,
- 855, 856, 857, 825, 826, 829, 830, 828, 827, 831,
- 840, 841, 832, 833, 834, 835, 836, 837, 839, 838,
- 858, 859, 860, 861, 862, 864, 863, 867, 868, 866,
- 865, 870, 869, 764, 196, 221, 368, 94, 454, 288,
- 649, 617, 484, 612, 206, 223, 933, 262, 934, 0,
- 0, 938, 0, 0, 0, 940, 939, 0, 941, 903,
- 902, 0, 0, 935, 936, 0, 937, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 948, 949, 950, 951, 952, 953, 954, 955, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 973, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 776, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 763, 0, 0, 0, 270, 768, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 775, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 770,
- 771, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 95, 0, 0,
- 1022, 507, 958, 747, 924, 962, 1023, 975, 976, 977,
- 963, 0, 238, 964, 965, 245, 966, 0, 923, 806,
- 808, 807, 873, 874, 875, 876, 877, 878, 879, 809,
- 810, 804, 971, 608, 978, 979, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 743, 760,
- 0, 774, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 757, 758, 0, 0, 0, 0, 918, 0,
- 759, 0, 0, 767, 980, 981, 982, 983, 984, 985,
- 986, 987, 988, 989, 990, 991, 992, 993, 994, 995,
- 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005,
- 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015,
- 1016, 1017, 1018, 1019, 1020, 1021, 769, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 917, 0, 0, 628, 0, 0, 915,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 968, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 4093,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 969, 970, 256,
- 651, 814, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 822, 823, 280, 307,
- 899, 898, 897, 306, 308, 895, 896, 894, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 905, 927, 916, 780, 781, 906, 907, 931, 908,
- 783, 784, 928, 929, 777, 778, 782, 930, 932, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 919, 766, 765,
- 0, 772, 773, 0, 802, 803, 805, 811, 812, 813,
- 824, 871, 872, 880, 882, 883, 881, 884, 885, 886,
- 889, 890, 891, 892, 887, 888, 893, 785, 789, 786,
- 787, 788, 800, 790, 791, 792, 793, 794, 795, 796,
- 797, 798, 799, 801, 942, 943, 944, 945, 946, 947,
- 817, 821, 820, 818, 819, 815, 816, 843, 842, 844,
- 845, 846, 847, 848, 849, 851, 850, 852, 853, 854,
- 855, 856, 857, 825, 826, 829, 830, 828, 827, 831,
- 840, 841, 832, 833, 834, 835, 836, 837, 839, 838,
- 858, 859, 860, 861, 862, 864, 863, 867, 868, 866,
- 865, 870, 869, 764, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 933, 262, 934, 0,
- 0, 938, 0, 0, 0, 940, 939, 0, 941, 903,
- 902, 0, 0, 935, 936, 0, 937, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 948, 949, 950, 951, 952, 953, 954, 955, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 973, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 776, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 763, 0, 0, 0, 270, 768, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 775, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 770,
- 771, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 95, 0, 1751,
- 1022, 507, 958, 747, 924, 962, 1023, 975, 976, 977,
- 963, 0, 238, 964, 965, 245, 966, 0, 923, 806,
- 808, 807, 873, 874, 875, 876, 877, 878, 879, 809,
- 810, 804, 971, 608, 978, 979, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 743, 760,
- 0, 774, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 757, 758, 0, 0, 0, 0, 918, 0,
- 759, 0, 0, 767, 980, 981, 982, 983, 984, 985,
- 986, 987, 988, 989, 990, 991, 992, 993, 994, 995,
- 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005,
- 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015,
- 1016, 1017, 1018, 1019, 1020, 1021, 769, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 917, 0, 0, 628, 0, 0, 915,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 968, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 969, 970, 256,
- 651, 814, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 822, 823, 280, 307,
- 899, 898, 897, 306, 308, 895, 896, 894, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 905, 927, 916, 780, 781, 906, 907, 931, 908,
- 783, 784, 928, 929, 777, 778, 782, 930, 932, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 919, 766, 765,
- 0, 772, 773, 0, 802, 803, 805, 811, 812, 813,
- 824, 871, 872, 880, 882, 883, 881, 884, 885, 886,
- 889, 890, 891, 892, 887, 888, 893, 785, 789, 786,
- 787, 788, 800, 790, 791, 792, 793, 794, 795, 796,
- 797, 798, 799, 801, 942, 943, 944, 945, 946, 947,
- 817, 821, 820, 818, 819, 815, 816, 843, 842, 844,
- 845, 846, 847, 848, 849, 851, 850, 852, 853, 854,
- 855, 856, 857, 825, 826, 829, 830, 828, 827, 831,
- 840, 841, 832, 833, 834, 835, 836, 837, 839, 838,
- 858, 859, 860, 861, 862, 864, 863, 867, 868, 866,
- 865, 870, 869, 764, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 933, 262, 934, 0,
- 0, 938, 0, 0, 0, 940, 939, 0, 941, 903,
- 902, 0, 0, 935, 936, 0, 937, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 948, 949, 950, 951, 952, 953, 954, 955, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 973, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 776, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 763, 0, 0, 0, 270, 768, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 775, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 770,
- 771, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 95, 0, 0,
- 1022, 507, 958, 747, 924, 962, 1023, 975, 976, 977,
- 963, 0, 238, 964, 965, 245, 966, 0, 923, 806,
- 808, 807, 873, 874, 875, 876, 877, 878, 879, 809,
- 810, 804, 971, 608, 978, 979, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 743, 760,
- 0, 774, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 757, 758, 1068, 0, 0, 0, 918, 0,
- 759, 0, 0, 767, 980, 981, 982, 983, 984, 985,
- 986, 987, 988, 989, 990, 991, 992, 993, 994, 995,
- 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005,
- 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015,
- 1016, 1017, 1018, 1019, 1020, 1021, 769, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 917, 0, 0, 628, 0, 0, 915,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 968, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 969, 970, 256,
- 651, 814, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 822, 823, 280, 307,
- 899, 898, 897, 306, 308, 895, 896, 894, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 905, 927, 916, 780, 781, 906, 907, 931, 908,
- 783, 784, 928, 929, 777, 778, 782, 930, 932, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 919, 766, 765,
- 0, 772, 773, 0, 802, 803, 805, 811, 812, 813,
- 824, 871, 872, 880, 882, 883, 881, 884, 885, 886,
- 889, 890, 891, 892, 887, 888, 893, 785, 789, 786,
- 787, 788, 800, 790, 791, 792, 793, 794, 795, 796,
- 797, 798, 799, 801, 942, 943, 944, 945, 946, 947,
- 817, 821, 820, 818, 819, 815, 816, 843, 842, 844,
- 845, 846, 847, 848, 849, 851, 850, 852, 853, 854,
- 855, 856, 857, 825, 826, 829, 830, 828, 827, 831,
- 840, 841, 832, 833, 834, 835, 836, 837, 839, 838,
- 858, 859, 860, 861, 862, 864, 863, 867, 868, 866,
- 865, 870, 869, 764, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 933, 262, 934, 0,
- 0, 938, 0, 0, 0, 940, 939, 0, 941, 903,
- 902, 0, 0, 935, 936, 0, 937, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 948, 949, 950, 951, 952, 953, 954, 955, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 973, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 776, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 763, 0, 0, 0, 270, 768, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 775, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 770,
- 771, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 95, 0, 0,
- 1022, 507, 958, 747, 924, 962, 1023, 975, 976, 977,
- 963, 0, 238, 964, 965, 245, 966, 0, 923, 806,
- 808, 807, 873, 874, 875, 876, 877, 878, 879, 809,
- 810, 804, 971, 608, 978, 979, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 743, 760,
- 0, 774, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 757, 758, 0, 0, 0, 0, 918, 0,
- 759, 0, 0, 767, 980, 981, 982, 983, 984, 985,
- 986, 987, 988, 989, 990, 991, 992, 993, 994, 995,
- 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005,
- 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015,
- 1016, 1017, 1018, 1019, 1020, 1021, 769, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 917, 0, 0, 628, 0, 0, 915,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 968, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 969, 970, 256,
- 651, 814, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 822, 823, 280, 307,
- 899, 898, 897, 306, 308, 895, 896, 894, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 905, 927, 916, 780, 781, 906, 907, 931, 908,
- 783, 784, 928, 929, 777, 778, 782, 930, 932, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 919, 766, 765,
- 0, 772, 773, 0, 802, 803, 805, 811, 812, 813,
- 824, 871, 872, 880, 882, 883, 881, 884, 885, 886,
- 889, 890, 891, 892, 887, 888, 893, 785, 789, 786,
- 787, 788, 800, 790, 791, 792, 793, 794, 795, 796,
- 797, 798, 799, 801, 942, 943, 944, 945, 946, 947,
- 817, 821, 820, 818, 819, 815, 816, 843, 842, 844,
- 845, 846, 847, 848, 849, 851, 850, 852, 853, 854,
- 855, 856, 857, 825, 826, 829, 830, 828, 827, 831,
- 840, 841, 832, 833, 834, 835, 836, 837, 839, 838,
- 858, 859, 860, 861, 862, 864, 863, 867, 868, 866,
- 865, 870, 869, 764, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 933, 262, 934, 0,
- 0, 938, 0, 0, 0, 940, 939, 0, 941, 903,
- 902, 0, 0, 935, 936, 0, 937, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 948, 949, 950, 951, 952, 953, 954, 955, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 973, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 776, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 763, 0, 0, 0, 270, 768, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 775, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 770,
- 771, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 95, 0, 0,
- 1022, 507, 958, 747, 924, 962, 1023, 975, 976, 977,
- 963, 0, 238, 964, 965, 245, 966, 0, 923, 806,
- 808, 807, 873, 874, 875, 876, 877, 878, 879, 809,
- 810, 804, 971, 608, 978, 979, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 743, 760,
- 0, 774, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 757, 758, 0, 0, 0, 0, 918, 0,
- 759, 0, 0, 767, 980, 981, 982, 983, 984, 985,
- 986, 987, 988, 989, 990, 991, 992, 993, 994, 995,
- 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005,
- 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015,
- 1016, 1017, 1018, 1019, 1020, 1021, 3169, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 917, 0, 0, 628, 0, 0, 915,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 968, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 969, 970, 256,
- 651, 814, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 822, 823, 280, 307,
- 899, 898, 897, 306, 308, 895, 896, 894, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 905, 927, 916, 780, 781, 906, 907, 931, 908,
- 783, 784, 928, 929, 777, 778, 782, 930, 932, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 919, 766, 765,
- 0, 772, 773, 0, 802, 803, 805, 811, 812, 813,
- 824, 871, 872, 880, 882, 883, 881, 884, 885, 886,
- 889, 890, 891, 892, 887, 888, 893, 785, 789, 786,
- 787, 788, 800, 790, 791, 792, 793, 794, 795, 796,
- 797, 798, 799, 801, 942, 943, 944, 945, 946, 947,
- 817, 821, 820, 818, 819, 815, 816, 843, 842, 844,
- 845, 846, 847, 848, 849, 851, 850, 852, 853, 854,
- 855, 856, 857, 825, 826, 829, 830, 828, 827, 831,
- 840, 841, 832, 833, 834, 835, 836, 837, 839, 838,
- 858, 859, 860, 861, 862, 864, 863, 867, 868, 866,
- 865, 870, 869, 764, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 933, 262, 934, 0,
- 0, 938, 0, 0, 0, 940, 939, 0, 941, 903,
- 902, 0, 0, 935, 936, 0, 937, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 948, 949, 950, 951, 952, 953, 954, 955, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 973, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 776, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 763, 0, 0, 0, 270, 768, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 775, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 770,
- 771, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 95, 0, 0,
- 1022, 507, 958, 747, 924, 962, 1023, 975, 976, 977,
- 963, 0, 238, 964, 965, 245, 966, 0, 923, 806,
- 808, 807, 873, 874, 875, 876, 877, 878, 879, 809,
- 810, 804, 971, 608, 978, 979, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 743, 760,
- 0, 774, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 757, 758, 0, 0, 0, 0, 918, 0,
- 759, 0, 0, 767, 980, 981, 982, 983, 984, 985,
- 986, 987, 988, 989, 990, 991, 992, 993, 994, 995,
- 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005,
- 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015,
- 1016, 1017, 1018, 1019, 1020, 1021, 3165, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 917, 0, 0, 628, 0, 0, 915,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 968, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 969, 970, 256,
- 651, 814, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 822, 823, 280, 307,
- 899, 898, 897, 306, 308, 895, 896, 894, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 905, 927, 916, 780, 781, 906, 907, 931, 908,
- 783, 784, 928, 929, 777, 778, 782, 930, 932, 653,
+ 1363, 1391, 376, 576, 577, 316, 396, 0, 0, 0,
+ 0, 0, 0, 1421, 1405, 528, 0, 1347, 1424, 1315,
+ 1334, 1434, 1337, 1340, 1384, 1293, 1362, 416, 1331, 1319,
+ 1288, 1326, 1289, 1317, 1349, 270, 1314, 1407, 1366, 1423,
+ 366, 267, 1295, 1286, 204, 505, 1320, 430, 1336, 203,
+ 1386, 487, 252, 377, 374, 583, 282, 273, 269, 250,
+ 317, 385, 428, 518, 422, 1430, 370, 1372, 0, 497,
+ 401, 0, 0, 0, 1411, 1410, 1341, 1351, 1413, 1360,
+ 1398, 1346, 1385, 1303, 1371, 1425, 1332, 1381, 1426, 323,
+ 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
+ 0, 507, 724, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
+ 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
+ 345, 1328, 1378, 609, 1420, 1329, 1380, 265, 321, 272,
+ 264, 580, 1431, 1412, 1292, 1359, 1419, 1354, 596, 0,
+ 0, 229, 1422, 1353, 0, 1383, 0, 1437, 1287, 1374,
+ 0, 1290, 1294, 1433, 1417, 1323, 275, 0, 0, 0,
+ 0, 0, 0, 0, 1350, 1361, 1395, 1399, 1344, 0,
+ 0, 0, 0, 0, 0, 0, 0, 1321, 0, 1370,
+ 0, 0, 0, 1299, 1291, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 1348, 0, 0,
+ 0, 0, 1302, 0, 1322, 1396, 0, 1285, 297, 1296,
+ 402, 257, 0, 453, 1403, 1416, 1345, 629, 1418, 1343,
+ 1342, 1390, 1300, 1409, 1335, 365, 1298, 330, 197, 225,
+ 0, 1333, 412, 461, 473, 1408, 1318, 1327, 253, 1325,
+ 471, 426, 604, 233, 284, 458, 432, 469, 440, 287,
+ 1369, 1388, 470, 372, 585, 450, 601, 630, 631, 263,
+ 406, 615, 522, 623, 648, 226, 260, 420, 506, 607,
+ 494, 397, 581, 582, 329, 493, 295, 201, 369, 636,
+ 224, 479, 371, 242, 231, 587, 612, 299, 289, 456,
+ 643, 213, 517, 598, 239, 483, 0, 0, 651, 247,
+ 504, 610, 599, 215, 594, 503, 393, 326, 327, 214,
+ 0, 457, 268, 293, 0, 0, 258, 415, 589, 590,
+ 256, 652, 228, 622, 220, 1297, 621, 408, 584, 595,
+ 394, 383, 219, 593, 392, 382, 334, 355, 356, 280,
+ 307, 447, 375, 448, 306, 308, 404, 403, 405, 207,
+ 608, 626, 0, 208, 0, 499, 611, 653, 452, 212,
+ 234, 235, 237, 1313, 279, 283, 291, 294, 303, 304,
+ 313, 367, 419, 446, 442, 451, 1404, 579, 602, 616,
+ 628, 634, 635, 637, 638, 639, 640, 641, 644, 642,
+ 407, 311, 495, 333, 373, 1393, 1436, 425, 472, 240,
+ 606, 496, 199, 1307, 1312, 1305, 0, 254, 255, 1375,
+ 575, 1308, 1306, 1364, 1365, 1309, 1427, 1428, 1429, 1414,
654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 919, 766, 765,
- 0, 772, 773, 0, 802, 803, 805, 811, 812, 813,
- 824, 871, 872, 880, 882, 883, 881, 884, 885, 886,
- 889, 890, 891, 892, 887, 888, 893, 785, 789, 786,
- 787, 788, 800, 790, 791, 792, 793, 794, 795, 796,
- 797, 798, 799, 801, 942, 943, 944, 945, 946, 947,
- 817, 821, 820, 818, 819, 815, 816, 843, 842, 844,
- 845, 846, 847, 848, 849, 851, 850, 852, 853, 854,
- 855, 856, 857, 825, 826, 829, 830, 828, 827, 831,
- 840, 841, 832, 833, 834, 835, 836, 837, 839, 838,
- 858, 859, 860, 861, 862, 864, 863, 867, 868, 866,
- 865, 870, 869, 764, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 933, 262, 934, 0,
- 0, 938, 0, 0, 0, 940, 939, 0, 941, 903,
- 902, 0, 0, 935, 936, 0, 937, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 948, 949, 950, 951, 952, 953, 954, 955, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 973, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 776, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 763, 0, 0, 0, 270, 768, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 775, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 770,
- 771, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 95, 0, 0,
- 1022, 507, 958, 1089, 924, 962, 1023, 975, 976, 977,
- 963, 0, 238, 964, 965, 245, 966, 0, 923, 806,
- 808, 807, 873, 874, 875, 876, 877, 878, 879, 809,
- 810, 804, 971, 608, 978, 979, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 760,
- 0, 774, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 757, 758, 0, 0, 0, 0, 918, 0,
- 759, 0, 0, 767, 980, 981, 982, 983, 984, 985,
- 986, 987, 988, 989, 990, 991, 992, 993, 994, 995,
- 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005,
- 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015,
- 1016, 1017, 1018, 1019, 1020, 1021, 769, 0, 0, 0,
+ 664, 665, 666, 667, 668, 669, 670, 671, 649, 508,
+ 514, 509, 510, 511, 512, 513, 0, 515, 1397, 1301,
+ 0, 1310, 1311, 398, 1406, 591, 592, 672, 384, 486,
+ 603, 335, 349, 352, 341, 361, 0, 362, 337, 338,
+ 343, 346, 347, 348, 353, 354, 358, 364, 249, 210,
+ 390, 399, 578, 312, 216, 217, 218, 524, 525, 526,
+ 527, 619, 620, 624, 205, 462, 463, 464, 465, 292,
+ 614, 309, 468, 467, 331, 332, 379, 449, 540, 542,
+ 553, 557, 559, 561, 567, 570, 541, 543, 554, 558,
+ 560, 562, 568, 571, 530, 532, 534, 536, 549, 548,
+ 545, 573, 574, 551, 556, 535, 547, 552, 565, 572,
+ 569, 529, 533, 537, 546, 564, 563, 544, 555, 566,
+ 550, 538, 531, 539, 1368, 196, 221, 368, 1432, 454,
+ 288, 650, 618, 484, 613, 206, 223, 1304, 262, 1316,
+ 1324, 0, 1330, 1338, 1339, 1352, 1355, 1356, 1357, 1358,
+ 1376, 1377, 1379, 1387, 1389, 1392, 1394, 1401, 1415, 1435,
+ 198, 200, 209, 222, 232, 236, 243, 261, 276, 278,
+ 285, 298, 310, 318, 319, 322, 328, 380, 386, 387,
+ 388, 389, 409, 410, 411, 414, 417, 418, 421, 423,
+ 424, 427, 431, 435, 436, 437, 439, 441, 443, 455,
+ 460, 474, 475, 476, 477, 478, 481, 482, 488, 489,
+ 490, 491, 492, 500, 501, 516, 586, 588, 605, 625,
+ 632, 480, 301, 302, 444, 445, 314, 315, 646, 647,
+ 300, 600, 633, 597, 645, 627, 438, 378, 1367, 1373,
+ 381, 281, 305, 320, 1382, 617, 502, 227, 466, 290,
+ 251, 1400, 1402, 211, 246, 230, 259, 274, 277, 324,
+ 391, 400, 429, 434, 296, 271, 244, 459, 241, 485,
+ 519, 520, 521, 523, 395, 266, 433, 1363, 1391, 376,
+ 576, 577, 316, 396, 0, 0, 0, 0, 0, 0,
+ 1421, 1405, 528, 0, 1347, 1424, 1315, 1334, 1434, 1337,
+ 1340, 1384, 1293, 1362, 416, 1331, 1319, 1288, 1326, 1289,
+ 1317, 1349, 270, 1314, 1407, 1366, 1423, 366, 267, 1295,
+ 1286, 204, 505, 1320, 430, 1336, 203, 1386, 487, 252,
+ 377, 374, 583, 282, 273, 269, 250, 317, 385, 428,
+ 518, 422, 1430, 370, 1372, 0, 497, 401, 0, 0,
+ 0, 1411, 1410, 1341, 1351, 1413, 1360, 1398, 1346, 1385,
+ 1303, 1371, 1425, 1332, 1381, 1426, 323, 248, 325, 202,
+ 413, 498, 286, 0, 0, 0, 0, 0, 507, 959,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 238,
+ 0, 0, 245, 0, 0, 0, 351, 360, 359, 339,
+ 340, 342, 344, 350, 357, 363, 336, 345, 1328, 1378,
+ 609, 1420, 1329, 1380, 265, 321, 272, 264, 580, 1431,
+ 1412, 1292, 1359, 1419, 1354, 596, 0, 0, 229, 1422,
+ 1353, 0, 1383, 0, 1437, 1287, 1374, 0, 1290, 1294,
+ 1433, 1417, 1323, 275, 0, 0, 0, 0, 0, 0,
+ 0, 1350, 1361, 1395, 1399, 1344, 0, 0, 0, 0,
+ 0, 0, 0, 0, 1321, 0, 1370, 0, 0, 0,
+ 1299, 1291, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 1348, 0, 0, 0, 0, 1302,
+ 0, 1322, 1396, 0, 1285, 297, 1296, 402, 257, 0,
+ 453, 1403, 1416, 1345, 629, 1418, 1343, 1342, 1390, 1300,
+ 1409, 1335, 365, 1298, 330, 197, 225, 0, 1333, 412,
+ 461, 473, 1408, 1318, 1327, 253, 1325, 471, 426, 604,
+ 233, 284, 458, 432, 469, 440, 287, 1369, 1388, 470,
+ 372, 585, 450, 601, 630, 631, 263, 406, 615, 522,
+ 623, 648, 226, 260, 420, 506, 607, 494, 397, 581,
+ 582, 329, 493, 295, 201, 369, 636, 224, 479, 371,
+ 242, 231, 587, 612, 299, 289, 456, 643, 213, 517,
+ 598, 239, 483, 0, 0, 651, 247, 504, 610, 599,
+ 215, 594, 503, 393, 326, 327, 214, 0, 457, 268,
+ 293, 0, 0, 258, 415, 589, 590, 256, 652, 228,
+ 622, 220, 1297, 621, 408, 584, 595, 394, 383, 219,
+ 593, 392, 382, 334, 355, 356, 280, 307, 447, 375,
+ 448, 306, 308, 404, 403, 405, 207, 608, 626, 0,
+ 208, 0, 499, 611, 653, 452, 212, 234, 235, 237,
+ 1313, 279, 283, 291, 294, 303, 304, 313, 367, 419,
+ 446, 442, 451, 1404, 579, 602, 616, 628, 634, 635,
+ 637, 638, 639, 640, 641, 644, 642, 407, 311, 495,
+ 333, 373, 1393, 1436, 425, 472, 240, 606, 496, 199,
+ 1307, 1312, 1305, 0, 254, 255, 1375, 575, 1308, 1306,
+ 1364, 1365, 1309, 1427, 1428, 1429, 1414, 654, 655, 656,
+ 657, 658, 659, 660, 661, 662, 663, 664, 665, 666,
+ 667, 668, 669, 670, 671, 649, 508, 514, 509, 510,
+ 511, 512, 513, 0, 515, 1397, 1301, 0, 1310, 1311,
+ 398, 1406, 591, 592, 672, 384, 486, 603, 335, 349,
+ 352, 341, 361, 0, 362, 337, 338, 343, 346, 347,
+ 348, 353, 354, 358, 364, 249, 210, 390, 399, 578,
+ 312, 216, 217, 218, 524, 525, 526, 527, 619, 620,
+ 624, 205, 462, 463, 464, 465, 292, 614, 309, 468,
+ 467, 331, 332, 379, 449, 540, 542, 553, 557, 559,
+ 561, 567, 570, 541, 543, 554, 558, 560, 562, 568,
+ 571, 530, 532, 534, 536, 549, 548, 545, 573, 574,
+ 551, 556, 535, 547, 552, 565, 572, 569, 529, 533,
+ 537, 546, 564, 563, 544, 555, 566, 550, 538, 531,
+ 539, 1368, 196, 221, 368, 1432, 454, 288, 650, 618,
+ 484, 613, 206, 223, 1304, 262, 1316, 1324, 0, 1330,
+ 1338, 1339, 1352, 1355, 1356, 1357, 1358, 1376, 1377, 1379,
+ 1387, 1389, 1392, 1394, 1401, 1415, 1435, 198, 200, 209,
+ 222, 232, 236, 243, 261, 276, 278, 285, 298, 310,
+ 318, 319, 322, 328, 380, 386, 387, 388, 389, 409,
+ 410, 411, 414, 417, 418, 421, 423, 424, 427, 431,
+ 435, 436, 437, 439, 441, 443, 455, 460, 474, 475,
+ 476, 477, 478, 481, 482, 488, 489, 490, 491, 492,
+ 500, 501, 516, 586, 588, 605, 625, 632, 480, 301,
+ 302, 444, 445, 314, 315, 646, 647, 300, 600, 633,
+ 597, 645, 627, 438, 378, 1367, 1373, 381, 281, 305,
+ 320, 1382, 617, 502, 227, 466, 290, 251, 1400, 1402,
+ 211, 246, 230, 259, 274, 277, 324, 391, 400, 429,
+ 434, 296, 271, 244, 459, 241, 485, 519, 520, 521,
+ 523, 395, 266, 433, 1363, 1391, 376, 576, 577, 316,
+ 396, 0, 0, 0, 0, 0, 0, 0, 0, 528,
+ 0, 777, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 416, 0, 0, 0, 764, 0, 0, 0, 270,
+ 769, 0, 0, 0, 366, 267, 0, 0, 204, 505,
+ 0, 430, 0, 203, 0, 487, 252, 377, 374, 583,
+ 282, 273, 269, 250, 317, 385, 428, 518, 422, 776,
+ 370, 0, 0, 497, 401, 0, 0, 0, 0, 0,
+ 0, 0, 0, 771, 772, 0, 0, 0, 0, 0,
+ 0, 0, 0, 323, 248, 325, 202, 413, 498, 286,
+ 0, 95, 0, 0, 1023, 507, 959, 748, 925, 963,
+ 1024, 976, 977, 978, 964, 0, 238, 965, 966, 245,
+ 967, 0, 924, 807, 809, 808, 874, 875, 876, 877,
+ 878, 879, 880, 810, 811, 805, 972, 609, 979, 980,
+ 0, 265, 321, 272, 264, 580, 0, 0, 2232, 2233,
+ 2234, 0, 596, 0, 0, 229, 0, 0, 0, 0,
+ 0, 0, 0, 744, 761, 0, 775, 0, 0, 0,
+ 275, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 758, 759, 0,
+ 0, 0, 0, 919, 0, 760, 0, 0, 768, 981,
+ 982, 983, 984, 985, 986, 987, 988, 989, 990, 991,
+ 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001,
+ 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011,
+ 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021,
+ 1022, 770, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 297, 0, 402, 257, 0, 453, 918, 0,
+ 0, 629, 0, 0, 916, 0, 0, 0, 0, 365,
+ 0, 330, 197, 225, 0, 0, 412, 461, 473, 0,
+ 0, 0, 969, 0, 471, 426, 604, 233, 284, 458,
+ 432, 469, 440, 287, 0, 0, 470, 372, 585, 450,
+ 601, 630, 631, 263, 406, 615, 522, 623, 648, 226,
+ 260, 420, 506, 607, 494, 397, 581, 582, 329, 493,
+ 295, 201, 369, 636, 224, 479, 371, 242, 231, 587,
+ 612, 299, 289, 456, 643, 213, 517, 598, 239, 483,
+ 0, 0, 651, 247, 504, 610, 599, 215, 594, 503,
+ 393, 326, 327, 214, 0, 457, 268, 293, 0, 0,
+ 258, 415, 970, 971, 256, 652, 815, 622, 220, 0,
+ 621, 408, 584, 595, 394, 383, 219, 593, 392, 382,
+ 334, 823, 824, 280, 307, 900, 899, 898, 306, 308,
+ 896, 897, 895, 207, 608, 626, 0, 208, 0, 499,
+ 611, 653, 452, 212, 234, 235, 237, 0, 279, 283,
+ 291, 294, 303, 304, 313, 367, 419, 446, 442, 451,
+ 0, 579, 602, 616, 628, 634, 635, 637, 638, 639,
+ 640, 641, 644, 642, 407, 311, 495, 333, 373, 0,
+ 0, 425, 472, 240, 606, 496, 906, 928, 917, 781,
+ 782, 907, 908, 932, 909, 784, 785, 929, 930, 778,
+ 779, 783, 931, 933, 654, 655, 656, 657, 658, 659,
+ 660, 661, 662, 663, 664, 665, 666, 667, 668, 669,
+ 670, 671, 649, 508, 514, 509, 510, 511, 512, 513,
+ 0, 515, 920, 767, 766, 0, 773, 774, 0, 803,
+ 804, 806, 812, 813, 814, 825, 872, 873, 881, 883,
+ 884, 882, 885, 886, 887, 890, 891, 892, 893, 888,
+ 889, 894, 786, 790, 787, 788, 789, 801, 791, 792,
+ 793, 794, 795, 796, 797, 798, 799, 800, 802, 943,
+ 944, 945, 946, 947, 948, 818, 822, 821, 819, 820,
+ 816, 817, 844, 843, 845, 846, 847, 848, 849, 850,
+ 852, 851, 853, 854, 855, 856, 857, 858, 826, 827,
+ 830, 831, 829, 828, 832, 841, 842, 833, 834, 835,
+ 836, 837, 838, 840, 839, 859, 860, 861, 862, 863,
+ 865, 864, 868, 869, 867, 866, 871, 870, 765, 196,
+ 221, 368, 0, 454, 288, 650, 618, 484, 613, 206,
+ 223, 934, 262, 935, 0, 0, 939, 0, 0, 0,
+ 941, 940, 0, 942, 904, 903, 0, 0, 936, 937,
+ 0, 938, 0, 0, 198, 200, 209, 222, 232, 236,
+ 243, 261, 276, 278, 285, 298, 310, 318, 319, 322,
+ 328, 380, 386, 387, 388, 389, 409, 410, 411, 414,
+ 417, 418, 421, 423, 424, 427, 431, 435, 436, 437,
+ 439, 441, 443, 455, 460, 474, 475, 476, 477, 478,
+ 481, 482, 488, 489, 490, 491, 492, 500, 501, 516,
+ 586, 588, 605, 625, 632, 480, 949, 950, 951, 952,
+ 953, 954, 955, 956, 300, 600, 633, 597, 645, 627,
+ 438, 378, 0, 0, 381, 281, 305, 320, 0, 617,
+ 502, 227, 466, 290, 251, 974, 0, 211, 246, 230,
+ 259, 274, 277, 324, 391, 400, 429, 434, 296, 271,
+ 244, 459, 241, 485, 519, 520, 521, 523, 395, 266,
+ 433, 396, 0, 376, 576, 577, 316, 0, 0, 0,
+ 528, 0, 777, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 416, 0, 0, 0, 764, 0, 0, 0,
+ 270, 769, 0, 0, 0, 366, 267, 0, 0, 204,
+ 505, 0, 430, 0, 203, 0, 487, 252, 377, 374,
+ 583, 282, 273, 269, 250, 317, 385, 428, 518, 422,
+ 776, 370, 0, 0, 497, 401, 0, 0, 0, 0,
+ 0, 0, 0, 0, 771, 772, 0, 0, 0, 0,
+ 0, 0, 2439, 0, 323, 248, 325, 202, 413, 498,
+ 286, 0, 95, 0, 0, 1023, 507, 959, 748, 925,
+ 963, 1024, 976, 977, 978, 964, 0, 238, 965, 966,
+ 245, 967, 0, 924, 807, 809, 808, 874, 875, 876,
+ 877, 878, 879, 880, 810, 811, 805, 972, 609, 979,
+ 980, 2440, 265, 321, 272, 264, 580, 0, 0, 0,
+ 0, 0, 0, 596, 0, 0, 229, 0, 0, 0,
+ 0, 0, 0, 0, 744, 761, 0, 775, 0, 0,
+ 0, 275, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 758, 759,
+ 0, 0, 0, 0, 919, 0, 760, 0, 0, 768,
+ 981, 982, 983, 984, 985, 986, 987, 988, 989, 990,
+ 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000,
+ 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010,
+ 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020,
+ 1021, 1022, 770, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 297, 0, 402, 257, 0, 453, 918,
+ 0, 0, 629, 0, 0, 916, 0, 0, 0, 0,
+ 365, 0, 330, 197, 225, 0, 0, 412, 461, 473,
+ 0, 0, 0, 969, 0, 471, 426, 604, 233, 284,
+ 458, 432, 469, 440, 287, 0, 0, 470, 372, 585,
+ 450, 601, 630, 631, 263, 406, 615, 522, 623, 648,
+ 226, 260, 420, 506, 607, 494, 397, 581, 582, 329,
+ 493, 295, 201, 369, 636, 224, 479, 371, 242, 231,
+ 587, 612, 299, 289, 456, 643, 213, 517, 598, 239,
+ 483, 0, 0, 651, 247, 504, 610, 599, 215, 594,
+ 503, 393, 326, 327, 214, 0, 457, 268, 293, 0,
+ 0, 258, 415, 970, 971, 256, 652, 815, 622, 220,
+ 0, 621, 408, 584, 595, 394, 383, 219, 593, 392,
+ 382, 334, 823, 824, 280, 307, 900, 899, 898, 306,
+ 308, 896, 897, 895, 207, 608, 626, 0, 208, 0,
+ 499, 611, 653, 452, 212, 234, 235, 237, 0, 279,
+ 283, 291, 294, 303, 304, 313, 367, 419, 446, 442,
+ 451, 0, 579, 602, 616, 628, 634, 635, 637, 638,
+ 639, 640, 641, 644, 642, 407, 311, 495, 333, 373,
+ 0, 0, 425, 472, 240, 606, 496, 906, 928, 917,
+ 781, 782, 907, 908, 932, 909, 784, 785, 929, 930,
+ 778, 779, 783, 931, 933, 654, 655, 656, 657, 658,
+ 659, 660, 661, 662, 663, 664, 665, 666, 667, 668,
+ 669, 670, 671, 649, 508, 514, 509, 510, 511, 512,
+ 513, 0, 515, 920, 767, 766, 0, 773, 774, 0,
+ 803, 804, 806, 812, 813, 814, 825, 872, 873, 881,
+ 883, 884, 882, 885, 886, 887, 890, 891, 892, 893,
+ 888, 889, 894, 786, 790, 787, 788, 789, 801, 791,
+ 792, 793, 794, 795, 796, 797, 798, 799, 800, 802,
+ 943, 944, 945, 946, 947, 948, 818, 822, 821, 819,
+ 820, 816, 817, 844, 843, 845, 846, 847, 848, 849,
+ 850, 852, 851, 853, 854, 855, 856, 857, 858, 826,
+ 827, 830, 831, 829, 828, 832, 841, 842, 833, 834,
+ 835, 836, 837, 838, 840, 839, 859, 860, 861, 862,
+ 863, 865, 864, 868, 869, 867, 866, 871, 870, 765,
+ 196, 221, 368, 0, 454, 288, 650, 618, 484, 613,
+ 206, 223, 934, 262, 935, 0, 0, 939, 0, 0,
+ 0, 941, 940, 0, 942, 904, 903, 0, 0, 936,
+ 937, 0, 938, 0, 0, 198, 200, 209, 222, 232,
+ 236, 243, 261, 276, 278, 285, 298, 310, 318, 319,
+ 322, 328, 380, 386, 387, 388, 389, 409, 410, 411,
+ 414, 417, 418, 421, 423, 424, 427, 431, 435, 436,
+ 437, 439, 441, 443, 455, 460, 474, 475, 476, 477,
+ 478, 481, 482, 488, 489, 490, 491, 492, 500, 501,
+ 516, 586, 588, 605, 625, 632, 480, 949, 950, 951,
+ 952, 953, 954, 955, 956, 300, 600, 633, 597, 645,
+ 627, 438, 378, 0, 0, 381, 281, 305, 320, 0,
+ 617, 502, 227, 466, 290, 251, 974, 0, 211, 246,
+ 230, 259, 274, 277, 324, 391, 400, 429, 434, 296,
+ 271, 244, 459, 241, 485, 519, 520, 521, 523, 395,
+ 266, 433, 396, 0, 376, 576, 577, 316, 0, 0,
+ 86, 528, 0, 777, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 416, 0, 0, 0, 764, 0, 0,
+ 0, 270, 769, 0, 0, 0, 366, 267, 0, 0,
+ 204, 505, 0, 430, 0, 203, 0, 487, 252, 377,
+ 374, 583, 282, 273, 269, 250, 317, 385, 428, 518,
+ 422, 776, 370, 0, 0, 497, 401, 0, 0, 0,
+ 0, 0, 0, 0, 0, 771, 772, 0, 0, 0,
+ 0, 0, 0, 0, 0, 323, 248, 325, 202, 413,
+ 498, 286, 0, 95, 0, 0, 1023, 507, 959, 748,
+ 925, 963, 1024, 976, 977, 978, 964, 0, 238, 965,
+ 966, 245, 967, 0, 924, 807, 809, 808, 874, 875,
+ 876, 877, 878, 879, 880, 810, 811, 805, 972, 609,
+ 979, 980, 0, 265, 321, 272, 264, 580, 0, 0,
+ 0, 0, 0, 0, 596, 0, 0, 229, 0, 0,
+ 0, 0, 0, 0, 0, 744, 761, 0, 775, 0,
+ 0, 0, 275, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 758,
+ 759, 0, 0, 0, 0, 919, 0, 760, 0, 0,
+ 768, 981, 982, 983, 984, 985, 986, 987, 988, 989,
+ 990, 991, 992, 993, 994, 995, 996, 997, 998, 999,
+ 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009,
+ 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019,
+ 1020, 1021, 1022, 770, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 297, 0, 402, 257, 0, 453,
+ 918, 0, 0, 629, 0, 0, 916, 0, 0, 0,
+ 0, 365, 0, 330, 197, 225, 0, 0, 412, 461,
+ 473, 0, 0, 0, 969, 0, 471, 426, 604, 233,
+ 284, 458, 432, 469, 440, 287, 0, 0, 470, 372,
+ 585, 450, 601, 630, 631, 263, 406, 615, 522, 623,
+ 648, 226, 260, 420, 506, 607, 494, 397, 581, 582,
+ 329, 493, 295, 201, 369, 636, 224, 479, 371, 242,
+ 231, 587, 612, 299, 289, 456, 643, 213, 517, 598,
+ 239, 483, 0, 0, 651, 247, 504, 610, 599, 215,
+ 594, 503, 393, 326, 327, 214, 0, 457, 268, 293,
+ 0, 0, 258, 415, 970, 971, 256, 652, 815, 622,
+ 220, 0, 621, 408, 584, 595, 394, 383, 219, 593,
+ 392, 382, 334, 823, 824, 280, 307, 900, 899, 898,
+ 306, 308, 896, 897, 895, 207, 608, 626, 0, 208,
+ 0, 499, 611, 653, 452, 212, 234, 235, 237, 0,
+ 279, 283, 291, 294, 303, 304, 313, 367, 419, 446,
+ 442, 451, 0, 579, 602, 616, 628, 634, 635, 637,
+ 638, 639, 640, 641, 644, 642, 407, 311, 495, 333,
+ 373, 0, 0, 425, 472, 240, 606, 496, 906, 928,
+ 917, 781, 782, 907, 908, 932, 909, 784, 785, 929,
+ 930, 778, 779, 783, 931, 933, 654, 655, 656, 657,
+ 658, 659, 660, 661, 662, 663, 664, 665, 666, 667,
+ 668, 669, 670, 671, 649, 508, 514, 509, 510, 511,
+ 512, 513, 0, 515, 920, 767, 766, 0, 773, 774,
+ 0, 803, 804, 806, 812, 813, 814, 825, 872, 873,
+ 881, 883, 884, 882, 885, 886, 887, 890, 891, 892,
+ 893, 888, 889, 894, 786, 790, 787, 788, 789, 801,
+ 791, 792, 793, 794, 795, 796, 797, 798, 799, 800,
+ 802, 943, 944, 945, 946, 947, 948, 818, 822, 821,
+ 819, 820, 816, 817, 844, 843, 845, 846, 847, 848,
+ 849, 850, 852, 851, 853, 854, 855, 856, 857, 858,
+ 826, 827, 830, 831, 829, 828, 832, 841, 842, 833,
+ 834, 835, 836, 837, 838, 840, 839, 859, 860, 861,
+ 862, 863, 865, 864, 868, 869, 867, 866, 871, 870,
+ 765, 196, 221, 368, 94, 454, 288, 650, 618, 484,
+ 613, 206, 223, 934, 262, 935, 0, 0, 939, 0,
+ 0, 0, 941, 940, 0, 942, 904, 903, 0, 0,
+ 936, 937, 0, 938, 0, 0, 198, 200, 209, 222,
+ 232, 236, 243, 261, 276, 278, 285, 298, 310, 318,
+ 319, 322, 328, 380, 386, 387, 388, 389, 409, 410,
+ 411, 414, 417, 418, 421, 423, 424, 427, 431, 435,
+ 436, 437, 439, 441, 443, 455, 460, 474, 475, 476,
+ 477, 478, 481, 482, 488, 489, 490, 491, 492, 500,
+ 501, 516, 586, 588, 605, 625, 632, 480, 949, 950,
+ 951, 952, 953, 954, 955, 956, 300, 600, 633, 597,
+ 645, 627, 438, 378, 0, 0, 381, 281, 305, 320,
+ 0, 617, 502, 227, 466, 290, 251, 974, 0, 211,
+ 246, 230, 259, 274, 277, 324, 391, 400, 429, 434,
+ 296, 271, 244, 459, 241, 485, 519, 520, 521, 523,
+ 395, 266, 433, 396, 0, 376, 576, 577, 316, 0,
+ 0, 0, 528, 0, 777, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 416, 0, 0, 0, 764, 0,
+ 0, 0, 270, 769, 0, 0, 0, 366, 267, 0,
+ 0, 204, 505, 0, 430, 0, 203, 0, 487, 252,
+ 377, 374, 583, 282, 273, 269, 250, 317, 385, 428,
+ 518, 422, 776, 370, 0, 0, 497, 401, 0, 0,
+ 0, 0, 0, 0, 0, 0, 771, 772, 0, 0,
+ 0, 0, 0, 0, 0, 0, 323, 248, 325, 202,
+ 413, 498, 286, 0, 95, 0, 0, 1023, 507, 959,
+ 748, 925, 963, 1024, 976, 977, 978, 964, 0, 238,
+ 965, 966, 245, 967, 0, 924, 807, 809, 808, 874,
+ 875, 876, 877, 878, 879, 880, 810, 811, 805, 972,
+ 609, 979, 980, 0, 265, 321, 272, 264, 580, 0,
+ 0, 0, 0, 0, 0, 596, 0, 0, 229, 0,
+ 0, 0, 0, 0, 0, 0, 744, 761, 0, 775,
+ 0, 0, 0, 275, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 758, 759, 0, 0, 0, 0, 919, 0, 760, 0,
+ 0, 768, 981, 982, 983, 984, 985, 986, 987, 988,
+ 989, 990, 991, 992, 993, 994, 995, 996, 997, 998,
+ 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008,
+ 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018,
+ 1019, 1020, 1021, 1022, 770, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 297, 0, 402, 257, 0,
+ 453, 918, 0, 0, 629, 0, 0, 916, 0, 0,
+ 0, 0, 365, 0, 330, 197, 225, 0, 0, 412,
+ 461, 473, 0, 0, 0, 969, 0, 471, 426, 604,
+ 233, 284, 458, 432, 469, 440, 287, 4095, 0, 470,
+ 372, 585, 450, 601, 630, 631, 263, 406, 615, 522,
+ 623, 648, 226, 260, 420, 506, 607, 494, 397, 581,
+ 582, 329, 493, 295, 201, 369, 636, 224, 479, 371,
+ 242, 231, 587, 612, 299, 289, 456, 643, 213, 517,
+ 598, 239, 483, 0, 0, 651, 247, 504, 610, 599,
+ 215, 594, 503, 393, 326, 327, 214, 0, 457, 268,
+ 293, 0, 0, 258, 415, 970, 971, 256, 652, 815,
+ 622, 220, 0, 621, 408, 584, 595, 394, 383, 219,
+ 593, 392, 382, 334, 823, 824, 280, 307, 900, 899,
+ 898, 306, 308, 896, 897, 895, 207, 608, 626, 0,
+ 208, 0, 499, 611, 653, 452, 212, 234, 235, 237,
+ 0, 279, 283, 291, 294, 303, 304, 313, 367, 419,
+ 446, 442, 451, 0, 579, 602, 616, 628, 634, 635,
+ 637, 638, 639, 640, 641, 644, 642, 407, 311, 495,
+ 333, 373, 0, 0, 425, 472, 240, 606, 496, 906,
+ 928, 917, 781, 782, 907, 908, 932, 909, 784, 785,
+ 929, 930, 778, 779, 783, 931, 933, 654, 655, 656,
+ 657, 658, 659, 660, 661, 662, 663, 664, 665, 666,
+ 667, 668, 669, 670, 671, 649, 508, 514, 509, 510,
+ 511, 512, 513, 0, 515, 920, 767, 766, 0, 773,
+ 774, 0, 803, 804, 806, 812, 813, 814, 825, 872,
+ 873, 881, 883, 884, 882, 885, 886, 887, 890, 891,
+ 892, 893, 888, 889, 894, 786, 790, 787, 788, 789,
+ 801, 791, 792, 793, 794, 795, 796, 797, 798, 799,
+ 800, 802, 943, 944, 945, 946, 947, 948, 818, 822,
+ 821, 819, 820, 816, 817, 844, 843, 845, 846, 847,
+ 848, 849, 850, 852, 851, 853, 854, 855, 856, 857,
+ 858, 826, 827, 830, 831, 829, 828, 832, 841, 842,
+ 833, 834, 835, 836, 837, 838, 840, 839, 859, 860,
+ 861, 862, 863, 865, 864, 868, 869, 867, 866, 871,
+ 870, 765, 196, 221, 368, 0, 454, 288, 650, 618,
+ 484, 613, 206, 223, 934, 262, 935, 0, 0, 939,
+ 0, 0, 0, 941, 940, 0, 942, 904, 903, 0,
+ 0, 936, 937, 0, 938, 0, 0, 198, 200, 209,
+ 222, 232, 236, 243, 261, 276, 278, 285, 298, 310,
+ 318, 319, 322, 328, 380, 386, 387, 388, 389, 409,
+ 410, 411, 414, 417, 418, 421, 423, 424, 427, 431,
+ 435, 436, 437, 439, 441, 443, 455, 460, 474, 475,
+ 476, 477, 478, 481, 482, 488, 489, 490, 491, 492,
+ 500, 501, 516, 586, 588, 605, 625, 632, 480, 949,
+ 950, 951, 952, 953, 954, 955, 956, 300, 600, 633,
+ 597, 645, 627, 438, 378, 0, 0, 381, 281, 305,
+ 320, 0, 617, 502, 227, 466, 290, 251, 974, 0,
+ 211, 246, 230, 259, 274, 277, 324, 391, 400, 429,
+ 434, 296, 271, 244, 459, 241, 485, 519, 520, 521,
+ 523, 395, 266, 433, 396, 0, 376, 576, 577, 316,
+ 0, 0, 0, 528, 0, 777, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 416, 0, 0, 0, 764,
+ 0, 0, 0, 270, 769, 0, 0, 0, 366, 267,
+ 0, 0, 204, 505, 0, 430, 0, 203, 0, 487,
+ 252, 377, 374, 583, 282, 273, 269, 250, 317, 385,
+ 428, 518, 422, 776, 370, 0, 0, 497, 401, 0,
+ 0, 0, 0, 0, 0, 0, 0, 771, 772, 0,
+ 0, 0, 0, 0, 0, 0, 0, 323, 248, 325,
+ 202, 413, 498, 286, 0, 95, 0, 1753, 1023, 507,
+ 959, 748, 925, 963, 1024, 976, 977, 978, 964, 0,
+ 238, 965, 966, 245, 967, 0, 924, 807, 809, 808,
+ 874, 875, 876, 877, 878, 879, 880, 810, 811, 805,
+ 972, 609, 979, 980, 0, 265, 321, 272, 264, 580,
+ 0, 0, 0, 0, 0, 0, 596, 0, 0, 229,
+ 0, 0, 0, 0, 0, 0, 0, 744, 761, 0,
+ 775, 0, 0, 0, 275, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 758, 759, 0, 0, 0, 0, 919, 0, 760,
+ 0, 0, 768, 981, 982, 983, 984, 985, 986, 987,
+ 988, 989, 990, 991, 992, 993, 994, 995, 996, 997,
+ 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007,
+ 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017,
+ 1018, 1019, 1020, 1021, 1022, 770, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 297, 0, 402, 257,
+ 0, 453, 918, 0, 0, 629, 0, 0, 916, 0,
+ 0, 0, 0, 365, 0, 330, 197, 225, 0, 0,
+ 412, 461, 473, 0, 0, 0, 969, 0, 471, 426,
+ 604, 233, 284, 458, 432, 469, 440, 287, 0, 0,
+ 470, 372, 585, 450, 601, 630, 631, 263, 406, 615,
+ 522, 623, 648, 226, 260, 420, 506, 607, 494, 397,
+ 581, 582, 329, 493, 295, 201, 369, 636, 224, 479,
+ 371, 242, 231, 587, 612, 299, 289, 456, 643, 213,
+ 517, 598, 239, 483, 0, 0, 651, 247, 504, 610,
+ 599, 215, 594, 503, 393, 326, 327, 214, 0, 457,
+ 268, 293, 0, 0, 258, 415, 970, 971, 256, 652,
+ 815, 622, 220, 0, 621, 408, 584, 595, 394, 383,
+ 219, 593, 392, 382, 334, 823, 824, 280, 307, 900,
+ 899, 898, 306, 308, 896, 897, 895, 207, 608, 626,
+ 0, 208, 0, 499, 611, 653, 452, 212, 234, 235,
+ 237, 0, 279, 283, 291, 294, 303, 304, 313, 367,
+ 419, 446, 442, 451, 0, 579, 602, 616, 628, 634,
+ 635, 637, 638, 639, 640, 641, 644, 642, 407, 311,
+ 495, 333, 373, 0, 0, 425, 472, 240, 606, 496,
+ 906, 928, 917, 781, 782, 907, 908, 932, 909, 784,
+ 785, 929, 930, 778, 779, 783, 931, 933, 654, 655,
+ 656, 657, 658, 659, 660, 661, 662, 663, 664, 665,
+ 666, 667, 668, 669, 670, 671, 649, 508, 514, 509,
+ 510, 511, 512, 513, 0, 515, 920, 767, 766, 0,
+ 773, 774, 0, 803, 804, 806, 812, 813, 814, 825,
+ 872, 873, 881, 883, 884, 882, 885, 886, 887, 890,
+ 891, 892, 893, 888, 889, 894, 786, 790, 787, 788,
+ 789, 801, 791, 792, 793, 794, 795, 796, 797, 798,
+ 799, 800, 802, 943, 944, 945, 946, 947, 948, 818,
+ 822, 821, 819, 820, 816, 817, 844, 843, 845, 846,
+ 847, 848, 849, 850, 852, 851, 853, 854, 855, 856,
+ 857, 858, 826, 827, 830, 831, 829, 828, 832, 841,
+ 842, 833, 834, 835, 836, 837, 838, 840, 839, 859,
+ 860, 861, 862, 863, 865, 864, 868, 869, 867, 866,
+ 871, 870, 765, 196, 221, 368, 0, 454, 288, 650,
+ 618, 484, 613, 206, 223, 934, 262, 935, 0, 0,
+ 939, 0, 0, 0, 941, 940, 0, 942, 904, 903,
+ 0, 0, 936, 937, 0, 938, 0, 0, 198, 200,
+ 209, 222, 232, 236, 243, 261, 276, 278, 285, 298,
+ 310, 318, 319, 322, 328, 380, 386, 387, 388, 389,
+ 409, 410, 411, 414, 417, 418, 421, 423, 424, 427,
+ 431, 435, 436, 437, 439, 441, 443, 455, 460, 474,
+ 475, 476, 477, 478, 481, 482, 488, 489, 490, 491,
+ 492, 500, 501, 516, 586, 588, 605, 625, 632, 480,
+ 949, 950, 951, 952, 953, 954, 955, 956, 300, 600,
+ 633, 597, 645, 627, 438, 378, 0, 0, 381, 281,
+ 305, 320, 0, 617, 502, 227, 466, 290, 251, 974,
+ 0, 211, 246, 230, 259, 274, 277, 324, 391, 400,
+ 429, 434, 296, 271, 244, 459, 241, 485, 519, 520,
+ 521, 523, 395, 266, 433, 396, 0, 376, 576, 577,
+ 316, 0, 0, 0, 528, 0, 777, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 416, 0, 0, 0,
+ 764, 0, 0, 0, 270, 769, 0, 0, 0, 366,
+ 267, 0, 0, 204, 505, 0, 430, 0, 203, 0,
+ 487, 252, 377, 374, 583, 282, 273, 269, 250, 317,
+ 385, 428, 518, 422, 776, 370, 0, 0, 497, 401,
+ 0, 0, 0, 0, 0, 0, 0, 0, 771, 772,
+ 0, 0, 0, 0, 0, 0, 0, 0, 323, 248,
+ 325, 202, 413, 498, 286, 0, 95, 0, 0, 1023,
+ 507, 959, 748, 925, 963, 1024, 976, 977, 978, 964,
+ 0, 238, 965, 966, 245, 967, 0, 924, 807, 809,
+ 808, 874, 875, 876, 877, 878, 879, 880, 810, 811,
+ 805, 972, 609, 979, 980, 0, 265, 321, 272, 264,
+ 580, 0, 0, 0, 0, 0, 0, 596, 0, 0,
+ 229, 0, 0, 0, 0, 0, 0, 0, 744, 761,
+ 0, 775, 0, 0, 0, 275, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 758, 759, 1069, 0, 0, 0, 919, 0,
+ 760, 0, 0, 768, 981, 982, 983, 984, 985, 986,
+ 987, 988, 989, 990, 991, 992, 993, 994, 995, 996,
+ 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006,
+ 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016,
+ 1017, 1018, 1019, 1020, 1021, 1022, 770, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 917, 0, 0, 628, 0, 0, 915,
+ 257, 0, 453, 918, 0, 0, 629, 0, 0, 916,
0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 968, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 969, 970, 256,
- 651, 814, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 822, 823, 280, 307,
- 899, 898, 897, 306, 308, 895, 896, 894, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
+ 0, 412, 461, 473, 0, 0, 0, 969, 0, 471,
+ 426, 604, 233, 284, 458, 432, 469, 440, 287, 0,
+ 0, 470, 372, 585, 450, 601, 630, 631, 263, 406,
+ 615, 522, 623, 648, 226, 260, 420, 506, 607, 494,
+ 397, 581, 582, 329, 493, 295, 201, 369, 636, 224,
+ 479, 371, 242, 231, 587, 612, 299, 289, 456, 643,
+ 213, 517, 598, 239, 483, 0, 0, 651, 247, 504,
+ 610, 599, 215, 594, 503, 393, 326, 327, 214, 0,
+ 457, 268, 293, 0, 0, 258, 415, 970, 971, 256,
+ 652, 815, 622, 220, 0, 621, 408, 584, 595, 394,
+ 383, 219, 593, 392, 382, 334, 823, 824, 280, 307,
+ 900, 899, 898, 306, 308, 896, 897, 895, 207, 608,
+ 626, 0, 208, 0, 499, 611, 653, 452, 212, 234,
235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 905, 927, 916, 780, 781, 906, 907, 931, 908,
- 783, 784, 928, 929, 777, 778, 782, 930, 932, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 919, 766, 765,
- 0, 772, 773, 0, 802, 803, 805, 811, 812, 813,
- 824, 871, 872, 880, 882, 883, 881, 884, 885, 886,
- 889, 890, 891, 892, 887, 888, 893, 785, 789, 786,
- 787, 788, 800, 790, 791, 792, 793, 794, 795, 796,
- 797, 798, 799, 801, 942, 943, 944, 945, 946, 947,
- 817, 821, 820, 818, 819, 815, 816, 843, 842, 844,
- 845, 846, 847, 848, 849, 851, 850, 852, 853, 854,
- 855, 856, 857, 825, 826, 829, 830, 828, 827, 831,
- 840, 841, 832, 833, 834, 835, 836, 837, 839, 838,
- 858, 859, 860, 861, 862, 864, 863, 867, 868, 866,
- 865, 870, 869, 764, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 933, 262, 934, 0,
- 0, 938, 0, 0, 0, 940, 939, 0, 941, 903,
- 902, 0, 0, 935, 936, 0, 937, 0, 0, 198,
+ 367, 419, 446, 442, 451, 0, 579, 602, 616, 628,
+ 634, 635, 637, 638, 639, 640, 641, 644, 642, 407,
+ 311, 495, 333, 373, 0, 0, 425, 472, 240, 606,
+ 496, 906, 928, 917, 781, 782, 907, 908, 932, 909,
+ 784, 785, 929, 930, 778, 779, 783, 931, 933, 654,
+ 655, 656, 657, 658, 659, 660, 661, 662, 663, 664,
+ 665, 666, 667, 668, 669, 670, 671, 649, 508, 514,
+ 509, 510, 511, 512, 513, 0, 515, 920, 767, 766,
+ 0, 773, 774, 0, 803, 804, 806, 812, 813, 814,
+ 825, 872, 873, 881, 883, 884, 882, 885, 886, 887,
+ 890, 891, 892, 893, 888, 889, 894, 786, 790, 787,
+ 788, 789, 801, 791, 792, 793, 794, 795, 796, 797,
+ 798, 799, 800, 802, 943, 944, 945, 946, 947, 948,
+ 818, 822, 821, 819, 820, 816, 817, 844, 843, 845,
+ 846, 847, 848, 849, 850, 852, 851, 853, 854, 855,
+ 856, 857, 858, 826, 827, 830, 831, 829, 828, 832,
+ 841, 842, 833, 834, 835, 836, 837, 838, 840, 839,
+ 859, 860, 861, 862, 863, 865, 864, 868, 869, 867,
+ 866, 871, 870, 765, 196, 221, 368, 0, 454, 288,
+ 650, 618, 484, 613, 206, 223, 934, 262, 935, 0,
+ 0, 939, 0, 0, 0, 941, 940, 0, 942, 904,
+ 903, 0, 0, 936, 937, 0, 938, 0, 0, 198,
200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 948, 949, 950, 951, 952, 953, 954, 955, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 973, 0, 211, 246, 230, 259, 274, 277, 324, 391,
+ 491, 492, 500, 501, 516, 586, 588, 605, 625, 632,
+ 480, 949, 950, 951, 952, 953, 954, 955, 956, 300,
+ 600, 633, 597, 645, 627, 438, 378, 0, 0, 381,
+ 281, 305, 320, 0, 617, 502, 227, 466, 290, 251,
+ 974, 0, 211, 246, 230, 259, 274, 277, 324, 391,
400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 776, 0, 0,
+ 577, 316, 0, 0, 0, 528, 0, 777, 0, 0,
0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 763, 0, 0, 0, 270, 768, 0, 0, 0,
+ 0, 764, 0, 0, 0, 270, 769, 0, 0, 0,
366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 775, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 770,
- 771, 0, 0, 0, 0, 0, 0, 0, 0, 323,
+ 317, 385, 428, 518, 422, 776, 370, 0, 0, 497,
+ 401, 0, 0, 0, 0, 0, 0, 0, 0, 771,
+ 772, 0, 0, 0, 0, 0, 0, 0, 0, 323,
248, 325, 202, 413, 498, 286, 0, 95, 0, 0,
- 1022, 507, 958, 1089, 924, 962, 1023, 975, 976, 977,
- 963, 0, 238, 964, 965, 245, 966, 0, 923, 806,
- 808, 807, 873, 874, 875, 876, 877, 878, 879, 809,
- 810, 804, 971, 608, 978, 979, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 760,
- 0, 774, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 757, 758, 0, 0, 0, 0, 918, 0,
- 759, 0, 0, 767, 980, 981, 982, 983, 984, 985,
+ 1023, 507, 959, 748, 925, 963, 1024, 976, 977, 978,
+ 964, 0, 238, 965, 966, 245, 967, 0, 924, 807,
+ 809, 808, 874, 875, 876, 877, 878, 879, 880, 810,
+ 811, 805, 972, 609, 979, 980, 0, 265, 321, 272,
+ 264, 580, 0, 0, 0, 0, 0, 0, 596, 0,
+ 0, 229, 0, 0, 0, 0, 0, 0, 0, 744,
+ 761, 0, 775, 0, 0, 0, 275, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 758, 759, 0, 0, 0, 0, 919,
+ 0, 760, 0, 0, 768, 981, 982, 983, 984, 985,
986, 987, 988, 989, 990, 991, 992, 993, 994, 995,
996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005,
1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015,
- 1016, 1017, 1018, 1019, 1020, 1021, 2121, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 917, 0, 0, 628, 0, 0, 915,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 968, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 969, 970, 256,
- 651, 814, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 822, 823, 280, 307,
- 899, 898, 897, 306, 308, 895, 896, 894, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 905, 927, 916, 780, 781, 906, 907, 931, 908,
- 783, 784, 928, 929, 777, 778, 782, 930, 932, 653,
+ 1016, 1017, 1018, 1019, 1020, 1021, 1022, 770, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 297, 0,
+ 402, 257, 0, 453, 918, 0, 0, 629, 0, 0,
+ 916, 0, 0, 0, 0, 365, 0, 330, 197, 225,
+ 0, 0, 412, 461, 473, 0, 0, 0, 969, 0,
+ 471, 426, 604, 233, 284, 458, 432, 469, 440, 287,
+ 0, 0, 470, 372, 585, 450, 601, 630, 631, 263,
+ 406, 615, 522, 623, 648, 226, 260, 420, 506, 607,
+ 494, 397, 581, 582, 329, 493, 295, 201, 369, 636,
+ 224, 479, 371, 242, 231, 587, 612, 299, 289, 456,
+ 643, 213, 517, 598, 239, 483, 0, 0, 651, 247,
+ 504, 610, 599, 215, 594, 503, 393, 326, 327, 214,
+ 0, 457, 268, 293, 0, 0, 258, 415, 970, 971,
+ 256, 652, 815, 622, 220, 0, 621, 408, 584, 595,
+ 394, 383, 219, 593, 392, 382, 334, 823, 824, 280,
+ 307, 900, 899, 898, 306, 308, 896, 897, 895, 207,
+ 608, 626, 0, 208, 0, 499, 611, 653, 452, 212,
+ 234, 235, 237, 0, 279, 283, 291, 294, 303, 304,
+ 313, 367, 419, 446, 442, 451, 0, 579, 602, 616,
+ 628, 634, 635, 637, 638, 639, 640, 641, 644, 642,
+ 407, 311, 495, 333, 373, 0, 0, 425, 472, 240,
+ 606, 496, 906, 928, 917, 781, 782, 907, 908, 932,
+ 909, 784, 785, 929, 930, 778, 779, 783, 931, 933,
654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 919, 766, 765,
- 0, 772, 773, 0, 802, 803, 805, 811, 812, 813,
- 824, 871, 872, 880, 882, 883, 881, 884, 885, 886,
- 889, 890, 891, 892, 887, 888, 893, 785, 789, 786,
- 787, 788, 800, 790, 791, 792, 793, 794, 795, 796,
- 797, 798, 799, 801, 942, 943, 944, 945, 946, 947,
- 817, 821, 820, 818, 819, 815, 816, 843, 842, 844,
- 845, 846, 847, 848, 849, 851, 850, 852, 853, 854,
- 855, 856, 857, 825, 826, 829, 830, 828, 827, 831,
- 840, 841, 832, 833, 834, 835, 836, 837, 839, 838,
- 858, 859, 860, 861, 862, 864, 863, 867, 868, 866,
- 865, 870, 869, 764, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 933, 262, 934, 0,
- 0, 938, 0, 0, 0, 940, 939, 0, 941, 903,
- 902, 0, 0, 935, 936, 0, 937, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 948, 949, 950, 951, 952, 953, 954, 955, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 973, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 776, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 763, 0, 0, 0, 270, 768, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 775, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 770,
- 771, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 95, 0, 0,
- 1022, 507, 958, 1089, 924, 962, 1023, 975, 976, 977,
- 963, 0, 238, 964, 965, 245, 966, 0, 923, 806,
- 808, 807, 873, 874, 875, 876, 877, 878, 879, 809,
- 810, 804, 971, 608, 978, 979, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 760,
- 0, 774, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 757, 758, 0, 0, 0, 0, 918, 0,
- 759, 0, 0, 767, 980, 981, 982, 983, 984, 985,
- 986, 987, 988, 989, 990, 991, 992, 993, 994, 995,
- 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005,
- 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015,
- 1016, 1017, 1018, 1019, 1020, 1021, 2119, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 917, 0, 0, 628, 0, 0, 915,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 968, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 969, 970, 256,
- 651, 814, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 822, 823, 280, 307,
- 899, 898, 897, 306, 308, 895, 896, 894, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 905, 927, 916, 780, 781, 906, 907, 931, 908,
- 783, 784, 928, 929, 777, 778, 782, 930, 932, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 919, 766, 765,
- 0, 772, 773, 0, 802, 803, 805, 811, 812, 813,
- 824, 871, 872, 880, 882, 883, 881, 884, 885, 886,
- 889, 890, 891, 892, 887, 888, 893, 785, 789, 786,
- 787, 788, 800, 790, 791, 792, 793, 794, 795, 796,
- 797, 798, 799, 801, 942, 943, 944, 945, 946, 947,
- 817, 821, 820, 818, 819, 815, 816, 843, 842, 844,
- 845, 846, 847, 848, 849, 851, 850, 852, 853, 854,
- 855, 856, 857, 825, 826, 829, 830, 828, 827, 831,
- 840, 841, 832, 833, 834, 835, 836, 837, 839, 838,
- 858, 859, 860, 861, 862, 864, 863, 867, 868, 866,
- 865, 870, 869, 764, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 933, 262, 934, 0,
- 0, 938, 0, 0, 0, 940, 939, 0, 941, 903,
- 902, 0, 0, 935, 936, 0, 937, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 948, 949, 950, 951, 952, 953, 954, 955, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 973, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 1140, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 1139, 628, 0, 0, 0,
- 0, 0, 1136, 1137, 365, 1097, 330, 197, 225, 1130,
- 1134, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 1708, 507, 958, 0, 0, 1705, 0, 0, 0, 0,
- 1703, 0, 238, 1704, 1702, 245, 1707, 0, 923, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 86, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 95, 0, 0,
- 0, 507, 194, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 94, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 2424, 0, 0, 2423, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 1774, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 1776, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 1778, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 1476, 0, 1477, 1478, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 86, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 95, 0, 1751,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 94, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 95, 0, 0,
- 0, 507, 194, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 2424, 0, 0, 2423, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 2371, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 1959, 507, 194, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 2369, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 1091, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 1097, 330, 197, 225, 1095,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 2371, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 1959, 507, 194, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 1751,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 3724, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 2130, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 2131, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 2877, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 2878, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 2862, 0, 0,
- 0, 0, 238, 0, 0, 245, 2863, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 1797, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 1796, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 725, 726, 727, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 4068, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 1959, 507, 194, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 3724, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 95, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 2425, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 194, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 1778, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 194, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 2077, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 2068, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 1926, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 1924, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 1922, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 1920, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 1918, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 1914, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 1912, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 1910, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 1885, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
+ 664, 665, 666, 667, 668, 669, 670, 671, 649, 508,
+ 514, 509, 510, 511, 512, 513, 0, 515, 920, 767,
+ 766, 0, 773, 774, 0, 803, 804, 806, 812, 813,
+ 814, 825, 872, 873, 881, 883, 884, 882, 885, 886,
+ 887, 890, 891, 892, 893, 888, 889, 894, 786, 790,
+ 787, 788, 789, 801, 791, 792, 793, 794, 795, 796,
+ 797, 798, 799, 800, 802, 943, 944, 945, 946, 947,
+ 948, 818, 822, 821, 819, 820, 816, 817, 844, 843,
+ 845, 846, 847, 848, 849, 850, 852, 851, 853, 854,
+ 855, 856, 857, 858, 826, 827, 830, 831, 829, 828,
+ 832, 841, 842, 833, 834, 835, 836, 837, 838, 840,
+ 839, 859, 860, 861, 862, 863, 865, 864, 868, 869,
+ 867, 866, 871, 870, 765, 196, 221, 368, 0, 454,
+ 288, 650, 618, 484, 613, 206, 223, 934, 262, 935,
+ 0, 0, 939, 0, 0, 0, 941, 940, 0, 942,
+ 904, 903, 0, 0, 936, 937, 0, 938, 0, 0,
+ 198, 200, 209, 222, 232, 236, 243, 261, 276, 278,
+ 285, 298, 310, 318, 319, 322, 328, 380, 386, 387,
+ 388, 389, 409, 410, 411, 414, 417, 418, 421, 423,
+ 424, 427, 431, 435, 436, 437, 439, 441, 443, 455,
+ 460, 474, 475, 476, 477, 478, 481, 482, 488, 489,
+ 490, 491, 492, 500, 501, 516, 586, 588, 605, 625,
+ 632, 480, 949, 950, 951, 952, 953, 954, 955, 956,
+ 300, 600, 633, 597, 645, 627, 438, 378, 0, 0,
+ 381, 281, 305, 320, 0, 617, 502, 227, 466, 290,
+ 251, 974, 0, 211, 246, 230, 259, 274, 277, 324,
+ 391, 400, 429, 434, 296, 271, 244, 459, 241, 485,
+ 519, 520, 521, 523, 395, 266, 433, 396, 0, 376,
+ 576, 577, 316, 0, 0, 0, 528, 0, 777, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 416, 0,
+ 0, 0, 764, 0, 0, 0, 270, 769, 0, 0,
+ 0, 366, 267, 0, 0, 204, 505, 0, 430, 0,
+ 203, 0, 487, 252, 377, 374, 583, 282, 273, 269,
+ 250, 317, 385, 428, 518, 422, 776, 370, 0, 0,
+ 497, 401, 0, 0, 0, 0, 0, 0, 0, 0,
+ 771, 772, 0, 0, 0, 0, 0, 0, 0, 0,
+ 323, 248, 325, 202, 413, 498, 286, 0, 95, 0,
+ 0, 1023, 507, 959, 748, 925, 963, 1024, 976, 977,
+ 978, 964, 0, 238, 965, 966, 245, 967, 0, 924,
+ 807, 809, 808, 874, 875, 876, 877, 878, 879, 880,
+ 810, 811, 805, 972, 609, 979, 980, 0, 265, 321,
+ 272, 264, 580, 0, 0, 0, 0, 0, 0, 596,
+ 0, 0, 229, 0, 0, 0, 0, 0, 0, 0,
+ 744, 761, 0, 775, 0, 0, 0, 275, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 758, 759, 0, 0, 0, 0,
+ 919, 0, 760, 0, 0, 768, 981, 982, 983, 984,
+ 985, 986, 987, 988, 989, 990, 991, 992, 993, 994,
+ 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004,
+ 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014,
+ 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 3171, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 297,
+ 0, 402, 257, 0, 453, 918, 0, 0, 629, 0,
+ 0, 916, 0, 0, 0, 0, 365, 0, 330, 197,
+ 225, 0, 0, 412, 461, 473, 0, 0, 0, 969,
+ 0, 471, 426, 604, 233, 284, 458, 432, 469, 440,
+ 287, 0, 0, 470, 372, 585, 450, 601, 630, 631,
+ 263, 406, 615, 522, 623, 648, 226, 260, 420, 506,
+ 607, 494, 397, 581, 582, 329, 493, 295, 201, 369,
+ 636, 224, 479, 371, 242, 231, 587, 612, 299, 289,
+ 456, 643, 213, 517, 598, 239, 483, 0, 0, 651,
+ 247, 504, 610, 599, 215, 594, 503, 393, 326, 327,
+ 214, 0, 457, 268, 293, 0, 0, 258, 415, 970,
+ 971, 256, 652, 815, 622, 220, 0, 621, 408, 584,
+ 595, 394, 383, 219, 593, 392, 382, 334, 823, 824,
+ 280, 307, 900, 899, 898, 306, 308, 896, 897, 895,
+ 207, 608, 626, 0, 208, 0, 499, 611, 653, 452,
+ 212, 234, 235, 237, 0, 279, 283, 291, 294, 303,
+ 304, 313, 367, 419, 446, 442, 451, 0, 579, 602,
+ 616, 628, 634, 635, 637, 638, 639, 640, 641, 644,
+ 642, 407, 311, 495, 333, 373, 0, 0, 425, 472,
+ 240, 606, 496, 906, 928, 917, 781, 782, 907, 908,
+ 932, 909, 784, 785, 929, 930, 778, 779, 783, 931,
+ 933, 654, 655, 656, 657, 658, 659, 660, 661, 662,
+ 663, 664, 665, 666, 667, 668, 669, 670, 671, 649,
+ 508, 514, 509, 510, 511, 512, 513, 0, 515, 920,
+ 767, 766, 0, 773, 774, 0, 803, 804, 806, 812,
+ 813, 814, 825, 872, 873, 881, 883, 884, 882, 885,
+ 886, 887, 890, 891, 892, 893, 888, 889, 894, 786,
+ 790, 787, 788, 789, 801, 791, 792, 793, 794, 795,
+ 796, 797, 798, 799, 800, 802, 943, 944, 945, 946,
+ 947, 948, 818, 822, 821, 819, 820, 816, 817, 844,
+ 843, 845, 846, 847, 848, 849, 850, 852, 851, 853,
+ 854, 855, 856, 857, 858, 826, 827, 830, 831, 829,
+ 828, 832, 841, 842, 833, 834, 835, 836, 837, 838,
+ 840, 839, 859, 860, 861, 862, 863, 865, 864, 868,
+ 869, 867, 866, 871, 870, 765, 196, 221, 368, 0,
+ 454, 288, 650, 618, 484, 613, 206, 223, 934, 262,
+ 935, 0, 0, 939, 0, 0, 0, 941, 940, 0,
+ 942, 904, 903, 0, 0, 936, 937, 0, 938, 0,
+ 0, 198, 200, 209, 222, 232, 236, 243, 261, 276,
+ 278, 285, 298, 310, 318, 319, 322, 328, 380, 386,
+ 387, 388, 389, 409, 410, 411, 414, 417, 418, 421,
+ 423, 424, 427, 431, 435, 436, 437, 439, 441, 443,
+ 455, 460, 474, 475, 476, 477, 478, 481, 482, 488,
+ 489, 490, 491, 492, 500, 501, 516, 586, 588, 605,
+ 625, 632, 480, 949, 950, 951, 952, 953, 954, 955,
+ 956, 300, 600, 633, 597, 645, 627, 438, 378, 0,
+ 0, 381, 281, 305, 320, 0, 617, 502, 227, 466,
+ 290, 251, 974, 0, 211, 246, 230, 259, 274, 277,
+ 324, 391, 400, 429, 434, 296, 271, 244, 459, 241,
+ 485, 519, 520, 521, 523, 395, 266, 433, 396, 0,
+ 376, 576, 577, 316, 0, 0, 0, 528, 0, 777,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 416,
+ 0, 0, 0, 764, 0, 0, 0, 270, 769, 0,
+ 0, 0, 366, 267, 0, 0, 204, 505, 0, 430,
+ 0, 203, 0, 487, 252, 377, 374, 583, 282, 273,
+ 269, 250, 317, 385, 428, 518, 422, 776, 370, 0,
+ 0, 497, 401, 0, 0, 0, 0, 0, 0, 0,
+ 0, 771, 772, 0, 0, 0, 0, 0, 0, 0,
+ 0, 323, 248, 325, 202, 413, 498, 286, 0, 95,
+ 0, 0, 1023, 507, 959, 748, 925, 963, 1024, 976,
+ 977, 978, 964, 0, 238, 965, 966, 245, 967, 0,
+ 924, 807, 809, 808, 874, 875, 876, 877, 878, 879,
+ 880, 810, 811, 805, 972, 609, 979, 980, 0, 265,
+ 321, 272, 264, 580, 0, 0, 0, 0, 0, 0,
+ 596, 0, 0, 229, 0, 0, 0, 0, 0, 0,
+ 0, 744, 761, 0, 775, 0, 0, 0, 275, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 758, 759, 0, 0, 0,
+ 0, 919, 0, 760, 0, 0, 768, 981, 982, 983,
+ 984, 985, 986, 987, 988, 989, 990, 991, 992, 993,
+ 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003,
+ 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013,
+ 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 3167,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 297, 0, 402, 257, 0, 453, 918, 0, 0, 629,
+ 0, 0, 916, 0, 0, 0, 0, 365, 0, 330,
+ 197, 225, 0, 0, 412, 461, 473, 0, 0, 0,
+ 969, 0, 471, 426, 604, 233, 284, 458, 432, 469,
+ 440, 287, 0, 0, 470, 372, 585, 450, 601, 630,
+ 631, 263, 406, 615, 522, 623, 648, 226, 260, 420,
+ 506, 607, 494, 397, 581, 582, 329, 493, 295, 201,
+ 369, 636, 224, 479, 371, 242, 231, 587, 612, 299,
+ 289, 456, 643, 213, 517, 598, 239, 483, 0, 0,
+ 651, 247, 504, 610, 599, 215, 594, 503, 393, 326,
+ 327, 214, 0, 457, 268, 293, 0, 0, 258, 415,
+ 970, 971, 256, 652, 815, 622, 220, 0, 621, 408,
+ 584, 595, 394, 383, 219, 593, 392, 382, 334, 823,
+ 824, 280, 307, 900, 899, 898, 306, 308, 896, 897,
+ 895, 207, 608, 626, 0, 208, 0, 499, 611, 653,
+ 452, 212, 234, 235, 237, 0, 279, 283, 291, 294,
+ 303, 304, 313, 367, 419, 446, 442, 451, 0, 579,
+ 602, 616, 628, 634, 635, 637, 638, 639, 640, 641,
+ 644, 642, 407, 311, 495, 333, 373, 0, 0, 425,
+ 472, 240, 606, 496, 906, 928, 917, 781, 782, 907,
+ 908, 932, 909, 784, 785, 929, 930, 778, 779, 783,
+ 931, 933, 654, 655, 656, 657, 658, 659, 660, 661,
+ 662, 663, 664, 665, 666, 667, 668, 669, 670, 671,
+ 649, 508, 514, 509, 510, 511, 512, 513, 0, 515,
+ 920, 767, 766, 0, 773, 774, 0, 803, 804, 806,
+ 812, 813, 814, 825, 872, 873, 881, 883, 884, 882,
+ 885, 886, 887, 890, 891, 892, 893, 888, 889, 894,
+ 786, 790, 787, 788, 789, 801, 791, 792, 793, 794,
+ 795, 796, 797, 798, 799, 800, 802, 943, 944, 945,
+ 946, 947, 948, 818, 822, 821, 819, 820, 816, 817,
+ 844, 843, 845, 846, 847, 848, 849, 850, 852, 851,
+ 853, 854, 855, 856, 857, 858, 826, 827, 830, 831,
+ 829, 828, 832, 841, 842, 833, 834, 835, 836, 837,
+ 838, 840, 839, 859, 860, 861, 862, 863, 865, 864,
+ 868, 869, 867, 866, 871, 870, 765, 196, 221, 368,
+ 0, 454, 288, 650, 618, 484, 613, 206, 223, 934,
+ 262, 935, 0, 0, 939, 0, 0, 0, 941, 940,
+ 0, 942, 904, 903, 0, 0, 936, 937, 0, 938,
+ 0, 0, 198, 200, 209, 222, 232, 236, 243, 261,
+ 276, 278, 285, 298, 310, 318, 319, 322, 328, 380,
+ 386, 387, 388, 389, 409, 410, 411, 414, 417, 418,
+ 421, 423, 424, 427, 431, 435, 436, 437, 439, 441,
+ 443, 455, 460, 474, 475, 476, 477, 478, 481, 482,
+ 488, 489, 490, 491, 492, 500, 501, 516, 586, 588,
+ 605, 625, 632, 480, 949, 950, 951, 952, 953, 954,
+ 955, 956, 300, 600, 633, 597, 645, 627, 438, 378,
+ 0, 0, 381, 281, 305, 320, 0, 617, 502, 227,
+ 466, 290, 251, 974, 0, 211, 246, 230, 259, 274,
+ 277, 324, 391, 400, 429, 434, 296, 271, 244, 459,
+ 241, 485, 519, 520, 521, 523, 395, 266, 433, 396,
+ 0, 376, 576, 577, 316, 0, 0, 0, 528, 0,
+ 777, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 416, 0, 0, 0, 764, 0, 0, 0, 270, 769,
+ 0, 0, 0, 366, 267, 0, 0, 204, 505, 0,
+ 430, 0, 203, 0, 487, 252, 377, 374, 583, 282,
+ 273, 269, 250, 317, 385, 428, 518, 422, 776, 370,
+ 0, 0, 497, 401, 0, 0, 0, 0, 0, 0,
+ 0, 0, 771, 772, 0, 0, 0, 0, 0, 0,
+ 0, 0, 323, 248, 325, 202, 413, 498, 286, 0,
+ 95, 0, 0, 1023, 507, 959, 1090, 925, 963, 1024,
+ 976, 977, 978, 964, 0, 238, 965, 966, 245, 967,
+ 0, 924, 807, 809, 808, 874, 875, 876, 877, 878,
+ 879, 880, 810, 811, 805, 972, 609, 979, 980, 0,
+ 265, 321, 272, 264, 580, 0, 0, 0, 0, 0,
+ 0, 596, 0, 0, 229, 0, 0, 0, 0, 0,
+ 0, 0, 0, 761, 0, 775, 0, 0, 0, 275,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 758, 759, 0, 0,
+ 0, 0, 919, 0, 760, 0, 0, 768, 981, 982,
+ 983, 984, 985, 986, 987, 988, 989, 990, 991, 992,
+ 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002,
+ 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012,
+ 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022,
+ 770, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 297, 0, 402, 257, 0, 453, 918, 0, 0,
+ 629, 0, 0, 916, 0, 0, 0, 0, 365, 0,
+ 330, 197, 225, 0, 0, 412, 461, 473, 0, 0,
+ 0, 969, 0, 471, 426, 604, 233, 284, 458, 432,
+ 469, 440, 287, 0, 0, 470, 372, 585, 450, 601,
+ 630, 631, 263, 406, 615, 522, 623, 648, 226, 260,
+ 420, 506, 607, 494, 397, 581, 582, 329, 493, 295,
+ 201, 369, 636, 224, 479, 371, 242, 231, 587, 612,
+ 299, 289, 456, 643, 213, 517, 598, 239, 483, 0,
+ 0, 651, 247, 504, 610, 599, 215, 594, 503, 393,
+ 326, 327, 214, 0, 457, 268, 293, 0, 0, 258,
+ 415, 970, 971, 256, 652, 815, 622, 220, 0, 621,
+ 408, 584, 595, 394, 383, 219, 593, 392, 382, 334,
+ 823, 824, 280, 307, 900, 899, 898, 306, 308, 896,
+ 897, 895, 207, 608, 626, 0, 208, 0, 499, 611,
+ 653, 452, 212, 234, 235, 237, 0, 279, 283, 291,
+ 294, 303, 304, 313, 367, 419, 446, 442, 451, 0,
+ 579, 602, 616, 628, 634, 635, 637, 638, 639, 640,
+ 641, 644, 642, 407, 311, 495, 333, 373, 0, 0,
+ 425, 472, 240, 606, 496, 906, 928, 917, 781, 782,
+ 907, 908, 932, 909, 784, 785, 929, 930, 778, 779,
+ 783, 931, 933, 654, 655, 656, 657, 658, 659, 660,
+ 661, 662, 663, 664, 665, 666, 667, 668, 669, 670,
+ 671, 649, 508, 514, 509, 510, 511, 512, 513, 0,
+ 515, 920, 767, 766, 0, 773, 774, 0, 803, 804,
+ 806, 812, 813, 814, 825, 872, 873, 881, 883, 884,
+ 882, 885, 886, 887, 890, 891, 892, 893, 888, 889,
+ 894, 786, 790, 787, 788, 789, 801, 791, 792, 793,
+ 794, 795, 796, 797, 798, 799, 800, 802, 943, 944,
+ 945, 946, 947, 948, 818, 822, 821, 819, 820, 816,
+ 817, 844, 843, 845, 846, 847, 848, 849, 850, 852,
+ 851, 853, 854, 855, 856, 857, 858, 826, 827, 830,
+ 831, 829, 828, 832, 841, 842, 833, 834, 835, 836,
+ 837, 838, 840, 839, 859, 860, 861, 862, 863, 865,
+ 864, 868, 869, 867, 866, 871, 870, 765, 196, 221,
+ 368, 0, 454, 288, 650, 618, 484, 613, 206, 223,
+ 934, 262, 935, 0, 0, 939, 0, 0, 0, 941,
+ 940, 0, 942, 904, 903, 0, 0, 936, 937, 0,
+ 938, 0, 0, 198, 200, 209, 222, 232, 236, 243,
+ 261, 276, 278, 285, 298, 310, 318, 319, 322, 328,
+ 380, 386, 387, 388, 389, 409, 410, 411, 414, 417,
+ 418, 421, 423, 424, 427, 431, 435, 436, 437, 439,
+ 441, 443, 455, 460, 474, 475, 476, 477, 478, 481,
+ 482, 488, 489, 490, 491, 492, 500, 501, 516, 586,
+ 588, 605, 625, 632, 480, 949, 950, 951, 952, 953,
+ 954, 955, 956, 300, 600, 633, 597, 645, 627, 438,
+ 378, 0, 0, 381, 281, 305, 320, 0, 617, 502,
+ 227, 466, 290, 251, 974, 0, 211, 246, 230, 259,
+ 274, 277, 324, 391, 400, 429, 434, 296, 271, 244,
+ 459, 241, 485, 519, 520, 521, 523, 395, 266, 433,
+ 396, 0, 376, 576, 577, 316, 0, 0, 0, 528,
+ 0, 777, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 416, 0, 0, 0, 764, 0, 0, 0, 270,
+ 769, 0, 0, 0, 366, 267, 0, 0, 204, 505,
+ 0, 430, 0, 203, 0, 487, 252, 377, 374, 583,
+ 282, 273, 269, 250, 317, 385, 428, 518, 422, 776,
+ 370, 0, 0, 497, 401, 0, 0, 0, 0, 0,
+ 0, 0, 0, 771, 772, 0, 0, 0, 0, 0,
+ 0, 0, 0, 323, 248, 325, 202, 413, 498, 286,
+ 0, 95, 0, 0, 1023, 507, 959, 1090, 925, 963,
+ 1024, 976, 977, 978, 964, 0, 238, 965, 966, 245,
+ 967, 0, 924, 807, 809, 808, 874, 875, 876, 877,
+ 878, 879, 880, 810, 811, 805, 972, 609, 979, 980,
+ 0, 265, 321, 272, 264, 580, 0, 0, 0, 0,
+ 0, 0, 596, 0, 0, 229, 0, 0, 0, 0,
+ 0, 0, 0, 0, 761, 0, 775, 0, 0, 0,
+ 275, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 758, 759, 0,
+ 0, 0, 0, 919, 0, 760, 0, 0, 768, 981,
+ 982, 983, 984, 985, 986, 987, 988, 989, 990, 991,
+ 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001,
+ 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011,
+ 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021,
+ 1022, 2123, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 297, 0, 402, 257, 0, 453, 918, 0,
+ 0, 629, 0, 0, 916, 0, 0, 0, 0, 365,
+ 0, 330, 197, 225, 0, 0, 412, 461, 473, 0,
+ 0, 0, 969, 0, 471, 426, 604, 233, 284, 458,
+ 432, 469, 440, 287, 0, 0, 470, 372, 585, 450,
+ 601, 630, 631, 263, 406, 615, 522, 623, 648, 226,
+ 260, 420, 506, 607, 494, 397, 581, 582, 329, 493,
+ 295, 201, 369, 636, 224, 479, 371, 242, 231, 587,
+ 612, 299, 289, 456, 643, 213, 517, 598, 239, 483,
+ 0, 0, 651, 247, 504, 610, 599, 215, 594, 503,
+ 393, 326, 327, 214, 0, 457, 268, 293, 0, 0,
+ 258, 415, 970, 971, 256, 652, 815, 622, 220, 0,
+ 621, 408, 584, 595, 394, 383, 219, 593, 392, 382,
+ 334, 823, 824, 280, 307, 900, 899, 898, 306, 308,
+ 896, 897, 895, 207, 608, 626, 0, 208, 0, 499,
+ 611, 653, 452, 212, 234, 235, 237, 0, 279, 283,
+ 291, 294, 303, 304, 313, 367, 419, 446, 442, 451,
+ 0, 579, 602, 616, 628, 634, 635, 637, 638, 639,
+ 640, 641, 644, 642, 407, 311, 495, 333, 373, 0,
+ 0, 425, 472, 240, 606, 496, 906, 928, 917, 781,
+ 782, 907, 908, 932, 909, 784, 785, 929, 930, 778,
+ 779, 783, 931, 933, 654, 655, 656, 657, 658, 659,
+ 660, 661, 662, 663, 664, 665, 666, 667, 668, 669,
+ 670, 671, 649, 508, 514, 509, 510, 511, 512, 513,
+ 0, 515, 920, 767, 766, 0, 773, 774, 0, 803,
+ 804, 806, 812, 813, 814, 825, 872, 873, 881, 883,
+ 884, 882, 885, 886, 887, 890, 891, 892, 893, 888,
+ 889, 894, 786, 790, 787, 788, 789, 801, 791, 792,
+ 793, 794, 795, 796, 797, 798, 799, 800, 802, 943,
+ 944, 945, 946, 947, 948, 818, 822, 821, 819, 820,
+ 816, 817, 844, 843, 845, 846, 847, 848, 849, 850,
+ 852, 851, 853, 854, 855, 856, 857, 858, 826, 827,
+ 830, 831, 829, 828, 832, 841, 842, 833, 834, 835,
+ 836, 837, 838, 840, 839, 859, 860, 861, 862, 863,
+ 865, 864, 868, 869, 867, 866, 871, 870, 765, 196,
+ 221, 368, 0, 454, 288, 650, 618, 484, 613, 206,
+ 223, 934, 262, 935, 0, 0, 939, 0, 0, 0,
+ 941, 940, 0, 942, 904, 903, 0, 0, 936, 937,
+ 0, 938, 0, 0, 198, 200, 209, 222, 232, 236,
+ 243, 261, 276, 278, 285, 298, 310, 318, 319, 322,
+ 328, 380, 386, 387, 388, 389, 409, 410, 411, 414,
+ 417, 418, 421, 423, 424, 427, 431, 435, 436, 437,
+ 439, 441, 443, 455, 460, 474, 475, 476, 477, 478,
+ 481, 482, 488, 489, 490, 491, 492, 500, 501, 516,
+ 586, 588, 605, 625, 632, 480, 949, 950, 951, 952,
+ 953, 954, 955, 956, 300, 600, 633, 597, 645, 627,
+ 438, 378, 0, 0, 381, 281, 305, 320, 0, 617,
+ 502, 227, 466, 290, 251, 974, 0, 211, 246, 230,
+ 259, 274, 277, 324, 391, 400, 429, 434, 296, 271,
+ 244, 459, 241, 485, 519, 520, 521, 523, 395, 266,
+ 433, 396, 0, 376, 576, 577, 316, 0, 0, 0,
+ 528, 0, 777, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 416, 0, 0, 0, 764, 0, 0, 0,
+ 270, 769, 0, 0, 0, 366, 267, 0, 0, 204,
+ 505, 0, 430, 0, 203, 0, 487, 252, 377, 374,
+ 583, 282, 273, 269, 250, 317, 385, 428, 518, 422,
+ 776, 370, 0, 0, 497, 401, 0, 0, 0, 0,
+ 0, 0, 0, 0, 771, 772, 0, 0, 0, 0,
+ 0, 0, 0, 0, 323, 248, 325, 202, 413, 498,
+ 286, 0, 95, 0, 0, 1023, 507, 959, 1090, 925,
+ 963, 1024, 976, 977, 978, 964, 0, 238, 965, 966,
+ 245, 967, 0, 924, 807, 809, 808, 874, 875, 876,
+ 877, 878, 879, 880, 810, 811, 805, 972, 609, 979,
+ 980, 0, 265, 321, 272, 264, 580, 0, 0, 0,
+ 0, 0, 0, 596, 0, 0, 229, 0, 0, 0,
+ 0, 0, 0, 0, 0, 761, 0, 775, 0, 0,
+ 0, 275, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 758, 759,
+ 0, 0, 0, 0, 919, 0, 760, 0, 0, 768,
+ 981, 982, 983, 984, 985, 986, 987, 988, 989, 990,
+ 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000,
+ 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010,
+ 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020,
+ 1021, 1022, 2121, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 297, 0, 402, 257, 0, 453, 918,
+ 0, 0, 629, 0, 0, 916, 0, 0, 0, 0,
+ 365, 0, 330, 197, 225, 0, 0, 412, 461, 473,
+ 0, 0, 0, 969, 0, 471, 426, 604, 233, 284,
+ 458, 432, 469, 440, 287, 0, 0, 470, 372, 585,
+ 450, 601, 630, 631, 263, 406, 615, 522, 623, 648,
+ 226, 260, 420, 506, 607, 494, 397, 581, 582, 329,
+ 493, 295, 201, 369, 636, 224, 479, 371, 242, 231,
+ 587, 612, 299, 289, 456, 643, 213, 517, 598, 239,
+ 483, 0, 0, 651, 247, 504, 610, 599, 215, 594,
+ 503, 393, 326, 327, 214, 0, 457, 268, 293, 0,
+ 0, 258, 415, 970, 971, 256, 652, 815, 622, 220,
+ 0, 621, 408, 584, 595, 394, 383, 219, 593, 392,
+ 382, 334, 823, 824, 280, 307, 900, 899, 898, 306,
+ 308, 896, 897, 895, 207, 608, 626, 0, 208, 0,
+ 499, 611, 653, 452, 212, 234, 235, 237, 0, 279,
+ 283, 291, 294, 303, 304, 313, 367, 419, 446, 442,
+ 451, 0, 579, 602, 616, 628, 634, 635, 637, 638,
+ 639, 640, 641, 644, 642, 407, 311, 495, 333, 373,
+ 0, 0, 425, 472, 240, 606, 496, 906, 928, 917,
+ 781, 782, 907, 908, 932, 909, 784, 785, 929, 930,
+ 778, 779, 783, 931, 933, 654, 655, 656, 657, 658,
+ 659, 660, 661, 662, 663, 664, 665, 666, 667, 668,
+ 669, 670, 671, 649, 508, 514, 509, 510, 511, 512,
+ 513, 0, 515, 920, 767, 766, 0, 773, 774, 0,
+ 803, 804, 806, 812, 813, 814, 825, 872, 873, 881,
+ 883, 884, 882, 885, 886, 887, 890, 891, 892, 893,
+ 888, 889, 894, 786, 790, 787, 788, 789, 801, 791,
+ 792, 793, 794, 795, 796, 797, 798, 799, 800, 802,
+ 943, 944, 945, 946, 947, 948, 818, 822, 821, 819,
+ 820, 816, 817, 844, 843, 845, 846, 847, 848, 849,
+ 850, 852, 851, 853, 854, 855, 856, 857, 858, 826,
+ 827, 830, 831, 829, 828, 832, 841, 842, 833, 834,
+ 835, 836, 837, 838, 840, 839, 859, 860, 861, 862,
+ 863, 865, 864, 868, 869, 867, 866, 871, 870, 765,
+ 196, 221, 368, 0, 454, 288, 650, 618, 484, 613,
+ 206, 223, 934, 262, 935, 0, 0, 939, 0, 0,
+ 0, 941, 940, 0, 942, 904, 903, 0, 0, 936,
+ 937, 0, 938, 0, 0, 198, 200, 209, 222, 232,
+ 236, 243, 261, 276, 278, 285, 298, 310, 318, 319,
+ 322, 328, 380, 386, 387, 388, 389, 409, 410, 411,
+ 414, 417, 418, 421, 423, 424, 427, 431, 435, 436,
+ 437, 439, 441, 443, 455, 460, 474, 475, 476, 477,
+ 478, 481, 482, 488, 489, 490, 491, 492, 500, 501,
+ 516, 586, 588, 605, 625, 632, 480, 949, 950, 951,
+ 952, 953, 954, 955, 956, 300, 600, 633, 597, 645,
+ 627, 438, 378, 0, 0, 381, 281, 305, 320, 0,
+ 617, 502, 227, 466, 290, 251, 974, 0, 211, 246,
+ 230, 259, 274, 277, 324, 391, 400, 429, 434, 296,
+ 271, 244, 459, 241, 485, 519, 520, 521, 523, 395,
+ 266, 433, 396, 0, 376, 576, 577, 316, 0, 0,
+ 0, 528, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 416, 0, 0, 0, 0, 0, 0,
+ 0, 270, 0, 0, 0, 0, 366, 267, 0, 0,
+ 204, 505, 0, 430, 0, 203, 0, 487, 252, 377,
+ 374, 583, 282, 273, 269, 250, 317, 385, 428, 518,
+ 422, 0, 370, 0, 0, 497, 401, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 323, 248, 325, 202, 413,
+ 498, 286, 0, 0, 0, 0, 0, 507, 724, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 238, 0,
+ 0, 245, 0, 0, 0, 351, 360, 359, 339, 340,
+ 342, 344, 350, 357, 363, 336, 345, 0, 0, 609,
+ 0, 0, 0, 265, 321, 272, 264, 580, 0, 0,
+ 0, 0, 0, 0, 596, 0, 0, 229, 0, 1141,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 275, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 1782, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 194, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 297, 0, 402, 257, 0, 453,
+ 0, 0, 1140, 629, 0, 0, 0, 0, 0, 1137,
+ 1138, 365, 1098, 330, 197, 225, 1131, 1135, 412, 461,
+ 473, 0, 0, 0, 253, 0, 471, 426, 604, 233,
+ 284, 458, 432, 469, 440, 287, 0, 0, 470, 372,
+ 585, 450, 601, 630, 631, 263, 406, 615, 522, 623,
+ 648, 226, 260, 420, 506, 607, 494, 397, 581, 582,
+ 329, 493, 295, 201, 369, 636, 224, 479, 371, 242,
+ 231, 587, 612, 299, 289, 456, 643, 213, 517, 598,
+ 239, 483, 0, 0, 651, 247, 504, 610, 599, 215,
+ 594, 503, 393, 326, 327, 214, 0, 457, 268, 293,
+ 0, 0, 258, 415, 589, 590, 256, 652, 228, 622,
+ 220, 0, 621, 408, 584, 595, 394, 383, 219, 593,
+ 392, 382, 334, 355, 356, 280, 307, 447, 375, 448,
+ 306, 308, 404, 403, 405, 207, 608, 626, 0, 208,
+ 0, 499, 611, 653, 452, 212, 234, 235, 237, 0,
+ 279, 283, 291, 294, 303, 304, 313, 367, 419, 446,
+ 442, 451, 0, 579, 602, 616, 628, 634, 635, 637,
+ 638, 639, 640, 641, 644, 642, 407, 311, 495, 333,
+ 373, 0, 0, 425, 472, 240, 606, 496, 199, 0,
+ 0, 0, 0, 254, 255, 0, 575, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 654, 655, 656, 657,
+ 658, 659, 660, 661, 662, 663, 664, 665, 666, 667,
+ 668, 669, 670, 671, 649, 508, 514, 509, 510, 511,
+ 512, 513, 0, 515, 0, 0, 0, 0, 0, 398,
+ 0, 591, 592, 672, 384, 486, 603, 335, 349, 352,
+ 341, 361, 0, 362, 337, 338, 343, 346, 347, 348,
+ 353, 354, 358, 364, 249, 210, 390, 399, 578, 312,
+ 216, 217, 218, 524, 525, 526, 527, 619, 620, 624,
+ 205, 462, 463, 464, 465, 292, 614, 309, 468, 467,
+ 331, 332, 379, 449, 540, 542, 553, 557, 559, 561,
+ 567, 570, 541, 543, 554, 558, 560, 562, 568, 571,
+ 530, 532, 534, 536, 549, 548, 545, 573, 574, 551,
+ 556, 535, 547, 552, 565, 572, 569, 529, 533, 537,
+ 546, 564, 563, 544, 555, 566, 550, 538, 531, 539,
+ 0, 196, 221, 368, 0, 454, 288, 650, 618, 484,
+ 613, 206, 223, 0, 262, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 198, 200, 209, 222,
+ 232, 236, 243, 261, 276, 278, 285, 298, 310, 318,
+ 319, 322, 328, 380, 386, 387, 388, 389, 409, 410,
+ 411, 414, 417, 418, 421, 423, 424, 427, 431, 435,
+ 436, 437, 439, 441, 443, 455, 460, 474, 475, 476,
+ 477, 478, 481, 482, 488, 489, 490, 491, 492, 500,
+ 501, 516, 586, 588, 605, 625, 632, 480, 301, 302,
+ 444, 445, 314, 315, 646, 647, 300, 600, 633, 597,
+ 645, 627, 438, 378, 0, 0, 381, 281, 305, 320,
+ 0, 617, 502, 227, 466, 290, 251, 0, 0, 211,
+ 246, 230, 259, 274, 277, 324, 391, 400, 429, 434,
+ 296, 271, 244, 459, 241, 485, 519, 520, 521, 523,
+ 395, 266, 433, 396, 0, 376, 576, 577, 316, 0,
+ 0, 0, 528, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 416, 0, 0, 0, 0, 0,
+ 0, 0, 270, 0, 0, 0, 0, 366, 267, 0,
+ 0, 204, 505, 0, 430, 0, 203, 0, 487, 252,
+ 377, 374, 583, 282, 273, 269, 250, 317, 385, 428,
+ 518, 422, 0, 370, 0, 0, 497, 401, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 323, 248, 325, 202,
+ 413, 498, 286, 0, 0, 0, 0, 1710, 507, 959,
+ 0, 0, 1707, 0, 0, 0, 0, 1705, 0, 238,
+ 1706, 1704, 245, 1709, 0, 924, 351, 360, 359, 339,
+ 340, 342, 344, 350, 357, 363, 336, 345, 0, 0,
+ 609, 0, 0, 0, 265, 321, 272, 264, 580, 0,
+ 0, 0, 0, 0, 0, 596, 0, 0, 229, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 275, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 297, 0, 402, 257, 0,
+ 453, 0, 0, 0, 629, 0, 0, 0, 0, 0,
+ 0, 0, 365, 0, 330, 197, 225, 0, 0, 412,
+ 461, 473, 0, 0, 0, 253, 0, 471, 426, 604,
+ 233, 284, 458, 432, 469, 440, 287, 0, 0, 470,
+ 372, 585, 450, 601, 630, 631, 263, 406, 615, 522,
+ 623, 648, 226, 260, 420, 506, 607, 494, 397, 581,
+ 582, 329, 493, 295, 201, 369, 636, 224, 479, 371,
+ 242, 231, 587, 612, 299, 289, 456, 643, 213, 517,
+ 598, 239, 483, 0, 0, 651, 247, 504, 610, 599,
+ 215, 594, 503, 393, 326, 327, 214, 0, 457, 268,
+ 293, 0, 0, 258, 415, 589, 590, 256, 652, 228,
+ 622, 220, 0, 621, 408, 584, 595, 394, 383, 219,
+ 593, 392, 382, 334, 355, 356, 280, 307, 447, 375,
+ 448, 306, 308, 404, 403, 405, 207, 608, 626, 0,
+ 208, 0, 499, 611, 653, 452, 212, 234, 235, 237,
+ 0, 279, 283, 291, 294, 303, 304, 313, 367, 419,
+ 446, 442, 451, 0, 579, 602, 616, 628, 634, 635,
+ 637, 638, 639, 640, 641, 644, 642, 407, 311, 495,
+ 333, 373, 0, 0, 425, 472, 240, 606, 496, 199,
+ 0, 0, 0, 0, 254, 255, 0, 575, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 654, 655, 656,
+ 657, 658, 659, 660, 661, 662, 663, 664, 665, 666,
+ 667, 668, 669, 670, 671, 649, 508, 514, 509, 510,
+ 511, 512, 513, 0, 515, 0, 0, 0, 0, 0,
+ 398, 0, 591, 592, 672, 384, 486, 603, 335, 349,
+ 352, 341, 361, 0, 362, 337, 338, 343, 346, 347,
+ 348, 353, 354, 358, 364, 249, 210, 390, 399, 578,
+ 312, 216, 217, 218, 524, 525, 526, 527, 619, 620,
+ 624, 205, 462, 463, 464, 465, 292, 614, 309, 468,
+ 467, 331, 332, 379, 449, 540, 542, 553, 557, 559,
+ 561, 567, 570, 541, 543, 554, 558, 560, 562, 568,
+ 571, 530, 532, 534, 536, 549, 548, 545, 573, 574,
+ 551, 556, 535, 547, 552, 565, 572, 569, 529, 533,
+ 537, 546, 564, 563, 544, 555, 566, 550, 538, 531,
+ 539, 0, 196, 221, 368, 0, 454, 288, 650, 618,
+ 484, 613, 206, 223, 0, 262, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 198, 200, 209,
+ 222, 232, 236, 243, 261, 276, 278, 285, 298, 310,
+ 318, 319, 322, 328, 380, 386, 387, 388, 389, 409,
+ 410, 411, 414, 417, 418, 421, 423, 424, 427, 431,
+ 435, 436, 437, 439, 441, 443, 455, 460, 474, 475,
+ 476, 477, 478, 481, 482, 488, 489, 490, 491, 492,
+ 500, 501, 516, 586, 588, 605, 625, 632, 480, 301,
+ 302, 444, 445, 314, 315, 646, 647, 300, 600, 633,
+ 597, 645, 627, 438, 378, 0, 0, 381, 281, 305,
+ 320, 0, 617, 502, 227, 466, 290, 251, 0, 0,
+ 211, 246, 230, 259, 274, 277, 324, 391, 400, 429,
+ 434, 296, 271, 244, 459, 241, 485, 519, 520, 521,
+ 523, 395, 266, 433, 396, 0, 376, 576, 577, 316,
+ 0, 0, 86, 528, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 416, 0, 0, 0, 0,
+ 0, 0, 0, 270, 0, 0, 0, 0, 366, 267,
+ 0, 0, 204, 505, 0, 430, 0, 203, 0, 487,
+ 252, 377, 374, 583, 282, 273, 269, 250, 317, 385,
+ 428, 518, 422, 0, 370, 0, 0, 497, 401, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 323, 248, 325,
+ 202, 413, 498, 286, 0, 95, 0, 0, 0, 507,
+ 194, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 238, 0, 0, 245, 0, 0, 0, 351, 360, 359,
+ 339, 340, 342, 344, 350, 357, 363, 336, 345, 0,
+ 0, 609, 0, 0, 0, 265, 321, 272, 264, 580,
+ 0, 0, 0, 0, 0, 0, 596, 0, 0, 229,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 275, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 95, 0, 0,
- 0, 507, 958, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 297, 0, 402, 257,
+ 0, 453, 0, 0, 0, 629, 0, 0, 0, 0,
+ 0, 0, 0, 365, 0, 330, 197, 225, 0, 0,
+ 412, 461, 473, 0, 0, 0, 253, 0, 471, 426,
+ 604, 233, 284, 458, 432, 469, 440, 287, 0, 0,
+ 470, 372, 585, 450, 601, 630, 631, 263, 406, 615,
+ 522, 623, 648, 226, 260, 420, 506, 607, 494, 397,
+ 581, 582, 329, 493, 295, 201, 369, 636, 224, 479,
+ 371, 242, 231, 587, 612, 299, 289, 456, 643, 213,
+ 517, 598, 239, 483, 0, 0, 651, 247, 504, 610,
+ 599, 215, 594, 503, 393, 326, 327, 214, 0, 457,
+ 268, 293, 0, 0, 258, 415, 589, 590, 256, 652,
+ 228, 622, 220, 0, 621, 408, 584, 595, 394, 383,
+ 219, 593, 392, 382, 334, 355, 356, 280, 307, 447,
+ 375, 448, 306, 308, 404, 403, 405, 207, 608, 626,
+ 0, 208, 0, 499, 611, 653, 452, 212, 234, 235,
+ 237, 0, 279, 283, 291, 294, 303, 304, 313, 367,
+ 419, 446, 442, 451, 0, 579, 602, 616, 628, 634,
+ 635, 637, 638, 639, 640, 641, 644, 642, 407, 311,
+ 495, 333, 373, 0, 0, 425, 472, 240, 606, 496,
+ 199, 0, 0, 0, 0, 254, 255, 0, 575, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 654, 655,
+ 656, 657, 658, 659, 660, 661, 662, 663, 664, 665,
+ 666, 667, 668, 669, 670, 671, 649, 508, 514, 509,
+ 510, 511, 512, 513, 0, 515, 0, 0, 0, 0,
+ 0, 398, 0, 591, 592, 672, 384, 486, 603, 335,
+ 349, 352, 341, 361, 0, 362, 337, 338, 343, 346,
+ 347, 348, 353, 354, 358, 364, 249, 210, 390, 399,
+ 578, 312, 216, 217, 218, 524, 525, 526, 527, 619,
+ 620, 624, 205, 462, 463, 464, 465, 292, 614, 309,
+ 468, 467, 331, 332, 379, 449, 540, 542, 553, 557,
+ 559, 561, 567, 570, 541, 543, 554, 558, 560, 562,
+ 568, 571, 530, 532, 534, 536, 549, 548, 545, 573,
+ 574, 551, 556, 535, 547, 552, 565, 572, 569, 529,
+ 533, 537, 546, 564, 563, 544, 555, 566, 550, 538,
+ 531, 539, 0, 196, 221, 368, 94, 454, 288, 650,
+ 618, 484, 613, 206, 223, 0, 262, 0, 0, 0,
+ 0, 0, 0, 2426, 0, 0, 2425, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 198, 200,
+ 209, 222, 232, 236, 243, 261, 276, 278, 285, 298,
+ 310, 318, 319, 322, 328, 380, 386, 387, 388, 389,
+ 409, 410, 411, 414, 417, 418, 421, 423, 424, 427,
+ 431, 435, 436, 437, 439, 441, 443, 455, 460, 474,
+ 475, 476, 477, 478, 481, 482, 488, 489, 490, 491,
+ 492, 500, 501, 516, 586, 588, 605, 625, 632, 480,
+ 301, 302, 444, 445, 314, 315, 646, 647, 300, 600,
+ 633, 597, 645, 627, 438, 378, 0, 0, 381, 281,
+ 305, 320, 0, 617, 502, 227, 466, 290, 251, 0,
+ 0, 211, 246, 230, 259, 274, 277, 324, 391, 400,
+ 429, 434, 296, 271, 244, 459, 241, 485, 519, 520,
+ 521, 523, 395, 266, 433, 1776, 0, 376, 576, 577,
+ 316, 0, 0, 0, 528, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 416, 0, 0, 1778,
+ 0, 0, 0, 0, 270, 0, 0, 0, 0, 366,
+ 267, 0, 0, 204, 505, 0, 430, 0, 203, 0,
+ 487, 252, 377, 374, 583, 282, 273, 269, 250, 317,
+ 385, 428, 518, 422, 0, 370, 0, 0, 497, 401,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 323, 248,
+ 325, 202, 413, 498, 286, 0, 0, 0, 0, 1780,
+ 507, 724, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 238, 0, 0, 245, 0, 0, 0, 351, 360,
+ 359, 339, 340, 342, 344, 350, 357, 363, 336, 345,
+ 0, 0, 609, 0, 0, 0, 265, 321, 272, 264,
+ 580, 0, 0, 0, 0, 0, 0, 596, 0, 0,
+ 229, 0, 0, 0, 1478, 0, 1479, 1480, 0, 0,
0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
@@ -6874,42 +4551,42 @@ var yyAct = [...]int{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
+ 257, 0, 453, 0, 0, 0, 629, 0, 0, 0,
0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
+ 426, 604, 233, 284, 458, 432, 469, 440, 287, 0,
+ 0, 470, 372, 585, 450, 601, 630, 631, 263, 406,
+ 615, 522, 623, 648, 226, 260, 420, 506, 607, 494,
+ 397, 581, 582, 329, 493, 295, 201, 369, 636, 224,
+ 479, 371, 242, 231, 587, 612, 299, 289, 456, 643,
+ 213, 517, 598, 239, 483, 0, 0, 651, 247, 504,
+ 610, 599, 215, 594, 503, 393, 326, 327, 214, 0,
457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
+ 652, 228, 622, 220, 0, 621, 408, 584, 595, 394,
383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
+ 447, 375, 448, 306, 308, 404, 403, 405, 207, 608,
+ 626, 0, 208, 0, 499, 611, 653, 452, 212, 234,
235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
+ 367, 419, 446, 442, 451, 0, 579, 602, 616, 628,
+ 634, 635, 637, 638, 639, 640, 641, 644, 642, 407,
+ 311, 495, 333, 373, 0, 0, 425, 472, 240, 606,
496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 654,
+ 655, 656, 657, 658, 659, 660, 661, 662, 663, 664,
+ 665, 666, 667, 668, 669, 670, 671, 649, 508, 514,
509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
+ 0, 0, 398, 0, 591, 592, 672, 384, 486, 603,
335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
+ 619, 620, 624, 205, 462, 463, 464, 465, 292, 614,
309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
+ 650, 618, 484, 613, 206, 223, 0, 262, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
@@ -6917,14 +4594,14 @@ var yyAct = [...]int{
389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
+ 491, 492, 500, 501, 516, 586, 588, 605, 625, 632,
+ 480, 301, 302, 444, 445, 314, 315, 646, 647, 300,
+ 600, 633, 597, 645, 627, 438, 378, 0, 0, 381,
+ 281, 305, 320, 0, 617, 502, 227, 466, 290, 251,
0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
+ 577, 316, 0, 0, 86, 528, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
@@ -6932,160 +4609,679 @@ var yyAct = [...]int{
317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 194, 0, 0, 0, 0, 0, 0, 0,
+ 248, 325, 202, 413, 498, 286, 0, 95, 0, 1753,
+ 0, 507, 724, 0, 0, 0, 0, 0, 0, 0,
0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 345, 0, 0, 609, 0, 0, 0, 265, 321, 272,
+ 264, 580, 0, 0, 0, 0, 0, 0, 596, 0,
+ 0, 229, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 275, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 297, 0,
+ 402, 257, 0, 453, 0, 0, 0, 629, 0, 0,
+ 0, 0, 0, 0, 0, 365, 0, 330, 197, 225,
+ 0, 0, 412, 461, 473, 0, 0, 0, 253, 0,
+ 471, 426, 604, 233, 284, 458, 432, 469, 440, 287,
+ 0, 0, 470, 372, 585, 450, 601, 630, 631, 263,
+ 406, 615, 522, 623, 648, 226, 260, 420, 506, 607,
+ 494, 397, 581, 582, 329, 493, 295, 201, 369, 636,
+ 224, 479, 371, 242, 231, 587, 612, 299, 289, 456,
+ 643, 213, 517, 598, 239, 483, 0, 0, 651, 247,
+ 504, 610, 599, 215, 594, 503, 393, 326, 327, 214,
+ 0, 457, 268, 293, 0, 0, 258, 415, 589, 590,
+ 256, 652, 228, 622, 220, 0, 621, 408, 584, 595,
+ 394, 383, 219, 593, 392, 382, 334, 355, 356, 280,
+ 307, 447, 375, 448, 306, 308, 404, 403, 405, 207,
+ 608, 626, 0, 208, 0, 499, 611, 653, 452, 212,
+ 234, 235, 237, 0, 279, 283, 291, 294, 303, 304,
+ 313, 367, 419, 446, 442, 451, 0, 579, 602, 616,
+ 628, 634, 635, 637, 638, 639, 640, 641, 644, 642,
+ 407, 311, 495, 333, 373, 0, 0, 425, 472, 240,
+ 606, 496, 199, 0, 0, 0, 0, 254, 255, 0,
+ 575, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
+ 664, 665, 666, 667, 668, 669, 670, 671, 649, 508,
+ 514, 509, 510, 511, 512, 513, 0, 515, 0, 0,
+ 0, 0, 0, 398, 0, 591, 592, 672, 384, 486,
+ 603, 335, 349, 352, 341, 361, 0, 362, 337, 338,
+ 343, 346, 347, 348, 353, 354, 358, 364, 249, 210,
+ 390, 399, 578, 312, 216, 217, 218, 524, 525, 526,
+ 527, 619, 620, 624, 205, 462, 463, 464, 465, 292,
+ 614, 309, 468, 467, 331, 332, 379, 449, 540, 542,
+ 553, 557, 559, 561, 567, 570, 541, 543, 554, 558,
+ 560, 562, 568, 571, 530, 532, 534, 536, 549, 548,
+ 545, 573, 574, 551, 556, 535, 547, 552, 565, 572,
+ 569, 529, 533, 537, 546, 564, 563, 544, 555, 566,
+ 550, 538, 531, 539, 0, 196, 221, 368, 94, 454,
+ 288, 650, 618, 484, 613, 206, 223, 0, 262, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 198, 200, 209, 222, 232, 236, 243, 261, 276, 278,
+ 285, 298, 310, 318, 319, 322, 328, 380, 386, 387,
+ 388, 389, 409, 410, 411, 414, 417, 418, 421, 423,
+ 424, 427, 431, 435, 436, 437, 439, 441, 443, 455,
+ 460, 474, 475, 476, 477, 478, 481, 482, 488, 489,
+ 490, 491, 492, 500, 501, 516, 586, 588, 605, 625,
+ 632, 480, 301, 302, 444, 445, 314, 315, 646, 647,
+ 300, 600, 633, 597, 645, 627, 438, 378, 0, 0,
+ 381, 281, 305, 320, 0, 617, 502, 227, 466, 290,
+ 251, 0, 0, 211, 246, 230, 259, 274, 277, 324,
+ 391, 400, 429, 434, 296, 271, 244, 459, 241, 485,
+ 519, 520, 521, 523, 395, 266, 433, 396, 0, 376,
+ 576, 577, 316, 0, 0, 0, 528, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 416, 0,
+ 0, 0, 0, 0, 0, 0, 270, 0, 0, 0,
+ 0, 366, 267, 0, 0, 204, 505, 0, 430, 0,
+ 203, 0, 487, 252, 377, 374, 583, 282, 273, 269,
+ 250, 317, 385, 428, 518, 422, 0, 370, 0, 0,
+ 497, 401, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 323, 248, 325, 202, 413, 498, 286, 0, 95, 0,
+ 0, 0, 507, 194, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 238, 0, 0, 245, 0, 0, 0,
+ 351, 360, 359, 339, 340, 342, 344, 350, 357, 363,
+ 336, 345, 0, 0, 609, 0, 0, 0, 265, 321,
+ 272, 264, 580, 0, 0, 0, 0, 0, 0, 596,
+ 0, 0, 229, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 275, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 297,
+ 0, 402, 257, 0, 453, 0, 0, 0, 629, 0,
+ 0, 0, 0, 0, 0, 0, 365, 0, 330, 197,
+ 225, 0, 0, 412, 461, 473, 0, 0, 0, 253,
+ 0, 471, 426, 604, 233, 284, 458, 432, 469, 440,
+ 287, 0, 0, 470, 372, 585, 450, 601, 630, 631,
+ 263, 406, 615, 522, 623, 648, 226, 260, 420, 506,
+ 607, 494, 397, 581, 582, 329, 493, 295, 201, 369,
+ 636, 224, 479, 371, 242, 231, 587, 612, 299, 289,
+ 456, 643, 213, 517, 598, 239, 483, 0, 0, 651,
+ 247, 504, 610, 599, 215, 594, 503, 393, 326, 327,
+ 214, 0, 457, 268, 293, 0, 0, 258, 415, 589,
+ 590, 256, 652, 228, 622, 220, 0, 621, 408, 584,
+ 595, 394, 383, 219, 593, 392, 382, 334, 355, 356,
+ 280, 307, 447, 375, 448, 306, 308, 404, 403, 405,
+ 207, 608, 626, 0, 208, 0, 499, 611, 653, 452,
+ 212, 234, 235, 237, 0, 279, 283, 291, 294, 303,
+ 304, 313, 367, 419, 446, 442, 451, 0, 579, 602,
+ 616, 628, 634, 635, 637, 638, 639, 640, 641, 644,
+ 642, 407, 311, 495, 333, 373, 0, 0, 425, 472,
+ 240, 606, 496, 199, 0, 0, 0, 0, 254, 255,
+ 0, 575, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 654, 655, 656, 657, 658, 659, 660, 661, 662,
+ 663, 664, 665, 666, 667, 668, 669, 670, 671, 649,
+ 508, 514, 509, 510, 511, 512, 513, 0, 515, 0,
+ 0, 0, 0, 0, 398, 0, 591, 592, 672, 384,
+ 486, 603, 335, 349, 352, 341, 361, 0, 362, 337,
+ 338, 343, 346, 347, 348, 353, 354, 358, 364, 249,
+ 210, 390, 399, 578, 312, 216, 217, 218, 524, 525,
+ 526, 527, 619, 620, 624, 205, 462, 463, 464, 465,
+ 292, 614, 309, 468, 467, 331, 332, 379, 449, 540,
+ 542, 553, 557, 559, 561, 567, 570, 541, 543, 554,
+ 558, 560, 562, 568, 571, 530, 532, 534, 536, 549,
+ 548, 545, 573, 574, 551, 556, 535, 547, 552, 565,
+ 572, 569, 529, 533, 537, 546, 564, 563, 544, 555,
+ 566, 550, 538, 531, 539, 0, 196, 221, 368, 0,
+ 454, 288, 650, 618, 484, 613, 206, 223, 0, 262,
+ 0, 0, 0, 0, 0, 0, 2426, 0, 0, 2425,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 198, 200, 209, 222, 232, 236, 243, 261, 276,
+ 278, 285, 298, 310, 318, 319, 322, 328, 380, 386,
+ 387, 388, 389, 409, 410, 411, 414, 417, 418, 421,
+ 423, 424, 427, 431, 435, 436, 437, 439, 441, 443,
+ 455, 460, 474, 475, 476, 477, 478, 481, 482, 488,
+ 489, 490, 491, 492, 500, 501, 516, 586, 588, 605,
+ 625, 632, 480, 301, 302, 444, 445, 314, 315, 646,
+ 647, 300, 600, 633, 597, 645, 627, 438, 378, 0,
+ 0, 381, 281, 305, 320, 0, 617, 502, 227, 466,
+ 290, 251, 0, 0, 211, 246, 230, 259, 274, 277,
+ 324, 391, 400, 429, 434, 296, 271, 244, 459, 241,
+ 485, 519, 520, 521, 523, 395, 266, 433, 396, 0,
+ 376, 576, 577, 316, 0, 0, 0, 528, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 416,
+ 0, 0, 2373, 0, 0, 0, 0, 270, 0, 0,
+ 0, 0, 366, 267, 0, 0, 204, 505, 0, 430,
+ 0, 203, 0, 487, 252, 377, 374, 583, 282, 273,
+ 269, 250, 317, 385, 428, 518, 422, 0, 370, 0,
+ 0, 497, 401, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 323, 248, 325, 202, 413, 498, 286, 0, 0,
+ 0, 0, 1961, 507, 194, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 238, 0, 0, 245, 0, 0,
+ 0, 351, 360, 359, 339, 340, 342, 344, 350, 357,
+ 363, 336, 345, 0, 0, 609, 0, 0, 0, 265,
+ 321, 272, 264, 580, 0, 0, 0, 0, 0, 0,
+ 596, 0, 0, 229, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 275, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 297, 0, 402, 257, 0, 453, 0, 0, 0, 629,
+ 0, 0, 0, 0, 0, 0, 0, 365, 0, 330,
+ 197, 225, 0, 0, 412, 461, 473, 0, 0, 0,
+ 253, 0, 471, 426, 604, 233, 284, 458, 432, 469,
+ 440, 287, 0, 2371, 470, 372, 585, 450, 601, 630,
+ 631, 263, 406, 615, 522, 623, 648, 226, 260, 420,
+ 506, 607, 494, 397, 581, 582, 329, 493, 295, 201,
+ 369, 636, 224, 479, 371, 242, 231, 587, 612, 299,
+ 289, 456, 643, 213, 517, 598, 239, 483, 0, 0,
+ 651, 247, 504, 610, 599, 215, 594, 503, 393, 326,
+ 327, 214, 0, 457, 268, 293, 0, 0, 258, 415,
+ 589, 590, 256, 652, 228, 622, 220, 0, 621, 408,
+ 584, 595, 394, 383, 219, 593, 392, 382, 334, 355,
+ 356, 280, 307, 447, 375, 448, 306, 308, 404, 403,
+ 405, 207, 608, 626, 0, 208, 0, 499, 611, 653,
+ 452, 212, 234, 235, 237, 0, 279, 283, 291, 294,
+ 303, 304, 313, 367, 419, 446, 442, 451, 0, 579,
+ 602, 616, 628, 634, 635, 637, 638, 639, 640, 641,
+ 644, 642, 407, 311, 495, 333, 373, 0, 0, 425,
+ 472, 240, 606, 496, 199, 0, 0, 0, 0, 254,
+ 255, 0, 575, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 654, 655, 656, 657, 658, 659, 660, 661,
+ 662, 663, 664, 665, 666, 667, 668, 669, 670, 671,
+ 649, 508, 514, 509, 510, 511, 512, 513, 0, 515,
+ 0, 0, 0, 0, 0, 398, 0, 591, 592, 672,
+ 384, 486, 603, 335, 349, 352, 341, 361, 0, 362,
+ 337, 338, 343, 346, 347, 348, 353, 354, 358, 364,
+ 249, 210, 390, 399, 578, 312, 216, 217, 218, 524,
+ 525, 526, 527, 619, 620, 624, 205, 462, 463, 464,
+ 465, 292, 614, 309, 468, 467, 331, 332, 379, 449,
+ 540, 542, 553, 557, 559, 561, 567, 570, 541, 543,
+ 554, 558, 560, 562, 568, 571, 530, 532, 534, 536,
+ 549, 548, 545, 573, 574, 551, 556, 535, 547, 552,
+ 565, 572, 569, 529, 533, 537, 546, 564, 563, 544,
+ 555, 566, 550, 538, 531, 539, 0, 196, 221, 368,
+ 0, 454, 288, 650, 618, 484, 613, 206, 223, 0,
+ 262, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 198, 200, 209, 222, 232, 236, 243, 261,
+ 276, 278, 285, 298, 310, 318, 319, 322, 328, 380,
+ 386, 387, 388, 389, 409, 410, 411, 414, 417, 418,
+ 421, 423, 424, 427, 431, 435, 436, 437, 439, 441,
+ 443, 455, 460, 474, 475, 476, 477, 478, 481, 482,
+ 488, 489, 490, 491, 492, 500, 501, 516, 586, 588,
+ 605, 625, 632, 480, 301, 302, 444, 445, 314, 315,
+ 646, 647, 300, 600, 633, 597, 645, 627, 438, 378,
+ 0, 0, 381, 281, 305, 320, 0, 617, 502, 227,
+ 466, 290, 251, 0, 0, 211, 246, 230, 259, 274,
+ 277, 324, 391, 400, 429, 434, 296, 271, 244, 459,
+ 241, 485, 519, 520, 521, 523, 395, 266, 433, 396,
+ 0, 376, 576, 577, 316, 0, 0, 0, 528, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 416, 0, 0, 0, 0, 0, 0, 0, 270, 0,
+ 0, 0, 0, 366, 267, 0, 0, 204, 505, 0,
+ 430, 0, 203, 0, 487, 252, 377, 374, 583, 282,
+ 273, 269, 250, 317, 385, 428, 518, 422, 0, 370,
+ 0, 0, 497, 401, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 323, 248, 325, 202, 413, 498, 286, 0,
+ 0, 0, 0, 0, 507, 724, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 238, 0, 0, 245, 0,
+ 0, 0, 351, 360, 359, 339, 340, 342, 344, 350,
+ 357, 363, 336, 345, 0, 0, 609, 0, 0, 0,
+ 265, 321, 272, 264, 580, 0, 0, 0, 0, 0,
+ 0, 596, 0, 0, 229, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 275,
+ 0, 0, 0, 0, 0, 0, 0, 0, 1092, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 297, 0, 402, 257, 0, 453, 0, 0, 0,
+ 629, 0, 0, 0, 0, 0, 0, 0, 365, 1098,
+ 330, 197, 225, 1096, 0, 412, 461, 473, 0, 0,
+ 0, 253, 0, 471, 426, 604, 233, 284, 458, 432,
+ 469, 440, 287, 0, 0, 470, 372, 585, 450, 601,
+ 630, 631, 263, 406, 615, 522, 623, 648, 226, 260,
+ 420, 506, 607, 494, 397, 581, 582, 329, 493, 295,
+ 201, 369, 636, 224, 479, 371, 242, 231, 587, 612,
+ 299, 289, 456, 643, 213, 517, 598, 239, 483, 0,
+ 0, 651, 247, 504, 610, 599, 215, 594, 503, 393,
+ 326, 327, 214, 0, 457, 268, 293, 0, 0, 258,
+ 415, 589, 590, 256, 652, 228, 622, 220, 0, 621,
+ 408, 584, 595, 394, 383, 219, 593, 392, 382, 334,
+ 355, 356, 280, 307, 447, 375, 448, 306, 308, 404,
+ 403, 405, 207, 608, 626, 0, 208, 0, 499, 611,
+ 653, 452, 212, 234, 235, 237, 0, 279, 283, 291,
+ 294, 303, 304, 313, 367, 419, 446, 442, 451, 0,
+ 579, 602, 616, 628, 634, 635, 637, 638, 639, 640,
+ 641, 644, 642, 407, 311, 495, 333, 373, 0, 0,
+ 425, 472, 240, 606, 496, 199, 0, 0, 0, 0,
+ 254, 255, 0, 575, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 654, 655, 656, 657, 658, 659, 660,
+ 661, 662, 663, 664, 665, 666, 667, 668, 669, 670,
+ 671, 649, 508, 514, 509, 510, 511, 512, 513, 0,
+ 515, 0, 0, 0, 0, 0, 398, 0, 591, 592,
+ 672, 384, 486, 603, 335, 349, 352, 341, 361, 0,
+ 362, 337, 338, 343, 346, 347, 348, 353, 354, 358,
+ 364, 249, 210, 390, 399, 578, 312, 216, 217, 218,
+ 524, 525, 526, 527, 619, 620, 624, 205, 462, 463,
+ 464, 465, 292, 614, 309, 468, 467, 331, 332, 379,
+ 449, 540, 542, 553, 557, 559, 561, 567, 570, 541,
+ 543, 554, 558, 560, 562, 568, 571, 530, 532, 534,
+ 536, 549, 548, 545, 573, 574, 551, 556, 535, 547,
+ 552, 565, 572, 569, 529, 533, 537, 546, 564, 563,
+ 544, 555, 566, 550, 538, 531, 539, 0, 196, 221,
+ 368, 0, 454, 288, 650, 618, 484, 613, 206, 223,
+ 0, 262, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 198, 200, 209, 222, 232, 236, 243,
+ 261, 276, 278, 285, 298, 310, 318, 319, 322, 328,
+ 380, 386, 387, 388, 389, 409, 410, 411, 414, 417,
+ 418, 421, 423, 424, 427, 431, 435, 436, 437, 439,
+ 441, 443, 455, 460, 474, 475, 476, 477, 478, 481,
+ 482, 488, 489, 490, 491, 492, 500, 501, 516, 586,
+ 588, 605, 625, 632, 480, 301, 302, 444, 445, 314,
+ 315, 646, 647, 300, 600, 633, 597, 645, 627, 438,
+ 378, 0, 0, 381, 281, 305, 320, 0, 617, 502,
+ 227, 466, 290, 251, 0, 0, 211, 246, 230, 259,
+ 274, 277, 324, 391, 400, 429, 434, 296, 271, 244,
+ 459, 241, 485, 519, 520, 521, 523, 395, 266, 433,
+ 396, 0, 376, 576, 577, 316, 0, 0, 0, 528,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 416, 0, 0, 2373, 0, 0, 0, 0, 270,
+ 0, 0, 0, 0, 366, 267, 0, 0, 204, 505,
+ 0, 430, 0, 203, 0, 487, 252, 377, 374, 583,
+ 282, 273, 269, 250, 317, 385, 428, 518, 422, 0,
+ 370, 0, 0, 497, 401, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 323, 248, 325, 202, 413, 498, 286,
+ 0, 0, 0, 0, 1961, 507, 194, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 238, 0, 0, 245,
+ 0, 0, 0, 351, 360, 359, 339, 340, 342, 344,
+ 350, 357, 363, 336, 345, 0, 0, 609, 0, 0,
+ 0, 265, 321, 272, 264, 580, 0, 0, 0, 0,
+ 0, 0, 596, 0, 0, 229, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 1455, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
+ 275, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 1454,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 194, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 297, 0, 402, 257, 0, 453, 0, 0,
+ 0, 629, 0, 0, 0, 0, 0, 0, 0, 365,
+ 0, 330, 197, 225, 0, 0, 412, 461, 473, 0,
+ 0, 0, 253, 0, 471, 426, 604, 233, 284, 458,
+ 432, 469, 440, 287, 0, 0, 470, 372, 585, 450,
+ 601, 630, 631, 263, 406, 615, 522, 623, 648, 226,
+ 260, 420, 506, 607, 494, 397, 581, 582, 329, 493,
+ 295, 201, 369, 636, 224, 479, 371, 242, 231, 587,
+ 612, 299, 289, 456, 643, 213, 517, 598, 239, 483,
+ 0, 0, 651, 247, 504, 610, 599, 215, 594, 503,
+ 393, 326, 327, 214, 0, 457, 268, 293, 0, 0,
+ 258, 415, 589, 590, 256, 652, 228, 622, 220, 0,
+ 621, 408, 584, 595, 394, 383, 219, 593, 392, 382,
+ 334, 355, 356, 280, 307, 447, 375, 448, 306, 308,
+ 404, 403, 405, 207, 608, 626, 0, 208, 0, 499,
+ 611, 653, 452, 212, 234, 235, 237, 0, 279, 283,
+ 291, 294, 303, 304, 313, 367, 419, 446, 442, 451,
+ 0, 579, 602, 616, 628, 634, 635, 637, 638, 639,
+ 640, 641, 644, 642, 407, 311, 495, 333, 373, 0,
+ 0, 425, 472, 240, 606, 496, 199, 0, 0, 0,
+ 0, 254, 255, 0, 575, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 654, 655, 656, 657, 658, 659,
+ 660, 661, 662, 663, 664, 665, 666, 667, 668, 669,
+ 670, 671, 649, 508, 514, 509, 510, 511, 512, 513,
+ 0, 515, 0, 0, 0, 0, 0, 398, 0, 591,
+ 592, 672, 384, 486, 603, 335, 349, 352, 341, 361,
+ 0, 362, 337, 338, 343, 346, 347, 348, 353, 354,
+ 358, 364, 249, 210, 390, 399, 578, 312, 216, 217,
+ 218, 524, 525, 526, 527, 619, 620, 624, 205, 462,
+ 463, 464, 465, 292, 614, 309, 468, 467, 331, 332,
+ 379, 449, 540, 542, 553, 557, 559, 561, 567, 570,
+ 541, 543, 554, 558, 560, 562, 568, 571, 530, 532,
+ 534, 536, 549, 548, 545, 573, 574, 551, 556, 535,
+ 547, 552, 565, 572, 569, 529, 533, 537, 546, 564,
+ 563, 544, 555, 566, 550, 538, 531, 539, 0, 196,
+ 221, 368, 0, 454, 288, 650, 618, 484, 613, 206,
+ 223, 0, 262, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 198, 200, 209, 222, 232, 236,
+ 243, 261, 276, 278, 285, 298, 310, 318, 319, 322,
+ 328, 380, 386, 387, 388, 389, 409, 410, 411, 414,
+ 417, 418, 421, 423, 424, 427, 431, 435, 436, 437,
+ 439, 441, 443, 455, 460, 474, 475, 476, 477, 478,
+ 481, 482, 488, 489, 490, 491, 492, 500, 501, 516,
+ 586, 588, 605, 625, 632, 480, 301, 302, 444, 445,
+ 314, 315, 646, 647, 300, 600, 633, 597, 645, 627,
+ 438, 378, 0, 0, 381, 281, 305, 320, 0, 617,
+ 502, 227, 466, 290, 251, 0, 0, 211, 246, 230,
+ 259, 274, 277, 324, 391, 400, 429, 434, 296, 271,
+ 244, 459, 241, 485, 519, 520, 521, 523, 395, 266,
+ 433, 396, 0, 376, 576, 577, 316, 0, 0, 0,
+ 528, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 416, 0, 0, 0, 0, 0, 0, 0,
+ 270, 0, 0, 0, 0, 366, 267, 0, 0, 204,
+ 505, 0, 430, 0, 203, 0, 487, 252, 377, 374,
+ 583, 282, 273, 269, 250, 317, 385, 428, 518, 422,
+ 0, 370, 0, 0, 497, 401, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 323, 248, 325, 202, 413, 498,
+ 286, 0, 0, 0, 1753, 0, 507, 724, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 238, 0, 0,
+ 245, 0, 0, 0, 351, 360, 359, 339, 340, 342,
+ 344, 350, 357, 363, 336, 345, 0, 0, 609, 0,
+ 0, 0, 265, 321, 272, 264, 580, 0, 0, 0,
+ 0, 0, 0, 596, 0, 0, 229, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 275, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 297, 0, 402, 257, 0, 453, 0,
+ 0, 0, 629, 0, 0, 0, 3726, 0, 0, 0,
+ 365, 0, 330, 197, 225, 0, 0, 412, 461, 473,
+ 0, 0, 0, 253, 0, 471, 426, 604, 233, 284,
+ 458, 432, 469, 440, 287, 0, 0, 470, 372, 585,
+ 450, 601, 630, 631, 263, 406, 615, 522, 623, 648,
+ 226, 260, 420, 506, 607, 494, 397, 581, 582, 329,
+ 493, 295, 201, 369, 636, 224, 479, 371, 242, 231,
+ 587, 612, 299, 289, 456, 643, 213, 517, 598, 239,
+ 483, 0, 0, 651, 247, 504, 610, 599, 215, 594,
+ 503, 393, 326, 327, 214, 0, 457, 268, 293, 0,
+ 0, 258, 415, 589, 590, 256, 652, 228, 622, 220,
+ 0, 621, 408, 584, 595, 394, 383, 219, 593, 392,
+ 382, 334, 355, 356, 280, 307, 447, 375, 448, 306,
+ 308, 404, 403, 405, 207, 608, 626, 0, 208, 0,
+ 499, 611, 653, 452, 212, 234, 235, 237, 0, 279,
+ 283, 291, 294, 303, 304, 313, 367, 419, 446, 442,
+ 451, 0, 579, 602, 616, 628, 634, 635, 637, 638,
+ 639, 640, 641, 644, 642, 407, 311, 495, 333, 373,
+ 0, 0, 425, 472, 240, 606, 496, 199, 0, 0,
+ 0, 0, 254, 255, 0, 575, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 654, 655, 656, 657, 658,
+ 659, 660, 661, 662, 663, 664, 665, 666, 667, 668,
+ 669, 670, 671, 649, 508, 514, 509, 510, 511, 512,
+ 513, 0, 515, 0, 0, 0, 0, 0, 398, 0,
+ 591, 592, 672, 384, 486, 603, 335, 349, 352, 341,
+ 361, 0, 362, 337, 338, 343, 346, 347, 348, 353,
+ 354, 358, 364, 249, 210, 390, 399, 578, 312, 216,
+ 217, 218, 524, 525, 526, 527, 619, 620, 624, 205,
+ 462, 463, 464, 465, 292, 614, 309, 468, 467, 331,
+ 332, 379, 449, 540, 542, 553, 557, 559, 561, 567,
+ 570, 541, 543, 554, 558, 560, 562, 568, 571, 530,
+ 532, 534, 536, 549, 548, 545, 573, 574, 551, 556,
+ 535, 547, 552, 565, 572, 569, 529, 533, 537, 546,
+ 564, 563, 544, 555, 566, 550, 538, 531, 539, 0,
+ 196, 221, 368, 0, 454, 288, 650, 618, 484, 613,
+ 206, 223, 0, 262, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
+ 0, 0, 0, 0, 0, 198, 200, 209, 222, 232,
+ 236, 243, 261, 276, 278, 285, 298, 310, 318, 319,
+ 322, 328, 380, 386, 387, 388, 389, 409, 410, 411,
+ 414, 417, 418, 421, 423, 424, 427, 431, 435, 436,
+ 437, 439, 441, 443, 455, 460, 474, 475, 476, 477,
+ 478, 481, 482, 488, 489, 490, 491, 492, 500, 501,
+ 516, 586, 588, 605, 625, 632, 480, 301, 302, 444,
+ 445, 314, 315, 646, 647, 300, 600, 633, 597, 645,
+ 627, 438, 378, 0, 0, 381, 281, 305, 320, 0,
+ 617, 502, 227, 466, 290, 251, 0, 0, 211, 246,
+ 230, 259, 274, 277, 324, 391, 400, 429, 434, 296,
+ 271, 244, 459, 241, 485, 519, 520, 521, 523, 395,
+ 266, 433, 396, 0, 376, 576, 577, 316, 0, 0,
+ 0, 528, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 416, 0, 0, 0, 0, 0, 0,
+ 0, 270, 0, 0, 0, 0, 366, 267, 0, 0,
+ 204, 505, 0, 430, 0, 203, 0, 487, 252, 377,
+ 374, 583, 282, 273, 269, 250, 317, 385, 428, 518,
+ 422, 0, 370, 0, 0, 497, 401, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 1048, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 194, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 323, 248, 325, 202, 413,
+ 498, 286, 0, 0, 0, 0, 2132, 507, 724, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 238, 0,
+ 0, 245, 0, 0, 0, 351, 360, 359, 339, 340,
+ 342, 344, 350, 357, 363, 336, 345, 0, 0, 609,
+ 0, 0, 0, 265, 321, 272, 264, 580, 0, 0,
+ 0, 0, 0, 0, 596, 0, 0, 229, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 275, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 2133, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 297, 0, 402, 257, 0, 453,
+ 0, 0, 0, 629, 0, 0, 0, 0, 0, 0,
+ 0, 365, 0, 330, 197, 225, 0, 0, 412, 461,
+ 473, 0, 0, 0, 253, 0, 471, 426, 604, 233,
+ 284, 458, 432, 469, 440, 287, 0, 0, 470, 372,
+ 585, 450, 601, 630, 631, 263, 406, 615, 522, 623,
+ 648, 226, 260, 420, 506, 607, 494, 397, 581, 582,
+ 329, 493, 295, 201, 369, 636, 224, 479, 371, 242,
+ 231, 587, 612, 299, 289, 456, 643, 213, 517, 598,
+ 239, 483, 0, 0, 651, 247, 504, 610, 599, 215,
+ 594, 503, 393, 326, 327, 214, 0, 457, 268, 293,
+ 0, 0, 258, 415, 589, 590, 256, 652, 228, 622,
+ 220, 0, 621, 408, 584, 595, 394, 383, 219, 593,
+ 392, 382, 334, 355, 356, 280, 307, 447, 375, 448,
+ 306, 308, 404, 403, 405, 207, 608, 626, 0, 208,
+ 0, 499, 611, 653, 452, 212, 234, 235, 237, 0,
+ 279, 283, 291, 294, 303, 304, 313, 367, 419, 446,
+ 442, 451, 0, 579, 602, 616, 628, 634, 635, 637,
+ 638, 639, 640, 641, 644, 642, 407, 311, 495, 333,
+ 373, 0, 0, 425, 472, 240, 606, 496, 199, 0,
+ 0, 0, 0, 254, 255, 0, 575, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 654, 655, 656, 657,
+ 658, 659, 660, 661, 662, 663, 664, 665, 666, 667,
+ 668, 669, 670, 671, 649, 508, 514, 509, 510, 511,
+ 512, 513, 0, 515, 0, 0, 0, 0, 0, 398,
+ 0, 591, 592, 672, 384, 486, 603, 335, 349, 352,
+ 341, 361, 0, 362, 337, 338, 343, 346, 347, 348,
+ 353, 354, 358, 364, 249, 210, 390, 399, 578, 312,
+ 216, 217, 218, 524, 525, 526, 527, 619, 620, 624,
+ 205, 462, 463, 464, 465, 292, 614, 309, 468, 467,
+ 331, 332, 379, 449, 540, 542, 553, 557, 559, 561,
+ 567, 570, 541, 543, 554, 558, 560, 562, 568, 571,
+ 530, 532, 534, 536, 549, 548, 545, 573, 574, 551,
+ 556, 535, 547, 552, 565, 572, 569, 529, 533, 537,
+ 546, 564, 563, 544, 555, 566, 550, 538, 531, 539,
+ 0, 196, 221, 368, 0, 454, 288, 650, 618, 484,
+ 613, 206, 223, 0, 262, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 198, 200, 209, 222,
+ 232, 236, 243, 261, 276, 278, 285, 298, 310, 318,
+ 319, 322, 328, 380, 386, 387, 388, 389, 409, 410,
+ 411, 414, 417, 418, 421, 423, 424, 427, 431, 435,
+ 436, 437, 439, 441, 443, 455, 460, 474, 475, 476,
+ 477, 478, 481, 482, 488, 489, 490, 491, 492, 500,
+ 501, 516, 586, 588, 605, 625, 632, 480, 301, 302,
+ 444, 445, 314, 315, 646, 647, 300, 600, 633, 597,
+ 645, 627, 438, 378, 0, 0, 381, 281, 305, 320,
+ 0, 617, 502, 227, 466, 290, 251, 0, 0, 211,
+ 246, 230, 259, 274, 277, 324, 391, 400, 429, 434,
+ 296, 271, 244, 459, 241, 485, 519, 520, 521, 523,
+ 395, 266, 433, 396, 0, 376, 576, 577, 316, 0,
+ 0, 0, 528, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 416, 0, 0, 0, 0, 0,
+ 0, 0, 270, 0, 0, 0, 0, 366, 267, 0,
+ 0, 204, 505, 0, 430, 0, 203, 0, 487, 252,
+ 377, 374, 583, 282, 273, 269, 250, 317, 385, 428,
+ 518, 422, 0, 370, 0, 0, 497, 401, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 323, 248, 325, 202,
+ 413, 498, 286, 0, 0, 0, 0, 2879, 507, 724,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 238,
+ 0, 0, 245, 0, 0, 0, 351, 360, 359, 339,
+ 340, 342, 344, 350, 357, 363, 336, 345, 0, 0,
+ 609, 0, 0, 0, 265, 321, 272, 264, 580, 0,
+ 0, 0, 0, 0, 0, 596, 0, 0, 229, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 275, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 2880, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 297, 0, 402, 257, 0,
+ 453, 0, 0, 0, 629, 0, 0, 0, 0, 0,
+ 0, 0, 365, 0, 330, 197, 225, 0, 0, 412,
+ 461, 473, 0, 0, 0, 253, 0, 471, 426, 604,
+ 233, 284, 458, 432, 469, 440, 287, 0, 0, 470,
+ 372, 585, 450, 601, 630, 631, 263, 406, 615, 522,
+ 623, 648, 226, 260, 420, 506, 607, 494, 397, 581,
+ 582, 329, 493, 295, 201, 369, 636, 224, 479, 371,
+ 242, 231, 587, 612, 299, 289, 456, 643, 213, 517,
+ 598, 239, 483, 0, 0, 651, 247, 504, 610, 599,
+ 215, 594, 503, 393, 326, 327, 214, 0, 457, 268,
+ 293, 0, 0, 258, 415, 589, 590, 256, 652, 228,
+ 622, 220, 0, 621, 408, 584, 595, 394, 383, 219,
+ 593, 392, 382, 334, 355, 356, 280, 307, 447, 375,
+ 448, 306, 308, 404, 403, 405, 207, 608, 626, 0,
+ 208, 0, 499, 611, 653, 452, 212, 234, 235, 237,
+ 0, 279, 283, 291, 294, 303, 304, 313, 367, 419,
+ 446, 442, 451, 0, 579, 602, 616, 628, 634, 635,
+ 637, 638, 639, 640, 641, 644, 642, 407, 311, 495,
+ 333, 373, 0, 0, 425, 472, 240, 606, 496, 199,
+ 0, 0, 0, 0, 254, 255, 0, 575, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 654, 655, 656,
+ 657, 658, 659, 660, 661, 662, 663, 664, 665, 666,
+ 667, 668, 669, 670, 671, 649, 508, 514, 509, 510,
+ 511, 512, 513, 0, 515, 0, 0, 0, 0, 0,
+ 398, 0, 591, 592, 672, 384, 486, 603, 335, 349,
+ 352, 341, 361, 0, 362, 337, 338, 343, 346, 347,
+ 348, 353, 354, 358, 364, 249, 210, 390, 399, 578,
+ 312, 216, 217, 218, 524, 525, 526, 527, 619, 620,
+ 624, 205, 462, 463, 464, 465, 292, 614, 309, 468,
+ 467, 331, 332, 379, 449, 540, 542, 553, 557, 559,
+ 561, 567, 570, 541, 543, 554, 558, 560, 562, 568,
+ 571, 530, 532, 534, 536, 549, 548, 545, 573, 574,
+ 551, 556, 535, 547, 552, 565, 572, 569, 529, 533,
+ 537, 546, 564, 563, 544, 555, 566, 550, 538, 531,
+ 539, 0, 196, 221, 368, 0, 454, 288, 650, 618,
+ 484, 613, 206, 223, 0, 262, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 198, 200, 209,
+ 222, 232, 236, 243, 261, 276, 278, 285, 298, 310,
+ 318, 319, 322, 328, 380, 386, 387, 388, 389, 409,
+ 410, 411, 414, 417, 418, 421, 423, 424, 427, 431,
+ 435, 436, 437, 439, 441, 443, 455, 460, 474, 475,
+ 476, 477, 478, 481, 482, 488, 489, 490, 491, 492,
+ 500, 501, 516, 586, 588, 605, 625, 632, 480, 301,
+ 302, 444, 445, 314, 315, 646, 647, 300, 600, 633,
+ 597, 645, 627, 438, 378, 0, 0, 381, 281, 305,
+ 320, 0, 617, 502, 227, 466, 290, 251, 0, 0,
+ 211, 246, 230, 259, 274, 277, 324, 391, 400, 429,
+ 434, 296, 271, 244, 459, 241, 485, 519, 520, 521,
+ 523, 395, 266, 433, 396, 0, 376, 576, 577, 316,
+ 0, 0, 0, 528, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 416, 0, 0, 0, 0,
+ 0, 0, 0, 270, 0, 0, 0, 0, 366, 267,
+ 0, 0, 204, 505, 0, 430, 0, 203, 0, 487,
+ 252, 377, 374, 583, 282, 273, 269, 250, 317, 385,
+ 428, 518, 422, 0, 370, 0, 0, 497, 401, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 323, 248, 325,
+ 202, 413, 498, 286, 0, 0, 0, 0, 0, 507,
+ 724, 0, 0, 0, 0, 2864, 0, 0, 0, 0,
+ 238, 0, 0, 245, 2865, 0, 0, 351, 360, 359,
+ 339, 340, 342, 344, 350, 357, 363, 336, 345, 0,
+ 0, 609, 0, 0, 0, 265, 321, 272, 264, 580,
+ 0, 0, 0, 0, 0, 0, 596, 0, 0, 229,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 275, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 297, 0, 402, 257,
+ 0, 453, 0, 0, 0, 629, 0, 0, 0, 0,
+ 0, 0, 0, 365, 0, 330, 197, 225, 0, 0,
+ 412, 461, 473, 0, 0, 0, 253, 0, 471, 426,
+ 604, 233, 284, 458, 432, 469, 440, 287, 0, 0,
+ 470, 372, 585, 450, 601, 630, 631, 263, 406, 615,
+ 522, 623, 648, 226, 260, 420, 506, 607, 494, 397,
+ 581, 582, 329, 493, 295, 201, 369, 636, 224, 479,
+ 371, 242, 231, 587, 612, 299, 289, 456, 643, 213,
+ 517, 598, 239, 483, 0, 0, 651, 247, 504, 610,
+ 599, 215, 594, 503, 393, 326, 327, 214, 0, 457,
+ 268, 293, 0, 0, 258, 415, 589, 590, 256, 652,
+ 228, 622, 220, 0, 621, 408, 584, 595, 394, 383,
+ 219, 593, 392, 382, 334, 355, 356, 280, 307, 447,
+ 375, 448, 306, 308, 404, 403, 405, 207, 608, 626,
+ 0, 208, 0, 499, 611, 653, 452, 212, 234, 235,
+ 237, 0, 279, 283, 291, 294, 303, 304, 313, 367,
+ 419, 446, 442, 451, 0, 579, 602, 616, 628, 634,
+ 635, 637, 638, 639, 640, 641, 644, 642, 407, 311,
+ 495, 333, 373, 0, 0, 425, 472, 240, 606, 496,
+ 199, 0, 0, 0, 0, 254, 255, 0, 575, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 654, 655,
+ 656, 657, 658, 659, 660, 661, 662, 663, 664, 665,
+ 666, 667, 668, 669, 670, 671, 649, 508, 514, 509,
+ 510, 511, 512, 513, 0, 515, 0, 0, 0, 0,
+ 0, 398, 0, 591, 592, 672, 384, 486, 603, 335,
+ 349, 352, 341, 361, 0, 362, 337, 338, 343, 346,
+ 347, 348, 353, 354, 358, 364, 249, 210, 390, 399,
+ 578, 312, 216, 217, 218, 524, 525, 526, 527, 619,
+ 620, 624, 205, 462, 463, 464, 465, 292, 614, 309,
+ 468, 467, 331, 332, 379, 449, 540, 542, 553, 557,
+ 559, 561, 567, 570, 541, 543, 554, 558, 560, 562,
+ 568, 571, 530, 532, 534, 536, 549, 548, 545, 573,
+ 574, 551, 556, 535, 547, 552, 565, 572, 569, 529,
+ 533, 537, 546, 564, 563, 544, 555, 566, 550, 538,
+ 531, 539, 0, 196, 221, 368, 0, 454, 288, 650,
+ 618, 484, 613, 206, 223, 0, 262, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 198, 200,
+ 209, 222, 232, 236, 243, 261, 276, 278, 285, 298,
+ 310, 318, 319, 322, 328, 380, 386, 387, 388, 389,
+ 409, 410, 411, 414, 417, 418, 421, 423, 424, 427,
+ 431, 435, 436, 437, 439, 441, 443, 455, 460, 474,
+ 475, 476, 477, 478, 481, 482, 488, 489, 490, 491,
+ 492, 500, 501, 516, 586, 588, 605, 625, 632, 480,
+ 301, 302, 444, 445, 314, 315, 646, 647, 300, 600,
+ 633, 597, 645, 627, 438, 378, 0, 0, 381, 281,
+ 305, 320, 0, 617, 502, 227, 466, 290, 251, 0,
+ 0, 211, 246, 230, 259, 274, 277, 324, 391, 400,
+ 429, 434, 296, 271, 244, 459, 241, 485, 519, 520,
+ 521, 523, 395, 266, 433, 396, 0, 376, 576, 577,
+ 316, 0, 0, 0, 528, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 416, 0, 0, 0,
+ 0, 0, 0, 0, 270, 1799, 0, 0, 0, 366,
+ 267, 0, 0, 204, 505, 0, 430, 0, 203, 0,
+ 487, 252, 377, 374, 583, 282, 273, 269, 250, 317,
+ 385, 428, 518, 422, 0, 370, 0, 0, 497, 401,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 323, 248,
+ 325, 202, 413, 498, 286, 0, 0, 0, 0, 1798,
+ 507, 724, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 238, 0, 0, 245, 0, 0, 0, 351, 360,
+ 359, 339, 340, 342, 344, 350, 357, 363, 336, 345,
+ 0, 0, 609, 0, 0, 0, 265, 321, 272, 264,
+ 580, 0, 0, 0, 0, 0, 0, 596, 0, 0,
229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
@@ -7096,42 +5292,42 @@ var yyAct = [...]int{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 674, 0, 628, 0, 0, 0,
+ 257, 0, 453, 0, 0, 0, 629, 0, 0, 0,
0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
+ 426, 604, 233, 284, 458, 432, 469, 440, 287, 0,
+ 0, 470, 372, 585, 450, 601, 630, 631, 263, 406,
+ 615, 522, 623, 648, 226, 260, 420, 506, 607, 494,
+ 397, 581, 582, 329, 493, 295, 201, 369, 636, 224,
+ 479, 371, 242, 231, 587, 612, 299, 289, 456, 643,
+ 213, 517, 598, 239, 483, 0, 0, 651, 247, 504,
+ 610, 599, 215, 594, 503, 393, 326, 327, 214, 0,
457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
+ 652, 228, 622, 220, 0, 621, 408, 584, 595, 394,
383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
+ 447, 375, 448, 306, 308, 404, 403, 405, 207, 608,
+ 626, 0, 208, 0, 499, 611, 653, 452, 212, 234,
235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
+ 367, 419, 446, 442, 451, 0, 579, 602, 616, 628,
+ 634, 635, 637, 638, 639, 640, 641, 644, 642, 407,
+ 311, 495, 333, 373, 0, 0, 425, 472, 240, 606,
496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 654,
+ 655, 656, 657, 658, 659, 660, 661, 662, 663, 664,
+ 665, 666, 667, 668, 669, 670, 671, 649, 508, 514,
509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
+ 0, 0, 398, 0, 591, 592, 672, 384, 486, 603,
335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
+ 619, 620, 624, 205, 462, 463, 464, 465, 292, 614,
309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
+ 650, 618, 484, 613, 206, 223, 0, 262, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
@@ -7139,10 +5335,10 @@ var yyAct = [...]int{
389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
+ 491, 492, 500, 501, 516, 586, 588, 605, 625, 632,
+ 480, 301, 302, 444, 445, 314, 315, 646, 647, 300,
+ 600, 633, 597, 645, 627, 438, 378, 0, 0, 381,
+ 281, 305, 320, 0, 617, 502, 227, 466, 290, 251,
0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
@@ -7155,85 +5351,678 @@ var yyAct = [...]int{
401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
+ 0, 507, 726, 727, 728, 0, 0, 0, 0, 0,
0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
+ 345, 0, 0, 609, 0, 0, 0, 265, 321, 272,
+ 264, 580, 0, 0, 0, 0, 0, 0, 596, 0,
+ 0, 229, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 275, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 297, 0,
+ 402, 257, 0, 453, 0, 0, 0, 629, 0, 0,
+ 0, 0, 0, 0, 0, 365, 0, 330, 197, 225,
+ 0, 0, 412, 461, 473, 0, 0, 0, 253, 0,
+ 471, 426, 604, 233, 284, 458, 432, 469, 440, 287,
+ 0, 0, 470, 372, 585, 450, 601, 630, 631, 263,
+ 406, 615, 522, 623, 648, 226, 260, 420, 506, 607,
+ 494, 397, 581, 582, 329, 493, 295, 201, 369, 636,
+ 224, 479, 371, 242, 231, 587, 612, 299, 289, 456,
+ 643, 213, 517, 598, 239, 483, 0, 0, 651, 247,
+ 504, 610, 599, 215, 594, 503, 393, 326, 327, 214,
+ 0, 457, 268, 293, 0, 0, 258, 415, 589, 590,
+ 256, 652, 228, 622, 220, 0, 621, 408, 584, 595,
+ 394, 383, 219, 593, 392, 382, 334, 355, 356, 280,
+ 307, 447, 375, 448, 306, 308, 404, 403, 405, 207,
+ 608, 626, 0, 208, 0, 499, 611, 653, 452, 212,
+ 234, 235, 237, 0, 279, 283, 291, 294, 303, 304,
+ 313, 367, 419, 446, 442, 451, 0, 579, 602, 616,
+ 628, 634, 635, 637, 638, 639, 640, 641, 644, 642,
+ 407, 311, 495, 333, 373, 0, 0, 425, 472, 240,
+ 606, 496, 199, 0, 0, 0, 0, 254, 255, 0,
+ 575, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
+ 664, 665, 666, 667, 668, 669, 670, 671, 649, 508,
+ 514, 509, 510, 511, 512, 513, 0, 515, 0, 0,
+ 0, 0, 0, 398, 0, 591, 592, 672, 384, 486,
+ 603, 335, 349, 352, 341, 361, 0, 362, 337, 338,
+ 343, 346, 347, 348, 353, 354, 358, 364, 249, 210,
+ 390, 399, 578, 312, 216, 217, 218, 524, 525, 526,
+ 527, 619, 620, 624, 205, 462, 463, 464, 465, 292,
+ 614, 309, 468, 467, 331, 332, 379, 449, 540, 542,
+ 553, 557, 559, 561, 567, 570, 541, 543, 554, 558,
+ 560, 562, 568, 571, 530, 532, 534, 536, 549, 548,
+ 545, 573, 574, 551, 556, 535, 547, 552, 565, 572,
+ 569, 529, 533, 537, 546, 564, 563, 544, 555, 566,
+ 550, 538, 531, 539, 0, 196, 221, 368, 0, 454,
+ 288, 650, 618, 484, 613, 206, 223, 0, 262, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 198, 200, 209, 222, 232, 236, 243, 261, 276, 278,
+ 285, 298, 310, 318, 319, 322, 328, 380, 386, 387,
+ 388, 389, 409, 410, 411, 414, 417, 418, 421, 423,
+ 424, 427, 431, 435, 436, 437, 439, 441, 443, 455,
+ 460, 474, 475, 476, 477, 478, 481, 482, 488, 489,
+ 490, 491, 492, 500, 501, 516, 586, 588, 605, 625,
+ 632, 480, 301, 302, 444, 445, 314, 315, 646, 647,
+ 300, 600, 633, 597, 645, 627, 438, 378, 0, 0,
+ 381, 281, 305, 320, 0, 617, 502, 227, 466, 290,
+ 251, 0, 0, 211, 246, 230, 259, 274, 277, 324,
+ 391, 400, 429, 434, 296, 271, 244, 459, 241, 485,
+ 519, 520, 521, 523, 395, 266, 433, 396, 0, 376,
+ 576, 577, 316, 0, 0, 0, 528, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 416, 0,
+ 0, 0, 0, 0, 0, 0, 270, 0, 0, 0,
+ 0, 366, 267, 0, 0, 204, 505, 0, 430, 0,
+ 203, 0, 487, 252, 377, 374, 583, 282, 273, 269,
+ 250, 317, 385, 428, 518, 422, 0, 370, 0, 0,
+ 497, 401, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 323, 248, 325, 202, 413, 498, 286, 0, 0, 0,
+ 0, 0, 507, 724, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 238, 0, 0, 245, 0, 0, 0,
+ 351, 360, 359, 339, 340, 342, 344, 350, 357, 363,
+ 336, 345, 0, 0, 609, 0, 0, 0, 265, 321,
+ 272, 264, 580, 0, 0, 0, 0, 0, 0, 596,
+ 0, 0, 229, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 275, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 297,
+ 0, 402, 257, 0, 453, 0, 0, 0, 629, 0,
+ 0, 0, 4070, 0, 0, 0, 365, 0, 330, 197,
+ 225, 0, 0, 412, 461, 473, 0, 0, 0, 253,
+ 0, 471, 426, 604, 233, 284, 458, 432, 469, 440,
+ 287, 0, 0, 470, 372, 585, 450, 601, 630, 631,
+ 263, 406, 615, 522, 623, 648, 226, 260, 420, 506,
+ 607, 494, 397, 581, 582, 329, 493, 295, 201, 369,
+ 636, 224, 479, 371, 242, 231, 587, 612, 299, 289,
+ 456, 643, 213, 517, 598, 239, 483, 0, 0, 651,
+ 247, 504, 610, 599, 215, 594, 503, 393, 326, 327,
+ 214, 0, 457, 268, 293, 0, 0, 258, 415, 589,
+ 590, 256, 652, 228, 622, 220, 0, 621, 408, 584,
+ 595, 394, 383, 219, 593, 392, 382, 334, 355, 356,
+ 280, 307, 447, 375, 448, 306, 308, 404, 403, 405,
+ 207, 608, 626, 0, 208, 0, 499, 611, 653, 452,
+ 212, 234, 235, 237, 0, 279, 283, 291, 294, 303,
+ 304, 313, 367, 419, 446, 442, 451, 0, 579, 602,
+ 616, 628, 634, 635, 637, 638, 639, 640, 641, 644,
+ 642, 407, 311, 495, 333, 373, 0, 0, 425, 472,
+ 240, 606, 496, 199, 0, 0, 0, 0, 254, 255,
+ 0, 575, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 654, 655, 656, 657, 658, 659, 660, 661, 662,
+ 663, 664, 665, 666, 667, 668, 669, 670, 671, 649,
+ 508, 514, 509, 510, 511, 512, 513, 0, 515, 0,
+ 0, 0, 0, 0, 398, 0, 591, 592, 672, 384,
+ 486, 603, 335, 349, 352, 341, 361, 0, 362, 337,
+ 338, 343, 346, 347, 348, 353, 354, 358, 364, 249,
+ 210, 390, 399, 578, 312, 216, 217, 218, 524, 525,
+ 526, 527, 619, 620, 624, 205, 462, 463, 464, 465,
+ 292, 614, 309, 468, 467, 331, 332, 379, 449, 540,
+ 542, 553, 557, 559, 561, 567, 570, 541, 543, 554,
+ 558, 560, 562, 568, 571, 530, 532, 534, 536, 549,
+ 548, 545, 573, 574, 551, 556, 535, 547, 552, 565,
+ 572, 569, 529, 533, 537, 546, 564, 563, 544, 555,
+ 566, 550, 538, 531, 539, 0, 196, 221, 368, 0,
+ 454, 288, 650, 618, 484, 613, 206, 223, 0, 262,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 198, 200, 209, 222, 232, 236, 243, 261, 276,
+ 278, 285, 298, 310, 318, 319, 322, 328, 380, 386,
+ 387, 388, 389, 409, 410, 411, 414, 417, 418, 421,
+ 423, 424, 427, 431, 435, 436, 437, 439, 441, 443,
+ 455, 460, 474, 475, 476, 477, 478, 481, 482, 488,
+ 489, 490, 491, 492, 500, 501, 516, 586, 588, 605,
+ 625, 632, 480, 301, 302, 444, 445, 314, 315, 646,
+ 647, 300, 600, 633, 597, 645, 627, 438, 378, 0,
+ 0, 381, 281, 305, 320, 0, 617, 502, 227, 466,
+ 290, 251, 0, 0, 211, 246, 230, 259, 274, 277,
+ 324, 391, 400, 429, 434, 296, 271, 244, 459, 241,
+ 485, 519, 520, 521, 523, 395, 266, 433, 396, 0,
+ 376, 576, 577, 316, 0, 0, 0, 528, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 416,
+ 0, 0, 0, 0, 0, 0, 0, 270, 0, 0,
+ 0, 0, 366, 267, 0, 0, 204, 505, 0, 430,
+ 0, 203, 0, 487, 252, 377, 374, 583, 282, 273,
+ 269, 250, 317, 385, 428, 518, 422, 0, 370, 0,
+ 0, 497, 401, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 323, 248, 325, 202, 413, 498, 286, 0, 0,
+ 0, 0, 1961, 507, 194, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 238, 0, 0, 245, 0, 0,
+ 0, 351, 360, 359, 339, 340, 342, 344, 350, 357,
+ 363, 336, 345, 0, 0, 609, 0, 0, 0, 265,
+ 321, 272, 264, 580, 0, 0, 0, 0, 0, 0,
+ 596, 0, 0, 229, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 275, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 297, 0, 402, 257, 0, 453, 0, 0, 0, 629,
+ 0, 0, 0, 0, 0, 0, 0, 365, 0, 330,
+ 197, 225, 0, 0, 412, 461, 473, 0, 0, 0,
+ 253, 0, 471, 426, 604, 233, 284, 458, 432, 469,
+ 440, 287, 0, 0, 470, 372, 585, 450, 601, 630,
+ 631, 263, 406, 615, 522, 623, 648, 226, 260, 420,
+ 506, 607, 494, 397, 581, 582, 329, 493, 295, 201,
+ 369, 636, 224, 479, 371, 242, 231, 587, 612, 299,
+ 289, 456, 643, 213, 517, 598, 239, 483, 0, 0,
+ 651, 247, 504, 610, 599, 215, 594, 503, 393, 326,
+ 327, 214, 0, 457, 268, 293, 0, 0, 258, 415,
+ 589, 590, 256, 652, 228, 622, 220, 0, 621, 408,
+ 584, 595, 394, 383, 219, 593, 392, 382, 334, 355,
+ 356, 280, 307, 447, 375, 448, 306, 308, 404, 403,
+ 405, 207, 608, 626, 0, 208, 0, 499, 611, 653,
+ 452, 212, 234, 235, 237, 0, 279, 283, 291, 294,
+ 303, 304, 313, 367, 419, 446, 442, 451, 0, 579,
+ 602, 616, 628, 634, 635, 637, 638, 639, 640, 641,
+ 644, 642, 407, 311, 495, 333, 373, 0, 0, 425,
+ 472, 240, 606, 496, 199, 0, 0, 0, 0, 254,
+ 255, 0, 575, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 654, 655, 656, 657, 658, 659, 660, 661,
+ 662, 663, 664, 665, 666, 667, 668, 669, 670, 671,
+ 649, 508, 514, 509, 510, 511, 512, 513, 0, 515,
+ 0, 0, 0, 0, 0, 398, 0, 591, 592, 672,
+ 384, 486, 603, 335, 349, 352, 341, 361, 0, 362,
+ 337, 338, 343, 346, 347, 348, 353, 354, 358, 364,
+ 249, 210, 390, 399, 578, 312, 216, 217, 218, 524,
+ 525, 526, 527, 619, 620, 624, 205, 462, 463, 464,
+ 465, 292, 614, 309, 468, 467, 331, 332, 379, 449,
+ 540, 542, 553, 557, 559, 561, 567, 570, 541, 543,
+ 554, 558, 560, 562, 568, 571, 530, 532, 534, 536,
+ 549, 548, 545, 573, 574, 551, 556, 535, 547, 552,
+ 565, 572, 569, 529, 533, 537, 546, 564, 563, 544,
+ 555, 566, 550, 538, 531, 539, 0, 196, 221, 368,
+ 0, 454, 288, 650, 618, 484, 613, 206, 223, 0,
+ 262, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 198, 200, 209, 222, 232, 236, 243, 261,
+ 276, 278, 285, 298, 310, 318, 319, 322, 328, 380,
+ 386, 387, 388, 389, 409, 410, 411, 414, 417, 418,
+ 421, 423, 424, 427, 431, 435, 436, 437, 439, 441,
+ 443, 455, 460, 474, 475, 476, 477, 478, 481, 482,
+ 488, 489, 490, 491, 492, 500, 501, 516, 586, 588,
+ 605, 625, 632, 480, 301, 302, 444, 445, 314, 315,
+ 646, 647, 300, 600, 633, 597, 645, 627, 438, 378,
+ 0, 0, 381, 281, 305, 320, 0, 617, 502, 227,
+ 466, 290, 251, 0, 0, 211, 246, 230, 259, 274,
+ 277, 324, 391, 400, 429, 434, 296, 271, 244, 459,
+ 241, 485, 519, 520, 521, 523, 395, 266, 433, 396,
+ 0, 376, 576, 577, 316, 0, 0, 0, 528, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 416, 0, 0, 0, 0, 0, 0, 0, 270, 0,
+ 0, 0, 0, 366, 267, 0, 0, 204, 505, 0,
+ 430, 0, 203, 0, 487, 252, 377, 374, 583, 282,
+ 273, 269, 250, 317, 385, 428, 518, 422, 0, 370,
+ 0, 0, 497, 401, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 323, 248, 325, 202, 413, 498, 286, 0,
+ 0, 0, 0, 0, 507, 724, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 238, 0, 0, 245, 0,
+ 0, 0, 351, 360, 359, 339, 340, 342, 344, 350,
+ 357, 363, 336, 345, 0, 0, 609, 0, 0, 0,
+ 265, 321, 272, 264, 580, 0, 0, 0, 0, 0,
+ 0, 596, 0, 0, 229, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 275,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 297, 0, 402, 257, 0, 453, 0, 0, 0,
+ 629, 0, 0, 0, 3726, 0, 0, 0, 365, 0,
+ 330, 197, 225, 0, 0, 412, 461, 473, 0, 0,
+ 0, 253, 0, 471, 426, 604, 233, 284, 458, 432,
+ 469, 440, 287, 0, 0, 470, 372, 585, 450, 601,
+ 630, 631, 263, 406, 615, 522, 623, 648, 226, 260,
+ 420, 506, 607, 494, 397, 581, 582, 329, 493, 295,
+ 201, 369, 636, 224, 479, 371, 242, 231, 587, 612,
+ 299, 289, 456, 643, 213, 517, 598, 239, 483, 0,
+ 0, 651, 247, 504, 610, 599, 215, 594, 503, 393,
+ 326, 327, 214, 0, 457, 268, 293, 0, 0, 258,
+ 415, 589, 590, 256, 652, 228, 622, 220, 0, 621,
+ 408, 584, 595, 394, 383, 219, 593, 392, 382, 334,
+ 355, 356, 280, 307, 447, 375, 448, 306, 308, 404,
+ 403, 405, 207, 608, 626, 0, 208, 0, 499, 611,
+ 653, 452, 212, 234, 235, 237, 0, 279, 283, 291,
+ 294, 303, 304, 313, 367, 419, 446, 442, 451, 0,
+ 579, 602, 616, 628, 634, 635, 637, 638, 639, 640,
+ 641, 644, 642, 407, 311, 495, 333, 373, 0, 0,
+ 425, 472, 240, 606, 496, 199, 0, 0, 0, 0,
+ 254, 255, 0, 575, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 654, 655, 656, 657, 658, 659, 660,
+ 661, 662, 663, 664, 665, 666, 667, 668, 669, 670,
+ 671, 649, 508, 514, 509, 510, 511, 512, 513, 0,
+ 515, 0, 0, 0, 0, 0, 398, 0, 591, 592,
+ 672, 384, 486, 603, 335, 349, 352, 341, 361, 0,
+ 362, 337, 338, 343, 346, 347, 348, 353, 354, 358,
+ 364, 249, 210, 390, 399, 578, 312, 216, 217, 218,
+ 524, 525, 526, 527, 619, 620, 624, 205, 462, 463,
+ 464, 465, 292, 614, 309, 468, 467, 331, 332, 379,
+ 449, 540, 542, 553, 557, 559, 561, 567, 570, 541,
+ 543, 554, 558, 560, 562, 568, 571, 530, 532, 534,
+ 536, 549, 548, 545, 573, 574, 551, 556, 535, 547,
+ 552, 565, 572, 569, 529, 533, 537, 546, 564, 563,
+ 544, 555, 566, 550, 538, 531, 539, 0, 196, 221,
+ 368, 0, 454, 288, 650, 618, 484, 613, 206, 223,
+ 0, 262, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 198, 200, 209, 222, 232, 236, 243,
+ 261, 276, 278, 285, 298, 310, 318, 319, 322, 328,
+ 380, 386, 387, 388, 389, 409, 410, 411, 414, 417,
+ 418, 421, 423, 424, 427, 431, 435, 436, 437, 439,
+ 441, 443, 455, 460, 474, 475, 476, 477, 478, 481,
+ 482, 488, 489, 490, 491, 492, 500, 501, 516, 586,
+ 588, 605, 625, 632, 480, 301, 302, 444, 445, 314,
+ 315, 646, 647, 300, 600, 633, 597, 645, 627, 438,
+ 378, 0, 0, 381, 281, 305, 320, 0, 617, 502,
+ 227, 466, 290, 251, 0, 0, 211, 246, 230, 259,
+ 274, 277, 324, 391, 400, 429, 434, 296, 271, 244,
+ 459, 241, 485, 519, 520, 521, 523, 395, 266, 433,
+ 396, 0, 376, 576, 577, 316, 0, 0, 0, 528,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 416, 0, 0, 0, 0, 0, 0, 0, 270,
+ 0, 0, 0, 0, 366, 267, 0, 0, 204, 505,
+ 0, 430, 0, 203, 0, 487, 252, 377, 374, 583,
+ 282, 273, 269, 250, 317, 385, 428, 518, 422, 0,
+ 370, 0, 0, 497, 401, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 323, 248, 325, 202, 413, 498, 286,
+ 0, 95, 0, 0, 0, 507, 724, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 238, 0, 0, 245,
+ 0, 0, 0, 351, 360, 359, 339, 340, 342, 344,
+ 350, 357, 363, 336, 345, 0, 0, 609, 0, 0,
+ 0, 265, 321, 272, 264, 580, 0, 0, 0, 0,
+ 0, 0, 596, 0, 0, 229, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 275, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 4134, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
- 577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
- 0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
- 0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
- 317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
- 401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
- 248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 723, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
- 360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 297, 0, 402, 257, 0, 453, 0, 0,
+ 0, 629, 0, 0, 0, 0, 0, 0, 0, 365,
+ 0, 330, 197, 225, 0, 0, 412, 461, 473, 0,
+ 0, 0, 253, 0, 471, 426, 604, 233, 284, 458,
+ 432, 469, 440, 287, 0, 0, 470, 372, 585, 450,
+ 601, 630, 631, 263, 406, 615, 522, 623, 648, 226,
+ 260, 420, 506, 607, 494, 397, 581, 582, 329, 493,
+ 295, 201, 369, 636, 224, 479, 371, 242, 231, 587,
+ 612, 299, 289, 456, 643, 213, 517, 598, 239, 483,
+ 0, 0, 651, 247, 504, 610, 599, 215, 594, 503,
+ 393, 326, 327, 214, 0, 457, 268, 293, 0, 0,
+ 258, 415, 589, 590, 256, 652, 228, 622, 220, 0,
+ 621, 408, 584, 595, 394, 383, 219, 593, 392, 382,
+ 334, 355, 356, 280, 307, 447, 375, 448, 306, 308,
+ 404, 403, 405, 207, 608, 626, 0, 208, 0, 499,
+ 611, 653, 452, 212, 234, 235, 237, 0, 279, 283,
+ 291, 294, 303, 304, 313, 367, 419, 446, 442, 451,
+ 0, 579, 602, 616, 628, 634, 635, 637, 638, 639,
+ 640, 641, 644, 642, 407, 311, 495, 333, 373, 0,
+ 0, 425, 472, 240, 606, 496, 199, 0, 0, 0,
+ 0, 254, 255, 0, 575, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 654, 655, 656, 657, 658, 659,
+ 660, 661, 662, 663, 664, 665, 666, 667, 668, 669,
+ 670, 671, 649, 508, 514, 509, 510, 511, 512, 513,
+ 0, 515, 0, 0, 0, 0, 0, 398, 0, 591,
+ 592, 672, 384, 486, 603, 335, 349, 352, 341, 361,
+ 0, 362, 337, 338, 343, 346, 347, 348, 353, 354,
+ 358, 364, 249, 210, 390, 399, 578, 312, 216, 217,
+ 218, 524, 525, 526, 527, 619, 620, 624, 205, 462,
+ 463, 464, 465, 292, 614, 309, 468, 467, 331, 332,
+ 379, 449, 540, 542, 553, 557, 559, 561, 567, 570,
+ 541, 543, 554, 558, 560, 562, 568, 571, 530, 532,
+ 534, 536, 549, 548, 545, 573, 574, 551, 556, 535,
+ 547, 552, 565, 572, 569, 529, 533, 537, 546, 564,
+ 563, 544, 555, 566, 550, 538, 531, 539, 0, 196,
+ 221, 368, 0, 454, 288, 650, 618, 484, 613, 206,
+ 223, 0, 262, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 198, 200, 209, 222, 232, 236,
+ 243, 261, 276, 278, 285, 298, 310, 318, 319, 322,
+ 328, 380, 386, 387, 388, 389, 409, 410, 411, 414,
+ 417, 418, 421, 423, 424, 427, 431, 435, 436, 437,
+ 439, 441, 443, 455, 460, 474, 475, 476, 477, 478,
+ 481, 482, 488, 489, 490, 491, 492, 500, 501, 516,
+ 586, 588, 605, 625, 632, 480, 301, 302, 444, 445,
+ 314, 315, 646, 647, 300, 600, 633, 597, 645, 627,
+ 438, 378, 0, 0, 381, 281, 305, 320, 0, 617,
+ 502, 227, 466, 290, 251, 0, 0, 211, 246, 230,
+ 259, 274, 277, 324, 391, 400, 429, 434, 296, 271,
+ 244, 459, 241, 485, 519, 520, 521, 523, 395, 266,
+ 433, 396, 0, 376, 576, 577, 316, 0, 0, 0,
+ 528, 0, 0, 0, 0, 2427, 0, 0, 0, 0,
+ 0, 0, 416, 0, 0, 0, 0, 0, 0, 0,
+ 270, 0, 0, 0, 0, 366, 267, 0, 0, 204,
+ 505, 0, 430, 0, 203, 0, 487, 252, 377, 374,
+ 583, 282, 273, 269, 250, 317, 385, 428, 518, 422,
+ 0, 370, 0, 0, 497, 401, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 323, 248, 325, 202, 413, 498,
+ 286, 0, 0, 0, 0, 0, 507, 194, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 238, 0, 0,
+ 245, 0, 0, 0, 351, 360, 359, 339, 340, 342,
+ 344, 350, 357, 363, 336, 345, 0, 0, 609, 0,
+ 0, 0, 265, 321, 272, 264, 580, 0, 0, 0,
+ 0, 0, 0, 596, 0, 0, 229, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 275, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 297, 0, 402, 257, 0, 453, 0,
+ 0, 0, 629, 0, 0, 0, 0, 0, 0, 0,
+ 365, 0, 330, 197, 225, 0, 0, 412, 461, 473,
+ 0, 0, 0, 253, 0, 471, 426, 604, 233, 284,
+ 458, 432, 469, 440, 287, 0, 0, 470, 372, 585,
+ 450, 601, 630, 631, 263, 406, 615, 522, 623, 648,
+ 226, 260, 420, 506, 607, 494, 397, 581, 582, 329,
+ 493, 295, 201, 369, 636, 224, 479, 371, 242, 231,
+ 587, 612, 299, 289, 456, 643, 213, 517, 598, 239,
+ 483, 0, 0, 651, 247, 504, 610, 599, 215, 594,
+ 503, 393, 326, 327, 214, 0, 457, 268, 293, 0,
+ 0, 258, 415, 589, 590, 256, 652, 228, 622, 220,
+ 0, 621, 408, 584, 595, 394, 383, 219, 593, 392,
+ 382, 334, 355, 356, 280, 307, 447, 375, 448, 306,
+ 308, 404, 403, 405, 207, 608, 626, 0, 208, 0,
+ 499, 611, 653, 452, 212, 234, 235, 237, 0, 279,
+ 283, 291, 294, 303, 304, 313, 367, 419, 446, 442,
+ 451, 0, 579, 602, 616, 628, 634, 635, 637, 638,
+ 639, 640, 641, 644, 642, 407, 311, 495, 333, 373,
+ 0, 0, 425, 472, 240, 606, 496, 199, 0, 0,
+ 0, 0, 254, 255, 0, 575, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 654, 655, 656, 657, 658,
+ 659, 660, 661, 662, 663, 664, 665, 666, 667, 668,
+ 669, 670, 671, 649, 508, 514, 509, 510, 511, 512,
+ 513, 0, 515, 0, 0, 0, 0, 0, 398, 0,
+ 591, 592, 672, 384, 486, 603, 335, 349, 352, 341,
+ 361, 0, 362, 337, 338, 343, 346, 347, 348, 353,
+ 354, 358, 364, 249, 210, 390, 399, 578, 312, 216,
+ 217, 218, 524, 525, 526, 527, 619, 620, 624, 205,
+ 462, 463, 464, 465, 292, 614, 309, 468, 467, 331,
+ 332, 379, 449, 540, 542, 553, 557, 559, 561, 567,
+ 570, 541, 543, 554, 558, 560, 562, 568, 571, 530,
+ 532, 534, 536, 549, 548, 545, 573, 574, 551, 556,
+ 535, 547, 552, 565, 572, 569, 529, 533, 537, 546,
+ 564, 563, 544, 555, 566, 550, 538, 531, 539, 0,
+ 196, 221, 368, 0, 454, 288, 650, 618, 484, 613,
+ 206, 223, 0, 262, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 198, 200, 209, 222, 232,
+ 236, 243, 261, 276, 278, 285, 298, 310, 318, 319,
+ 322, 328, 380, 386, 387, 388, 389, 409, 410, 411,
+ 414, 417, 418, 421, 423, 424, 427, 431, 435, 436,
+ 437, 439, 441, 443, 455, 460, 474, 475, 476, 477,
+ 478, 481, 482, 488, 489, 490, 491, 492, 500, 501,
+ 516, 586, 588, 605, 625, 632, 480, 301, 302, 444,
+ 445, 314, 315, 646, 647, 300, 600, 633, 597, 645,
+ 627, 438, 378, 0, 0, 381, 281, 305, 320, 0,
+ 617, 502, 227, 466, 290, 251, 0, 0, 211, 246,
+ 230, 259, 274, 277, 324, 391, 400, 429, 434, 296,
+ 271, 244, 459, 241, 485, 519, 520, 521, 523, 395,
+ 266, 433, 396, 0, 376, 576, 577, 316, 0, 0,
+ 0, 528, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 416, 0, 0, 0, 0, 0, 0,
+ 0, 270, 0, 0, 0, 0, 366, 267, 0, 0,
+ 204, 505, 0, 430, 0, 203, 0, 487, 252, 377,
+ 374, 583, 282, 273, 269, 250, 317, 385, 428, 518,
+ 422, 0, 370, 0, 0, 497, 401, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 323, 248, 325, 202, 413,
+ 498, 286, 0, 0, 0, 0, 1780, 507, 724, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 238, 0,
+ 0, 245, 0, 0, 0, 351, 360, 359, 339, 340,
+ 342, 344, 350, 357, 363, 336, 345, 0, 0, 609,
+ 0, 0, 0, 265, 321, 272, 264, 580, 0, 0,
+ 0, 0, 0, 0, 596, 0, 0, 229, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 275, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 297, 0, 402, 257, 0, 453,
+ 0, 0, 0, 629, 0, 0, 0, 0, 0, 0,
+ 0, 365, 0, 330, 197, 225, 0, 0, 412, 461,
+ 473, 0, 0, 0, 253, 0, 471, 426, 604, 233,
+ 284, 458, 432, 469, 440, 287, 0, 0, 470, 372,
+ 585, 450, 601, 630, 631, 263, 406, 615, 522, 623,
+ 648, 226, 260, 420, 506, 607, 494, 397, 581, 582,
+ 329, 493, 295, 201, 369, 636, 224, 479, 371, 242,
+ 231, 587, 612, 299, 289, 456, 643, 213, 517, 598,
+ 239, 483, 0, 0, 651, 247, 504, 610, 599, 215,
+ 594, 503, 393, 326, 327, 214, 0, 457, 268, 293,
+ 0, 0, 258, 415, 589, 590, 256, 652, 228, 622,
+ 220, 0, 621, 408, 584, 595, 394, 383, 219, 593,
+ 392, 382, 334, 355, 356, 280, 307, 447, 375, 448,
+ 306, 308, 404, 403, 405, 207, 608, 626, 0, 208,
+ 0, 499, 611, 653, 452, 212, 234, 235, 237, 0,
+ 279, 283, 291, 294, 303, 304, 313, 367, 419, 446,
+ 442, 451, 0, 579, 602, 616, 628, 634, 635, 637,
+ 638, 639, 640, 641, 644, 642, 407, 311, 495, 333,
+ 373, 0, 0, 425, 472, 240, 606, 496, 199, 0,
+ 0, 0, 0, 254, 255, 0, 575, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 654, 655, 656, 657,
+ 658, 659, 660, 661, 662, 663, 664, 665, 666, 667,
+ 668, 669, 670, 671, 649, 508, 514, 509, 510, 511,
+ 512, 513, 0, 515, 0, 0, 0, 0, 0, 398,
+ 0, 591, 592, 672, 384, 486, 603, 335, 349, 352,
+ 341, 361, 0, 362, 337, 338, 343, 346, 347, 348,
+ 353, 354, 358, 364, 249, 210, 390, 399, 578, 312,
+ 216, 217, 218, 524, 525, 526, 527, 619, 620, 624,
+ 205, 462, 463, 464, 465, 292, 614, 309, 468, 467,
+ 331, 332, 379, 449, 540, 542, 553, 557, 559, 561,
+ 567, 570, 541, 543, 554, 558, 560, 562, 568, 571,
+ 530, 532, 534, 536, 549, 548, 545, 573, 574, 551,
+ 556, 535, 547, 552, 565, 572, 569, 529, 533, 537,
+ 546, 564, 563, 544, 555, 566, 550, 538, 531, 539,
+ 0, 196, 221, 368, 0, 454, 288, 650, 618, 484,
+ 613, 206, 223, 0, 262, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 198, 200, 209, 222,
+ 232, 236, 243, 261, 276, 278, 285, 298, 310, 318,
+ 319, 322, 328, 380, 386, 387, 388, 389, 409, 410,
+ 411, 414, 417, 418, 421, 423, 424, 427, 431, 435,
+ 436, 437, 439, 441, 443, 455, 460, 474, 475, 476,
+ 477, 478, 481, 482, 488, 489, 490, 491, 492, 500,
+ 501, 516, 586, 588, 605, 625, 632, 480, 301, 302,
+ 444, 445, 314, 315, 646, 647, 300, 600, 633, 597,
+ 645, 627, 438, 378, 0, 0, 381, 281, 305, 320,
+ 0, 617, 502, 227, 466, 290, 251, 0, 0, 211,
+ 246, 230, 259, 274, 277, 324, 391, 400, 429, 434,
+ 296, 271, 244, 459, 241, 485, 519, 520, 521, 523,
+ 395, 266, 433, 396, 0, 376, 576, 577, 316, 0,
+ 0, 0, 528, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 416, 0, 0, 0, 0, 0,
+ 0, 0, 270, 0, 0, 0, 0, 366, 267, 0,
+ 0, 204, 505, 0, 430, 0, 203, 0, 487, 252,
+ 377, 374, 583, 282, 273, 269, 250, 317, 385, 428,
+ 518, 422, 0, 370, 0, 0, 497, 401, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 323, 248, 325, 202,
+ 413, 498, 286, 0, 0, 0, 0, 0, 507, 194,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 238,
+ 0, 0, 245, 0, 0, 0, 351, 360, 359, 339,
+ 340, 342, 344, 350, 357, 363, 336, 345, 0, 0,
+ 609, 0, 0, 0, 265, 321, 272, 264, 580, 0,
+ 0, 0, 0, 0, 0, 596, 0, 0, 229, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 275, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 297, 0, 402, 257, 0,
+ 453, 0, 0, 0, 629, 0, 0, 0, 0, 0,
+ 0, 0, 365, 0, 330, 197, 225, 0, 0, 412,
+ 461, 473, 0, 0, 0, 253, 0, 471, 426, 604,
+ 233, 284, 458, 432, 469, 440, 287, 0, 0, 470,
+ 372, 585, 450, 601, 630, 631, 263, 406, 615, 522,
+ 623, 648, 226, 260, 420, 506, 607, 494, 397, 581,
+ 582, 329, 493, 295, 201, 369, 636, 224, 479, 371,
+ 242, 231, 587, 612, 299, 289, 456, 643, 213, 517,
+ 598, 239, 483, 0, 0, 651, 247, 504, 610, 599,
+ 215, 594, 503, 393, 326, 327, 214, 0, 457, 268,
+ 293, 0, 0, 258, 415, 589, 590, 256, 652, 228,
+ 622, 220, 0, 621, 408, 584, 595, 394, 383, 219,
+ 593, 392, 382, 334, 355, 356, 280, 307, 447, 375,
+ 448, 306, 308, 404, 403, 405, 207, 608, 626, 0,
+ 208, 0, 499, 611, 653, 452, 212, 234, 235, 237,
+ 0, 279, 283, 291, 294, 303, 304, 313, 367, 419,
+ 446, 442, 451, 0, 579, 602, 616, 628, 634, 635,
+ 637, 638, 639, 640, 641, 644, 642, 407, 311, 495,
+ 333, 373, 0, 0, 425, 472, 240, 606, 496, 199,
+ 0, 0, 0, 0, 254, 255, 0, 575, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 654, 655, 656,
+ 657, 658, 659, 660, 661, 662, 663, 664, 665, 666,
+ 667, 668, 669, 670, 671, 649, 508, 514, 509, 510,
+ 511, 512, 513, 0, 515, 0, 0, 0, 0, 0,
+ 398, 0, 591, 592, 672, 384, 486, 603, 335, 349,
+ 352, 341, 361, 0, 362, 337, 338, 343, 346, 347,
+ 348, 353, 354, 358, 364, 249, 210, 390, 399, 578,
+ 312, 216, 217, 218, 524, 525, 526, 527, 619, 620,
+ 624, 205, 462, 463, 464, 465, 292, 614, 309, 468,
+ 467, 331, 332, 379, 449, 540, 542, 553, 557, 559,
+ 561, 567, 570, 541, 543, 554, 558, 560, 562, 568,
+ 571, 530, 532, 534, 536, 549, 548, 545, 573, 574,
+ 551, 556, 535, 547, 552, 565, 572, 569, 529, 533,
+ 537, 546, 564, 563, 544, 555, 566, 550, 538, 531,
+ 539, 0, 196, 221, 368, 2079, 454, 288, 650, 618,
+ 484, 613, 206, 223, 0, 262, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 198, 200, 209,
+ 222, 232, 236, 243, 261, 276, 278, 285, 298, 310,
+ 318, 319, 322, 328, 380, 386, 387, 388, 389, 409,
+ 410, 411, 414, 417, 418, 421, 423, 424, 427, 431,
+ 435, 436, 437, 439, 441, 443, 455, 460, 474, 475,
+ 476, 477, 478, 481, 482, 488, 489, 490, 491, 492,
+ 500, 501, 516, 586, 588, 605, 625, 632, 480, 301,
+ 302, 444, 445, 314, 315, 646, 647, 300, 600, 633,
+ 597, 645, 627, 438, 378, 0, 0, 381, 281, 305,
+ 320, 0, 617, 502, 227, 466, 290, 251, 0, 0,
+ 211, 246, 230, 259, 274, 277, 324, 391, 400, 429,
+ 434, 296, 271, 244, 459, 241, 485, 519, 520, 521,
+ 523, 395, 266, 433, 396, 0, 376, 576, 577, 316,
+ 0, 0, 0, 528, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 416, 0, 0, 0, 0,
+ 0, 0, 0, 270, 0, 0, 0, 0, 366, 267,
+ 0, 0, 204, 505, 0, 430, 0, 203, 0, 487,
+ 252, 377, 374, 583, 282, 273, 269, 250, 317, 385,
+ 428, 518, 422, 0, 370, 0, 0, 497, 401, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 323, 248, 325,
+ 202, 413, 498, 286, 0, 0, 0, 0, 2070, 507,
+ 724, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 238, 0, 0, 245, 0, 0, 0, 351, 360, 359,
+ 339, 340, 342, 344, 350, 357, 363, 336, 345, 0,
+ 0, 609, 0, 0, 0, 265, 321, 272, 264, 580,
+ 0, 0, 0, 0, 0, 0, 596, 0, 0, 229,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 275, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 297, 0, 402, 257,
+ 0, 453, 0, 0, 0, 629, 0, 0, 0, 0,
+ 0, 0, 0, 365, 0, 330, 197, 225, 0, 0,
+ 412, 461, 473, 0, 0, 0, 253, 0, 471, 426,
+ 604, 233, 284, 458, 432, 469, 440, 287, 0, 0,
+ 470, 372, 585, 450, 601, 630, 631, 263, 406, 615,
+ 522, 623, 648, 226, 260, 420, 506, 607, 494, 397,
+ 581, 582, 329, 493, 295, 201, 369, 636, 224, 479,
+ 371, 242, 231, 587, 612, 299, 289, 456, 643, 213,
+ 517, 598, 239, 483, 0, 0, 651, 247, 504, 610,
+ 599, 215, 594, 503, 393, 326, 327, 214, 0, 457,
+ 268, 293, 0, 0, 258, 415, 589, 590, 256, 652,
+ 228, 622, 220, 0, 621, 408, 584, 595, 394, 383,
+ 219, 593, 392, 382, 334, 355, 356, 280, 307, 447,
+ 375, 448, 306, 308, 404, 403, 405, 207, 608, 626,
+ 0, 208, 0, 499, 611, 653, 452, 212, 234, 235,
+ 237, 0, 279, 283, 291, 294, 303, 304, 313, 367,
+ 419, 446, 442, 451, 0, 579, 602, 616, 628, 634,
+ 635, 637, 638, 639, 640, 641, 644, 642, 407, 311,
+ 495, 333, 373, 0, 0, 425, 472, 240, 606, 496,
+ 199, 0, 0, 0, 0, 254, 255, 0, 575, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 654, 655,
+ 656, 657, 658, 659, 660, 661, 662, 663, 664, 665,
+ 666, 667, 668, 669, 670, 671, 649, 508, 514, 509,
+ 510, 511, 512, 513, 0, 515, 0, 0, 0, 0,
+ 0, 398, 0, 591, 592, 672, 384, 486, 603, 335,
+ 349, 352, 341, 361, 0, 362, 337, 338, 343, 346,
+ 347, 348, 353, 354, 358, 364, 249, 210, 390, 399,
+ 578, 312, 216, 217, 218, 524, 525, 526, 527, 619,
+ 620, 624, 205, 462, 463, 464, 465, 292, 614, 309,
+ 468, 467, 331, 332, 379, 449, 540, 542, 553, 557,
+ 559, 561, 567, 570, 541, 543, 554, 558, 560, 562,
+ 568, 571, 530, 532, 534, 536, 549, 548, 545, 573,
+ 574, 551, 556, 535, 547, 552, 565, 572, 569, 529,
+ 533, 537, 546, 564, 563, 544, 555, 566, 550, 538,
+ 531, 539, 0, 196, 221, 368, 0, 454, 288, 650,
+ 618, 484, 613, 206, 223, 0, 262, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 198, 200,
+ 209, 222, 232, 236, 243, 261, 276, 278, 285, 298,
+ 310, 318, 319, 322, 328, 380, 386, 387, 388, 389,
+ 409, 410, 411, 414, 417, 418, 421, 423, 424, 427,
+ 431, 435, 436, 437, 439, 441, 443, 455, 460, 474,
+ 475, 476, 477, 478, 481, 482, 488, 489, 490, 491,
+ 492, 500, 501, 516, 586, 588, 605, 625, 632, 480,
+ 301, 302, 444, 445, 314, 315, 646, 647, 300, 600,
+ 633, 597, 645, 627, 438, 378, 0, 0, 381, 281,
+ 305, 320, 0, 617, 502, 227, 466, 290, 251, 0,
+ 0, 211, 246, 230, 259, 274, 277, 324, 391, 400,
+ 429, 434, 296, 271, 244, 459, 241, 485, 519, 520,
+ 521, 523, 395, 266, 433, 396, 0, 376, 576, 577,
+ 316, 0, 0, 0, 528, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 416, 0, 0, 0,
+ 0, 0, 0, 0, 270, 0, 0, 0, 0, 366,
+ 267, 0, 1928, 204, 505, 0, 430, 0, 203, 0,
+ 487, 252, 377, 374, 583, 282, 273, 269, 250, 317,
+ 385, 428, 518, 422, 0, 370, 0, 0, 497, 401,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 323, 248,
+ 325, 202, 413, 498, 286, 0, 0, 0, 0, 0,
+ 507, 724, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 238, 0, 0, 245, 0, 0, 0, 351, 360,
+ 359, 339, 340, 342, 344, 350, 357, 363, 336, 345,
+ 0, 0, 609, 0, 0, 0, 265, 321, 272, 264,
+ 580, 0, 0, 0, 0, 0, 0, 596, 0, 0,
229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
@@ -7244,42 +6033,42 @@ var yyAct = [...]int{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
+ 257, 0, 453, 0, 0, 0, 629, 0, 0, 0,
0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
+ 426, 604, 233, 284, 458, 432, 469, 440, 287, 0,
+ 0, 470, 372, 585, 450, 601, 630, 631, 263, 406,
+ 615, 522, 623, 648, 226, 260, 420, 506, 607, 494,
+ 397, 581, 582, 329, 493, 295, 201, 369, 636, 224,
+ 479, 371, 242, 231, 587, 612, 299, 289, 456, 643,
+ 213, 517, 598, 239, 483, 0, 0, 651, 247, 504,
+ 610, 599, 215, 594, 503, 393, 326, 327, 214, 0,
457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
+ 652, 228, 622, 220, 0, 621, 408, 584, 595, 394,
383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
+ 447, 375, 448, 306, 308, 404, 403, 405, 207, 608,
+ 626, 0, 208, 0, 499, 611, 653, 452, 212, 234,
235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
+ 367, 419, 446, 442, 451, 0, 579, 602, 616, 628,
+ 634, 635, 637, 638, 639, 640, 641, 644, 642, 407,
+ 311, 495, 333, 373, 0, 0, 425, 472, 240, 606,
496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 654,
+ 655, 656, 657, 658, 659, 660, 661, 662, 663, 664,
+ 665, 666, 667, 668, 669, 670, 671, 649, 508, 514,
509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
+ 0, 0, 398, 0, 591, 592, 672, 384, 486, 603,
335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
+ 619, 620, 624, 205, 462, 463, 464, 465, 292, 614,
309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
+ 650, 618, 484, 613, 206, 223, 0, 262, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
@@ -7287,27 +6076,694 @@ var yyAct = [...]int{
389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
+ 491, 492, 500, 501, 516, 586, 588, 605, 625, 632,
+ 480, 301, 302, 444, 445, 314, 315, 646, 647, 300,
+ 600, 633, 597, 645, 627, 438, 378, 0, 0, 381,
+ 281, 305, 320, 0, 617, 502, 227, 466, 290, 251,
0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
577, 316, 0, 0, 0, 528, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 416, 0, 0,
0, 0, 0, 0, 0, 270, 0, 0, 0, 0,
- 366, 267, 0, 0, 204, 505, 0, 430, 0, 203,
+ 366, 267, 0, 1926, 204, 505, 0, 430, 0, 203,
0, 487, 252, 377, 374, 583, 282, 273, 269, 250,
317, 385, 428, 518, 422, 0, 370, 0, 0, 497,
401, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 323,
248, 325, 202, 413, 498, 286, 0, 0, 0, 0,
- 0, 507, 958, 0, 0, 0, 0, 0, 0, 0,
+ 0, 507, 724, 0, 0, 0, 0, 0, 0, 0,
0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
+ 345, 0, 0, 609, 0, 0, 0, 265, 321, 272,
+ 264, 580, 0, 0, 0, 0, 0, 0, 596, 0,
+ 0, 229, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 275, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 297, 0,
+ 402, 257, 0, 453, 0, 0, 0, 629, 0, 0,
+ 0, 0, 0, 0, 0, 365, 0, 330, 197, 225,
+ 0, 0, 412, 461, 473, 0, 0, 0, 253, 0,
+ 471, 426, 604, 233, 284, 458, 432, 469, 440, 287,
+ 0, 0, 470, 372, 585, 450, 601, 630, 631, 263,
+ 406, 615, 522, 623, 648, 226, 260, 420, 506, 607,
+ 494, 397, 581, 582, 329, 493, 295, 201, 369, 636,
+ 224, 479, 371, 242, 231, 587, 612, 299, 289, 456,
+ 643, 213, 517, 598, 239, 483, 0, 0, 651, 247,
+ 504, 610, 599, 215, 594, 503, 393, 326, 327, 214,
+ 0, 457, 268, 293, 0, 0, 258, 415, 589, 590,
+ 256, 652, 228, 622, 220, 0, 621, 408, 584, 595,
+ 394, 383, 219, 593, 392, 382, 334, 355, 356, 280,
+ 307, 447, 375, 448, 306, 308, 404, 403, 405, 207,
+ 608, 626, 0, 208, 0, 499, 611, 653, 452, 212,
+ 234, 235, 237, 0, 279, 283, 291, 294, 303, 304,
+ 313, 367, 419, 446, 442, 451, 0, 579, 602, 616,
+ 628, 634, 635, 637, 638, 639, 640, 641, 644, 642,
+ 407, 311, 495, 333, 373, 0, 0, 425, 472, 240,
+ 606, 496, 199, 0, 0, 0, 0, 254, 255, 0,
+ 575, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
+ 664, 665, 666, 667, 668, 669, 670, 671, 649, 508,
+ 514, 509, 510, 511, 512, 513, 0, 515, 0, 0,
+ 0, 0, 0, 398, 0, 591, 592, 672, 384, 486,
+ 603, 335, 349, 352, 341, 361, 0, 362, 337, 338,
+ 343, 346, 347, 348, 353, 354, 358, 364, 249, 210,
+ 390, 399, 578, 312, 216, 217, 218, 524, 525, 526,
+ 527, 619, 620, 624, 205, 462, 463, 464, 465, 292,
+ 614, 309, 468, 467, 331, 332, 379, 449, 540, 542,
+ 553, 557, 559, 561, 567, 570, 541, 543, 554, 558,
+ 560, 562, 568, 571, 530, 532, 534, 536, 549, 548,
+ 545, 573, 574, 551, 556, 535, 547, 552, 565, 572,
+ 569, 529, 533, 537, 546, 564, 563, 544, 555, 566,
+ 550, 538, 531, 539, 0, 196, 221, 368, 0, 454,
+ 288, 650, 618, 484, 613, 206, 223, 0, 262, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 198, 200, 209, 222, 232, 236, 243, 261, 276, 278,
+ 285, 298, 310, 318, 319, 322, 328, 380, 386, 387,
+ 388, 389, 409, 410, 411, 414, 417, 418, 421, 423,
+ 424, 427, 431, 435, 436, 437, 439, 441, 443, 455,
+ 460, 474, 475, 476, 477, 478, 481, 482, 488, 489,
+ 490, 491, 492, 500, 501, 516, 586, 588, 605, 625,
+ 632, 480, 301, 302, 444, 445, 314, 315, 646, 647,
+ 300, 600, 633, 597, 645, 627, 438, 378, 0, 0,
+ 381, 281, 305, 320, 0, 617, 502, 227, 466, 290,
+ 251, 0, 0, 211, 246, 230, 259, 274, 277, 324,
+ 391, 400, 429, 434, 296, 271, 244, 459, 241, 485,
+ 519, 520, 521, 523, 395, 266, 433, 396, 0, 376,
+ 576, 577, 316, 0, 0, 0, 528, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 416, 0,
+ 0, 0, 0, 0, 0, 0, 270, 0, 0, 0,
+ 0, 366, 267, 0, 1924, 204, 505, 0, 430, 0,
+ 203, 0, 487, 252, 377, 374, 583, 282, 273, 269,
+ 250, 317, 385, 428, 518, 422, 0, 370, 0, 0,
+ 497, 401, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 323, 248, 325, 202, 413, 498, 286, 0, 0, 0,
+ 0, 0, 507, 724, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 238, 0, 0, 245, 0, 0, 0,
+ 351, 360, 359, 339, 340, 342, 344, 350, 357, 363,
+ 336, 345, 0, 0, 609, 0, 0, 0, 265, 321,
+ 272, 264, 580, 0, 0, 0, 0, 0, 0, 596,
+ 0, 0, 229, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 275, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 297,
+ 0, 402, 257, 0, 453, 0, 0, 0, 629, 0,
+ 0, 0, 0, 0, 0, 0, 365, 0, 330, 197,
+ 225, 0, 0, 412, 461, 473, 0, 0, 0, 253,
+ 0, 471, 426, 604, 233, 284, 458, 432, 469, 440,
+ 287, 0, 0, 470, 372, 585, 450, 601, 630, 631,
+ 263, 406, 615, 522, 623, 648, 226, 260, 420, 506,
+ 607, 494, 397, 581, 582, 329, 493, 295, 201, 369,
+ 636, 224, 479, 371, 242, 231, 587, 612, 299, 289,
+ 456, 643, 213, 517, 598, 239, 483, 0, 0, 651,
+ 247, 504, 610, 599, 215, 594, 503, 393, 326, 327,
+ 214, 0, 457, 268, 293, 0, 0, 258, 415, 589,
+ 590, 256, 652, 228, 622, 220, 0, 621, 408, 584,
+ 595, 394, 383, 219, 593, 392, 382, 334, 355, 356,
+ 280, 307, 447, 375, 448, 306, 308, 404, 403, 405,
+ 207, 608, 626, 0, 208, 0, 499, 611, 653, 452,
+ 212, 234, 235, 237, 0, 279, 283, 291, 294, 303,
+ 304, 313, 367, 419, 446, 442, 451, 0, 579, 602,
+ 616, 628, 634, 635, 637, 638, 639, 640, 641, 644,
+ 642, 407, 311, 495, 333, 373, 0, 0, 425, 472,
+ 240, 606, 496, 199, 0, 0, 0, 0, 254, 255,
+ 0, 575, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 654, 655, 656, 657, 658, 659, 660, 661, 662,
+ 663, 664, 665, 666, 667, 668, 669, 670, 671, 649,
+ 508, 514, 509, 510, 511, 512, 513, 0, 515, 0,
+ 0, 0, 0, 0, 398, 0, 591, 592, 672, 384,
+ 486, 603, 335, 349, 352, 341, 361, 0, 362, 337,
+ 338, 343, 346, 347, 348, 353, 354, 358, 364, 249,
+ 210, 390, 399, 578, 312, 216, 217, 218, 524, 525,
+ 526, 527, 619, 620, 624, 205, 462, 463, 464, 465,
+ 292, 614, 309, 468, 467, 331, 332, 379, 449, 540,
+ 542, 553, 557, 559, 561, 567, 570, 541, 543, 554,
+ 558, 560, 562, 568, 571, 530, 532, 534, 536, 549,
+ 548, 545, 573, 574, 551, 556, 535, 547, 552, 565,
+ 572, 569, 529, 533, 537, 546, 564, 563, 544, 555,
+ 566, 550, 538, 531, 539, 0, 196, 221, 368, 0,
+ 454, 288, 650, 618, 484, 613, 206, 223, 0, 262,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 198, 200, 209, 222, 232, 236, 243, 261, 276,
+ 278, 285, 298, 310, 318, 319, 322, 328, 380, 386,
+ 387, 388, 389, 409, 410, 411, 414, 417, 418, 421,
+ 423, 424, 427, 431, 435, 436, 437, 439, 441, 443,
+ 455, 460, 474, 475, 476, 477, 478, 481, 482, 488,
+ 489, 490, 491, 492, 500, 501, 516, 586, 588, 605,
+ 625, 632, 480, 301, 302, 444, 445, 314, 315, 646,
+ 647, 300, 600, 633, 597, 645, 627, 438, 378, 0,
+ 0, 381, 281, 305, 320, 0, 617, 502, 227, 466,
+ 290, 251, 0, 0, 211, 246, 230, 259, 274, 277,
+ 324, 391, 400, 429, 434, 296, 271, 244, 459, 241,
+ 485, 519, 520, 521, 523, 395, 266, 433, 396, 0,
+ 376, 576, 577, 316, 0, 0, 0, 528, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 416,
+ 0, 0, 0, 0, 0, 0, 0, 270, 0, 0,
+ 0, 0, 366, 267, 0, 1922, 204, 505, 0, 430,
+ 0, 203, 0, 487, 252, 377, 374, 583, 282, 273,
+ 269, 250, 317, 385, 428, 518, 422, 0, 370, 0,
+ 0, 497, 401, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 323, 248, 325, 202, 413, 498, 286, 0, 0,
+ 0, 0, 0, 507, 724, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 238, 0, 0, 245, 0, 0,
+ 0, 351, 360, 359, 339, 340, 342, 344, 350, 357,
+ 363, 336, 345, 0, 0, 609, 0, 0, 0, 265,
+ 321, 272, 264, 580, 0, 0, 0, 0, 0, 0,
+ 596, 0, 0, 229, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 275, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 297, 0, 402, 257, 0, 453, 0, 0, 0, 629,
+ 0, 0, 0, 0, 0, 0, 0, 365, 0, 330,
+ 197, 225, 0, 0, 412, 461, 473, 0, 0, 0,
+ 253, 0, 471, 426, 604, 233, 284, 458, 432, 469,
+ 440, 287, 0, 0, 470, 372, 585, 450, 601, 630,
+ 631, 263, 406, 615, 522, 623, 648, 226, 260, 420,
+ 506, 607, 494, 397, 581, 582, 329, 493, 295, 201,
+ 369, 636, 224, 479, 371, 242, 231, 587, 612, 299,
+ 289, 456, 643, 213, 517, 598, 239, 483, 0, 0,
+ 651, 247, 504, 610, 599, 215, 594, 503, 393, 326,
+ 327, 214, 0, 457, 268, 293, 0, 0, 258, 415,
+ 589, 590, 256, 652, 228, 622, 220, 0, 621, 408,
+ 584, 595, 394, 383, 219, 593, 392, 382, 334, 355,
+ 356, 280, 307, 447, 375, 448, 306, 308, 404, 403,
+ 405, 207, 608, 626, 0, 208, 0, 499, 611, 653,
+ 452, 212, 234, 235, 237, 0, 279, 283, 291, 294,
+ 303, 304, 313, 367, 419, 446, 442, 451, 0, 579,
+ 602, 616, 628, 634, 635, 637, 638, 639, 640, 641,
+ 644, 642, 407, 311, 495, 333, 373, 0, 0, 425,
+ 472, 240, 606, 496, 199, 0, 0, 0, 0, 254,
+ 255, 0, 575, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 654, 655, 656, 657, 658, 659, 660, 661,
+ 662, 663, 664, 665, 666, 667, 668, 669, 670, 671,
+ 649, 508, 514, 509, 510, 511, 512, 513, 0, 515,
+ 0, 0, 0, 0, 0, 398, 0, 591, 592, 672,
+ 384, 486, 603, 335, 349, 352, 341, 361, 0, 362,
+ 337, 338, 343, 346, 347, 348, 353, 354, 358, 364,
+ 249, 210, 390, 399, 578, 312, 216, 217, 218, 524,
+ 525, 526, 527, 619, 620, 624, 205, 462, 463, 464,
+ 465, 292, 614, 309, 468, 467, 331, 332, 379, 449,
+ 540, 542, 553, 557, 559, 561, 567, 570, 541, 543,
+ 554, 558, 560, 562, 568, 571, 530, 532, 534, 536,
+ 549, 548, 545, 573, 574, 551, 556, 535, 547, 552,
+ 565, 572, 569, 529, 533, 537, 546, 564, 563, 544,
+ 555, 566, 550, 538, 531, 539, 0, 196, 221, 368,
+ 0, 454, 288, 650, 618, 484, 613, 206, 223, 0,
+ 262, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 198, 200, 209, 222, 232, 236, 243, 261,
+ 276, 278, 285, 298, 310, 318, 319, 322, 328, 380,
+ 386, 387, 388, 389, 409, 410, 411, 414, 417, 418,
+ 421, 423, 424, 427, 431, 435, 436, 437, 439, 441,
+ 443, 455, 460, 474, 475, 476, 477, 478, 481, 482,
+ 488, 489, 490, 491, 492, 500, 501, 516, 586, 588,
+ 605, 625, 632, 480, 301, 302, 444, 445, 314, 315,
+ 646, 647, 300, 600, 633, 597, 645, 627, 438, 378,
+ 0, 0, 381, 281, 305, 320, 0, 617, 502, 227,
+ 466, 290, 251, 0, 0, 211, 246, 230, 259, 274,
+ 277, 324, 391, 400, 429, 434, 296, 271, 244, 459,
+ 241, 485, 519, 520, 521, 523, 395, 266, 433, 396,
+ 0, 376, 576, 577, 316, 0, 0, 0, 528, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 416, 0, 0, 0, 0, 0, 0, 0, 270, 0,
+ 0, 0, 0, 366, 267, 0, 1920, 204, 505, 0,
+ 430, 0, 203, 0, 487, 252, 377, 374, 583, 282,
+ 273, 269, 250, 317, 385, 428, 518, 422, 0, 370,
+ 0, 0, 497, 401, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 323, 248, 325, 202, 413, 498, 286, 0,
+ 0, 0, 0, 0, 507, 724, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 238, 0, 0, 245, 0,
+ 0, 0, 351, 360, 359, 339, 340, 342, 344, 350,
+ 357, 363, 336, 345, 0, 0, 609, 0, 0, 0,
+ 265, 321, 272, 264, 580, 0, 0, 0, 0, 0,
+ 0, 596, 0, 0, 229, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 275,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 297, 0, 402, 257, 0, 453, 0, 0, 0,
+ 629, 0, 0, 0, 0, 0, 0, 0, 365, 0,
+ 330, 197, 225, 0, 0, 412, 461, 473, 0, 0,
+ 0, 253, 0, 471, 426, 604, 233, 284, 458, 432,
+ 469, 440, 287, 0, 0, 470, 372, 585, 450, 601,
+ 630, 631, 263, 406, 615, 522, 623, 648, 226, 260,
+ 420, 506, 607, 494, 397, 581, 582, 329, 493, 295,
+ 201, 369, 636, 224, 479, 371, 242, 231, 587, 612,
+ 299, 289, 456, 643, 213, 517, 598, 239, 483, 0,
+ 0, 651, 247, 504, 610, 599, 215, 594, 503, 393,
+ 326, 327, 214, 0, 457, 268, 293, 0, 0, 258,
+ 415, 589, 590, 256, 652, 228, 622, 220, 0, 621,
+ 408, 584, 595, 394, 383, 219, 593, 392, 382, 334,
+ 355, 356, 280, 307, 447, 375, 448, 306, 308, 404,
+ 403, 405, 207, 608, 626, 0, 208, 0, 499, 611,
+ 653, 452, 212, 234, 235, 237, 0, 279, 283, 291,
+ 294, 303, 304, 313, 367, 419, 446, 442, 451, 0,
+ 579, 602, 616, 628, 634, 635, 637, 638, 639, 640,
+ 641, 644, 642, 407, 311, 495, 333, 373, 0, 0,
+ 425, 472, 240, 606, 496, 199, 0, 0, 0, 0,
+ 254, 255, 0, 575, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 654, 655, 656, 657, 658, 659, 660,
+ 661, 662, 663, 664, 665, 666, 667, 668, 669, 670,
+ 671, 649, 508, 514, 509, 510, 511, 512, 513, 0,
+ 515, 0, 0, 0, 0, 0, 398, 0, 591, 592,
+ 672, 384, 486, 603, 335, 349, 352, 341, 361, 0,
+ 362, 337, 338, 343, 346, 347, 348, 353, 354, 358,
+ 364, 249, 210, 390, 399, 578, 312, 216, 217, 218,
+ 524, 525, 526, 527, 619, 620, 624, 205, 462, 463,
+ 464, 465, 292, 614, 309, 468, 467, 331, 332, 379,
+ 449, 540, 542, 553, 557, 559, 561, 567, 570, 541,
+ 543, 554, 558, 560, 562, 568, 571, 530, 532, 534,
+ 536, 549, 548, 545, 573, 574, 551, 556, 535, 547,
+ 552, 565, 572, 569, 529, 533, 537, 546, 564, 563,
+ 544, 555, 566, 550, 538, 531, 539, 0, 196, 221,
+ 368, 0, 454, 288, 650, 618, 484, 613, 206, 223,
+ 0, 262, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 198, 200, 209, 222, 232, 236, 243,
+ 261, 276, 278, 285, 298, 310, 318, 319, 322, 328,
+ 380, 386, 387, 388, 389, 409, 410, 411, 414, 417,
+ 418, 421, 423, 424, 427, 431, 435, 436, 437, 439,
+ 441, 443, 455, 460, 474, 475, 476, 477, 478, 481,
+ 482, 488, 489, 490, 491, 492, 500, 501, 516, 586,
+ 588, 605, 625, 632, 480, 301, 302, 444, 445, 314,
+ 315, 646, 647, 300, 600, 633, 597, 645, 627, 438,
+ 378, 0, 0, 381, 281, 305, 320, 0, 617, 502,
+ 227, 466, 290, 251, 0, 0, 211, 246, 230, 259,
+ 274, 277, 324, 391, 400, 429, 434, 296, 271, 244,
+ 459, 241, 485, 519, 520, 521, 523, 395, 266, 433,
+ 396, 0, 376, 576, 577, 316, 0, 0, 0, 528,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 416, 0, 0, 0, 0, 0, 0, 0, 270,
+ 0, 0, 0, 0, 366, 267, 0, 1916, 204, 505,
+ 0, 430, 0, 203, 0, 487, 252, 377, 374, 583,
+ 282, 273, 269, 250, 317, 385, 428, 518, 422, 0,
+ 370, 0, 0, 497, 401, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 323, 248, 325, 202, 413, 498, 286,
+ 0, 0, 0, 0, 0, 507, 724, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 238, 0, 0, 245,
+ 0, 0, 0, 351, 360, 359, 339, 340, 342, 344,
+ 350, 357, 363, 336, 345, 0, 0, 609, 0, 0,
+ 0, 265, 321, 272, 264, 580, 0, 0, 0, 0,
+ 0, 0, 596, 0, 0, 229, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 275, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 297, 0, 402, 257, 0, 453, 0, 0,
+ 0, 629, 0, 0, 0, 0, 0, 0, 0, 365,
+ 0, 330, 197, 225, 0, 0, 412, 461, 473, 0,
+ 0, 0, 253, 0, 471, 426, 604, 233, 284, 458,
+ 432, 469, 440, 287, 0, 0, 470, 372, 585, 450,
+ 601, 630, 631, 263, 406, 615, 522, 623, 648, 226,
+ 260, 420, 506, 607, 494, 397, 581, 582, 329, 493,
+ 295, 201, 369, 636, 224, 479, 371, 242, 231, 587,
+ 612, 299, 289, 456, 643, 213, 517, 598, 239, 483,
+ 0, 0, 651, 247, 504, 610, 599, 215, 594, 503,
+ 393, 326, 327, 214, 0, 457, 268, 293, 0, 0,
+ 258, 415, 589, 590, 256, 652, 228, 622, 220, 0,
+ 621, 408, 584, 595, 394, 383, 219, 593, 392, 382,
+ 334, 355, 356, 280, 307, 447, 375, 448, 306, 308,
+ 404, 403, 405, 207, 608, 626, 0, 208, 0, 499,
+ 611, 653, 452, 212, 234, 235, 237, 0, 279, 283,
+ 291, 294, 303, 304, 313, 367, 419, 446, 442, 451,
+ 0, 579, 602, 616, 628, 634, 635, 637, 638, 639,
+ 640, 641, 644, 642, 407, 311, 495, 333, 373, 0,
+ 0, 425, 472, 240, 606, 496, 199, 0, 0, 0,
+ 0, 254, 255, 0, 575, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 654, 655, 656, 657, 658, 659,
+ 660, 661, 662, 663, 664, 665, 666, 667, 668, 669,
+ 670, 671, 649, 508, 514, 509, 510, 511, 512, 513,
+ 0, 515, 0, 0, 0, 0, 0, 398, 0, 591,
+ 592, 672, 384, 486, 603, 335, 349, 352, 341, 361,
+ 0, 362, 337, 338, 343, 346, 347, 348, 353, 354,
+ 358, 364, 249, 210, 390, 399, 578, 312, 216, 217,
+ 218, 524, 525, 526, 527, 619, 620, 624, 205, 462,
+ 463, 464, 465, 292, 614, 309, 468, 467, 331, 332,
+ 379, 449, 540, 542, 553, 557, 559, 561, 567, 570,
+ 541, 543, 554, 558, 560, 562, 568, 571, 530, 532,
+ 534, 536, 549, 548, 545, 573, 574, 551, 556, 535,
+ 547, 552, 565, 572, 569, 529, 533, 537, 546, 564,
+ 563, 544, 555, 566, 550, 538, 531, 539, 0, 196,
+ 221, 368, 0, 454, 288, 650, 618, 484, 613, 206,
+ 223, 0, 262, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 198, 200, 209, 222, 232, 236,
+ 243, 261, 276, 278, 285, 298, 310, 318, 319, 322,
+ 328, 380, 386, 387, 388, 389, 409, 410, 411, 414,
+ 417, 418, 421, 423, 424, 427, 431, 435, 436, 437,
+ 439, 441, 443, 455, 460, 474, 475, 476, 477, 478,
+ 481, 482, 488, 489, 490, 491, 492, 500, 501, 516,
+ 586, 588, 605, 625, 632, 480, 301, 302, 444, 445,
+ 314, 315, 646, 647, 300, 600, 633, 597, 645, 627,
+ 438, 378, 0, 0, 381, 281, 305, 320, 0, 617,
+ 502, 227, 466, 290, 251, 0, 0, 211, 246, 230,
+ 259, 274, 277, 324, 391, 400, 429, 434, 296, 271,
+ 244, 459, 241, 485, 519, 520, 521, 523, 395, 266,
+ 433, 396, 0, 376, 576, 577, 316, 0, 0, 0,
+ 528, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 416, 0, 0, 0, 0, 0, 0, 0,
+ 270, 0, 0, 0, 0, 366, 267, 0, 1914, 204,
+ 505, 0, 430, 0, 203, 0, 487, 252, 377, 374,
+ 583, 282, 273, 269, 250, 317, 385, 428, 518, 422,
+ 0, 370, 0, 0, 497, 401, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 323, 248, 325, 202, 413, 498,
+ 286, 0, 0, 0, 0, 0, 507, 724, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 238, 0, 0,
+ 245, 0, 0, 0, 351, 360, 359, 339, 340, 342,
+ 344, 350, 357, 363, 336, 345, 0, 0, 609, 0,
+ 0, 0, 265, 321, 272, 264, 580, 0, 0, 0,
+ 0, 0, 0, 596, 0, 0, 229, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 275, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 297, 0, 402, 257, 0, 453, 0,
+ 0, 0, 629, 0, 0, 0, 0, 0, 0, 0,
+ 365, 0, 330, 197, 225, 0, 0, 412, 461, 473,
+ 0, 0, 0, 253, 0, 471, 426, 604, 233, 284,
+ 458, 432, 469, 440, 287, 0, 0, 470, 372, 585,
+ 450, 601, 630, 631, 263, 406, 615, 522, 623, 648,
+ 226, 260, 420, 506, 607, 494, 397, 581, 582, 329,
+ 493, 295, 201, 369, 636, 224, 479, 371, 242, 231,
+ 587, 612, 299, 289, 456, 643, 213, 517, 598, 239,
+ 483, 0, 0, 651, 247, 504, 610, 599, 215, 594,
+ 503, 393, 326, 327, 214, 0, 457, 268, 293, 0,
+ 0, 258, 415, 589, 590, 256, 652, 228, 622, 220,
+ 0, 621, 408, 584, 595, 394, 383, 219, 593, 392,
+ 382, 334, 355, 356, 280, 307, 447, 375, 448, 306,
+ 308, 404, 403, 405, 207, 608, 626, 0, 208, 0,
+ 499, 611, 653, 452, 212, 234, 235, 237, 0, 279,
+ 283, 291, 294, 303, 304, 313, 367, 419, 446, 442,
+ 451, 0, 579, 602, 616, 628, 634, 635, 637, 638,
+ 639, 640, 641, 644, 642, 407, 311, 495, 333, 373,
+ 0, 0, 425, 472, 240, 606, 496, 199, 0, 0,
+ 0, 0, 254, 255, 0, 575, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 654, 655, 656, 657, 658,
+ 659, 660, 661, 662, 663, 664, 665, 666, 667, 668,
+ 669, 670, 671, 649, 508, 514, 509, 510, 511, 512,
+ 513, 0, 515, 0, 0, 0, 0, 0, 398, 0,
+ 591, 592, 672, 384, 486, 603, 335, 349, 352, 341,
+ 361, 0, 362, 337, 338, 343, 346, 347, 348, 353,
+ 354, 358, 364, 249, 210, 390, 399, 578, 312, 216,
+ 217, 218, 524, 525, 526, 527, 619, 620, 624, 205,
+ 462, 463, 464, 465, 292, 614, 309, 468, 467, 331,
+ 332, 379, 449, 540, 542, 553, 557, 559, 561, 567,
+ 570, 541, 543, 554, 558, 560, 562, 568, 571, 530,
+ 532, 534, 536, 549, 548, 545, 573, 574, 551, 556,
+ 535, 547, 552, 565, 572, 569, 529, 533, 537, 546,
+ 564, 563, 544, 555, 566, 550, 538, 531, 539, 0,
+ 196, 221, 368, 0, 454, 288, 650, 618, 484, 613,
+ 206, 223, 0, 262, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 198, 200, 209, 222, 232,
+ 236, 243, 261, 276, 278, 285, 298, 310, 318, 319,
+ 322, 328, 380, 386, 387, 388, 389, 409, 410, 411,
+ 414, 417, 418, 421, 423, 424, 427, 431, 435, 436,
+ 437, 439, 441, 443, 455, 460, 474, 475, 476, 477,
+ 478, 481, 482, 488, 489, 490, 491, 492, 500, 501,
+ 516, 586, 588, 605, 625, 632, 480, 301, 302, 444,
+ 445, 314, 315, 646, 647, 300, 600, 633, 597, 645,
+ 627, 438, 378, 0, 0, 381, 281, 305, 320, 0,
+ 617, 502, 227, 466, 290, 251, 0, 0, 211, 246,
+ 230, 259, 274, 277, 324, 391, 400, 429, 434, 296,
+ 271, 244, 459, 241, 485, 519, 520, 521, 523, 395,
+ 266, 433, 396, 0, 376, 576, 577, 316, 0, 0,
+ 0, 528, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 416, 0, 0, 0, 0, 0, 0,
+ 0, 270, 0, 0, 0, 0, 366, 267, 0, 1912,
+ 204, 505, 0, 430, 0, 203, 0, 487, 252, 377,
+ 374, 583, 282, 273, 269, 250, 317, 385, 428, 518,
+ 422, 0, 370, 0, 0, 497, 401, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 323, 248, 325, 202, 413,
+ 498, 286, 0, 0, 0, 0, 0, 507, 724, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 238, 0,
+ 0, 245, 0, 0, 0, 351, 360, 359, 339, 340,
+ 342, 344, 350, 357, 363, 336, 345, 0, 0, 609,
+ 0, 0, 0, 265, 321, 272, 264, 580, 0, 0,
+ 0, 0, 0, 0, 596, 0, 0, 229, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 275, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 297, 0, 402, 257, 0, 453,
+ 0, 0, 0, 629, 0, 0, 0, 0, 0, 0,
+ 0, 365, 0, 330, 197, 225, 0, 0, 412, 461,
+ 473, 0, 0, 0, 253, 0, 471, 426, 604, 233,
+ 284, 458, 432, 469, 440, 287, 0, 0, 470, 372,
+ 585, 450, 601, 630, 631, 263, 406, 615, 522, 623,
+ 648, 226, 260, 420, 506, 607, 494, 397, 581, 582,
+ 329, 493, 295, 201, 369, 636, 224, 479, 371, 242,
+ 231, 587, 612, 299, 289, 456, 643, 213, 517, 598,
+ 239, 483, 0, 0, 651, 247, 504, 610, 599, 215,
+ 594, 503, 393, 326, 327, 214, 0, 457, 268, 293,
+ 0, 0, 258, 415, 589, 590, 256, 652, 228, 622,
+ 220, 0, 621, 408, 584, 595, 394, 383, 219, 593,
+ 392, 382, 334, 355, 356, 280, 307, 447, 375, 448,
+ 306, 308, 404, 403, 405, 207, 608, 626, 0, 208,
+ 0, 499, 611, 653, 452, 212, 234, 235, 237, 0,
+ 279, 283, 291, 294, 303, 304, 313, 367, 419, 446,
+ 442, 451, 0, 579, 602, 616, 628, 634, 635, 637,
+ 638, 639, 640, 641, 644, 642, 407, 311, 495, 333,
+ 373, 0, 0, 425, 472, 240, 606, 496, 199, 0,
+ 0, 0, 0, 254, 255, 0, 575, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 654, 655, 656, 657,
+ 658, 659, 660, 661, 662, 663, 664, 665, 666, 667,
+ 668, 669, 670, 671, 649, 508, 514, 509, 510, 511,
+ 512, 513, 0, 515, 0, 0, 0, 0, 0, 398,
+ 0, 591, 592, 672, 384, 486, 603, 335, 349, 352,
+ 341, 361, 0, 362, 337, 338, 343, 346, 347, 348,
+ 353, 354, 358, 364, 249, 210, 390, 399, 578, 312,
+ 216, 217, 218, 524, 525, 526, 527, 619, 620, 624,
+ 205, 462, 463, 464, 465, 292, 614, 309, 468, 467,
+ 331, 332, 379, 449, 540, 542, 553, 557, 559, 561,
+ 567, 570, 541, 543, 554, 558, 560, 562, 568, 571,
+ 530, 532, 534, 536, 549, 548, 545, 573, 574, 551,
+ 556, 535, 547, 552, 565, 572, 569, 529, 533, 537,
+ 546, 564, 563, 544, 555, 566, 550, 538, 531, 539,
+ 0, 196, 221, 368, 0, 454, 288, 650, 618, 484,
+ 613, 206, 223, 0, 262, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 198, 200, 209, 222,
+ 232, 236, 243, 261, 276, 278, 285, 298, 310, 318,
+ 319, 322, 328, 380, 386, 387, 388, 389, 409, 410,
+ 411, 414, 417, 418, 421, 423, 424, 427, 431, 435,
+ 436, 437, 439, 441, 443, 455, 460, 474, 475, 476,
+ 477, 478, 481, 482, 488, 489, 490, 491, 492, 500,
+ 501, 516, 586, 588, 605, 625, 632, 480, 301, 302,
+ 444, 445, 314, 315, 646, 647, 300, 600, 633, 597,
+ 645, 627, 438, 378, 0, 0, 381, 281, 305, 320,
+ 0, 617, 502, 227, 466, 290, 251, 0, 0, 211,
+ 246, 230, 259, 274, 277, 324, 391, 400, 429, 434,
+ 296, 271, 244, 459, 241, 485, 519, 520, 521, 523,
+ 395, 266, 433, 396, 0, 376, 576, 577, 316, 0,
+ 0, 0, 528, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 416, 0, 0, 0, 0, 0,
+ 0, 0, 270, 0, 0, 0, 0, 366, 267, 0,
+ 0, 204, 505, 0, 430, 0, 203, 0, 487, 252,
+ 377, 374, 583, 282, 273, 269, 250, 317, 385, 428,
+ 518, 422, 0, 370, 0, 0, 497, 401, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 323, 248, 325, 202,
+ 413, 498, 286, 0, 1887, 0, 0, 0, 507, 724,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 238,
+ 0, 0, 245, 0, 0, 0, 351, 360, 359, 339,
+ 340, 342, 344, 350, 357, 363, 336, 345, 0, 0,
+ 609, 0, 0, 0, 265, 321, 272, 264, 580, 0,
+ 0, 0, 0, 0, 0, 596, 0, 0, 229, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 275, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 297, 0, 402, 257, 0,
+ 453, 0, 0, 0, 629, 0, 0, 0, 0, 0,
+ 0, 0, 365, 0, 330, 197, 225, 0, 0, 412,
+ 461, 473, 0, 0, 0, 253, 0, 471, 426, 604,
+ 233, 284, 458, 432, 469, 440, 287, 0, 0, 470,
+ 372, 585, 450, 601, 630, 631, 263, 406, 615, 522,
+ 623, 648, 226, 260, 420, 506, 607, 494, 397, 581,
+ 582, 329, 493, 295, 201, 369, 636, 224, 479, 371,
+ 242, 231, 587, 612, 299, 289, 456, 643, 213, 517,
+ 598, 239, 483, 0, 0, 651, 247, 504, 610, 599,
+ 215, 594, 503, 393, 326, 327, 214, 0, 457, 268,
+ 293, 0, 0, 258, 415, 589, 590, 256, 652, 228,
+ 622, 220, 0, 621, 408, 584, 595, 394, 383, 219,
+ 593, 392, 382, 334, 355, 356, 280, 307, 447, 375,
+ 448, 306, 308, 404, 403, 405, 207, 608, 626, 0,
+ 208, 0, 499, 611, 653, 452, 212, 234, 235, 237,
+ 0, 279, 283, 291, 294, 303, 304, 313, 367, 419,
+ 446, 442, 451, 0, 579, 602, 616, 628, 634, 635,
+ 637, 638, 639, 640, 641, 644, 642, 407, 311, 495,
+ 333, 373, 0, 0, 425, 472, 240, 606, 496, 199,
+ 0, 0, 0, 0, 254, 255, 0, 575, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 654, 655, 656,
+ 657, 658, 659, 660, 661, 662, 663, 664, 665, 666,
+ 667, 668, 669, 670, 671, 649, 508, 514, 509, 510,
+ 511, 512, 513, 0, 515, 0, 0, 0, 0, 0,
+ 398, 0, 591, 592, 672, 384, 486, 603, 335, 349,
+ 352, 341, 361, 0, 362, 337, 338, 343, 346, 347,
+ 348, 353, 354, 358, 364, 249, 210, 390, 399, 578,
+ 312, 216, 217, 218, 524, 525, 526, 527, 619, 620,
+ 624, 205, 462, 463, 464, 465, 292, 614, 309, 468,
+ 467, 331, 332, 379, 449, 540, 542, 553, 557, 559,
+ 561, 567, 570, 541, 543, 554, 558, 560, 562, 568,
+ 571, 530, 532, 534, 536, 549, 548, 545, 573, 574,
+ 551, 556, 535, 547, 552, 565, 572, 569, 529, 533,
+ 537, 546, 564, 563, 544, 555, 566, 550, 538, 531,
+ 539, 0, 196, 221, 368, 0, 454, 288, 650, 618,
+ 484, 613, 206, 223, 0, 262, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 198, 200, 209,
+ 222, 232, 236, 243, 261, 276, 278, 285, 298, 310,
+ 318, 319, 322, 328, 380, 386, 387, 388, 389, 409,
+ 410, 411, 414, 417, 418, 421, 423, 424, 427, 431,
+ 435, 436, 437, 439, 441, 443, 455, 460, 474, 475,
+ 476, 477, 478, 481, 482, 488, 489, 490, 491, 492,
+ 500, 501, 516, 586, 588, 605, 625, 632, 480, 301,
+ 302, 444, 445, 314, 315, 646, 647, 300, 600, 633,
+ 597, 645, 627, 438, 378, 0, 0, 381, 281, 305,
+ 320, 0, 617, 502, 227, 466, 290, 251, 0, 0,
+ 211, 246, 230, 259, 274, 277, 324, 391, 400, 429,
+ 434, 296, 271, 244, 459, 241, 485, 519, 520, 521,
+ 523, 395, 266, 433, 396, 0, 376, 576, 577, 316,
+ 0, 0, 0, 528, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 416, 0, 0, 0, 0,
+ 0, 0, 1784, 270, 0, 0, 0, 0, 366, 267,
+ 0, 0, 204, 505, 0, 430, 0, 203, 0, 487,
+ 252, 377, 374, 583, 282, 273, 269, 250, 317, 385,
+ 428, 518, 422, 0, 370, 0, 0, 497, 401, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 323, 248, 325,
+ 202, 413, 498, 286, 0, 0, 0, 0, 0, 507,
+ 194, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 238, 0, 0, 245, 0, 0, 0, 351, 360, 359,
+ 339, 340, 342, 344, 350, 357, 363, 336, 345, 0,
+ 0, 609, 0, 0, 0, 265, 321, 272, 264, 580,
+ 0, 0, 0, 0, 0, 0, 596, 0, 0, 229,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 275, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 297, 0, 402, 257,
+ 0, 453, 0, 0, 0, 629, 0, 0, 0, 0,
+ 0, 0, 0, 365, 0, 330, 197, 225, 0, 0,
+ 412, 461, 473, 0, 0, 0, 253, 0, 471, 426,
+ 604, 233, 284, 458, 432, 469, 440, 287, 0, 0,
+ 470, 372, 585, 450, 601, 630, 631, 263, 406, 615,
+ 522, 623, 648, 226, 260, 420, 506, 607, 494, 397,
+ 581, 582, 329, 493, 295, 201, 369, 636, 224, 479,
+ 371, 242, 231, 587, 612, 299, 289, 456, 643, 213,
+ 517, 598, 239, 483, 0, 0, 651, 247, 504, 610,
+ 599, 215, 594, 503, 393, 326, 327, 214, 0, 457,
+ 268, 293, 0, 0, 258, 415, 589, 590, 256, 652,
+ 228, 622, 220, 0, 621, 408, 584, 595, 394, 383,
+ 219, 593, 392, 382, 334, 355, 356, 280, 307, 447,
+ 375, 448, 306, 308, 404, 403, 405, 207, 608, 626,
+ 0, 208, 0, 499, 611, 653, 452, 212, 234, 235,
+ 237, 0, 279, 283, 291, 294, 303, 304, 313, 367,
+ 419, 446, 442, 451, 0, 579, 602, 616, 628, 634,
+ 635, 637, 638, 639, 640, 641, 644, 642, 407, 311,
+ 495, 333, 373, 0, 0, 425, 472, 240, 606, 496,
+ 199, 0, 0, 0, 0, 254, 255, 0, 575, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 654, 655,
+ 656, 657, 658, 659, 660, 661, 662, 663, 664, 665,
+ 666, 667, 668, 669, 670, 671, 649, 508, 514, 509,
+ 510, 511, 512, 513, 0, 515, 0, 0, 0, 0,
+ 0, 398, 0, 591, 592, 672, 384, 486, 603, 335,
+ 349, 352, 341, 361, 0, 362, 337, 338, 343, 346,
+ 347, 348, 353, 354, 358, 364, 249, 210, 390, 399,
+ 578, 312, 216, 217, 218, 524, 525, 526, 527, 619,
+ 620, 624, 205, 462, 463, 464, 465, 292, 614, 309,
+ 468, 467, 331, 332, 379, 449, 540, 542, 553, 557,
+ 559, 561, 567, 570, 541, 543, 554, 558, 560, 562,
+ 568, 571, 530, 532, 534, 536, 549, 548, 545, 573,
+ 574, 551, 556, 535, 547, 552, 565, 572, 569, 529,
+ 533, 537, 546, 564, 563, 544, 555, 566, 550, 538,
+ 531, 539, 0, 196, 221, 368, 0, 454, 288, 650,
+ 618, 484, 613, 206, 223, 0, 262, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 198, 200,
+ 209, 222, 232, 236, 243, 261, 276, 278, 285, 298,
+ 310, 318, 319, 322, 328, 380, 386, 387, 388, 389,
+ 409, 410, 411, 414, 417, 418, 421, 423, 424, 427,
+ 431, 435, 436, 437, 439, 441, 443, 455, 460, 474,
+ 475, 476, 477, 478, 481, 482, 488, 489, 490, 491,
+ 492, 500, 501, 516, 586, 588, 605, 625, 632, 480,
+ 301, 302, 444, 445, 314, 315, 646, 647, 300, 600,
+ 633, 597, 645, 627, 438, 378, 0, 0, 381, 281,
+ 305, 320, 0, 617, 502, 227, 466, 290, 251, 0,
+ 0, 211, 246, 230, 259, 274, 277, 324, 391, 400,
+ 429, 434, 296, 271, 244, 459, 241, 485, 519, 520,
+ 521, 523, 395, 266, 433, 396, 0, 376, 576, 577,
+ 316, 0, 0, 0, 528, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 416, 0, 0, 0,
+ 0, 0, 0, 0, 270, 0, 0, 0, 0, 366,
+ 267, 0, 0, 204, 505, 0, 430, 0, 203, 0,
+ 487, 252, 377, 374, 583, 282, 273, 269, 250, 317,
+ 385, 428, 518, 422, 0, 370, 0, 0, 497, 401,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 323, 248,
+ 325, 202, 413, 498, 286, 0, 95, 0, 0, 0,
+ 507, 959, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 238, 0, 0, 245, 0, 0, 0, 351, 360,
+ 359, 339, 340, 342, 344, 350, 357, 363, 336, 345,
+ 0, 0, 609, 0, 0, 0, 265, 321, 272, 264,
+ 580, 0, 0, 0, 0, 0, 0, 596, 0, 0,
229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
@@ -7318,42 +6774,42 @@ var yyAct = [...]int{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
+ 257, 0, 453, 0, 0, 0, 629, 0, 0, 0,
0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
+ 426, 604, 233, 284, 458, 432, 469, 440, 287, 0,
+ 0, 470, 372, 585, 450, 601, 630, 631, 263, 406,
+ 615, 522, 623, 648, 226, 260, 420, 506, 607, 494,
+ 397, 581, 582, 329, 493, 295, 201, 369, 636, 224,
+ 479, 371, 242, 231, 587, 612, 299, 289, 456, 643,
+ 213, 517, 598, 239, 483, 0, 0, 651, 247, 504,
+ 610, 599, 215, 594, 503, 393, 326, 327, 214, 0,
457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
+ 652, 228, 622, 220, 0, 621, 408, 584, 595, 394,
383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
+ 447, 375, 448, 306, 308, 404, 403, 405, 207, 608,
+ 626, 0, 208, 0, 499, 611, 653, 452, 212, 234,
235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
+ 367, 419, 446, 442, 451, 0, 579, 602, 616, 628,
+ 634, 635, 637, 638, 639, 640, 641, 644, 642, 407,
+ 311, 495, 333, 373, 0, 0, 425, 472, 240, 606,
496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 654,
+ 655, 656, 657, 658, 659, 660, 661, 662, 663, 664,
+ 665, 666, 667, 668, 669, 670, 671, 649, 508, 514,
509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
+ 0, 0, 398, 0, 591, 592, 672, 384, 486, 603,
335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
+ 619, 620, 624, 205, 462, 463, 464, 465, 292, 614,
309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
+ 650, 618, 484, 613, 206, 223, 0, 262, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
@@ -7361,10 +6817,10 @@ var yyAct = [...]int{
389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
+ 491, 492, 500, 501, 516, 586, 588, 605, 625, 632,
+ 480, 301, 302, 444, 445, 314, 315, 646, 647, 300,
+ 600, 633, 597, 645, 627, 438, 378, 0, 0, 381,
+ 281, 305, 320, 0, 617, 502, 227, 466, 290, 251,
0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
520, 521, 523, 395, 266, 433, 396, 0, 376, 576,
@@ -7380,94 +6836,536 @@ var yyAct = [...]int{
0, 507, 194, 0, 0, 0, 0, 0, 0, 0,
0, 0, 238, 0, 0, 245, 0, 0, 0, 351,
360, 359, 339, 340, 342, 344, 350, 357, 363, 336,
- 345, 0, 0, 608, 0, 0, 0, 265, 321, 272,
- 264, 580, 0, 0, 0, 0, 0, 0, 0, 0,
- 229, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 275, 0, 0, 0, 0,
+ 345, 0, 0, 609, 0, 0, 0, 265, 321, 272,
+ 264, 580, 0, 0, 0, 0, 0, 0, 596, 0,
+ 0, 229, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 275, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 1456, 0, 297, 0,
+ 402, 257, 0, 453, 0, 0, 0, 629, 0, 0,
+ 0, 0, 0, 0, 0, 365, 0, 330, 197, 225,
+ 0, 0, 412, 461, 473, 0, 0, 0, 253, 0,
+ 471, 426, 604, 233, 284, 458, 432, 469, 440, 287,
+ 0, 0, 470, 372, 585, 450, 601, 630, 631, 263,
+ 406, 615, 522, 623, 648, 226, 260, 420, 506, 607,
+ 494, 397, 581, 582, 329, 493, 295, 201, 369, 636,
+ 224, 479, 371, 242, 231, 587, 612, 299, 289, 456,
+ 643, 213, 517, 598, 239, 483, 0, 0, 651, 247,
+ 504, 610, 599, 215, 594, 503, 393, 326, 327, 214,
+ 0, 457, 268, 293, 0, 0, 258, 415, 589, 590,
+ 256, 652, 228, 622, 220, 0, 621, 408, 584, 595,
+ 394, 383, 219, 593, 392, 382, 334, 355, 356, 280,
+ 307, 447, 375, 448, 306, 308, 404, 403, 405, 207,
+ 608, 626, 0, 208, 0, 499, 611, 653, 452, 212,
+ 234, 235, 237, 0, 279, 283, 291, 294, 303, 304,
+ 313, 367, 419, 446, 442, 451, 0, 579, 602, 616,
+ 628, 634, 635, 637, 638, 639, 640, 641, 644, 642,
+ 407, 311, 495, 333, 373, 0, 0, 425, 472, 240,
+ 606, 496, 199, 0, 0, 0, 0, 254, 255, 0,
+ 575, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
+ 664, 665, 666, 667, 668, 669, 670, 671, 649, 508,
+ 514, 509, 510, 511, 512, 513, 0, 515, 0, 0,
+ 0, 0, 0, 398, 0, 591, 592, 672, 384, 486,
+ 603, 335, 349, 352, 341, 361, 0, 362, 337, 338,
+ 343, 346, 347, 348, 353, 354, 358, 364, 249, 210,
+ 390, 399, 578, 312, 216, 217, 218, 524, 525, 526,
+ 527, 619, 620, 624, 205, 462, 463, 464, 465, 292,
+ 614, 309, 468, 467, 331, 332, 379, 449, 540, 542,
+ 553, 557, 559, 561, 567, 570, 541, 543, 554, 558,
+ 560, 562, 568, 571, 530, 532, 534, 536, 549, 548,
+ 545, 573, 574, 551, 556, 535, 547, 552, 565, 572,
+ 569, 529, 533, 537, 546, 564, 563, 544, 555, 566,
+ 550, 538, 531, 539, 0, 196, 221, 368, 0, 454,
+ 288, 650, 618, 484, 613, 206, 223, 0, 262, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 198, 200, 209, 222, 232, 236, 243, 261, 276, 278,
+ 285, 298, 310, 318, 319, 322, 328, 380, 386, 387,
+ 388, 389, 409, 410, 411, 414, 417, 418, 421, 423,
+ 424, 427, 431, 435, 436, 437, 439, 441, 443, 455,
+ 460, 474, 475, 476, 477, 478, 481, 482, 488, 489,
+ 490, 491, 492, 500, 501, 516, 586, 588, 605, 625,
+ 632, 480, 301, 302, 444, 445, 314, 315, 646, 647,
+ 1455, 600, 633, 597, 645, 627, 438, 378, 0, 0,
+ 381, 281, 305, 320, 0, 617, 502, 227, 466, 290,
+ 251, 0, 0, 211, 246, 230, 259, 274, 277, 324,
+ 391, 400, 429, 434, 296, 271, 244, 459, 241, 485,
+ 519, 520, 521, 523, 395, 266, 433, 396, 0, 376,
+ 576, 577, 316, 0, 0, 0, 528, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 416, 0,
+ 0, 0, 0, 0, 0, 0, 270, 0, 0, 0,
+ 0, 366, 267, 0, 0, 204, 505, 0, 430, 0,
+ 203, 0, 487, 252, 377, 374, 583, 282, 273, 269,
+ 250, 317, 385, 428, 518, 422, 0, 370, 0, 0,
+ 497, 401, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 323, 248, 325, 202, 413, 498, 286, 0, 0, 0,
+ 0, 0, 507, 194, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 238, 0, 0, 245, 0, 0, 0,
+ 351, 360, 359, 339, 340, 342, 344, 350, 357, 363,
+ 336, 345, 0, 0, 609, 0, 0, 0, 265, 321,
+ 272, 264, 580, 0, 0, 0, 0, 0, 0, 596,
+ 0, 0, 229, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 275, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 297,
+ 0, 402, 257, 0, 453, 0, 0, 0, 629, 0,
+ 0, 0, 0, 0, 0, 0, 365, 0, 330, 197,
+ 225, 0, 0, 412, 461, 473, 0, 0, 0, 253,
+ 0, 471, 426, 604, 233, 284, 458, 432, 469, 440,
+ 287, 0, 0, 470, 372, 585, 450, 601, 630, 631,
+ 263, 406, 615, 522, 623, 648, 226, 260, 420, 506,
+ 607, 494, 397, 581, 582, 329, 493, 295, 201, 369,
+ 636, 224, 479, 371, 242, 231, 587, 612, 299, 289,
+ 456, 643, 213, 517, 598, 239, 483, 0, 0, 651,
+ 247, 504, 610, 599, 215, 594, 503, 393, 326, 327,
+ 214, 0, 457, 268, 293, 0, 0, 258, 415, 589,
+ 590, 256, 652, 228, 622, 220, 0, 621, 408, 584,
+ 595, 394, 383, 219, 593, 392, 382, 334, 355, 356,
+ 280, 307, 447, 375, 448, 306, 308, 404, 403, 405,
+ 207, 608, 626, 0, 208, 0, 499, 611, 653, 452,
+ 212, 234, 235, 237, 0, 279, 283, 291, 294, 303,
+ 304, 313, 367, 419, 446, 442, 451, 0, 579, 602,
+ 616, 628, 634, 635, 637, 638, 639, 640, 641, 644,
+ 642, 407, 311, 495, 333, 373, 0, 0, 425, 472,
+ 240, 606, 496, 199, 0, 0, 0, 0, 254, 255,
+ 0, 575, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 654, 655, 656, 657, 658, 659, 660, 661, 662,
+ 663, 664, 665, 666, 667, 668, 669, 670, 671, 649,
+ 508, 514, 509, 510, 511, 512, 513, 0, 515, 0,
+ 0, 0, 0, 0, 398, 0, 591, 592, 672, 384,
+ 486, 603, 335, 349, 352, 341, 361, 0, 362, 337,
+ 338, 343, 346, 347, 348, 353, 354, 358, 364, 249,
+ 210, 390, 399, 578, 312, 216, 217, 218, 524, 525,
+ 526, 527, 619, 620, 624, 205, 462, 463, 464, 465,
+ 292, 614, 309, 468, 467, 331, 332, 379, 449, 540,
+ 542, 553, 557, 559, 561, 567, 570, 541, 543, 554,
+ 558, 560, 562, 568, 571, 530, 532, 534, 536, 549,
+ 548, 545, 573, 574, 551, 556, 535, 547, 552, 565,
+ 572, 569, 529, 533, 537, 546, 564, 563, 544, 555,
+ 566, 550, 538, 531, 539, 0, 196, 221, 368, 0,
+ 454, 288, 650, 618, 484, 613, 206, 223, 0, 262,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 1049, 0, 0,
+ 0, 198, 200, 209, 222, 232, 236, 243, 261, 276,
+ 278, 285, 298, 310, 318, 319, 322, 328, 380, 386,
+ 387, 388, 389, 409, 410, 411, 414, 417, 418, 421,
+ 423, 424, 427, 431, 435, 436, 437, 439, 441, 443,
+ 455, 460, 474, 475, 476, 477, 478, 481, 482, 488,
+ 489, 490, 491, 492, 500, 501, 516, 586, 588, 605,
+ 625, 632, 480, 301, 302, 444, 445, 314, 315, 646,
+ 647, 300, 600, 633, 597, 645, 627, 438, 378, 0,
+ 0, 381, 281, 305, 320, 0, 617, 502, 227, 466,
+ 290, 251, 0, 0, 211, 246, 230, 259, 274, 277,
+ 324, 391, 400, 429, 434, 296, 271, 244, 459, 241,
+ 485, 519, 520, 521, 523, 395, 266, 433, 396, 0,
+ 376, 576, 577, 316, 0, 0, 0, 528, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 416,
+ 0, 0, 0, 0, 0, 0, 0, 270, 0, 0,
+ 0, 0, 366, 267, 0, 0, 204, 505, 0, 430,
+ 0, 203, 0, 487, 252, 377, 374, 583, 282, 273,
+ 269, 250, 317, 385, 428, 518, 422, 0, 370, 0,
+ 0, 497, 401, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 323, 248, 325, 202, 413, 498, 286, 0, 0,
+ 0, 0, 0, 507, 194, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 238, 0, 0, 245, 0, 0,
+ 0, 351, 360, 359, 339, 340, 342, 344, 350, 357,
+ 363, 336, 345, 0, 0, 609, 0, 0, 0, 265,
+ 321, 272, 264, 580, 0, 0, 0, 0, 0, 0,
+ 596, 0, 0, 229, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 275, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 297, 0, 402, 257, 0, 453, 0, 675, 0, 629,
+ 0, 0, 0, 0, 0, 0, 0, 365, 0, 330,
+ 197, 225, 0, 0, 412, 461, 473, 0, 0, 0,
+ 253, 0, 471, 426, 604, 233, 284, 458, 432, 469,
+ 440, 287, 0, 0, 470, 372, 585, 450, 601, 630,
+ 631, 263, 406, 615, 522, 623, 648, 226, 260, 420,
+ 506, 607, 494, 397, 581, 582, 329, 493, 295, 201,
+ 369, 636, 224, 479, 371, 242, 231, 587, 612, 299,
+ 289, 456, 643, 213, 517, 598, 239, 483, 0, 0,
+ 651, 247, 504, 610, 599, 215, 594, 503, 393, 326,
+ 327, 214, 0, 457, 268, 293, 0, 0, 258, 415,
+ 589, 590, 256, 652, 228, 622, 220, 0, 621, 408,
+ 584, 595, 394, 383, 219, 593, 392, 382, 334, 355,
+ 356, 280, 307, 447, 375, 448, 306, 308, 404, 403,
+ 405, 207, 608, 626, 0, 208, 0, 499, 611, 653,
+ 452, 212, 234, 235, 237, 0, 279, 283, 291, 294,
+ 303, 304, 313, 367, 419, 446, 442, 451, 0, 579,
+ 602, 616, 628, 634, 635, 637, 638, 639, 640, 641,
+ 644, 642, 407, 311, 495, 333, 373, 0, 0, 425,
+ 472, 240, 606, 496, 199, 0, 0, 0, 0, 254,
+ 255, 0, 575, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 654, 655, 656, 657, 658, 659, 660, 661,
+ 662, 663, 664, 665, 666, 667, 668, 669, 670, 671,
+ 649, 508, 514, 509, 510, 511, 512, 513, 0, 515,
+ 0, 0, 0, 0, 0, 398, 0, 591, 592, 672,
+ 384, 486, 603, 335, 349, 352, 341, 361, 0, 362,
+ 337, 338, 343, 346, 347, 348, 353, 354, 358, 364,
+ 249, 210, 390, 399, 578, 312, 216, 217, 218, 524,
+ 525, 526, 527, 619, 620, 624, 205, 462, 463, 464,
+ 465, 292, 614, 309, 468, 467, 331, 332, 379, 449,
+ 540, 542, 553, 557, 559, 561, 567, 570, 541, 543,
+ 554, 558, 560, 562, 568, 571, 530, 532, 534, 536,
+ 549, 548, 545, 573, 574, 551, 556, 535, 547, 552,
+ 565, 572, 569, 529, 533, 537, 546, 564, 563, 544,
+ 555, 566, 550, 538, 531, 539, 0, 196, 221, 368,
+ 0, 454, 288, 650, 618, 484, 613, 206, 223, 0,
+ 262, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 198, 200, 209, 222, 232, 236, 243, 261,
+ 276, 278, 285, 298, 310, 318, 319, 322, 328, 380,
+ 386, 387, 388, 389, 409, 410, 411, 414, 417, 418,
+ 421, 423, 424, 427, 431, 435, 436, 437, 439, 441,
+ 443, 455, 460, 474, 475, 476, 477, 478, 481, 482,
+ 488, 489, 490, 491, 492, 500, 501, 516, 586, 588,
+ 605, 625, 632, 480, 301, 302, 444, 445, 314, 315,
+ 646, 647, 300, 600, 633, 597, 645, 627, 438, 378,
+ 0, 0, 381, 281, 305, 320, 0, 617, 502, 227,
+ 466, 290, 251, 0, 0, 211, 246, 230, 259, 274,
+ 277, 324, 391, 400, 429, 434, 296, 271, 244, 459,
+ 241, 485, 519, 520, 521, 523, 395, 266, 433, 396,
+ 0, 376, 576, 577, 316, 0, 0, 0, 528, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 416, 0, 0, 0, 0, 0, 0, 0, 270, 0,
+ 0, 0, 0, 366, 267, 0, 0, 204, 505, 0,
+ 430, 0, 203, 0, 487, 252, 377, 374, 583, 282,
+ 273, 269, 250, 317, 385, 428, 518, 422, 0, 370,
+ 0, 0, 497, 401, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 323, 248, 325, 202, 413, 498, 286, 0,
+ 0, 0, 0, 0, 507, 724, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 238, 0, 0, 245, 0,
+ 0, 0, 351, 360, 359, 339, 340, 342, 344, 350,
+ 357, 363, 336, 345, 0, 0, 609, 0, 0, 0,
+ 265, 321, 272, 264, 580, 0, 0, 0, 0, 0,
+ 0, 596, 0, 0, 229, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 275,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 297, 0, 402, 257, 0, 453, 0, 0, 0,
+ 629, 0, 0, 0, 0, 0, 0, 0, 365, 0,
+ 330, 197, 225, 0, 0, 412, 461, 473, 0, 0,
+ 0, 253, 0, 471, 426, 604, 233, 284, 458, 432,
+ 469, 440, 287, 0, 0, 470, 372, 585, 450, 601,
+ 630, 631, 263, 406, 615, 522, 623, 648, 226, 260,
+ 420, 506, 607, 494, 397, 581, 582, 329, 493, 295,
+ 201, 369, 636, 224, 479, 371, 242, 231, 587, 612,
+ 299, 289, 456, 643, 213, 517, 598, 239, 483, 0,
+ 0, 651, 247, 504, 610, 599, 215, 594, 503, 393,
+ 326, 327, 214, 0, 457, 268, 293, 0, 0, 258,
+ 415, 589, 590, 256, 652, 228, 622, 220, 0, 621,
+ 408, 584, 595, 394, 383, 219, 593, 392, 382, 334,
+ 355, 356, 280, 307, 447, 375, 448, 306, 308, 404,
+ 403, 405, 207, 608, 626, 0, 208, 0, 499, 611,
+ 653, 452, 212, 234, 235, 237, 0, 279, 283, 291,
+ 294, 303, 304, 313, 367, 419, 446, 442, 451, 0,
+ 579, 602, 616, 628, 634, 635, 637, 638, 639, 640,
+ 641, 644, 642, 407, 311, 495, 333, 373, 0, 0,
+ 425, 472, 240, 606, 496, 199, 0, 0, 0, 0,
+ 254, 255, 0, 575, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 654, 655, 656, 657, 658, 659, 660,
+ 661, 662, 663, 664, 665, 666, 667, 668, 669, 670,
+ 671, 649, 508, 514, 509, 510, 511, 512, 513, 0,
+ 515, 0, 0, 0, 0, 0, 398, 0, 591, 592,
+ 672, 384, 486, 603, 335, 349, 352, 341, 361, 0,
+ 362, 337, 338, 343, 346, 347, 348, 353, 354, 358,
+ 364, 249, 210, 390, 399, 578, 312, 216, 217, 218,
+ 524, 525, 526, 527, 619, 620, 624, 205, 462, 463,
+ 464, 465, 292, 614, 309, 468, 467, 331, 332, 379,
+ 449, 540, 542, 553, 557, 559, 561, 567, 570, 541,
+ 543, 554, 558, 560, 562, 568, 571, 530, 532, 534,
+ 536, 549, 548, 545, 573, 574, 551, 556, 535, 547,
+ 552, 565, 572, 569, 529, 533, 537, 546, 564, 563,
+ 544, 555, 566, 550, 538, 531, 539, 0, 196, 221,
+ 368, 0, 454, 288, 650, 618, 484, 613, 206, 223,
+ 0, 262, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 198, 200, 209, 222, 232, 236, 243,
+ 261, 276, 278, 285, 298, 310, 318, 319, 322, 328,
+ 380, 386, 387, 388, 389, 4136, 410, 411, 414, 417,
+ 418, 421, 423, 424, 427, 431, 435, 436, 437, 439,
+ 441, 443, 455, 460, 474, 475, 476, 477, 478, 481,
+ 482, 488, 489, 490, 491, 492, 500, 501, 516, 586,
+ 588, 605, 625, 632, 480, 301, 302, 444, 445, 314,
+ 315, 646, 647, 300, 600, 633, 597, 645, 627, 438,
+ 378, 0, 0, 381, 281, 305, 320, 0, 617, 502,
+ 227, 466, 290, 251, 0, 0, 211, 246, 230, 259,
+ 274, 277, 324, 391, 400, 429, 434, 296, 271, 244,
+ 459, 241, 485, 519, 520, 521, 523, 395, 266, 433,
+ 396, 0, 376, 576, 577, 316, 0, 0, 0, 528,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 416, 0, 0, 0, 0, 0, 0, 0, 270,
+ 0, 0, 0, 0, 366, 267, 0, 0, 204, 505,
+ 0, 430, 0, 203, 0, 487, 252, 377, 374, 583,
+ 282, 273, 269, 250, 317, 385, 428, 518, 422, 0,
+ 370, 0, 0, 497, 401, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 323, 248, 325, 202, 413, 498, 286,
+ 0, 0, 0, 0, 0, 507, 724, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 238, 0, 0, 245,
+ 0, 0, 0, 351, 360, 359, 339, 340, 342, 344,
+ 350, 357, 363, 336, 345, 0, 0, 609, 0, 0,
+ 0, 265, 321, 272, 264, 580, 0, 0, 0, 0,
+ 0, 0, 596, 0, 0, 229, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 275, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 297, 0, 402,
- 257, 0, 453, 0, 0, 0, 628, 0, 0, 0,
- 0, 0, 0, 0, 365, 0, 330, 197, 225, 0,
- 0, 412, 461, 473, 0, 0, 0, 253, 0, 471,
- 426, 603, 233, 284, 458, 432, 469, 440, 287, 0,
- 0, 470, 372, 585, 450, 600, 629, 630, 263, 406,
- 614, 522, 622, 647, 226, 260, 420, 506, 606, 494,
- 397, 581, 582, 329, 493, 295, 201, 369, 635, 224,
- 479, 371, 242, 231, 587, 611, 299, 289, 456, 642,
- 213, 517, 597, 239, 483, 0, 0, 650, 247, 504,
- 609, 598, 215, 594, 503, 393, 326, 327, 214, 0,
- 457, 268, 293, 0, 0, 258, 415, 589, 590, 256,
- 651, 228, 621, 220, 0, 620, 408, 584, 595, 394,
- 383, 219, 593, 392, 382, 334, 355, 356, 280, 307,
- 447, 375, 448, 306, 308, 404, 403, 405, 207, 607,
- 625, 0, 208, 0, 499, 610, 652, 452, 212, 234,
- 235, 237, 0, 279, 283, 291, 294, 303, 304, 313,
- 367, 419, 446, 442, 451, 0, 579, 601, 615, 627,
- 633, 634, 636, 637, 638, 639, 640, 643, 641, 407,
- 311, 495, 333, 373, 0, 0, 425, 472, 240, 605,
- 496, 199, 0, 0, 0, 0, 254, 255, 0, 575,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 653,
- 654, 655, 656, 657, 658, 659, 660, 661, 662, 663,
- 664, 665, 666, 667, 668, 669, 670, 648, 508, 514,
- 509, 510, 511, 512, 513, 0, 515, 0, 0, 0,
- 0, 0, 398, 0, 591, 592, 671, 384, 486, 602,
- 335, 349, 352, 341, 361, 0, 362, 337, 338, 343,
- 346, 347, 348, 353, 354, 358, 364, 249, 210, 390,
- 399, 578, 312, 216, 217, 218, 524, 525, 526, 527,
- 618, 619, 623, 205, 462, 463, 464, 465, 292, 613,
- 309, 468, 467, 331, 332, 379, 449, 540, 542, 553,
- 557, 559, 561, 567, 570, 541, 543, 554, 558, 560,
- 562, 568, 571, 530, 532, 534, 536, 549, 548, 545,
- 573, 574, 551, 556, 535, 547, 552, 565, 572, 569,
- 529, 533, 537, 546, 564, 563, 544, 555, 566, 550,
- 538, 531, 539, 0, 196, 221, 368, 0, 454, 288,
- 649, 617, 484, 612, 206, 223, 0, 262, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 198,
- 200, 209, 222, 232, 236, 243, 261, 276, 278, 285,
- 298, 310, 318, 319, 322, 328, 380, 386, 387, 388,
- 389, 409, 410, 411, 414, 417, 418, 421, 423, 424,
- 427, 431, 435, 436, 437, 439, 441, 443, 455, 460,
- 474, 475, 476, 477, 478, 481, 482, 488, 489, 490,
- 491, 492, 500, 501, 516, 586, 588, 604, 624, 631,
- 480, 301, 302, 444, 445, 314, 315, 645, 646, 300,
- 599, 632, 596, 644, 626, 438, 378, 0, 0, 381,
- 281, 305, 320, 0, 616, 502, 227, 466, 290, 251,
- 0, 0, 211, 246, 230, 259, 274, 277, 324, 391,
- 400, 429, 434, 296, 271, 244, 459, 241, 485, 519,
- 520, 521, 523, 395, 266, 433, 0, 0, 376, 576,
- 577, 316,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 297, 0, 402, 257, 0, 453, 0, 0,
+ 0, 629, 0, 0, 0, 0, 0, 0, 0, 365,
+ 0, 330, 197, 225, 0, 0, 412, 461, 473, 0,
+ 0, 0, 253, 0, 471, 426, 604, 233, 284, 458,
+ 432, 469, 440, 287, 0, 0, 470, 372, 585, 450,
+ 601, 630, 631, 263, 406, 615, 522, 623, 648, 226,
+ 260, 420, 506, 607, 494, 397, 581, 582, 329, 493,
+ 295, 201, 369, 636, 224, 479, 371, 242, 231, 587,
+ 612, 299, 289, 456, 643, 213, 517, 598, 239, 483,
+ 0, 0, 651, 247, 504, 610, 599, 215, 594, 503,
+ 393, 326, 327, 214, 0, 457, 268, 293, 0, 0,
+ 258, 415, 589, 590, 256, 652, 228, 622, 220, 0,
+ 621, 408, 584, 595, 394, 383, 219, 593, 392, 382,
+ 334, 355, 356, 280, 307, 447, 375, 448, 306, 308,
+ 404, 403, 405, 207, 608, 626, 0, 208, 0, 499,
+ 611, 653, 452, 212, 234, 235, 237, 0, 279, 283,
+ 291, 294, 303, 304, 313, 367, 419, 446, 442, 451,
+ 0, 579, 602, 616, 628, 634, 635, 637, 638, 639,
+ 640, 641, 644, 642, 407, 311, 495, 333, 373, 0,
+ 0, 425, 472, 240, 606, 496, 199, 0, 0, 0,
+ 0, 254, 255, 0, 575, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 654, 655, 656, 657, 658, 659,
+ 660, 661, 662, 663, 664, 665, 666, 667, 668, 669,
+ 670, 671, 649, 508, 514, 509, 510, 511, 512, 513,
+ 0, 515, 0, 0, 0, 0, 0, 398, 0, 591,
+ 592, 672, 384, 486, 603, 335, 349, 352, 341, 361,
+ 0, 362, 337, 338, 343, 346, 347, 348, 353, 354,
+ 358, 364, 249, 210, 390, 399, 578, 312, 216, 217,
+ 218, 524, 525, 526, 527, 619, 620, 624, 205, 462,
+ 463, 464, 465, 292, 614, 309, 468, 467, 331, 332,
+ 379, 449, 540, 542, 553, 557, 559, 561, 567, 570,
+ 541, 543, 554, 558, 560, 562, 568, 571, 530, 532,
+ 534, 536, 549, 548, 545, 573, 574, 551, 556, 535,
+ 547, 552, 565, 572, 569, 529, 533, 537, 546, 564,
+ 563, 544, 555, 566, 550, 538, 531, 539, 0, 196,
+ 221, 368, 0, 454, 288, 650, 618, 484, 613, 206,
+ 223, 0, 262, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 198, 200, 209, 222, 232, 236,
+ 243, 261, 276, 278, 285, 298, 310, 318, 319, 322,
+ 328, 380, 386, 387, 388, 389, 409, 410, 411, 414,
+ 417, 418, 421, 423, 424, 427, 431, 435, 436, 437,
+ 439, 441, 443, 455, 460, 474, 475, 476, 477, 478,
+ 481, 482, 488, 489, 490, 491, 492, 500, 501, 516,
+ 586, 588, 605, 625, 632, 480, 301, 302, 444, 445,
+ 314, 315, 646, 647, 300, 600, 633, 597, 645, 627,
+ 438, 378, 0, 0, 381, 281, 305, 320, 0, 617,
+ 502, 227, 466, 290, 251, 0, 0, 211, 246, 230,
+ 259, 274, 277, 324, 391, 400, 429, 434, 296, 271,
+ 244, 459, 241, 485, 519, 520, 521, 523, 395, 266,
+ 433, 396, 0, 376, 576, 577, 316, 0, 0, 0,
+ 528, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 416, 0, 0, 0, 0, 0, 0, 0,
+ 270, 0, 0, 0, 0, 366, 267, 0, 0, 204,
+ 505, 0, 430, 0, 203, 0, 487, 252, 377, 374,
+ 583, 282, 273, 269, 250, 317, 385, 428, 518, 422,
+ 0, 370, 0, 0, 497, 401, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 323, 248, 325, 202, 413, 498,
+ 286, 0, 0, 0, 0, 0, 507, 959, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 238, 0, 0,
+ 245, 0, 0, 0, 351, 360, 359, 339, 340, 342,
+ 344, 350, 357, 363, 336, 345, 0, 0, 609, 0,
+ 0, 0, 265, 321, 272, 264, 580, 0, 0, 0,
+ 0, 0, 0, 596, 0, 0, 229, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 275, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 297, 0, 402, 257, 0, 453, 0,
+ 0, 0, 629, 0, 0, 0, 0, 0, 0, 0,
+ 365, 0, 330, 197, 225, 0, 0, 412, 461, 473,
+ 0, 0, 0, 253, 0, 471, 426, 604, 233, 284,
+ 458, 432, 469, 440, 287, 0, 0, 470, 372, 585,
+ 450, 601, 630, 631, 263, 406, 615, 522, 623, 648,
+ 226, 260, 420, 506, 607, 494, 397, 581, 582, 329,
+ 493, 295, 201, 369, 636, 224, 479, 371, 242, 231,
+ 587, 612, 299, 289, 456, 643, 213, 517, 598, 239,
+ 483, 0, 0, 651, 247, 504, 610, 599, 215, 594,
+ 503, 393, 326, 327, 214, 0, 457, 268, 293, 0,
+ 0, 258, 415, 589, 590, 256, 652, 228, 622, 220,
+ 0, 621, 408, 584, 595, 394, 383, 219, 593, 392,
+ 382, 334, 355, 356, 280, 307, 447, 375, 448, 306,
+ 308, 404, 403, 405, 207, 608, 626, 0, 208, 0,
+ 499, 611, 653, 452, 212, 234, 235, 237, 0, 279,
+ 283, 291, 294, 303, 304, 313, 367, 419, 446, 442,
+ 451, 0, 579, 602, 616, 628, 634, 635, 637, 638,
+ 639, 640, 641, 644, 642, 407, 311, 495, 333, 373,
+ 0, 0, 425, 472, 240, 606, 496, 199, 0, 0,
+ 0, 0, 254, 255, 0, 575, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 654, 655, 656, 657, 658,
+ 659, 660, 661, 662, 663, 664, 665, 666, 667, 668,
+ 669, 670, 671, 649, 508, 514, 509, 510, 511, 512,
+ 513, 0, 515, 0, 0, 0, 0, 0, 398, 0,
+ 591, 592, 672, 384, 486, 603, 335, 349, 352, 341,
+ 361, 0, 362, 337, 338, 343, 346, 347, 348, 353,
+ 354, 358, 364, 249, 210, 390, 399, 578, 312, 216,
+ 217, 218, 524, 525, 526, 527, 619, 620, 624, 205,
+ 462, 463, 464, 465, 292, 614, 309, 468, 467, 331,
+ 332, 379, 449, 540, 542, 553, 557, 559, 561, 567,
+ 570, 541, 543, 554, 558, 560, 562, 568, 571, 530,
+ 532, 534, 536, 549, 548, 545, 573, 574, 551, 556,
+ 535, 547, 552, 565, 572, 569, 529, 533, 537, 546,
+ 564, 563, 544, 555, 566, 550, 538, 531, 539, 0,
+ 196, 221, 368, 0, 454, 288, 650, 618, 484, 613,
+ 206, 223, 0, 262, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 198, 200, 209, 222, 232,
+ 236, 243, 261, 276, 278, 285, 298, 310, 318, 319,
+ 322, 328, 380, 386, 387, 388, 389, 409, 410, 411,
+ 414, 417, 418, 421, 423, 424, 427, 431, 435, 436,
+ 437, 439, 441, 443, 455, 460, 474, 475, 476, 477,
+ 478, 481, 482, 488, 489, 490, 491, 492, 500, 501,
+ 516, 586, 588, 605, 625, 632, 480, 301, 302, 444,
+ 445, 314, 315, 646, 647, 300, 600, 633, 597, 645,
+ 627, 438, 378, 0, 0, 381, 281, 305, 320, 0,
+ 617, 502, 227, 466, 290, 251, 0, 0, 211, 246,
+ 230, 259, 274, 277, 324, 391, 400, 429, 434, 296,
+ 271, 244, 459, 241, 485, 519, 520, 521, 523, 395,
+ 266, 433, 396, 0, 376, 576, 577, 316, 0, 0,
+ 0, 528, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 416, 0, 0, 0, 0, 0, 0,
+ 0, 270, 0, 0, 0, 0, 366, 267, 0, 0,
+ 204, 505, 0, 430, 0, 203, 0, 487, 252, 377,
+ 374, 583, 282, 273, 269, 250, 317, 385, 428, 518,
+ 422, 0, 370, 0, 0, 497, 401, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 323, 248, 325, 202, 413,
+ 498, 286, 0, 0, 0, 0, 0, 507, 194, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 238, 0,
+ 0, 245, 0, 0, 0, 351, 360, 359, 339, 340,
+ 342, 344, 350, 357, 363, 336, 345, 0, 0, 609,
+ 0, 0, 0, 265, 321, 272, 264, 580, 0, 0,
+ 0, 0, 0, 0, 596, 0, 0, 229, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 275, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 297, 0, 402, 257, 0, 453,
+ 0, 0, 0, 629, 0, 0, 0, 0, 0, 0,
+ 0, 365, 0, 330, 197, 225, 0, 0, 412, 461,
+ 473, 0, 0, 0, 253, 0, 471, 426, 604, 233,
+ 284, 458, 432, 469, 440, 287, 0, 0, 470, 372,
+ 585, 450, 601, 630, 631, 263, 406, 615, 522, 623,
+ 648, 226, 260, 420, 506, 607, 494, 397, 581, 582,
+ 329, 493, 295, 201, 369, 636, 224, 479, 371, 242,
+ 231, 587, 612, 299, 289, 456, 643, 213, 517, 598,
+ 239, 483, 0, 0, 651, 247, 504, 610, 599, 215,
+ 594, 503, 393, 326, 327, 214, 0, 457, 268, 293,
+ 0, 0, 258, 415, 589, 590, 256, 652, 228, 622,
+ 220, 0, 621, 408, 584, 595, 394, 383, 219, 593,
+ 392, 382, 334, 355, 356, 280, 307, 447, 375, 448,
+ 306, 308, 404, 403, 405, 207, 608, 626, 0, 208,
+ 0, 499, 611, 653, 452, 212, 234, 235, 237, 0,
+ 279, 283, 291, 294, 303, 304, 313, 367, 419, 446,
+ 442, 451, 0, 579, 602, 616, 628, 634, 635, 637,
+ 638, 639, 640, 641, 644, 642, 407, 311, 495, 333,
+ 373, 0, 0, 425, 472, 240, 606, 496, 199, 0,
+ 0, 0, 0, 254, 255, 0, 575, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 654, 655, 656, 657,
+ 658, 659, 660, 661, 662, 663, 664, 665, 666, 667,
+ 668, 669, 670, 671, 649, 508, 514, 509, 510, 511,
+ 512, 513, 0, 515, 0, 0, 0, 0, 0, 398,
+ 0, 591, 592, 672, 384, 486, 603, 335, 349, 352,
+ 341, 361, 0, 362, 337, 338, 343, 346, 347, 348,
+ 353, 354, 358, 364, 249, 210, 390, 399, 578, 312,
+ 216, 217, 218, 524, 525, 526, 527, 619, 620, 624,
+ 205, 462, 463, 464, 465, 292, 614, 309, 468, 467,
+ 331, 332, 379, 449, 540, 542, 553, 557, 559, 561,
+ 567, 570, 541, 543, 554, 558, 560, 562, 568, 571,
+ 530, 532, 534, 536, 549, 548, 545, 573, 574, 551,
+ 556, 535, 547, 552, 565, 572, 569, 529, 533, 537,
+ 546, 564, 563, 544, 555, 566, 550, 538, 531, 539,
+ 0, 196, 221, 368, 0, 454, 288, 650, 618, 484,
+ 613, 206, 223, 0, 262, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 198, 200, 209, 222,
+ 232, 236, 243, 261, 276, 278, 285, 298, 310, 318,
+ 319, 322, 328, 380, 386, 387, 388, 389, 409, 410,
+ 411, 414, 417, 418, 421, 423, 424, 427, 431, 435,
+ 436, 437, 439, 441, 443, 455, 460, 474, 475, 476,
+ 477, 478, 481, 482, 488, 489, 490, 491, 492, 500,
+ 501, 516, 586, 588, 605, 625, 632, 480, 301, 302,
+ 444, 445, 314, 315, 646, 647, 300, 600, 633, 597,
+ 645, 627, 438, 378, 0, 0, 381, 281, 305, 320,
+ 0, 617, 502, 227, 466, 290, 251, 0, 0, 211,
+ 246, 230, 259, 274, 277, 324, 391, 400, 429, 434,
+ 296, 271, 244, 459, 241, 485, 519, 520, 521, 523,
+ 395, 266, 433, 0, 0, 376, 576, 577, 316,
}
var yyPact = [...]int{
- -1000, -1000, 4992, -1000, -547, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
+ -1000, -1000, 6155, -1000, -546, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, 2431, 2541, -1000, -1000, -1000, -1000, 2621, -1000, 958,
- 2087, -1000, 2427, 5518, -1000, 56722, 470, -1000, 53762, -453,
- 820, 260, 37482, -1000, 198, -1000, 181, 55242, 191, -1000,
- -1000, -1000, -1000, -453, 22682, 2312, 54, 49, 56722, -1000,
- -1000, -1000, -1000, -372, 2575, 2083, -1000, 414, -1000, -1000,
- -1000, -1000, -1000, -1000, 53022, -1000, 1128, -1000, -1000, 2434,
- 2428, 2321, 863, 2352, -1000, 2499, 2083, -1000, 22682, 2573,
- 2387, 21942, 21942, 416, -1000, -1000, 276, -1000, -1000, 32302,
- 56722, 40442, 284, -1000, 2427, -1000, -1000, -1000, 197, -1000,
- 315, 2011, -1000, 2001, -1000, 961, 1164, 358, 455, 453,
- 356, 354, 353, 351, 348, 347, 345, 333, 362, -1000,
- 890, 890, -215, -216, 378, 460, 400, 400, 1081, 443,
- 2402, 2389, -1000, -1000, 890, 890, 890, 365, 890, 890,
- 890, 890, 282, 281, 890, 890, 890, 890, 890, 890,
- 890, 890, 890, 890, 890, 890, 890, 890, 890, 890,
- 890, 892, 2427, 268, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
+ -1000, 2475, 2784, -1000, -1000, -1000, -1000, 2645, -1000, 998,
+ 2124, -1000, 2470, 7003, -1000, 55708, 492, -1000, 52744, -453,
+ 847, 237, 36442, -1000, 149, -1000, 139, 54226, 144, -1000,
+ -1000, -1000, -1000, -453, 21622, 2356, 20, 11, 55708, -1000,
+ -1000, -1000, -1000, -371, 2616, 2127, -1000, 402, -1000, -1000,
+ -1000, -1000, -1000, -1000, 52003, -1000, 1167, -1000, -1000, 2473,
+ 2512, 2320, 922, 2345, -1000, 2546, 2127, -1000, 21622, 2588,
+ 2398, 20881, 20881, 425, -1000, -1000, 263, -1000, -1000, 31255,
+ 55708, 39406, 265, -1000, 2470, -1000, -1000, -1000, 187, -1000,
+ 323, 2048, -1000, 2042, -1000, 1116, 914, 340, 463, 439,
+ 339, 338, 336, 335, 334, 333, 328, 327, 348, -1000,
+ 937, 937, -273, -288, 1958, 495, 408, 408, 1019, 441,
+ 2430, 2427, -1000, -1000, 937, 937, 937, 313, 937, 937,
+ 937, 937, 280, 276, 937, 937, 937, 937, 937, 937,
+ 937, 937, 937, 937, 937, 937, 937, 937, 937, 937,
+ 937, 314, 2470, 256, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
@@ -7513,69 +7411,69 @@ var yyPact = [...]int{
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, 56722, 164, 56722, -1000, 540, 465, -1000, -1000,
- -457, 1030, 1030, 65, 1030, 1030, 1030, 1030, 188, 935,
- 45, -1000, 187, 257, 162, 266, 1116, 202, -1000, -1000,
- 254, 1116, 1840, -1000, 867, 265, 183, -1000, 1030, 1030,
- -1000, 15258, 234, 15258, 15258, 264, 168, -1000, 2423, -1000,
- -1000, -1000, -1000, -1000, 1341, -1000, -1000, -1000, -1000, -37,
- 440, -1000, -1000, -1000, -1000, 55242, 52282, 269, -1000, -1000,
- 349, 1769, 1422, 22682, 1587, 860, -1000, -1000, 1340, 830,
- -1000, -1000, -1000, -1000, -1000, 498, -1000, 24902, 24902, 24902,
- 24902, -1000, -1000, 1756, 51542, 1756, 1756, 24902, 1756, 24902,
- 1756, 1756, 1756, 1756, 22682, 1756, 1756, 1756, 1756, -1000,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, -1000,
- -1000, -1000, -1000, 1756, 527, 1756, 1756, 1756, 1756, 1756,
- -1000, -1000, -1000, -1000, -1000, -1000, -1000, 1756, 1756, 1756,
- 1756, 1756, 1756, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, -1000, -1000, -1000, 1647,
- -1000, -1000, -1000, -1000, -1000, -1000, -1000, 27862, 1524, 1521,
- 1509, -1000, 19722, 1756, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
+ -1000, -1000, -1000, 55708, 179, 55708, -1000, 798, 491, -1000,
+ -1000, -458, 1150, 1150, 17, 1150, 1150, 1150, 1150, 151,
+ 953, -2, -1000, 146, 235, 143, 252, 1086, 155, -1000,
+ -1000, 224, 1086, 1857, -1000, 926, 248, 132, -1000, 1150,
+ 1150, -1000, 14188, 269, 14188, 14188, 246, 129, -1000, 2451,
+ -1000, -1000, -1000, -1000, -1000, 1421, -1000, -1000, -1000, -1000,
+ -93, 440, -1000, -1000, -1000, -1000, 54226, 51262, 277, -1000,
+ -1000, 299, 1917, 1371, 21622, 1189, 912, -1000, -1000, 1389,
+ 866, -1000, -1000, -1000, -1000, -1000, 524, -1000, 23845, 23845,
+ 23845, 23845, -1000, -1000, 2052, 50521, 2052, 2052, 23845, 2052,
+ 23845, 2052, 2052, 2052, 2052, 21622, 2052, 2052, 2052, 2052,
+ -1000, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ -1000, -1000, -1000, -1000, 2052, 797, 2052, 2052, 2052, 2052,
+ 2052, -1000, -1000, -1000, -1000, -1000, -1000, -1000, 2052, 2052,
+ 2052, 2052, 2052, 2052, -1000, -1000, -1000, -1000, -1000, -1000,
+ -1000, -1000, -1000, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, -1000, -1000, -1000,
+ 1683, -1000, -1000, -1000, -1000, -1000, -1000, -1000, 26809, 1608,
+ 1572, 1551, -1000, 18658, 2052, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, 56722, -1000, 1756, 205, 55242,
- 55242, 352, 1346, -1000, -1000, 2499, 2083, -1000, 2575, 2540,
- 414, -1000, 3893, 1790, 1599, 1389, 2083, 1962, 56722, -1000,
- 2026, -1000, -1000, -1000, -355, -356, 2220, 1498, 1834, -1000,
- -1000, -1000, -1000, 2550, 22682, -1000, -1000, 2613, -1000, 29342,
- 526, 2598, 50802, -1000, 416, 416, 1997, 429, 15, -1000,
- -1000, -1000, -1000, 969, 36742, -1000, -1000, -1000, -1000, -1000,
- 1825, 56722, -1000, -1000, 5366, 55242, -1000, 2082, -1000, 1813,
- -1000, 2037, 22682, 2094, 464, 55242, 456, 448, 441, 410,
- -71, -1000, -1000, -1000, -1000, -1000, -1000, 890, 890, 890,
- -1000, 289, 2570, 5518, 7113, -1000, -1000, -1000, 50062, 2079,
- 55242, -1000, 2075, -1000, 1032, 793, 838, 838, 55242, -1000,
- -1000, 55982, 55242, 1029, 1028, 55242, 55242, 55242, 55242, -1000,
- 49322, -1000, 48582, 47842, 1342, 55242, 47102, 46362, 45622, 44882,
- 44142, -1000, 2108, -1000, 2070, -1000, -1000, -1000, 55982, 55242,
- 55242, 55982, 55242, 55982, 56722, 55242, -1000, -1000, 366, -1000,
- -1000, 1339, 1338, 1336, 890, 890, 1332, 1808, 1806, 1791,
- 890, 890, 1331, 1788, 38962, 1773, 258, 1330, 1320, 1306,
- 1356, 1772, 263, 1768, 1324, 1304, 1296, 55242, 2072, 56722,
- -1000, 247, 991, 937, 933, 2427, 2306, 1996, 432, 459,
- 55242, 405, 405, 55242, -1000, 16004, 56722, 238, -1000, 1762,
- 22682, -1000, 1127, 1116, 1116, -1000, -1000, -1000, -1000, -1000,
- -1000, 1030, 56722, 1127, -1000, -1000, -1000, 1116, 1030, 56722,
- 1030, 1030, 1030, 1030, 1116, 1116, 1116, 1030, 56722, 56722,
- 56722, 56722, 56722, 56722, 56722, 56722, 56722, 15258, 867, 1030,
- -458, -1000, 1755, -1000, -1000, -1000, 2167, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
+ -1000, -1000, -1000, -1000, -1000, -1000, 55708, -1000, 2052, 188,
+ 54226, 54226, 347, 1393, -1000, -1000, 2546, 2127, -1000, 2616,
+ 2682, 402, -1000, 4204, 1929, 2085, 1445, 2127, 1993, 55708,
+ -1000, 2058, -1000, -1000, -1000, -391, -393, 2277, 1535, 1854,
+ -1000, -1000, -1000, -1000, 1817, 21622, -1000, -1000, 2640, -1000,
+ 28291, 794, 2636, 49780, -1000, 425, 425, 2038, 388, -22,
+ -1000, -1000, -1000, -1000, 981, 35701, -1000, -1000, -1000, -1000,
+ -1000, 1932, 55708, -1000, -1000, 4974, 54226, -1000, 2123, -1000,
+ 1902, -1000, 2077, 21622, 2139, 490, 54226, 466, 455, 454,
+ 416, -116, -1000, -1000, -1000, -1000, -1000, -1000, 937, 937,
+ 937, -1000, 317, 2587, 7003, 8139, -1000, -1000, -1000, 49039,
+ 2122, 54226, -1000, 2120, -1000, 1047, 502, 852, 852, 54226,
+ -1000, -1000, 54967, 54226, 1046, 1040, 54226, 54226, 54226, 54226,
+ -1000, 48298, -1000, 47557, 46816, 1385, 54226, 46075, 45334, 44593,
+ 43852, 43111, -1000, 2333, -1000, 2082, -1000, -1000, -1000, 54967,
+ 54226, 54226, 54967, 54226, 54967, 55708, 54226, -1000, -1000, 312,
+ -1000, -1000, 1384, 1383, 1381, 937, 937, 1377, 1846, 1837,
+ 1833, 937, 937, 1374, 1801, 37924, 1779, 229, 1368, 1360,
+ 1357, 1388, 1777, 203, 1759, 1387, 1345, 1356, 54226, 2118,
+ 55708, -1000, 227, 917, 962, 980, 2470, 2353, 2004, 433,
+ 489, 54226, 412, 412, 54226, -1000, 14935, 55708, 199, -1000,
+ 1747, 21622, -1000, 1102, 1086, 1086, -1000, -1000, -1000, -1000,
+ -1000, -1000, 1150, 55708, 1102, -1000, -1000, -1000, 1086, 1150,
+ 55708, 1150, 1150, 1150, 1150, 1086, 1086, 1086, 1150, 55708,
+ 55708, 55708, 55708, 55708, 55708, 55708, 55708, 55708, 14188, 926,
+ 1150, -459, -1000, 1745, -1000, -1000, -1000, 2266, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
@@ -7589,336 +7487,339 @@ var yyPact = [...]int{
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, -1000, -1000, 15258, 15258, -1000,
- -1000, 2487, 2483, -1000, -1000, -1000, 1969, -1000, 179, 10,
- 190, -1000, 43402, 518, 928, -1000, 518, -1000, -1000, -1000,
- 1968, 42662, -1000, -459, -460, -467, -471, -1000, -1000, -1000,
- -473, -475, -1000, -1000, -1000, 22682, 22682, 22682, 22682, -245,
- -1000, 1142, 24902, 2410, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, 22682, 209, 1134, 24902, 24902, 24902, 24902, 24902, 24902,
- 24902, 26382, 25642, 24902, 24902, 24902, 24902, 24902, 24902, -1000,
- -1000, 34522, 6457, 6457, 830, 830, 830, 830, -1000, -182,
- 1967, 55982, -1000, -1000, -1000, 510, 22682, 22682, 830, -1000,
- 1355, 1609, 19722, 22682, 22682, 22682, 22682, 950, 1422, 55982,
- 22682, -1000, 1389, -1000, -1000, -1000, -1000, 1213, -1000, -1000,
- 1085, 2360, 2360, 2360, 2360, 22682, 22682, 22682, 22682, 22682,
- 22682, 22682, 22682, 22682, 22682, 2360, 22682, 714, 714, 912,
- 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682, 18242, 22682,
- 22682, 24902, 22682, 22682, 22682, 1389, 22682, 22682, 22682, 22682,
- 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682,
- 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682,
- 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682,
- 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682,
- 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682,
- 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682,
- 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682,
- 22682, 22682, 22682, 22682, 22682, 1389, 22682, 1294, 22682, 22682,
- 22682, 22682, 22682, 22682, 22682, 17496, 22682, 22682, 22682, 22682,
- 22682, -1000, -1000, -1000, -1000, -1000, -1000, 22682, 22682, 22682,
- 22682, 22682, 22682, 22682, 22682, 1389, 22682, 22682, 22682, 22682,
- 22682, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, 2002, 1601, 1561, 22682, -1000, 1964, -1000, -187,
- 31562, 22682, 1748, 2596, 2134, 55242, -1000, -1000, -1000, -1000,
- 2499, -1000, 2499, 2002, 3656, 2241, 21942, -1000, -1000, 3656,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, 1837, -1000, 56722, 1962, 2459, 55242, -1000,
- -286, -1000, -293, 2233, 1746, 839, -1000, 22682, 22682, 1954,
- -1000, 1388, 56722, -1000, -245, -1000, 41922, -1000, -1000, 14512,
- 56722, 319, 56722, -1000, 30822, 41182, 302, -1000, 15, 1927,
- -1000, 21, -4, 18982, 828, -1000, -1000, -1000, 378, 27122,
- 1670, 828, 105, -1000, -1000, -1000, 2037, -1000, 2037, 2037,
- 2037, 2037, 839, 839, 839, 839, -1000, -1000, -1000, -1000,
- -1000, 2071, 2037, 2064, -1000, 2037, 2037, 2037, 2037, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, -1000, 2061, 2061, 2061, 2054,
- 2054, 2041, 2041, 390, -1000, 22682, 915, 40442, 2438, 1293,
- 1318, 247, 410, 2132, 55242, 55242, 55242, 56722, 990, -1000,
- 1497, 1493, 1430, -1000, -532, 1953, -1000, -1000, 2568, -1000,
- -1000, 902, 1077, 1076, 1084, 55242, 219, 312, -1000, 386,
- -1000, 40442, 55242, 1025, 838, 55242, -1000, 55242, -1000, -1000,
- -1000, -1000, -1000, 55242, -1000, -1000, 1948, -1000, 1960, 1207,
- 1061, 1192, 1048, 1948, -1000, -1000, -190, 1948, -1000, 1948,
- -1000, 1948, -1000, 1948, -1000, 1948, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, 1009, 301, -320, 55242, 219,
- 422, -1000, 421, 34522, -1000, -1000, -1000, 34522, 34522, -1000,
- -1000, -1000, -1000, 1725, 1709, -1000, -1000, -1000, -1000, -1000,
+ -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, 14188, 14188,
+ -1000, -1000, 2541, 2534, -1000, -1000, -1000, 2000, -1000, 136,
+ -33, 142, -1000, 42370, 509, 976, -1000, 509, -1000, -1000,
+ -1000, -1000, 1999, 41629, -1000, -460, -461, -462, -466, -1000,
+ -1000, -1000, -468, -470, -1000, -1000, -1000, 21622, 21622, 21622,
+ 21622, -337, -1000, 1158, 23845, 2415, -1000, -1000, -1000, -1000,
+ -1000, -1000, -1000, 21622, 251, 990, 23845, 23845, 23845, 23845,
+ 23845, 23845, 23845, 25327, 24586, 23845, 23845, 23845, 23845, 23845,
+ 23845, -1000, -1000, 33478, 5171, 5171, 866, 866, 866, 866,
+ -1000, -235, 1998, 54967, -1000, -1000, -1000, 792, 21622, 21622,
+ 866, -1000, 1402, 1045, 18658, 21622, 21622, 21622, 21622, 986,
+ 1371, 54967, 21622, -1000, 1445, -1000, -1000, -1000, -1000, 1344,
+ -1000, -1000, 1064, 2401, 2401, 2401, 2401, 21622, 21622, 21622,
+ 21622, 21622, 21622, 21622, 21622, 21622, 21622, 2401, 21622, 254,
+ 254, 835, 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622,
+ 17176, 21622, 21622, 23845, 21622, 21622, 21622, 1445, 21622, 21622,
+ 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622,
+ 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622,
+ 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622,
+ 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622,
+ 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622,
+ 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622,
+ 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622, 21622,
+ 21622, 21622, 21622, 21622, 21622, 21622, 21622, 1445, 21622, 1481,
+ 21622, 21622, 21622, 21622, 21622, 21622, 21622, 16429, 21622, 21622,
+ 21622, 21622, 21622, -1000, -1000, -1000, -1000, -1000, -1000, 21622,
+ 21622, 21622, 21622, 21622, 21622, 21622, 21622, 1445, 21622, 21622,
+ 21622, 21622, 21622, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
+ -1000, -1000, -1000, -1000, 1787, 1671, 1571, 21622, -1000, 1996,
+ -1000, -200, 30514, 21622, 1733, 2635, 2151, 54226, -1000, -1000,
+ -1000, -1000, 2546, -1000, 2546, 1787, 3950, 2287, 20881, -1000,
+ -1000, 3950, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
+ -1000, -1000, -1000, -1000, -1000, 1936, -1000, 55708, 1993, 2524,
+ 54226, -1000, -368, -1000, -374, 2241, 1714, 315, -1000, 21622,
+ 21622, 1992, -1000, 1466, 55708, -1000, -337, -1000, 40888, -1000,
+ -1000, 13441, 55708, 320, 55708, -1000, 29773, 40147, 271, -1000,
+ -22, 1976, -1000, -57, -53, 17917, 858, -1000, -1000, -1000,
+ 1958, 26068, 1731, 858, 63, -1000, -1000, -1000, 2077, -1000,
+ 2077, 2077, 2077, 2077, 315, 315, 315, 315, -1000, -1000,
+ -1000, -1000, -1000, 2113, 2077, 2108, -1000, 2077, 2077, 2077,
+ 2077, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
+ -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, 2105, 2105,
+ 2105, 2101, 2101, 2086, 2086, 401, -1000, 21622, 422, 39406,
+ 2513, 1355, 1378, 227, 416, 2149, 54226, 54226, 54226, 55708,
+ 999, -1000, 1518, 1509, 1498, -1000, -531, 1989, -1000, -1000,
+ 2586, -1000, -1000, 952, 1095, 1080, 941, 54226, 196, 306,
+ -1000, 371, -1000, 39406, 54226, 1039, 852, 54226, -1000, 54226,
+ -1000, -1000, -1000, -1000, -1000, 54226, -1000, -1000, 1987, -1000,
+ 1883, 1106, 1076, 1100, 1065, 1987, -1000, -1000, -246, 1987,
+ -1000, 1987, -1000, 1987, -1000, 1987, -1000, 1987, -1000, -1000,
+ -1000, -1000, -1000, -1000, -1000, -1000, -1000, 906, 121, -382,
+ 54226, 196, 431, -1000, 427, 33478, -1000, -1000, -1000, 33478,
+ 33478, -1000, -1000, -1000, -1000, 1712, 1707, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, -1000, -518, 56722, -1000, 237, 926, 286,
- 308, 310, 56722, 306, 2394, 2390, 2388, 2379, 2378, 2370,
- 2325, 243, 279, 56722, 56722, 405, 2174, 56722, 2444, 56722,
- -1000, -1000, -1000, -1000, -1000, 1700, 1678, -1000, 1422, 56722,
- -1000, -1000, 1030, 1030, -1000, -1000, 56722, 1030, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, -1000, 1030, -1000, -1000, -1000,
+ -1000, -1000, -1000, -1000, -1000, -1000, -518, 55708, -1000, 209,
+ 966, 284, 310, 261, 55708, 793, 2418, 2411, 2409, 2402,
+ 2399, 2393, 2378, 231, 274, 55708, 55708, 412, 2207, 55708,
+ 2486, 55708, -1000, -1000, -1000, -1000, -1000, 1697, 1695, -1000,
+ 1371, 55708, -1000, -1000, 1150, 1150, -1000, -1000, 55708, 1150,
+ -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, 1150, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, 56722, -1000, -1000, -1000, -1000, 1649, -1000, 56722,
- -37, 174, -1000, -1000, 55242, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, -1000, -89, -1000, 772, 16, 375, -1000,
- -1000, -1000, -1000, -1000, 2476, -1000, 1422, 1002, 1005, -1000,
- 1756, -1000, -1000, 1223, -1000, -1000, -1000, -1000, -1000, 1756,
- 1756, 1756, -1000, -1000, -1000, -1000, -1000, 209, 24902, 24902,
- 24902, 1431, 442, 1525, 941, 1557, 1468, 1468, 883, 24902,
- 883, 24902, 840, 840, 840, 840, 840, -1000, -1000, -1000,
- -1000, -1000, -1000, 1647, -1000, 1618, -1000, 1756, 55982, 1767,
- 17496, 1796, 1308, 1389, 849, -1000, -1000, -1000, -1000, -1000,
+ -1000, -1000, -1000, -1000, 55708, -1000, -1000, -1000, -1000, 1691,
+ -1000, 55708, -93, 133, -1000, -1000, 54226, -1000, -1000, -1000,
+ -1000, -1000, -1000, -1000, -1000, -1000, -119, -1000, 342, -27,
+ 390, -1000, -1000, -1000, -1000, -1000, 2528, -1000, 1371, 1024,
+ 1016, -1000, 2052, -1000, -1000, 1241, -1000, -1000, -1000, -1000,
+ -1000, 2052, 2052, 2052, -1000, -1000, -1000, -1000, -1000, 251,
+ 23845, 23845, 23845, 1591, 481, 1209, 1228, 1246, 942, 942,
+ 887, 23845, 887, 23845, 873, 873, 873, 873, 873, -1000,
+ -1000, -1000, -1000, -1000, -1000, 1683, -1000, 1654, -1000, 2052,
+ 54967, 1886, 16429, 2186, 2005, 1445, 886, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, 3527, 1389, 1769, 1389, 2282,
- 3520, 980, -1000, 22682, 1389, 3508, -1000, -1000, 1389, 1389,
- 22682, -1000, -1000, 22682, 22682, 22682, 22682, 1318, 1318, 1318,
- 1318, 1318, 1318, 1318, 1318, 1318, 1318, 22682, 1318, 1934,
+ -1000, -1000, -1000, -1000, -1000, -1000, -1000, 4226, 1445, 1917,
+ 1445, 2783, 4214, 991, -1000, 21622, 1445, 4133, -1000, -1000,
+ 1445, 1445, 21622, -1000, -1000, 21622, 21622, 21622, 21622, 1378,
+ 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 21622,
+ 1378, 1984, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, 1933, 2593,
- 1571, 1318, 1318, 1318, 1318, 3491, 1318, 1318, 22682, 1816,
- -1000, -1000, -1000, 1452, 3486, 1386, 3482, 1318, 1318, -1000,
- 1318, 3478, 3473, 1389, 2641, 2637, 1318, 1318, 1318, 1318,
- 1318, 2616, 2611, 1318, 1318, 2546, 1318, 3465, 1318, 2538,
- 2528, 2516, 2506, 2502, 2475, 2452, 2440, 2422, 2403, 2392,
- 2386, 2353, 2349, 2342, 2326, 2320, 2278, 1318, 1318, 1318,
- 3459, 1318, 3451, 1318, 3418, 1318, 1318, 3412, 2251, 2247,
- 1389, 1931, -1000, 3408, 1318, 3398, 3391, 3384, 2239, 3375,
- 3366, 3351, 1318, 1318, 1318, 2231, 3347, 3278, 3104, 3095,
- 3069, 3062, 3009, 2999, 2984, 1318, 1561, 1561, 1561, 1561,
- 1561, 2967, -248, 1318, 1389, -1000, -1000, -1000, -1000, -1000,
- 2960, 2225, 2949, 2938, 2930, 2898, 1389, 1756, 509, -1000,
- -1000, 1561, 1389, 1389, 1561, 1561, 2883, 2869, 2856, 2826,
- 2783, 2771, 1318, 1318, -1000, 1318, 2758, 2731, 2213, 2200,
- 1389, -1000, 1561, 56722, -1000, -449, -1000, -17, 949, 1756,
- -1000, 38962, 1389, -1000, 5213, -1000, 1138, -1000, -1000, -1000,
- -1000, -1000, 36002, 1873, -1000, -1000, -1000, -1000, 1756, 1759,
- -1000, -1000, -1000, -1000, 839, 81, 35262, 502, 502, 119,
- 1422, 1422, 22682, -1000, -1000, -1000, -1000, -1000, -1000, 507,
- 2542, 397, 1756, -1000, 1943, 2703, -1000, -1000, -1000, 2458,
- 28602, -1000, -1000, 1756, 1756, 56722, 1893, 1841, -1000, 505,
- -1000, 1364, 1927, 15, -1, -1000, -1000, -1000, -1000, 1422,
- -1000, 1371, 332, 357, -1000, 388, -1000, -1000, -1000, -1000,
- 2335, 95, -1000, -1000, -1000, 334, 839, -1000, -1000, -1000,
- -1000, -1000, -1000, 1596, -1000, 1596, -1000, -1000, -1000, -1000,
- -1000, 1292, -1000, -1000, -1000, -1000, 1286, -1000, -1000, 1284,
- -1000, -1000, 2511, 2129, 915, -1000, -1000, 890, 1590, -1000,
- -1000, 2337, 890, 890, 55242, -1000, -1000, 1664, 2438, 237,
- 56722, 2173, -1000, 2132, 2132, 2132, -1000, 2442, -1000, -1000,
- -1000, -1000, -1000, -1000, -522, 166, 611, -1000, -1000, -1000,
- 6369, 55242, 1753, -1000, 217, -1000, 1632, -1000, 55242, -1000,
- 1745, 2050, 55242, 55242, -1000, -1000, -1000, 55242, 1756, -1000,
- -1000, -1000, -1000, 458, 2425, 328, -1000, -1000, -285, -1000,
- -1000, 219, 217, 55982, 55242, 828, -1000, -1000, -1000, -1000,
- -1000, -523, 1743, 446, 229, 514, 56722, 56722, 56722, 56722,
- 56722, 56722, 493, -1000, -1000, 36, -1000, -1000, 201, -1000,
- -1000, -1000, -1000, -1000, -1000, 201, -1000, -1000, -1000, -1000,
- -1000, 271, 419, -1000, 56722, 56722, 947, -1000, -1000, -1000,
- -1000, -1000, 1116, -1000, -1000, 1116, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, 2412, 56722,
- 6, -490, -1000, -486, 22682, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, 1322, 426, 1525, 24902, 24902, 1609, 1609, 24902,
- -1000, -1000, -1000, 1057, 1057, 34522, -1000, 24902, 22682, -1000,
- -1000, 22682, 22682, 22682, 975, -1000, 22682, 1169, -1000, 22682,
- -1000, -248, 1561, 1318, 1318, 1318, 1318, -248, -248, -248,
- -248, -248, -248, -248, -248, -248, -248, 1932, -1000, 22682,
- 22682, 22682, 1389, 331, -1000, -1000, -1000, -248, 22682, -1000,
- -1000, 2592, -1000, 22682, -1000, 34522, 22682, 22682, 22682, -1000,
- -1000, -1000, 22682, 22682, -1000, -1000, 22682, -1000, 22682, -1000,
- -1000, -1000, -1000, -1000, -1000, 22682, -1000, 22682, -1000, -1000,
- -1000, 22682, -1000, 22682, -1000, -1000, 22682, -1000, 22682, -1000,
- 22682, -1000, 22682, -1000, 22682, -1000, 22682, -1000, 22682, -1000,
- 22682, -1000, 22682, -1000, 22682, -1000, 22682, -1000, 22682, -1000,
- 22682, -1000, 22682, -1000, 22682, -1000, 22682, -1000, 22682, -1000,
- 22682, -1000, -1000, -1000, 22682, -1000, 22682, -1000, 22682, -1000,
- -1000, 22682, -1000, 22682, -1000, 22682, -1000, 22682, 22682, -1000,
- 22682, 22682, 22682, -1000, 22682, 22682, 22682, 22682, -1000, -1000,
- -1000, -1000, 22682, 22682, 22682, 22682, 22682, 22682, 22682, 22682,
- 22682, 22682, -1000, -1000, -1000, -1000, -1000, -1000, 22682, -1000,
- 40442, 37, -248, 1294, 37, 1294, 24162, 756, 546, 23422,
- -1000, 22682, 16750, -1000, -1000, -1000, -1000, -1000, 22682, 22682,
- 22682, 22682, 22682, 22682, -1000, -1000, -1000, 22682, 22682, -1000,
- 22682, -1000, 22682, -1000, -1000, -1000, -1000, -1000, 949, -1000,
- 439, 438, 838, 55242, -1000, -1000, -1000, -1000, 1923, -1000,
- 2472, -1000, 2277, 2266, 2591, 2542, 21942, -1000, 30822, -1000,
- -1000, 55242, -432, -1000, 2299, 2356, 502, 502, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, 13766, 2499, 22682, 2168, 55982,
- 222, -1000, 30082, 55242, 55982, 30822, 30822, 30822, 30822, 30822,
- -1000, 2210, 2197, -1000, 2219, 2218, 2248, 56722, -1000, 2002,
- 1735, -1000, 22682, 33042, 1876, 30822, -1000, -1000, 30822, 56722,
- 13020, -1000, -1000, -5, -14, -1000, -1000, -1000, -1000, 378,
- -1000, -1000, 1170, 2457, 2316, -1000, -1000, -1000, -1000, -1000,
- 1722, -1000, 1720, 1922, 1714, 1707, 301, -1000, 2089, 2411,
- 890, 890, -1000, 1283, -1000, 1355, 1582, 1566, -1000, -1000,
- -1000, 445, -1000, 56722, 2159, 2155, 2152, -1000, -537, 1263,
- 2045, 2060, 22682, 2044, 2567, 1899, 55242, -1000, -1000, 55982,
- -1000, 251, -1000, 915, 55242, -1000, -1000, -1000, 312, 56722,
- -1000, 8433, -1000, -1000, -1000, 217, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, 56722, 236, -1000, 2042, 1312, -1000, -1000,
- 2112, -1000, -1000, -1000, -1000, -1000, 206, 196, 1538, 194,
- 1534, 194, -1000, 56722, 946, 2129, 56722, -1000, -1000, -1000,
- 1030, 1030, -1000, -1000, 2406, -1000, 1355, 1318, 24902, 24902,
- -1000, 830, -1000, -1000, 571, -227, 2037, 2037, -1000, 2037,
- 2041, -1000, 2037, 165, 2037, 156, 2037, -1000, -1000, 1389,
- 1389, -1000, 1561, 2187, 1616, 2716, -1000, 1422, 22682, 2692,
- -1000, -1000, -248, -248, -248, -248, -248, -1000, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, -1000, -1000, -78, 2687, 2681,
- 1318, -1000, 2036, 2034, -1000, 1318, 22682, 1318, 1389, 2179,
- 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318,
- 1318, 1318, 2164, 2160, 2153, 2137, 2126, 2119, 2115, 2084,
- 2055, 2051, 2047, 2038, 2021, 2017, 1957, 1951, 1318, 1318,
- 1935, 1318, 1886, 1850, -1000, 1422, 1561, 2677, 1561, 1318,
- 1318, 2668, 287, 1318, 1687, 1687, 1687, 1687, 1687, 1561,
- 1561, 1561, 1561, 1318, 55242, -1000, -248, -1000, -1000, -321,
- -325, -1000, 1389, -248, 1912, 24902, 1318, 24902, 24902, 24902,
- 1318, 1389, -1000, 1844, 1839, 2649, 1832, 1318, 2563, 1318,
- 1318, 1318, 1811, -1000, 2465, 1756, 2465, 1756, 2465, 1676,
- 1138, 56722, -1000, -1000, -1000, -1000, 2542, 2509, -1000, 1905,
- -1000, 81, 600, -1000, 2331, 2356, -1000, 2566, 2295, 2559,
- -1000, -1000, -1000, -1000, -1000, 1422, -1000, 2429, 1889, -1000,
- 925, 1924, -1000, -1000, 21202, 1685, 2257, 504, 1676, 1926,
- 2703, 2139, 2147, 3864, -1000, -1000, -1000, -1000, 2193, -1000,
- 2170, -1000, -1000, 2026, -1000, 2522, 319, 30822, 1884, 1884,
- -1000, 503, -1000, -1000, -1000, -1000, -1000, -1000, -1000, 1097,
- 8433, 2624, -1000, 1532, -1000, 1358, 193, 1256, -1000, -1000,
- 890, 890, -1000, 1022, 1017, -1000, 56722, 2033, -1000, 839,
- 1530, 839, 1252, -1000, -1000, 1245, -1000, -1000, -1000, -1000,
- 2062, 2099, -1000, -1000, -1000, -1000, 56722, -1000, 56722, 56722,
- 56722, 2032, 2557, -1000, 22682, 2031, 924, 2111, 55242, 55242,
+ 1982, 2630, 1926, 1378, 1378, 1378, 1378, 3967, 1378, 1378,
+ 21622, 1840, -1000, -1000, -1000, 1549, 3942, 1579, 3938, 1378,
+ 1378, -1000, 1378, 3903, 3897, 1445, 2735, 2708, 1378, 1378,
+ 1378, 1378, 1378, 2701, 2687, 1378, 1378, 2664, 1378, 3571,
+ 1378, 2626, 2622, 2614, 2520, 2510, 2504, 2487, 2479, 2459,
+ 2443, 2425, 2413, 2406, 2380, 2364, 2334, 2316, 2311, 1378,
+ 1378, 1378, 3546, 1378, 3533, 1378, 3488, 1378, 1378, 3465,
+ 2298, 2293, 1445, 1981, -1000, 3459, 1378, 3455, 3451, 3446,
+ 2282, 3435, 3430, 3426, 1378, 1378, 1378, 2249, 3418, 3414,
+ 3393, 3385, 3379, 3368, 3353, 3349, 3345, 1378, 1571, 1571,
+ 1571, 1571, 1571, 3332, -339, 1378, 1445, -1000, -1000, -1000,
+ -1000, -1000, 3106, 2220, 3096, 3091, 3073, 3063, 1445, 2052,
+ 791, -1000, -1000, 1571, 1445, 1445, 1571, 1571, 3044, 3020,
+ 2994, 2975, 2968, 2964, 1378, 1378, -1000, 1378, 2956, 2951,
+ 2179, 2166, 1445, -1000, 1571, 55708, -1000, -454, -1000, -67,
+ 960, 2052, -1000, 37924, 1445, -1000, 4425, -1000, 1382, -1000,
+ -1000, -1000, -1000, -1000, 34960, 1979, -1000, -1000, -1000, -1000,
+ 2052, 1879, -1000, -1000, -1000, -1000, 315, 40, 34219, 845,
+ 845, 71, 1371, 1371, 21622, -1000, -1000, -1000, -1000, -1000,
+ -1000, 784, 2610, 384, 2052, -1000, 1942, 2403, -1000, -1000,
+ -1000, 2523, 27550, -1000, -1000, 2052, 2052, 55708, 2012, 1768,
+ -1000, 768, -1000, 1423, 1976, -22, -12, -1000, -1000, -1000,
+ -1000, 1371, -1000, 1430, 321, 357, -1000, 386, -1000, -1000,
+ -1000, -1000, 2363, 57, -1000, -1000, -1000, 877, 315, -1000,
+ -1000, -1000, -1000, -1000, -1000, 1648, -1000, 1648, -1000, -1000,
+ -1000, -1000, -1000, 1352, -1000, -1000, -1000, -1000, 1351, -1000,
+ -1000, 1349, -1000, -1000, 2713, 2187, 422, -1000, -1000, 937,
+ 1643, -1000, -1000, 2373, 937, 937, 54226, -1000, -1000, 1711,
+ 2513, 209, 55708, 2194, -1000, 2149, 2149, 2149, -1000, 2483,
+ -1000, -1000, -1000, -1000, -1000, -1000, -522, 166, 346, -1000,
+ -1000, -1000, 6945, 54226, 1863, -1000, 194, -1000, 1653, -1000,
+ 54226, -1000, 1828, 2098, 54226, 54226, -1000, -1000, -1000, 54226,
+ 2052, -1000, -1000, -1000, -1000, 488, 2466, 353, -1000, -1000,
+ -357, -1000, -1000, 196, 194, 54967, 54226, 858, -1000, -1000,
+ -1000, -1000, -1000, -523, 1826, 451, 198, 300, 55708, 55708,
+ 55708, 55708, 55708, 55708, 505, -1000, -1000, -26, -1000, -1000,
+ 157, -1000, -1000, -1000, -1000, -1000, -1000, 157, -1000, -1000,
+ -1000, -1000, -1000, 255, 417, -1000, 55708, 55708, 921, -1000,
+ -1000, -1000, -1000, -1000, 1086, -1000, -1000, 1086, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, 407, 890, -502, 278, 274, 890, 890, 890, -538,
- -1000, -1000, 1669, 1667, -1000, -213, -1000, 22682, -1000, -1000,
- -1000, -1000, -1000, 1222, 1222, 1524, 1521, 1509, -1000, 2026,
- -1000, -1000, -1000, 1617, -1000, -1000, -199, 55242, 55242, 55242,
- 55242, -1000, -1000, -1000, 1259, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, -1000, -1000, 830, 1389, 364,
- -202, 1389, -1000, -1000, 839, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, 22682, -1000, 22682, -1000, 22682,
- 1422, 22682, -1000, -1000, -1000, -1000, -1000, 2499, 1507, 22682,
- 22682, -1000, 1244, 1240, -248, 1318, -1000, -1000, -1000, 22682,
+ 2439, 55708, -28, -489, -1000, -486, 21622, -1000, -1000, -1000,
+ -1000, -1000, -1000, -1000, 1474, 428, 1209, 23845, 23845, 1045,
+ 1045, 23845, -1000, -1000, -1000, 330, 330, 33478, -1000, 23845,
+ 21622, -1000, -1000, 21622, 21622, 21622, 943, -1000, 21622, 1316,
+ -1000, 21622, -1000, -339, 1571, 1378, 1378, 1378, 1378, -339,
+ -339, -339, -339, -339, -339, -339, -339, -339, -339, 2003,
+ -1000, 21622, 21622, 21622, 1445, 295, -1000, -1000, -1000, -339,
+ 21622, -1000, -1000, 2621, -1000, 21622, -1000, 33478, 21622, 21622,
+ 21622, -1000, -1000, -1000, 21622, 21622, -1000, -1000, 21622, -1000,
+ 21622, -1000, -1000, -1000, -1000, -1000, -1000, 21622, -1000, 21622,
+ -1000, -1000, -1000, 21622, -1000, 21622, -1000, -1000, 21622, -1000,
+ 21622, -1000, 21622, -1000, 21622, -1000, 21622, -1000, 21622, -1000,
+ 21622, -1000, 21622, -1000, 21622, -1000, 21622, -1000, 21622, -1000,
+ 21622, -1000, 21622, -1000, 21622, -1000, 21622, -1000, 21622, -1000,
+ 21622, -1000, 21622, -1000, -1000, -1000, 21622, -1000, 21622, -1000,
+ 21622, -1000, -1000, 21622, -1000, 21622, -1000, 21622, -1000, 21622,
+ 21622, -1000, 21622, 21622, 21622, -1000, 21622, 21622, 21622, 21622,
+ -1000, -1000, -1000, -1000, 21622, 21622, 21622, 21622, 21622, 21622,
+ 21622, 21622, 21622, 21622, -1000, -1000, -1000, -1000, -1000, -1000,
+ 21622, -1000, 39406, 0, -339, 1481, 0, 1481, 23104, 801,
+ 525, 22363, -1000, 21622, 15682, -1000, -1000, -1000, -1000, -1000,
+ 21622, 21622, 21622, 21622, 21622, 21622, -1000, -1000, -1000, 21622,
+ 21622, -1000, 21622, -1000, 21622, -1000, -1000, -1000, -1000, -1000,
+ 960, -1000, 456, 423, 852, 54226, -1000, -1000, -1000, -1000,
+ 1974, -1000, 2539, -1000, 2301, 2300, 2619, 2610, 20881, -1000,
+ 29773, -1000, -1000, 54226, -442, -1000, 2340, 2379, 845, 845,
+ -1000, -1000, -1000, -1000, -1000, -1000, -1000, 12694, 2546, 21622,
+ 2193, 54967, 221, -1000, 29032, 54226, 54967, 29773, 29773, 29773,
+ 29773, 29773, -1000, 2197, 2196, -1000, 2275, 2238, 2308, 55708,
+ -1000, 1787, 1815, -1000, 21622, 31996, 1898, 29773, -1000, -1000,
+ 29773, 55708, 11947, -1000, -1000, -45, -58, -1000, -1000, -1000,
+ -1000, 1958, -1000, -1000, 1334, 2519, 2352, -1000, -1000, -1000,
+ -1000, -1000, 1799, -1000, 1794, 1973, 1773, 1771, 121, -1000,
+ 2130, 2438, 937, 937, -1000, 1348, -1000, 1402, 1638, 1633,
+ -1000, -1000, -1000, 443, -1000, 55708, 2188, 2183, 2181, -1000,
+ -536, 1346, 2094, 2107, 21622, 2093, 2581, 1951, 54226, -1000,
+ -1000, 54967, -1000, 238, -1000, 422, 54226, -1000, -1000, -1000,
+ 306, 55708, -1000, 9151, -1000, -1000, -1000, 194, -1000, -1000,
+ -1000, -1000, -1000, -1000, -1000, 55708, 225, -1000, 2090, 1399,
+ -1000, -1000, 2081, -1000, -1000, -1000, -1000, -1000, 173, 165,
+ 1619, 154, 1617, 154, -1000, 55708, 920, 2187, 55708, -1000,
+ -1000, -1000, 1150, 1150, -1000, -1000, 2434, -1000, 1402, 1378,
+ 23845, 23845, -1000, 866, -1000, -1000, 405, -311, 2077, 2077,
+ -1000, 2077, 2086, -1000, 2077, 120, 2077, 117, 2077, -1000,
+ -1000, 1445, 1445, -1000, 1571, 2155, 1587, 2890, -1000, 1371,
+ 21622, 2885, -1000, -1000, -339, -339, -339, -339, -339, -1000,
+ -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -130,
+ 2881, 2858, 1378, -1000, 2076, 2071, -1000, 1378, 21622, 1378,
+ 1445, 2150, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378,
+ 1378, 1378, 1378, 1378, 2145, 2114, 2102, 2072, 2049, 2039,
+ 2031, 2023, 1977, 1970, 1959, 1954, 1906, 1893, 1868, 1832,
+ 1378, 1378, 1790, 1378, 1786, 1723, -1000, 1371, 1571, 2788,
+ 1571, 1378, 1378, 2764, 283, 1378, 1754, 1754, 1754, 1754,
+ 1754, 1571, 1571, 1571, 1571, 1378, 54226, -1000, -339, -1000,
+ -1000, -377, -380, -1000, 1445, -339, 1967, 23845, 1378, 23845,
+ 23845, 23845, 1378, 1445, -1000, 1718, 1710, 2759, 1706, 1378,
+ 2670, 1378, 1378, 1378, 1700, -1000, 2527, 2052, 2527, 2052,
+ 2527, 1743, 1382, 55708, -1000, -1000, -1000, -1000, 2610, 2599,
+ -1000, 1962, -1000, 40, 415, -1000, 2335, 2379, -1000, 2580,
+ 2327, 2574, -1000, -1000, -1000, -1000, -1000, 1371, -1000, 2460,
+ 1756, -1000, 956, 1796, -1000, -1000, 20140, 1752, 2294, 540,
+ 1743, 2035, 2403, 2175, 2180, 3076, -1000, -1000, -1000, -1000,
+ 2189, -1000, 2165, -1000, -1000, 2058, -1000, 2598, 320, 29773,
+ 2033, 2033, -1000, 533, -1000, -1000, -1000, -1000, -1000, -1000,
+ -1000, 1144, 9151, 2654, -1000, 1615, -1000, 1401, 190, 1338,
+ -1000, -1000, 937, 937, -1000, 1038, 1035, -1000, 55708, 2069,
+ -1000, 315, 1613, 315, 1337, -1000, -1000, 1318, -1000, -1000,
+ -1000, -1000, 2050, 2200, -1000, -1000, -1000, -1000, 55708, -1000,
+ 55708, 55708, 55708, 2068, 2571, -1000, 21622, 2067, 944, 2494,
+ 54226, 54226, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
+ -1000, -1000, -1000, 438, 937, -501, 273, 260, 937, 937,
+ 937, -540, -1000, -1000, 1741, 1730, -1000, -274, -1000, 21622,
+ -1000, -1000, -1000, -1000, -1000, 1331, 1331, 1608, 1572, 1551,
+ -1000, 2058, -1000, -1000, -1000, 1599, -1000, -1000, -254, 54226,
+ 54226, 54226, 54226, -1000, -1000, -1000, 1214, -1000, -1000, -1000,
+ -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, 866,
+ 1445, 420, -258, 1445, -1000, -1000, 315, -1000, -1000, -1000,
+ -1000, -1000, -1000, -1000, -1000, -1000, -1000, 21622, -1000, 21622,
+ -1000, 21622, 1371, 21622, -1000, -1000, -1000, -1000, -1000, 2546,
+ 1542, 21622, 21622, -1000, 1293, 1276, -339, 1378, -1000, -1000,
+ -1000, 21622, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
+ -1000, -1000, -1000, -1000, -1000, 21622, -1000, 21622, -1000, 21622,
+ -1000, 21622, -1000, 21622, -1000, 21622, -1000, 21622, -1000, 21622,
+ -1000, 21622, -1000, 21622, -1000, 21622, -1000, 21622, -1000, 21622,
+ -1000, 21622, -1000, 21622, -1000, 21622, -1000, -1000, 21622, -1000,
+ -1000, -1000, 21622, -1000, 21622, -1000, 21622, -1000, -1000, -1000,
+ 21622, 262, 330, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
+ -1000, -1000, -1000, -1000, 1445, 309, -1000, -1000, -1000, 2615,
+ -1000, 1445, 21622, 1045, -1000, 1045, 1045, 1045, -1000, -1000,
+ -1000, 21622, -1000, 21622, 21622, -1000, 21622, -1000, 21622, -1000,
+ -1000, -1000, -1000, 21622, 2052, 2349, 38665, 2052, 38665, 2052,
+ 31996, -1000, -1000, 2599, 2600, 2570, 2318, 2323, 2323, 2335,
+ -1000, 2566, 2559, -1000, 1534, 2556, 1529, 1030, -1000, 54967,
+ 21622, -1000, 221, 37924, -1000, 387, 54226, 221, 54226, -1000,
+ 2591, -1000, -1000, 21622, 2062, -1000, 21622, -1000, -1000, -1000,
+ -1000, 5171, 2610, 2033, -1000, -1000, 879, -1000, 21622, -1000,
+ 5185, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, 1522,
+ 1519, -1000, -1000, 2060, 21622, -1000, -1000, -1000, 1590, 1568,
+ -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, 2058, -1000,
+ -1000, -1000, -1000, 306, -528, 2376, 54226, 1264, -1000, 1726,
+ 1951, 268, 221, 1512, 937, 937, 937, 1261, 1224, 37924,
+ 1721, -1000, 54226, 359, -1000, 306, -1000, -290, -306, 1378,
+ -1000, -1000, 2518, -1000, -1000, 15682, -1000, -1000, 2057, 2144,
+ -1000, -1000, -1000, -1000, 2227, -242, -264, -1000, -1000, 1378,
+ 1378, 1378, 2203, 1445, -1000, 1378, 1378, 1550, 1547, -1000,
+ -1000, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378,
+ 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378,
+ 1378, 1571, 1627, -1000, 262, 1445, 2169, -1000, -1000, 5171,
+ -1000, -1000, 2591, 2554, 0, -1000, -1000, 184, 0, 1371,
+ 1004, 1445, 1445, 1004, 1598, 1378, 1546, 1483, 1378, 1378,
+ 32737, -1000, 2551, 2549, 1688, -1000, -1000, 38665, 1688, 38665,
+ 960, 2600, -346, 21622, 21622, 2310, 1301, -1000, -1000, -1000,
+ -1000, 1494, 1468, -1000, 1454, -1000, 2651, -1000, 1371, -1000,
+ 2052, 221, -1000, 528, 1796, -1000, 2546, 1371, 54226, 1371,
+ 42, 2591, -1000, 1378, -1000, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052, 2052,
+ 2052, 2052, 2052, 2052, 2052, 2052, -1000, -1000, 54226, 2339,
+ -1000, -1000, 2514, 1703, 164, -1000, 1484, 1951, -1000, -1000,
+ 205, -1000, 21622, -1000, 37924, 1449, 1434, -1000, -1000, -1000,
+ -1000, -540, -1000, -1000, -1000, -1000, -1000, -1000, 402, 1945,
+ -1000, 925, 54226, 55708, -1000, 2225, -1000, -1000, -1000, -1000,
+ 21622, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
-1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, 22682, -1000, 22682, -1000, 22682, -1000, 22682,
- -1000, 22682, -1000, 22682, -1000, 22682, -1000, 22682, -1000, 22682,
- -1000, 22682, -1000, 22682, -1000, 22682, -1000, 22682, -1000, 22682,
- -1000, 22682, -1000, 22682, -1000, -1000, 22682, -1000, -1000, -1000,
- 22682, -1000, 22682, -1000, 22682, -1000, -1000, -1000, 22682, 203,
- 1057, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, 1389, 313, -1000, -1000, -1000, 2551, -1000, 1389,
- 22682, 1609, -1000, 1609, 1609, 1609, -1000, -1000, -1000, 22682,
- -1000, 22682, 22682, -1000, 22682, -1000, 22682, -1000, -1000, -1000,
- -1000, 22682, 1756, 2242, 39702, 1756, 39702, 1756, 33042, -1000,
- -1000, 2509, 2524, 2555, 2286, 2291, 2291, 2331, -1000, 2545,
- 2533, -1000, 1502, 2520, 1464, 1014, -1000, 55982, 22682, -1000,
- 222, 38962, -1000, 413, 55242, 222, 55242, -1000, 2503, -1000,
- -1000, 22682, 2030, -1000, 22682, -1000, -1000, -1000, -1000, 6457,
- 2542, 1884, -1000, -1000, 844, -1000, 22682, -1000, 10780, -1000,
- -1000, -1000, -1000, -1000, -1000, -1000, -1000, 1461, 1443, -1000,
- -1000, 2029, 22682, -1000, -1000, -1000, 1604, 1595, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, -1000, 2026, -1000, -1000, -1000,
- -1000, 312, -527, 1891, 55242, 1234, -1000, 1663, 1899, 290,
- 222, 1434, 890, 890, 890, 1199, 1166, 38962, 1631, -1000,
- 55242, 377, -1000, 312, -1000, -218, -219, 1318, -1000, -1000,
- 2456, -1000, -1000, 16750, -1000, -1000, 2015, 2127, -1000, -1000,
- -1000, -1000, 2227, -188, -205, -1000, -1000, 1318, 1318, 1318,
- 2217, 1389, -1000, 1318, 1318, 1589, 1548, -1000, -1000, 1318,
- 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318,
- 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1561,
- 1805, -1000, 203, 1389, 2146, -1000, -1000, 6457, -1000, -1000,
- 2503, 2510, 37, -1000, -1000, 223, 37, 1422, 978, 1389,
- 1389, 978, 1771, 1318, 1765, 1683, 1318, 1318, 33782, -1000,
- 2508, 2504, 1603, -1000, -1000, 39702, 1603, 39702, 949, 2524,
- -255, 22682, 22682, 2244, 1177, -1000, -1000, -1000, -1000, 1418,
- 1413, -1000, 1390, -1000, 2623, -1000, 1422, -1000, 1756, 222,
- -1000, 491, 1924, -1000, 2499, 1422, 55242, 1422, 84, 2503,
- -1000, 1318, -1000, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
- 1756, 1756, 1756, 1756, -1000, -1000, 55242, 1821, -1000, -1000,
- 2449, 1625, 163, -1000, 1432, 1899, -1000, -1000, 216, -1000,
- 22682, -1000, 38962, 1380, 1376, -1000, -1000, -1000, -1000, -538,
- -1000, -1000, -1000, -1000, -1000, -1000, 414, 1885, -1000, 884,
- 55242, 56722, -1000, 2048, -1000, -1000, -1000, -1000, 22682, -1000,
- -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, -1000, -1000, -1000, -1000, 22682, -1000, 1389, 2145,
- -1000, -369, -1000, -504, 22682, -248, -1000, -1000, -248, -1000,
- -1000, -1000, -1000, -1000, 22682, -1000, -1000, 22682, -1000, 22682,
- -1000, -1000, 1603, -1000, -1000, -1000, 38222, -1000, 1603, -1000,
- 1603, -1000, -255, -1000, 1792, -1000, 55242, 1422, 344, -1000,
- 1167, -1000, -1000, -1000, -1000, -1000, 55982, 55242, 1924, 55242,
- -1000, -1000, 1588, 1389, 1756, 2499, -1000, 1565, -1000, 414,
- -1000, 2013, 2060, -1000, -1000, -1000, 20462, -1000, -1000, -1000,
- -1000, -1000, 249, -198, 16750, 12274, 1563, -1000, -195, 1318,
- 1561, -1000, -479, -1000, -1000, -1000, -1000, 314, -1000, -1000,
- 1769, -1000, -1000, 1594, 1486, 1449, -1000, -1000, -1000, -1000,
- -1000, -1000, -255, -1000, -1000, 2448, -1000, -221, -1000, -1000,
- 1737, 1547, -1000, -1000, -1000, 33042, 54502, -1000, -180, 325,
- -198, 22682, 2003, 1389, -1000, -1000, -1000, -1000, -1000, -1000,
- -1000, -1000, -48, -1000, -1000, 473, -1000, -1000, -1000, 2112,
- -203, -1000, -1000, -1000, 250, -493, -294, -316, 24902, -1000,
- 22682, -1000, 22682, -1000, 22682, -1000, 55242, 1756, -1000, -1000,
- -1000, 1483, -1000, 4275, -340, 2142, -1000, -113, -1000, -1000,
- -1000, 1093, 1367, -1000, -1000, -1000, -1000, -1000, -1000, 1527,
- 55242, -1000, 389, -1000, -1000, 16004, -199, -211, 1004, -1000,
- -1000, -1000, -1000, -1000, 1609, 1398, 1337, 1318, -1000, 55242,
- -1000, 54502, -335, 828, 6457, -1000, 2141, 2109, 2584, -1000,
- -1000, -1000, -1000, -1000, -1000, -544, 1459, 239, -1000, -1000,
- -1000, 250, -344, -1000, 22682, -1000, 22682, -1000, 1389, -1000,
- -1000, 2441, 84, -1000, 2617, -1000, 2615, 1015, 1015, -1000,
- 1161, -544, -1000, -1000, -1000, -1000, 1318, 1318, -1000, -345,
- -1000, -1000, -1000, -1000, -1000, 385, 1229, -1000, -1000, -1000,
- -1000, -1000, 6457, -1000, -1000, -1000, 218, 218, -1000, -1000,
+ -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, 21622, -1000,
+ 1445, 2160, -1000, -378, -1000, -502, 21622, -339, -1000, -1000,
+ -339, -1000, -1000, -1000, -1000, -1000, 21622, -1000, -1000, 21622,
+ -1000, 21622, -1000, -1000, 1688, -1000, -1000, -1000, 37183, -1000,
+ 1688, -1000, 1688, -1000, -346, -1000, 1935, -1000, 54226, 1371,
+ 329, -1000, 1249, -1000, -1000, -1000, -1000, -1000, 54967, 54226,
+ 1796, 54226, -1000, -1000, 1652, 1445, 2052, 2546, -1000, 1632,
+ -1000, 402, -1000, 2056, 2107, -1000, -1000, -1000, 19399, -1000,
+ -1000, -1000, -1000, -1000, 264, -253, 15682, 11200, 1589, -1000,
+ -249, 1378, 1571, -1000, -478, -1000, -1000, -1000, -1000, 278,
+ -1000, -1000, 1917, -1000, -1000, 1459, 1448, 1444, -1000, -1000,
+ -1000, -1000, -1000, -1000, -346, -1000, -1000, 2498, -1000, -308,
+ -1000, -1000, 1830, 1567, -1000, -1000, -1000, 31996, 53485, -1000,
+ -232, 344, -253, 21622, 2055, 1445, -1000, -1000, -1000, -1000,
+ -1000, -1000, -1000, -1000, -36, -1000, -1000, 458, -1000, -1000,
+ -1000, 2081, -259, -1000, -1000, -1000, 288, -492, -367, -369,
+ 23845, -1000, 21622, -1000, 21622, -1000, 21622, -1000, 54226, 2052,
+ -1000, -1000, -1000, 1527, -1000, 4202, -396, 2158, -1000, -148,
+ -1000, -1000, -1000, 1105, 1431, -1000, -1000, -1000, -1000, -1000,
+ -1000, 1889, 54226, -1000, 373, -1000, -1000, 14935, -254, -268,
+ 997, -1000, -1000, -1000, -1000, -1000, 1045, 1398, 1321, 1378,
+ -1000, 54226, -1000, 53485, -389, 858, 5171, -1000, 2146, 2095,
+ 2628, -1000, -1000, -1000, -1000, -1000, -1000, -543, 1462, 215,
+ -1000, -1000, -1000, 288, -379, -1000, 21622, -1000, 21622, -1000,
+ 1445, -1000, -1000, 2477, 42, -1000, 2648, -1000, 2629, 996,
+ 996, -1000, 1217, -543, -1000, -1000, -1000, -1000, 1378, 1378,
+ -1000, -397, -1000, -1000, -1000, -1000, -1000, 379, 1290, -1000,
+ -1000, -1000, -1000, -1000, 5171, -1000, -1000, -1000, 219, 219,
+ -1000, -1000,
}
var yyPgo = [...]int{
- 0, 3202, 3201, 28, 7, 39, 38, 3198, 3197, 3196,
- 164, 3195, 3194, 3193, 3190, 3189, 3187, 2684, 2675, 2652,
- 3185, 3183, 3182, 3181, 3179, 3178, 3177, 3176, 3175, 53,
- 102, 100, 90, 199, 196, 3174, 172, 159, 198, 3172,
- 3171, 3169, 115, 181, 81, 83, 192, 3168, 3167, 68,
- 3162, 3160, 3159, 187, 184, 177, 1013, 3157, 180, 112,
- 44, 3156, 3155, 3152, 3150, 3149, 3148, 3147, 3146, 3145,
- 3144, 3143, 3142, 3141, 3140, 3137, 3135, 3134, 3133, 283,
- 3126, 3124, 16, 3116, 73, 3113, 3111, 3109, 3107, 3106,
- 9, 3102, 3097, 32, 35, 55, 3096, 3089, 41, 3087,
- 3086, 3081, 3079, 3078, 79, 3077, 14, 3076, 30, 3075,
- 3074, 123, 3072, 3069, 3068, 40, 3067, 3065, 3062, 11,
- 163, 3061, 3057, 137, 3051, 3049, 3048, 165, 205, 3047,
- 2302, 3046, 93, 3044, 3041, 3039, 160, 195, 3036, 119,
- 3033, 3028, 3027, 144, 3025, 3298, 3022, 3018, 62, 80,
- 168, 3015, 3012, 201, 72, 8, 3004, 22, 23, 2991,
- 2984, 67, 61, 2977, 104, 2976, 2975, 97, 101, 2972,
- 110, 89, 2968, 2967, 10, 5, 2966, 1, 4, 2,
- 116, 2963, 2961, 108, 2959, 2955, 2954, 94, 2951, 2948,
- 3347, 2945, 87, 128, 98, 65, 2944, 170, 174, 2943,
- 2941, 2939, 2936, 2928, 2917, 47, 2915, 2914, 2911, 133,
- 1269, 99, 2904, 145, 352, 49, 146, 2895, 193, 75,
- 200, 161, 2894, 2892, 131, 132, 2890, 2889, 52, 166,
- 197, 2888, 95, 127, 118, 183, 92, 130, 2881, 2877,
- 57, 64, 2874, 2872, 2866, 2865, 162, 2864, 2863, 63,
- 2861, 51, 2859, 158, 2858, 340, 77, 2857, 185, 171,
- 2855, 66, 2853, 2852, 85, 136, 58, 29, 2851, 154,
- 157, 126, 169, 2850, 2845, 50, 2843, 2837, 2834, 189,
- 318, 2828, 2826, 336, 179, 140, 148, 82, 2825, 343,
- 2824, 2821, 2819, 19, 4424, 6947, 182, 17, 156, 2818,
- 2815, 8189, 48, 43, 13, 2813, 211, 2810, 194, 2807,
- 2806, 2805, 216, 208, 113, 155, 54, 2800, 2799, 2798,
- 2797, 71, 2790, 2786, 2776, 2774, 2772, 2769, 37, 36,
- 34, 70, 220, 60, 25, 96, 167, 152, 59, 2767,
- 2761, 2760, 121, 78, 2758, 153, 149, 124, 105, 2757,
- 176, 141, 114, 2756, 91, 33, 2753, 2752, 2751, 2750,
- 84, 2749, 2748, 2746, 2744, 151, 142, 120, 74, 2742,
- 76, 117, 147, 143, 46, 2741, 42, 2740, 2739, 31,
- 191, 27, 2722, 21, 106, 111, 2721, 6365, 2719, 12,
- 342, 150, 2716, 2714, 15, 18, 6, 2711, 2710, 2709,
- 2694, 129, 2689, 2688, 2686, 2679, 26, 45, 24, 20,
- 109, 134, 69, 2673, 2669, 139, 2667, 2662, 2651, 0,
- 1040, 125, 2644, 202,
+ 0, 3370, 3365, 35, 7, 40, 39, 3364, 3356, 3351,
+ 176, 3285, 3284, 3282, 3278, 3277, 3275, 2737, 2721, 2713,
+ 3274, 3260, 3256, 3254, 3248, 3243, 3240, 3227, 3225, 41,
+ 93, 102, 90, 213, 221, 3224, 171, 163, 203, 3223,
+ 3220, 3215, 118, 189, 75, 80, 193, 3214, 3213, 68,
+ 3212, 3210, 3208, 186, 184, 182, 1077, 3207, 183, 115,
+ 49, 3205, 3201, 3198, 3195, 3194, 3193, 3191, 3189, 3185,
+ 3184, 3183, 3181, 3180, 3179, 3178, 3177, 3171, 3170, 274,
+ 3167, 3166, 16, 3165, 70, 3164, 3163, 3160, 3156, 3145,
+ 9, 3143, 3142, 29, 37, 57, 3137, 3129, 50, 3127,
+ 3126, 3122, 3115, 3113, 79, 3108, 33, 3103, 36, 3102,
+ 3101, 126, 3099, 3094, 3093, 45, 3091, 3087, 3086, 11,
+ 167, 3083, 3082, 137, 3081, 3080, 3079, 164, 201, 3078,
+ 2337, 3076, 94, 3072, 3068, 3066, 162, 187, 3065, 123,
+ 3062, 3055, 3053, 152, 3050, 3268, 3049, 3044, 60, 72,
+ 172, 3042, 3039, 200, 67, 8, 3035, 23, 21, 3033,
+ 3030, 62, 64, 3029, 109, 3028, 3026, 97, 100, 3025,
+ 92, 106, 3019, 3017, 10, 5, 3015, 1, 4, 2,
+ 103, 3012, 2999, 117, 2996, 2995, 2989, 82, 2987, 2983,
+ 4348, 2982, 87, 133, 99, 66, 2980, 168, 139, 2978,
+ 2976, 2970, 2969, 2967, 2966, 46, 2965, 2962, 2961, 134,
+ 26, 111, 2956, 145, 352, 52, 146, 2953, 192, 76,
+ 198, 169, 2951, 2949, 130, 135, 2948, 2947, 55, 166,
+ 197, 2946, 110, 129, 119, 199, 98, 132, 2942, 2940,
+ 59, 69, 2937, 2934, 2932, 2931, 170, 2930, 2928, 63,
+ 2926, 54, 2923, 165, 2916, 313, 81, 2913, 185, 158,
+ 2911, 65, 2910, 2909, 85, 96, 58, 27, 2897, 157,
+ 161, 127, 173, 2896, 2887, 53, 2886, 2882, 2880, 195,
+ 280, 2875, 2874, 335, 177, 140, 149, 83, 2873, 298,
+ 2872, 2870, 2865, 22, 5122, 7036, 180, 34, 159, 2858,
+ 2853, 1063, 48, 42, 13, 2849, 210, 2847, 194, 2844,
+ 2841, 2836, 196, 211, 114, 160, 56, 2835, 2834, 2833,
+ 2824, 71, 2807, 2803, 2800, 2799, 2794, 2793, 38, 32,
+ 31, 89, 204, 91, 28, 95, 156, 151, 61, 2791,
+ 2790, 2789, 124, 78, 2788, 155, 154, 125, 104, 2785,
+ 179, 142, 120, 2780, 1161, 30, 2776, 2774, 2773, 2772,
+ 84, 2771, 2765, 2764, 2759, 150, 143, 121, 77, 2758,
+ 73, 116, 148, 144, 51, 2755, 43, 2752, 2750, 17,
+ 191, 14, 2749, 18, 112, 108, 2746, 6691, 2745, 12,
+ 324, 147, 2744, 2743, 15, 19, 6, 2742, 2726, 2725,
+ 2720, 131, 2715, 2709, 2707, 2700, 25, 47, 24, 20,
+ 113, 136, 74, 2699, 2692, 138, 2690, 2678, 2672, 0,
+ 1040, 128, 2671, 202,
}
-//line sql.y:8750
+//line sql.y:8755
type yySymType struct {
union any
empty struct{}
@@ -8701,40 +8602,40 @@ var yyR1 = [...]int{
403, 277, 277, 66, 66, 66, 307, 307, 307, 307,
69, 69, 413, 413, 414, 414, 415, 415, 415, 70,
71, 71, 310, 310, 311, 311, 72, 73, 85, 85,
- 85, 85, 85, 86, 86, 86, 86, 110, 110, 110,
- 10, 10, 10, 10, 81, 81, 81, 9, 9, 11,
- 68, 68, 75, 400, 400, 401, 402, 402, 402, 402,
- 76, 78, 27, 27, 27, 27, 27, 27, 135, 135,
- 123, 123, 123, 123, 123, 123, 123, 123, 123, 123,
- 123, 123, 130, 130, 130, 124, 124, 422, 79, 80,
- 80, 128, 128, 128, 121, 121, 121, 127, 127, 127,
- 12, 12, 13, 263, 263, 14, 14, 134, 134, 133,
- 133, 136, 136, 136, 136, 136, 136, 136, 136, 136,
- 136, 136, 131, 131, 132, 132, 132, 132, 299, 299,
- 299, 298, 298, 167, 167, 169, 168, 168, 170, 170,
- 171, 171, 171, 171, 217, 217, 193, 193, 256, 256,
- 257, 257, 255, 255, 262, 262, 258, 258, 258, 258,
- 265, 265, 172, 172, 172, 172, 180, 180, 181, 181,
- 182, 182, 309, 309, 304, 304, 304, 303, 303, 186,
- 186, 186, 188, 187, 187, 187, 187, 189, 189, 191,
- 191, 190, 190, 192, 197, 197, 196, 196, 194, 194,
- 194, 194, 194, 194, 195, 195, 195, 195, 198, 198,
- 145, 145, 145, 145, 145, 145, 145, 145, 411, 411,
- 159, 159, 159, 159, 159, 159, 159, 162, 162, 162,
- 162, 162, 162, 162, 162, 162, 162, 162, 246, 246,
- 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
- 150, 150, 150, 150, 150, 153, 153, 153, 153, 153,
+ 85, 85, 85, 86, 86, 86, 86, 86, 110, 110,
+ 110, 10, 10, 10, 10, 81, 81, 81, 9, 9,
+ 11, 68, 68, 75, 400, 400, 401, 402, 402, 402,
+ 402, 76, 78, 27, 27, 27, 27, 27, 27, 135,
+ 135, 123, 123, 123, 123, 123, 123, 123, 123, 123,
+ 123, 123, 123, 130, 130, 130, 124, 124, 422, 79,
+ 80, 80, 128, 128, 128, 121, 121, 121, 127, 127,
+ 127, 12, 12, 13, 263, 263, 14, 14, 134, 134,
+ 133, 133, 136, 136, 136, 136, 136, 136, 136, 136,
+ 136, 136, 136, 131, 131, 132, 132, 132, 132, 299,
+ 299, 299, 298, 298, 167, 167, 169, 168, 168, 170,
+ 170, 171, 171, 171, 171, 217, 217, 193, 193, 256,
+ 256, 257, 257, 255, 255, 262, 262, 258, 258, 258,
+ 258, 265, 265, 172, 172, 172, 172, 180, 180, 181,
+ 181, 182, 182, 309, 309, 304, 304, 304, 303, 303,
+ 186, 186, 186, 188, 187, 187, 187, 187, 189, 189,
+ 191, 191, 190, 190, 192, 197, 197, 196, 196, 194,
+ 194, 194, 194, 194, 194, 195, 195, 195, 195, 198,
+ 198, 145, 145, 145, 145, 145, 145, 145, 145, 411,
+ 411, 159, 159, 159, 159, 159, 159, 159, 162, 162,
+ 162, 162, 162, 162, 162, 162, 162, 162, 162, 246,
+ 246, 150, 150, 150, 150, 150, 150, 150, 150, 150,
+ 150, 150, 150, 150, 150, 150, 153, 153, 153, 153,
153, 153, 153, 153, 153, 153, 153, 153, 153, 153,
153, 153, 153, 153, 153, 153, 153, 153, 153, 153,
- 222, 222, 221, 221, 87, 87, 87, 88, 88, 89,
- 89, 89, 89, 89, 90, 90, 90, 90, 90, 90,
- 90, 92, 92, 91, 91, 212, 212, 296, 296, 93,
- 94, 94, 95, 95, 98, 98, 97, 96, 96, 102,
- 102, 99, 99, 101, 101, 100, 103, 103, 104, 105,
- 105, 278, 278, 199, 199, 208, 208, 208, 208, 200,
- 200, 201, 201, 201, 201, 201, 201, 209, 209, 209,
- 216, 210, 210, 206, 206, 204, 204, 204, 204, 204,
- 204, 204, 204, 204, 204, 204, 205, 205, 205, 205,
+ 153, 222, 222, 221, 221, 87, 87, 87, 88, 88,
+ 89, 89, 89, 89, 89, 90, 90, 90, 90, 90,
+ 90, 90, 92, 92, 91, 91, 212, 212, 296, 296,
+ 93, 94, 94, 95, 95, 98, 98, 97, 96, 96,
+ 102, 102, 99, 99, 101, 101, 100, 103, 103, 104,
+ 105, 105, 278, 278, 199, 199, 208, 208, 208, 208,
+ 200, 200, 201, 201, 201, 201, 201, 201, 209, 209,
+ 209, 216, 210, 210, 206, 206, 204, 204, 204, 204,
+ 204, 204, 204, 204, 204, 204, 204, 205, 205, 205,
205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
@@ -8753,37 +8654,37 @@ var yyR1 = [...]int{
205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
- 205, 205, 205, 205, 205, 205, 205, 205, 205, 164,
- 164, 164, 164, 227, 227, 151, 151, 151, 151, 151,
+ 205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
+ 164, 164, 164, 164, 227, 227, 151, 151, 151, 151,
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
- 152, 152, 165, 165, 165, 165, 166, 166, 166, 166,
- 166, 166, 166, 317, 317, 119, 119, 119, 119, 119,
+ 151, 152, 152, 165, 165, 165, 165, 166, 166, 166,
+ 166, 166, 166, 166, 317, 317, 119, 119, 119, 119,
119, 119, 119, 119, 119, 119, 119, 119, 119, 119,
- 119, 119, 119, 119, 119, 120, 120, 120, 120, 120,
+ 119, 119, 119, 119, 119, 119, 120, 120, 120, 120,
120, 120, 120, 120, 120, 120, 120, 120, 120, 120,
- 120, 120, 120, 423, 423, 332, 332, 332, 207, 207,
- 207, 207, 207, 126, 126, 126, 126, 126, 314, 314,
- 314, 318, 318, 318, 316, 316, 316, 316, 316, 316,
- 316, 316, 316, 316, 316, 316, 316, 316, 316, 319,
- 319, 225, 225, 122, 122, 223, 223, 224, 226, 226,
- 218, 218, 218, 218, 220, 220, 203, 203, 203, 228,
- 228, 320, 320, 229, 229, 106, 107, 107, 108, 108,
- 230, 230, 232, 231, 231, 233, 234, 234, 234, 235,
- 235, 236, 236, 236, 49, 49, 49, 49, 49, 44,
- 44, 44, 44, 45, 45, 45, 45, 137, 137, 137,
- 137, 139, 139, 138, 138, 82, 82, 83, 83, 83,
- 143, 143, 144, 144, 144, 141, 141, 142, 142, 253,
- 253, 253, 253, 253, 253, 253, 237, 237, 237, 244,
- 244, 244, 240, 240, 242, 242, 242, 243, 243, 243,
- 241, 250, 250, 252, 252, 251, 251, 247, 247, 248,
- 248, 249, 249, 249, 245, 245, 202, 202, 202, 202,
- 202, 254, 254, 254, 254, 308, 308, 308, 266, 266,
- 213, 213, 215, 215, 214, 214, 163, 267, 267, 275,
- 272, 272, 273, 273, 300, 300, 300, 276, 276, 289,
- 289, 285, 285, 286, 286, 279, 279, 291, 291, 291,
- 77, 211, 211, 371, 371, 368, 295, 295, 297, 297,
- 301, 301, 305, 305, 302, 302, 8, 416, 416, 416,
- 293, 293, 293, 293, 293, 293, 293, 293, 293, 293,
+ 120, 120, 120, 120, 423, 423, 332, 332, 332, 207,
+ 207, 207, 207, 207, 126, 126, 126, 126, 126, 314,
+ 314, 314, 318, 318, 318, 316, 316, 316, 316, 316,
+ 316, 316, 316, 316, 316, 316, 316, 316, 316, 316,
+ 319, 319, 225, 225, 122, 122, 223, 223, 224, 226,
+ 226, 218, 218, 218, 218, 220, 220, 203, 203, 203,
+ 228, 228, 320, 320, 229, 229, 106, 107, 107, 108,
+ 108, 230, 230, 232, 231, 231, 233, 234, 234, 234,
+ 235, 235, 236, 236, 236, 49, 49, 49, 49, 49,
+ 44, 44, 44, 44, 45, 45, 45, 45, 137, 137,
+ 137, 137, 139, 139, 138, 138, 82, 82, 83, 83,
+ 83, 143, 143, 144, 144, 144, 141, 141, 142, 142,
+ 253, 253, 253, 253, 253, 253, 253, 237, 237, 237,
+ 244, 244, 244, 240, 240, 242, 242, 242, 243, 243,
+ 243, 241, 250, 250, 252, 252, 251, 251, 247, 247,
+ 248, 248, 249, 249, 249, 245, 245, 202, 202, 202,
+ 202, 202, 254, 254, 254, 254, 308, 308, 308, 266,
+ 266, 213, 213, 215, 215, 214, 214, 163, 267, 267,
+ 275, 272, 272, 273, 273, 300, 300, 300, 276, 276,
+ 289, 289, 285, 285, 286, 286, 279, 279, 291, 291,
+ 291, 77, 211, 211, 371, 371, 368, 295, 295, 297,
+ 297, 301, 301, 305, 305, 302, 302, 8, 416, 416,
+ 416, 293, 293, 293, 293, 293, 293, 293, 293, 293,
293, 293, 293, 293, 293, 293, 293, 293, 293, 293,
293, 293, 293, 293, 293, 293, 293, 293, 293, 293,
293, 293, 293, 293, 293, 293, 293, 293, 293, 293,
@@ -8798,7 +8699,7 @@ var yyR1 = [...]int{
293, 293, 293, 293, 293, 293, 293, 293, 293, 293,
293, 293, 293, 293, 293, 293, 293, 293, 293, 293,
293, 293, 293, 293, 293, 293, 293, 293, 293, 293,
- 293, 293, 293, 294, 294, 294, 294, 294, 294, 294,
+ 293, 293, 293, 293, 294, 294, 294, 294, 294, 294,
294, 294, 294, 294, 294, 294, 294, 294, 294, 294,
294, 294, 294, 294, 294, 294, 294, 294, 294, 294,
294, 294, 294, 294, 294, 294, 294, 294, 294, 294,
@@ -8845,8 +8746,8 @@ var yyR1 = [...]int{
294, 294, 294, 294, 294, 294, 294, 294, 294, 294,
294, 294, 294, 294, 294, 294, 294, 294, 294, 294,
294, 294, 294, 294, 294, 294, 294, 294, 294, 294,
- 294, 294, 294, 294, 294, 294, 294, 294, 294, 419,
- 420, 312, 313, 313, 313,
+ 294, 294, 294, 294, 294, 294, 294, 294, 294, 294,
+ 294, 419, 420, 312, 313, 313, 313,
}
var yyR2 = [...]int{
@@ -8934,87 +8835,87 @@ var yyR2 = [...]int{
1, 3, 0, 1, 1, 3, 3, 2, 2, 1,
1, 5, 0, 1, 0, 1, 2, 3, 0, 3,
3, 3, 1, 0, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 0, 1, 1, 4, 4, 4,
- 2, 2, 3, 1, 3, 2, 1, 2, 1, 2,
- 2, 4, 3, 3, 6, 4, 7, 6, 1, 3,
- 2, 2, 2, 2, 1, 1, 1, 3, 2, 1,
- 1, 1, 0, 1, 1, 0, 3, 0, 2, 0,
- 2, 1, 2, 2, 0, 1, 1, 0, 1, 1,
- 5, 5, 4, 0, 2, 4, 4, 0, 1, 1,
- 2, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 3, 1, 2, 3, 5, 0, 1,
- 2, 1, 1, 0, 1, 2, 1, 3, 1, 1,
- 1, 4, 3, 1, 1, 2, 3, 7, 0, 3,
- 0, 1, 1, 3, 1, 3, 1, 1, 3, 3,
- 1, 3, 4, 4, 4, 3, 2, 4, 0, 1,
- 0, 2, 0, 1, 0, 1, 2, 1, 1, 1,
- 2, 2, 1, 2, 3, 2, 3, 2, 2, 2,
- 1, 1, 3, 3, 0, 1, 1, 2, 6, 5,
- 6, 6, 5, 5, 0, 2, 3, 3, 0, 2,
- 3, 3, 3, 2, 3, 1, 3, 6, 1, 1,
- 3, 4, 3, 4, 4, 4, 1, 3, 4, 5,
- 6, 3, 4, 5, 6, 3, 4, 1, 1, 1,
- 3, 3, 3, 3, 3, 3, 5, 5, 3, 3,
- 3, 3, 3, 3, 1, 1, 1, 1, 1, 3,
- 1, 1, 1, 2, 2, 2, 2, 1, 1, 2,
- 7, 7, 6, 6, 2, 2, 5, 6, 3, 3,
- 1, 3, 1, 3, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 2, 2, 2, 2, 4, 2,
- 4, 0, 1, 2, 5, 0, 3, 0, 1, 4,
- 4, 2, 1, 0, 0, 1, 1, 2, 2, 1,
- 1, 2, 2, 0, 1, 1, 1, 1, 5, 1,
- 3, 0, 3, 1, 1, 1, 2, 1, 2, 1,
+ 1, 1, 1, 1, 1, 0, 1, 1, 4, 4,
+ 4, 2, 2, 3, 1, 3, 2, 1, 2, 1,
+ 2, 2, 4, 3, 3, 6, 4, 7, 6, 1,
+ 3, 2, 2, 2, 2, 1, 1, 1, 3, 2,
+ 1, 1, 1, 0, 1, 1, 0, 3, 0, 2,
+ 0, 2, 1, 2, 2, 0, 1, 1, 0, 1,
+ 1, 5, 5, 4, 0, 2, 4, 4, 0, 1,
+ 1, 2, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 3, 1, 2, 3, 5, 0,
+ 1, 2, 1, 1, 0, 1, 2, 1, 3, 1,
+ 1, 1, 4, 3, 1, 1, 2, 3, 7, 0,
+ 3, 0, 1, 1, 3, 1, 3, 1, 1, 3,
+ 3, 1, 3, 4, 4, 4, 3, 2, 4, 0,
+ 1, 0, 2, 0, 1, 0, 1, 2, 1, 1,
+ 1, 2, 2, 1, 2, 3, 2, 3, 2, 2,
+ 2, 1, 1, 3, 3, 0, 1, 1, 2, 6,
+ 5, 6, 6, 5, 5, 0, 2, 3, 3, 0,
+ 2, 3, 3, 3, 2, 3, 1, 3, 6, 1,
+ 1, 3, 4, 3, 4, 4, 4, 1, 3, 4,
+ 5, 6, 3, 4, 5, 6, 3, 4, 1, 1,
+ 1, 3, 3, 3, 3, 3, 3, 5, 5, 3,
+ 3, 3, 3, 3, 3, 1, 1, 1, 1, 1,
+ 3, 1, 1, 1, 2, 2, 2, 2, 1, 1,
+ 2, 7, 7, 6, 6, 2, 2, 5, 6, 3,
+ 3, 1, 3, 1, 3, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 2, 2, 2, 2, 4,
+ 2, 4, 0, 1, 2, 5, 0, 3, 0, 1,
+ 4, 4, 2, 1, 0, 0, 1, 1, 2, 2,
+ 1, 1, 2, 2, 0, 1, 1, 1, 1, 5,
+ 1, 3, 0, 3, 1, 1, 1, 2, 1, 2,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 3, 4, 6, 4, 4, 8, 8, 6,
- 8, 6, 5, 4, 10, 2, 2, 1, 2, 2,
- 2, 2, 2, 5, 6, 6, 6, 6, 6, 5,
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 8,
- 4, 8, 8, 6, 5, 4, 4, 4, 5, 7,
- 4, 4, 7, 4, 4, 6, 6, 6, 8, 6,
- 6, 4, 4, 3, 4, 6, 6, 4, 4, 6,
- 4, 6, 4, 4, 4, 4, 4, 4, 6, 4,
- 6, 4, 4, 4, 6, 4, 6, 4, 4, 6,
- 4, 6, 4, 6, 8, 4, 6, 8, 4, 6,
+ 1, 1, 1, 3, 4, 6, 4, 4, 8, 8,
+ 6, 8, 6, 5, 4, 10, 2, 2, 1, 2,
+ 2, 2, 2, 2, 5, 6, 6, 6, 6, 6,
+ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
+ 8, 4, 8, 8, 6, 5, 4, 4, 4, 5,
+ 7, 4, 4, 7, 4, 4, 6, 6, 6, 8,
+ 6, 6, 4, 4, 3, 4, 6, 6, 4, 4,
+ 6, 4, 6, 4, 4, 4, 4, 4, 4, 6,
+ 4, 6, 4, 4, 4, 6, 4, 6, 4, 4,
+ 6, 4, 6, 4, 6, 8, 4, 6, 8, 4,
+ 6, 8, 4, 6, 8, 4, 6, 8, 4, 6,
8, 4, 6, 8, 4, 6, 8, 4, 6, 8,
4, 6, 8, 4, 6, 8, 4, 6, 8, 4,
6, 8, 4, 6, 8, 4, 6, 8, 4, 6,
- 8, 4, 6, 8, 4, 6, 8, 4, 6, 8,
- 4, 4, 4, 6, 4, 6, 4, 8, 6, 4,
- 4, 6, 4, 6, 8, 4, 6, 8, 4, 4,
- 6, 8, 6, 4, 6, 6, 8, 10, 7, 8,
- 8, 9, 4, 4, 4, 4, 6, 6, 6, 6,
- 6, 6, 6, 6, 6, 6, 4, 4, 4, 4,
- 4, 4, 6, 4, 6, 5, 9, 6, 9, 8,
- 6, 8, 8, 8, 6, 1, 1, 1, 1, 1,
- 1, 1, 1, 0, 2, 6, 8, 10, 12, 14,
- 6, 8, 8, 10, 12, 14, 6, 8, 10, 12,
- 6, 8, 4, 4, 3, 4, 6, 6, 4, 6,
- 4, 6, 8, 0, 2, 1, 1, 1, 1, 1,
+ 8, 4, 4, 4, 6, 4, 6, 4, 8, 6,
+ 4, 4, 6, 4, 6, 8, 4, 6, 8, 4,
+ 4, 6, 8, 6, 4, 6, 6, 8, 10, 7,
+ 8, 8, 9, 4, 4, 4, 4, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 4, 4, 4,
+ 4, 4, 4, 6, 4, 6, 5, 9, 6, 9,
+ 8, 6, 8, 8, 8, 6, 1, 1, 1, 1,
+ 1, 1, 1, 1, 0, 2, 6, 8, 10, 12,
+ 14, 6, 8, 8, 10, 12, 14, 6, 8, 10,
+ 12, 6, 8, 4, 4, 3, 4, 6, 6, 4,
+ 6, 4, 6, 8, 0, 2, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 0, 2, 0, 2, 3, 4, 4,
- 4, 4, 4, 0, 3, 4, 7, 3, 1, 1,
- 1, 0, 5, 5, 2, 3, 1, 2, 2, 1,
- 2, 1, 2, 2, 1, 2, 2, 1, 1, 0,
- 1, 0, 1, 0, 2, 1, 2, 4, 0, 2,
- 1, 1, 3, 5, 1, 1, 1, 2, 2, 0,
- 4, 0, 2, 0, 2, 2, 1, 3, 0, 1,
- 0, 1, 3, 1, 3, 2, 0, 1, 1, 0,
- 1, 2, 4, 4, 0, 2, 2, 1, 1, 3,
- 3, 3, 3, 3, 3, 3, 3, 0, 3, 3,
- 3, 0, 3, 1, 1, 0, 4, 0, 1, 1,
- 0, 3, 1, 3, 2, 1, 1, 0, 1, 2,
- 3, 4, 2, 3, 4, 4, 9, 3, 5, 0,
- 3, 3, 0, 1, 0, 2, 2, 0, 2, 2,
- 2, 0, 2, 1, 2, 3, 3, 0, 2, 1,
- 2, 3, 4, 3, 0, 1, 3, 1, 6, 5,
- 4, 1, 3, 3, 5, 0, 2, 5, 0, 5,
- 1, 3, 1, 2, 3, 4, 1, 1, 3, 3,
- 1, 2, 1, 1, 1, 1, 1, 1, 1, 0,
- 1, 0, 2, 0, 3, 0, 1, 0, 1, 1,
- 5, 0, 1, 0, 1, 2, 1, 1, 1, 1,
- 1, 1, 0, 1, 1, 1, 3, 0, 1, 1,
+ 1, 1, 1, 1, 0, 2, 0, 2, 3, 4,
+ 4, 4, 4, 4, 0, 3, 4, 7, 3, 1,
+ 1, 1, 0, 5, 5, 2, 3, 1, 2, 2,
+ 1, 2, 1, 2, 2, 1, 2, 2, 1, 1,
+ 0, 1, 0, 1, 0, 2, 1, 2, 4, 0,
+ 2, 1, 1, 3, 5, 1, 1, 1, 2, 2,
+ 0, 4, 0, 2, 0, 2, 2, 1, 3, 0,
+ 1, 0, 1, 3, 1, 3, 2, 0, 1, 1,
+ 0, 1, 2, 4, 4, 0, 2, 2, 1, 1,
+ 3, 3, 3, 3, 3, 3, 3, 3, 0, 3,
+ 3, 3, 0, 3, 1, 1, 0, 4, 0, 1,
+ 1, 0, 3, 1, 3, 2, 1, 1, 0, 1,
+ 2, 3, 4, 2, 3, 4, 4, 9, 3, 5,
+ 0, 3, 3, 0, 1, 0, 2, 2, 0, 2,
+ 2, 2, 0, 2, 1, 2, 3, 3, 0, 2,
+ 1, 2, 3, 4, 3, 0, 1, 3, 1, 6,
+ 5, 4, 1, 3, 3, 5, 0, 2, 5, 0,
+ 5, 1, 3, 1, 2, 3, 4, 1, 1, 3,
+ 3, 1, 2, 1, 1, 1, 1, 1, 1, 1,
+ 0, 1, 0, 2, 0, 3, 0, 1, 0, 1,
+ 1, 5, 0, 1, 0, 1, 2, 1, 1, 1,
+ 1, 1, 1, 0, 1, 1, 1, 3, 0, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
@@ -9078,7 +8979,7 @@ var yyR2 = [...]int{
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 0, 0, 1, 1,
+ 1, 1, 1, 0, 0, 1, 1,
}
var yyChk = [...]int{
@@ -9087,156 +8988,157 @@ var yyChk = [...]int{
-65, -66, -69, -70, -71, -72, -73, -9, -11, -68,
-27, -28, -74, -75, -76, -77, -78, -12, -13, -14,
-8, -32, -31, -30, 13, 14, -109, -35, 35, -40,
- -50, 239, -51, -41, 240, -52, 242, 241, 279, 243,
- 395, 272, 83, 328, 329, 331, 332, 333, 334, -110,
- 702, 277, 278, 245, 39, 51, 36, 37, 40, 249,
- 285, 286, 248, 145, -33, -36, 12, -419, 15, 485,
- 274, 273, 31, -34, 595, 95, -80, -418, 750, -253,
+ -50, 240, -51, -41, 241, -52, 243, 242, 280, 244,
+ 396, 273, 83, 329, 330, 332, 333, 334, 335, -110,
+ 703, 278, 279, 246, 39, 51, 36, 37, 40, 250,
+ 286, 287, 249, 145, -33, -36, 12, -419, 15, 486,
+ 275, 274, 31, -34, 596, 95, -80, -418, 751, -253,
-237, 26, 36, 32, -236, -232, -128, -237, 24, 22,
11, -79, -79, -79, 16, 17, -79, -356, -358, 95,
- 172, 95, -79, -57, -56, -54, -53, -55, -58, 34,
- -47, -48, -380, -46, -43, 244, 241, 289, 135, 136,
- 279, 280, 281, 243, 263, 278, 282, 277, 298, -42,
- 90, 36, 595, 598, -363, 240, 246, 247, 242, 486,
- 138, 137, 84, -360, 390, 629, 720, -58, 722, 110,
- 113, 721, 50, 253, 723, 724, 725, 636, 726, 262,
- 727, 728, 729, 730, 736, 677, 737, 738, 739, 139,
- 11, -79, -305, -301, 100, -294, 592, 265, 627, 439,
- 628, 314, 90, 47, 42, 531, 602, 386, 390, 629,
- 516, 720, 396, 328, 346, 340, 521, 522, 523, 369,
- 361, 593, 630, 603, 317, 266, 302, 714, 359, 148,
- 722, 321, 631, 280, 397, 398, 632, 399, 110, 331,
- 436, 735, 320, 633, 733, 113, 721, 336, 88, 515,
- 57, 717, 50, 275, 444, 445, 357, 248, 353, 723,
- 303, 634, 605, 296, 138, 135, 742, 39, 349, 56,
- 33, 732, 137, 55, 724, 163, 635, 725, 636, 401,
- 376, 708, 54, 402, 281, 637, 93, 286, 597, 325,
- 716, 403, 536, 350, 404, 313, 731, 245, 638, 324,
- 697, 689, 690, 405, 406, 709, 381, 377, 382, 538,
- 639, 428, 520, 407, 693, 694, 749, 58, 640, 641,
- 710, 136, 642, 87, 726, 89, 344, 345, 643, 311,
- 264, 541, 542, 430, 373, 498, 127, 505, 506, 120,
- 121, 501, 122, 507, 123, 128, 508, 509, 510, 499,
- 124, 117, 500, 511, 512, 374, 375, 125, 513, 119,
- 118, 502, 504, 126, 514, 262, 38, 408, 594, 315,
- 64, 319, 290, 431, 52, 379, 746, 51, 704, 543,
- 644, 707, 372, 368, 495, 59, 645, 646, 647, 648,
- 517, 727, 371, 343, 367, 741, 4, 308, 490, 518,
- 728, 68, 247, 384, 383, 385, 297, 427, 364, 649,
- 650, 651, 269, 91, 652, 354, 25, 653, 654, 409,
- 304, 655, 62, 656, 657, 434, 278, 658, 60, 729,
- 45, 659, 283, 743, 730, 660, 661, 662, 703, 663,
- 285, 664, 411, 665, 691, 692, 410, 378, 380, 544,
- 292, 412, 395, 250, 596, 666, 326, 348, 282, 734,
- 667, 270, 532, 533, 534, 535, 715, 540, 539, 284,
- 289, 277, 435, 271, 668, 669, 670, 671, 672, 318,
- 688, 673, 674, 332, 600, 736, 496, 49, 675, 676,
- 677, 678, 679, 312, 307, 429, 438, 67, 92, 392,
- 680, 681, 713, 342, 337, 43, 305, 99, 476, 478,
- 479, 480, 481, 482, 477, 484, 682, 329, 61, 737,
- 738, 739, 299, 740, 524, 525, 526, 527, 13, 578,
- 561, 589, 562, 579, 563, 572, 564, 580, 588, 590,
- 545, 553, 546, 554, 584, 567, 581, 573, 566, 565,
- 587, 570, 574, 547, 555, 585, 571, 548, 556, 549,
- 557, 550, 558, 583, 582, 575, 586, 551, 559, 577,
- 552, 560, 576, 568, 569, 447, 747, 748, 519, 414,
- 139, 309, 310, 53, 365, 291, 683, 322, 684, 355,
- 356, 492, 493, 370, 341, 366, 700, 330, 339, 698,
- 293, 415, 497, 279, 685, 437, 306, 387, 131, 338,
- 393, 323, 601, 537, 298, 416, 712, 599, 528, 529,
- 363, 360, 300, 530, 686, 388, 702, 417, 254, 294,
- 295, 687, 699, 418, 419, 316, 420, 421, 422, 423,
- 424, 426, 327, 425, 701, 695, 696, 301, 475, 598,
- 335, 358, 394, 457, 458, 459, 460, 461, 462, 463,
+ 173, 95, -79, -57, -56, -54, -53, -55, -58, 34,
+ -47, -48, -380, -46, -43, 245, 242, 290, 135, 136,
+ 280, 281, 282, 244, 264, 279, 283, 278, 299, -42,
+ 90, 36, 596, 599, -363, 241, 247, 248, 243, 487,
+ 138, 137, 84, -360, 391, 630, 721, -58, 723, 110,
+ 113, 722, 50, 254, 724, 725, 726, 637, 727, 263,
+ 728, 729, 730, 731, 737, 678, 738, 739, 740, 139,
+ 11, -79, -305, -301, 100, -294, 593, 266, 628, 440,
+ 629, 315, 90, 47, 42, 532, 603, 387, 391, 630,
+ 517, 721, 397, 329, 347, 341, 522, 523, 524, 370,
+ 362, 594, 631, 604, 318, 267, 303, 715, 360, 149,
+ 723, 322, 632, 281, 398, 399, 633, 400, 110, 332,
+ 437, 736, 321, 634, 734, 113, 722, 337, 88, 516,
+ 57, 718, 50, 276, 445, 446, 358, 249, 354, 724,
+ 304, 635, 606, 297, 138, 135, 743, 39, 350, 56,
+ 33, 733, 137, 55, 725, 164, 636, 726, 637, 402,
+ 377, 709, 54, 403, 282, 638, 93, 287, 598, 326,
+ 717, 404, 537, 351, 405, 314, 732, 246, 639, 325,
+ 698, 690, 691, 406, 407, 710, 382, 378, 383, 539,
+ 640, 429, 521, 408, 694, 695, 750, 58, 641, 642,
+ 711, 136, 643, 87, 727, 89, 345, 346, 644, 312,
+ 265, 542, 543, 431, 374, 499, 127, 506, 507, 120,
+ 121, 502, 122, 508, 123, 128, 509, 510, 511, 500,
+ 124, 117, 501, 512, 513, 375, 376, 125, 514, 119,
+ 118, 503, 505, 126, 515, 263, 38, 409, 595, 316,
+ 64, 320, 291, 432, 52, 380, 747, 51, 705, 544,
+ 645, 708, 373, 369, 496, 59, 646, 647, 648, 649,
+ 518, 728, 372, 344, 368, 742, 4, 309, 491, 519,
+ 729, 68, 248, 385, 384, 386, 298, 428, 365, 650,
+ 651, 652, 270, 91, 653, 355, 25, 654, 655, 410,
+ 305, 656, 62, 657, 658, 435, 279, 659, 60, 730,
+ 45, 660, 284, 744, 731, 661, 662, 663, 704, 664,
+ 286, 665, 412, 666, 692, 693, 411, 379, 381, 545,
+ 293, 413, 396, 251, 597, 667, 327, 349, 283, 735,
+ 668, 271, 533, 534, 535, 536, 716, 541, 540, 285,
+ 290, 278, 436, 272, 669, 670, 671, 672, 673, 319,
+ 689, 674, 675, 333, 601, 737, 497, 49, 676, 677,
+ 678, 679, 680, 313, 308, 430, 439, 67, 92, 393,
+ 681, 682, 714, 343, 338, 43, 306, 99, 477, 479,
+ 480, 481, 482, 483, 478, 485, 683, 330, 61, 738,
+ 739, 740, 300, 741, 525, 526, 527, 528, 13, 579,
+ 562, 590, 563, 580, 564, 573, 565, 581, 589, 591,
+ 546, 554, 547, 555, 585, 568, 582, 574, 567, 566,
+ 588, 571, 575, 548, 556, 586, 572, 549, 557, 550,
+ 558, 551, 559, 584, 583, 576, 587, 552, 560, 578,
+ 553, 561, 577, 569, 570, 448, 748, 749, 520, 415,
+ 139, 310, 311, 53, 366, 292, 684, 323, 685, 356,
+ 357, 493, 494, 371, 342, 367, 146, 701, 331, 340,
+ 699, 294, 416, 498, 280, 686, 438, 307, 388, 131,
+ 339, 394, 324, 602, 538, 299, 417, 713, 600, 529,
+ 530, 364, 361, 301, 531, 687, 389, 703, 418, 255,
+ 295, 296, 688, 700, 419, 420, 317, 421, 422, 423,
+ 424, 425, 427, 328, 426, 702, 696, 697, 302, 476,
+ 599, 336, 359, 395, 458, 459, 460, 461, 462, 463,
464, 465, 466, 467, 468, 469, 470, 471, 472, 473,
- 474, 494, 252, -79, 252, -190, -301, -130, 704, 706,
- 191, -272, 398, -290, 400, 413, 408, 418, 406, -281,
- 409, 411, 292, -403, 428, 252, 415, 239, 401, 410,
- 419, 420, 316, 426, 421, 327, 425, 301, 422, 423,
- 424, -387, 191, 725, 740, 330, 338, 148, 362, 405,
- 403, 429, 704, 100, -307, 100, 101, 102, -294, 330,
- -310, 335, -295, -387, -294, 333, -79, -79, -312, -312,
- -130, -210, -145, 156, -159, -261, -162, 101, -150, -153,
- -204, -205, -206, -207, -160, -220, -259, 180, 181, 188,
- 157, -216, -163, 29, 591, 487, 486, 191, 34, 234,
- 77, 78, 489, 490, 159, 63, 15, 452, 453, -161,
- 442, 443, 454, 448, 449, 515, 517, 518, 519, 516,
- 521, 522, 523, 524, 525, 526, 527, 528, 529, 530,
- 520, 531, 492, 493, 129, 494, 117, 119, 118, 127,
- 128, 495, 496, 497, 359, 543, 544, 538, 541, 542,
- 540, 539, 374, 375, 498, 561, 562, 566, 565, 563,
- 564, 567, 570, 571, 572, 573, 574, 575, 577, 576,
- 568, 569, 546, 545, 547, 548, 549, 550, 551, 552,
- 554, 553, 555, 556, 557, 558, 559, 560, 578, 579,
- 580, 581, 582, 584, 583, 588, 587, 585, 586, 590,
- 589, 499, 500, 120, 121, 122, 123, 124, 125, 126,
- 501, 504, 502, 503, 505, 506, 507, 512, 513, 508,
- 509, 510, 511, 514, 385, 383, 384, 380, 379, 378,
- -89, -102, 618, 617, -103, 439, 444, 445, 447, -151,
- -152, -165, -166, -295, -301, 257, 441, 251, 186, 485,
- -154, -148, -218, 116, 102, -31, -214, 440, 450, 451,
- 455, 446, 456, 604, 606, 621, 622, 624, 609, 614,
- 613, 616, 532, 533, 534, 535, 536, 537, 689, 690,
- 691, 692, 693, 694, 695, 696, -387, -294, 100, -157,
- -155, -199, 103, 108, 111, 112, 114, -409, 275, 355,
- 356, 130, -419, 718, -156, 105, 106, 107, 132, 133,
- 192, 193, 194, 195, 196, 197, 198, 199, 200, 201,
+ 474, 475, 495, 253, -79, 253, -190, -301, -130, 705,
+ 707, 192, -272, 399, -290, 401, 414, 409, 419, 407,
+ -281, 410, 412, 293, -403, 429, 253, 416, 240, 402,
+ 411, 420, 421, 317, 427, 422, 328, 426, 302, 423,
+ 424, 425, -387, 192, 726, 741, 331, 339, 149, 363,
+ 406, 404, 430, 705, 100, -307, 100, 101, 102, -294,
+ 331, -310, 336, -295, -387, -294, 334, -79, -79, -312,
+ -312, -130, -210, -145, 157, -159, -261, -162, 101, -150,
+ -153, -204, -205, -206, -207, -160, -220, -259, 181, 182,
+ 189, 158, -216, -163, 29, 592, 488, 487, 192, 34,
+ 235, 77, 78, 490, 491, 160, 63, 15, 453, 454,
+ -161, 443, 444, 455, 449, 450, 516, 518, 519, 520,
+ 517, 522, 523, 524, 525, 526, 527, 528, 529, 530,
+ 531, 521, 532, 493, 494, 129, 495, 117, 119, 118,
+ 127, 128, 496, 497, 498, 360, 544, 545, 539, 542,
+ 543, 541, 540, 375, 376, 499, 562, 563, 567, 566,
+ 564, 565, 568, 571, 572, 573, 574, 575, 576, 578,
+ 577, 569, 570, 547, 546, 548, 549, 550, 551, 552,
+ 553, 555, 554, 556, 557, 558, 559, 560, 561, 579,
+ 580, 581, 582, 583, 585, 584, 589, 588, 586, 587,
+ 591, 590, 500, 501, 120, 121, 122, 123, 124, 125,
+ 126, 502, 505, 503, 504, 506, 507, 508, 513, 514,
+ 509, 510, 511, 512, 515, 386, 384, 385, 381, 380,
+ 379, -89, -102, 619, 618, -103, 440, 445, 446, 448,
+ -151, -152, -165, -166, -295, -301, 258, 442, 252, 187,
+ 486, -154, -148, -218, 116, 102, -31, -214, 441, 451,
+ 452, 456, 447, 457, 605, 607, 622, 623, 625, 610,
+ 615, 614, 617, 533, 534, 535, 536, 537, 538, 690,
+ 691, 692, 693, 694, 695, 696, 697, -387, -294, 100,
+ -157, -155, -199, 103, 108, 111, 112, 114, -409, 276,
+ 356, 357, 130, -419, 719, -156, 105, 106, 107, 132,
+ 133, 193, 194, 195, 196, 197, 198, 199, 200, 201,
202, 203, 204, 205, 206, 207, 208, 209, 210, 211,
212, 213, 214, 215, 216, 217, 218, 219, 220, 221,
222, 223, 224, 225, 226, 227, 228, 229, 230, 231,
- 232, 233, 98, 104, 50, 414, 414, -190, -79, -79,
- -79, -79, -416, 721, 596, -230, -128, -232, -33, -31,
- -419, 12, -79, -31, -32, -30, -36, -38, 623, -37,
- -301, 109, -237, -253, 16, 67, 175, 48, 56, -235,
- -236, -34, -31, -145, 23, 41, 27, -132, 182, -145,
- -301, -132, -279, 256, -79, -79, -268, -315, 330, -270,
- 429, 704, 428, -260, -273, 100, -259, -272, 427, 101,
- -357, 172, -343, -347, -295, 267, -373, 263, -190, -366,
- -365, -295, -419, -129, -289, 253, 261, 260, 149, -390,
- 152, 309, 441, 251, -53, -54, -55, -272, 190, 724,
- -111, 284, 288, 96, 96, -347, -346, -345, -391, 288,
- 267, -372, -364, 259, 268, -353, 260, 261, -348, 253,
- 150, -391, -348, 258, 268, 263, 267, 288, 288, 139,
- 288, 139, 288, 288, 288, 288, 288, 288, 288, 288,
- 288, 283, -354, 164, -354, 599, 599, -360, -391, 263,
- 253, -391, -391, 259, -291, -348, 255, 28, 255, 38,
- 38, -354, -354, -354, -272, 190, -354, -354, -354, -354,
- 296, 296, -354, -354, -354, -354, -354, -354, -354, -354,
- -354, -354, -354, -354, -354, -354, -354, -354, -354, 252,
- -390, -137, 425, 316, 90, -56, 298, -39, -190, -289,
- 253, 254, -390, 285, -190, 235, 252, 707, -283, 172,
- 19, -283, -280, 414, 412, 399, 404, -283, -283, -283,
- -283, 299, 397, -349, 253, 38, 264, 414, 299, 397,
- 299, 300, 299, 300, 407, 417, 299, -306, 18, 175,
- 441, 402, 406, 292, 252, 293, 254, 416, 300, -306,
- 98, -284, 172, 299, 414, 408, 295, -283, -283, -313,
- -419, -297, -295, -293, 244, 41, 155, 28, 30, 158,
- 191, 142, 23, 159, 40, 246, 362, 263, 190, 259,
- 486, 239, 81, 604, 442, 449, 440, 448, 452, 488,
- 489, 441, 400, 34, 17, 606, 31, 273, 27, 44,
- 184, 241, 162, 607, 276, 29, 274, 129, 133, 609,
- 26, 84, 268, 18, 261, 46, 20, 610, 611, 21,
- 74, 257, 256, 175, 253, 79, 15, 234, 32, 171,
- 75, 612, 150, 145, 613, 614, 615, 616, 143, 77,
- 172, 24, 744, 450, 451, 36, 705, 591, 287, 186,
- 82, 65, 706, 156, 446, 617, 618, 130, 619, 134,
- 85, 711, 152, 22, 80, 48, 620, 288, 621, 258,
- 745, 622, 432, 623, 173, 242, 485, 78, 174, 718,
- 624, 719, 251, 413, 12, 491, 35, 272, 260, 73,
- 72, 141, 76, 456, 625, 252, 161, 255, 144, 132,
- 11, 149, 37, 16, 83, 86, 453, 454, 455, 63,
- 140, 595, 160, 19, 626, 433, 154, -387, 707, -313,
- -313, 299, 339, 35, 101, -413, -414, -415, 595, 432,
- 255, -295, -190, -85, 697, 243, -86, 703, 41, 250,
- -135, 414, -123, 191, 725, 708, 709, 710, 707, 411,
- 715, 713, 711, 299, 712, 96, 152, 154, 155, 4,
- -145, 171, -200, -201, 170, 164, 165, 166, 167, 168,
- 169, 176, 175, 156, 158, 172, -246, 153, 177, 178,
- 179, 180, 181, 182, 183, 185, 184, 186, 187, 173,
- 174, 190, 237, 238, -153, -153, -153, -153, -216, -222,
- -221, -419, -218, -387, -294, -301, -419, -419, -153, -278,
- -419, -150, -419, -419, -419, -419, -419, -225, -145, -419,
- -419, -423, -419, -423, -423, -423, -332, -419, -332, -332,
+ 232, 233, 234, 98, 104, 50, 415, 415, -190, -79,
+ -79, -79, -79, -416, 722, 597, -230, -128, -232, -33,
+ -31, -419, 12, -79, -31, -32, -30, -36, -38, 624,
+ -37, -301, 109, -237, -253, 16, 67, 176, 48, 56,
+ -235, -236, -34, -31, -145, 23, 41, 27, -132, 183,
+ -145, -301, -132, -279, 257, -79, -79, -268, -315, 331,
+ -270, 430, 705, 429, -260, -273, 100, -259, -272, 428,
+ 101, -357, 173, -343, -347, -295, 268, -373, 264, -190,
+ -366, -365, -295, -419, -129, -289, 254, 262, 261, 150,
+ -390, 153, 310, 442, 252, -53, -54, -55, -272, 191,
+ 725, -111, 285, 289, 96, 96, -347, -346, -345, -391,
+ 289, 268, -372, -364, 260, 269, -353, 261, 262, -348,
+ 254, 151, -391, -348, 259, 269, 264, 268, 289, 289,
+ 139, 289, 139, 289, 289, 289, 289, 289, 289, 289,
+ 289, 289, 284, -354, 165, -354, 600, 600, -360, -391,
+ 264, 254, -391, -391, 260, -291, -348, 256, 28, 256,
+ 38, 38, -354, -354, -354, -272, 191, -354, -354, -354,
+ -354, 297, 297, -354, -354, -354, -354, -354, -354, -354,
+ -354, -354, -354, -354, -354, -354, -354, -354, -354, -354,
+ 253, -390, -137, 426, 317, 90, -56, 299, -39, -190,
+ -289, 254, 255, -390, 286, -190, 236, 253, 708, -283,
+ 173, 19, -283, -280, 415, 413, 400, 405, -283, -283,
+ -283, -283, 300, 398, -349, 254, 38, 265, 415, 300,
+ 398, 300, 301, 300, 301, 408, 418, 300, -306, 18,
+ 176, 442, 403, 407, 293, 253, 294, 255, 417, 301,
+ -306, 98, -284, 173, 300, 415, 409, 296, -283, -283,
+ -313, -419, -297, -295, -293, 245, 41, 156, 28, 30,
+ 159, 192, 142, 23, 160, 40, 247, 363, 264, 191,
+ 260, 487, 240, 81, 605, 443, 450, 441, 449, 453,
+ 489, 490, 442, 401, 34, 17, 607, 31, 274, 27,
+ 44, 185, 242, 163, 608, 277, 29, 275, 129, 133,
+ 610, 26, 84, 269, 18, 262, 46, 20, 611, 612,
+ 21, 74, 258, 257, 176, 254, 79, 15, 235, 32,
+ 172, 75, 613, 151, 145, 614, 615, 616, 617, 143,
+ 77, 173, 24, 745, 451, 452, 36, 706, 592, 288,
+ 187, 82, 65, 707, 157, 447, 618, 619, 130, 620,
+ 134, 85, 712, 153, 22, 80, 48, 621, 289, 622,
+ 259, 746, 623, 433, 624, 174, 243, 486, 78, 175,
+ 719, 625, 720, 252, 414, 12, 492, 35, 273, 261,
+ 73, 72, 141, 76, 457, 626, 253, 162, 256, 144,
+ 132, 11, 150, 37, 16, 83, 86, 454, 455, 456,
+ 63, 140, 596, 161, 19, 627, 434, 155, -387, 708,
+ -313, -313, 300, 340, 35, 101, -413, -414, -415, 596,
+ 433, 256, -295, -190, -85, 698, 244, -86, 704, 41,
+ 251, 146, -135, 415, -123, 192, 726, 709, 710, 711,
+ 708, 412, 716, 714, 712, 300, 713, 96, 153, 155,
+ 156, 4, -145, 172, -200, -201, 171, 165, 166, 167,
+ 168, 169, 170, 177, 176, 157, 159, 173, -246, 154,
+ 178, 179, 180, 181, 182, 183, 184, 186, 185, 187,
+ 188, 174, 175, 191, 238, 239, -153, -153, -153, -153,
+ -216, -222, -221, -419, -218, -387, -294, -301, -419, -419,
+ -153, -278, -419, -150, -419, -419, -419, -419, -419, -225,
+ -145, -419, -419, -423, -419, -423, -423, -423, -332, -419,
+ -332, -332, -419, -419, -419, -419, -419, -419, -419, -419,
-419, -419, -419, -419, -419, -419, -419, -419, -419, -419,
-419, -419, -419, -419, -419, -419, -419, -419, -419, -419,
-419, -419, -419, -419, -419, -419, -419, -419, -419, -419,
@@ -9248,396 +9150,396 @@ var yyChk = [...]int{
-419, -419, -419, -419, -419, -419, -419, -419, -419, -419,
-419, -419, -419, -419, -419, -419, -419, -419, -419, -419,
-419, -419, -419, -419, -419, -419, -419, -419, -419, -419,
+ -419, -419, -419, -419, -419, -419, -419, 236, -419, -419,
+ -419, -419, -419, -332, -332, -332, -332, -332, -332, -419,
-419, -419, -419, -419, -419, -419, -419, -419, -419, -419,
- -419, -419, -419, -419, -419, 235, -419, -419, -419, -419,
- -419, -332, -332, -332, -332, -332, -332, -419, -419, -419,
- -419, -419, -419, -419, -419, -419, -419, -419, -419, -419,
- -419, 98, 112, 108, 111, 103, -220, 114, 98, 98,
- 98, 98, -31, -32, -210, -419, -312, -400, -401, -193,
- -190, -419, 316, -295, -295, 285, 105, -235, -34, -31,
- -230, -236, -232, -31, -79, -121, -134, 69, 70, -133,
- -136, 27, 44, 74, 76, 99, 72, 73, 71, 41,
- -420, 97, -420, -253, -420, 96, -38, -256, 95, 651,
- 681, 651, 681, 67, 49, 98, 98, 96, 25, -231,
- -233, -145, 18, -299, 4, -298, 28, -295, 98, 235,
- 18, -191, 32, -190, -279, -279, 96, 100, 330, -269,
- -271, 430, 432, 164, -300, -295, 98, 34, 97, 96,
- -190, -321, -324, -326, -325, -327, -322, -323, 359, 360,
- 191, 363, 365, 366, 367, 368, 369, 370, 371, 372,
- 373, 376, 388, 35, 275, 355, 356, 357, 358, 377,
- 378, 379, 380, 382, 383, 384, 385, 340, 361, 593,
- 341, 342, 343, 344, 345, 346, 348, 349, 352, 350,
- 351, 353, 354, -296, -295, 95, 97, 96, -331, 95,
- -145, -137, 252, -295, 253, 253, 253, -286, 257, 485,
- -354, -354, -354, 283, 23, -46, -43, -380, 22, -42,
- -43, 244, 135, 136, 241, 95, -343, 95, -352, -296,
- -295, 95, 150, 258, 149, -351, -348, -351, -352, -295,
- -218, -295, 150, 150, -295, -295, -265, -295, -265, -265,
- 41, -265, 41, -265, 41, 105, -295, -265, 41, -265,
- 41, -265, 41, -265, 41, -265, 41, 34, 87, 88,
- 89, 34, 91, 92, 93, -218, -295, -295, -218, -343,
- -218, -190, -295, -272, 105, 105, 105, -354, -354, 105,
- 98, 98, 98, -354, -354, 105, 98, -303, -301, 98,
- 98, -392, 269, 313, 315, 105, 105, 105, 105, 34,
- 98, -393, 34, 732, 731, 733, 734, 735, 98, 105,
- 34, 105, 34, 105, -295, 95, -190, -143, 303, 239,
- 241, 244, 85, 98, 321, 319, 320, 317, 322, 323,
- 324, 164, 50, 96, 255, 252, -295, -285, 257, -285,
- -295, -302, -301, -293, -190, 255, 396, 98, -145, -350,
- 18, 175, -306, -306, -283, -190, -350, -306, -283, -190,
- -283, -283, -283, -283, -306, -306, -306, -283, -301, -301,
- -190, -190, -190, -190, -190, -190, -190, -313, -284, -283,
- 707, 98, -277, 18, 85, -313, -313, -292, 26, 26,
- 96, 336, 433, 434, -311, 333, -81, -295, 98, -10,
- -29, -18, -17, -19, 164, -10, 96, 595, -183, -190,
- 707, 707, 707, 707, 707, 707, -145, -145, -145, -145,
- 619, -208, -411, 156, 132, 133, 130, 131, -162, 42,
- 43, 41, -145, -209, -214, -216, 115, 175, 158, 172,
- -246, -150, -153, -150, -150, -150, -150, -150, -150, 234,
- -150, 234, -150, -150, -150, -150, -150, -150, -314, -295,
- 98, 191, -158, -157, 114, -409, -158, 592, 96, -221,
- 235, -145, -145, -387, -119, 458, 459, 460, 461, 463,
- 464, 465, 468, 469, 473, 474, 457, 475, 462, 467,
- 470, 471, 472, 466, 358, -145, -211, -210, -211, -145,
- -145, -223, -224, 160, -218, -145, -420, -420, 105, 182,
- -127, 27, 44, -127, -127, -127, -127, -145, -145, -145,
- -145, -145, -145, -145, -145, -145, -145, -127, -145, -120,
- 457, 475, 462, 467, 470, 471, 472, 466, 358, 476,
- 477, 478, 479, 480, 481, 482, 483, 484, -120, -119,
- -145, -145, -145, -145, -145, -145, -145, -145, -87, -145,
- 142, 143, 144, -210, -145, -150, -145, -145, -145, -420,
- -145, -145, -145, -211, -145, -145, -145, -145, -145, -145,
+ -419, -419, -419, 98, 112, 108, 111, 103, -220, 114,
+ 98, 98, 98, 98, -31, -32, -210, -419, -312, -400,
+ -401, -193, -190, -419, 317, -295, -295, 286, 105, -235,
+ -34, -31, -230, -236, -232, -31, -79, -121, -134, 69,
+ 70, -133, -136, 27, 44, 74, 76, 99, 72, 73,
+ 71, 41, -420, 97, -420, -253, -420, 96, -38, -256,
+ 95, 652, 682, 652, 682, 67, 49, 98, 98, 96,
+ 25, -231, -233, -145, 18, -299, 4, -298, 28, -295,
+ 98, 236, 18, -191, 32, -190, -279, -279, 96, 100,
+ 331, -269, -271, 431, 433, 165, -300, -295, 98, 34,
+ 97, 96, -190, -321, -324, -326, -325, -327, -322, -323,
+ 360, 361, 192, 364, 366, 367, 368, 369, 370, 371,
+ 372, 373, 374, 377, 389, 35, 276, 356, 357, 358,
+ 359, 378, 379, 380, 381, 383, 384, 385, 386, 341,
+ 362, 594, 342, 343, 344, 345, 346, 347, 349, 350,
+ 353, 351, 352, 354, 355, -296, -295, 95, 97, 96,
+ -331, 95, -145, -137, 253, -295, 254, 254, 254, -286,
+ 258, 486, -354, -354, -354, 284, 23, -46, -43, -380,
+ 22, -42, -43, 245, 135, 136, 242, 95, -343, 95,
+ -352, -296, -295, 95, 151, 259, 150, -351, -348, -351,
+ -352, -295, -218, -295, 151, 151, -295, -295, -265, -295,
+ -265, -265, 41, -265, 41, -265, 41, 105, -295, -265,
+ 41, -265, 41, -265, 41, -265, 41, -265, 41, 34,
+ 87, 88, 89, 34, 91, 92, 93, -218, -295, -295,
+ -218, -343, -218, -190, -295, -272, 105, 105, 105, -354,
+ -354, 105, 98, 98, 98, -354, -354, 105, 98, -303,
+ -301, 98, 98, -392, 270, 314, 316, 105, 105, 105,
+ 105, 34, 98, -393, 34, 733, 732, 734, 735, 736,
+ 98, 105, 34, 105, 34, 105, -295, 95, -190, -143,
+ 304, 240, 242, 245, 85, 98, 322, 320, 321, 318,
+ 323, 324, 325, 165, 50, 96, 256, 253, -295, -285,
+ 258, -285, -295, -302, -301, -293, -190, 256, 397, 98,
+ -145, -350, 18, 176, -306, -306, -283, -190, -350, -306,
+ -283, -190, -283, -283, -283, -283, -306, -306, -306, -283,
+ -301, -301, -190, -190, -190, -190, -190, -190, -190, -313,
+ -284, -283, 708, 98, -277, 18, 85, -313, -313, -292,
+ 26, 26, 96, 337, 434, 435, -311, 334, -81, -295,
+ 98, -10, -29, -18, -17, -19, 165, -10, 96, 596,
+ -183, -190, 708, 708, 708, 708, 708, 708, -145, -145,
+ -145, -145, 620, -208, -411, 157, 132, 133, 130, 131,
+ -162, 42, 43, 41, -145, -209, -214, -216, 115, 176,
+ 159, 173, -246, -150, -153, -150, -150, -150, -150, -150,
+ -150, 235, -150, 235, -150, -150, -150, -150, -150, -150,
+ -314, -295, 98, 192, -158, -157, 114, -409, -158, 593,
+ 96, -221, 236, -145, -145, -387, -119, 459, 460, 461,
+ 462, 464, 465, 466, 469, 470, 474, 475, 458, 476,
+ 463, 468, 471, 472, 473, 467, 359, -145, -211, -210,
+ -211, -145, -145, -223, -224, 161, -218, -145, -420, -420,
+ 105, 183, -127, 27, 44, -127, -127, -127, -127, -145,
+ -145, -145, -145, -145, -145, -145, -145, -145, -145, -127,
+ -145, -120, 458, 476, 463, 468, 471, 472, 473, 467,
+ 359, 477, 478, 479, 480, 481, 482, 483, 484, 485,
+ -120, -119, -145, -145, -145, -145, -145, -145, -145, -145,
+ -87, -145, 142, 143, 144, -210, -145, -150, -145, -145,
+ -145, -420, -145, -145, -145, -211, -145, -145, -145, -145,
-145, -145, -145, -145, -145, -145, -145, -145, -145, -145,
-145, -145, -145, -145, -145, -145, -145, -145, -145, -145,
-145, -145, -145, -145, -145, -145, -145, -145, -145, -145,
-145, -145, -145, -145, -145, -145, -145, -145, -145, -145,
- -386, -385, -384, -145, -145, -145, -145, -145, -145, -145,
+ -145, -145, -386, -385, -384, -145, -145, -145, -145, -145,
-145, -145, -145, -145, -145, -145, -145, -145, -145, -145,
- -145, -145, -145, -145, -145, -145, -210, -210, -210, -210,
- -210, -145, -420, -145, -164, -148, 105, -261, 114, 101,
- -145, -145, -145, -145, -145, -145, -211, -297, -302, -293,
- -294, -210, -211, -211, -210, -210, -145, -145, -145, -145,
- -145, -145, -145, -145, -420, -145, -145, -145, -145, -145,
- -253, -420, -210, 96, -402, 432, 433, 705, -304, 288,
- -303, 28, -211, 98, 18, -263, 86, -295, -235, -235,
- 69, 70, 65, -131, -132, -136, -420, -37, 28, -255,
- -295, 644, 644, 68, 98, -333, -272, 386, 387, 191,
- -145, -145, 96, -234, 30, 31, -190, -298, 182, -302,
- -190, -264, 288, -190, -168, -170, -171, -172, -193, -217,
- -419, -173, -31, 615, 612, 18, -183, -184, -192, -301,
- -270, -315, -269, 96, 431, 433, 434, 85, 134, -145,
- -334, 190, -362, -361, -360, -343, -345, -346, -347, 97,
- -334, -339, 393, 392, -331, -331, -331, -331, -331, -333,
- -333, -333, -333, 95, -331, 95, -331, -331, -331, -331,
- -336, 95, -336, -336, -337, -336, 95, -337, -338, 95,
- -338, -373, -145, -370, -369, -367, -368, 262, 110, 687,
- 643, 595, 636, 677, 86, -365, -234, 105, -420, -143,
- -286, -371, -368, -295, -295, -295, -301, 156, 100, 98,
- 100, 98, 100, 98, -112, -60, -1, 744, 745, 746,
- 96, 23, -344, -343, -59, 313, -376, -377, 288, -372,
- -366, -352, 150, -351, -352, -352, -295, 96, 32, 139,
- 139, 139, 139, 595, 241, 35, -287, 635, 156, 687,
- 643, -343, -59, 255, 255, -314, -314, -314, 98, 98,
- -282, 740, -183, -139, 305, 164, 294, 294, 252, 307,
- 252, 307, -190, 318, 321, 319, 320, 317, 322, 323,
- 324, 41, 41, 41, 41, 41, 41, 41, 306, 308,
- 310, 296, -190, -190, -285, 85, -185, -190, 29, -301,
- 98, 98, -190, -283, -283, -190, -283, -283, -190, 98,
- -301, -415, 337, -295, 373, 698, 700, -123, 432, 96,
- 595, 26, -124, 26, -419, -411, 132, 133, -216, -216,
- -216, -209, -150, -153, -150, 155, 276, -150, -150, -419,
- -218, -420, -297, 28, 96, 86, -420, 180, 96, -420,
- -420, 96, 18, 96, -226, -224, 162, -145, -420, 96,
- -420, -420, -210, -145, -145, -145, -145, -420, -420, -420,
- -420, -420, -420, -420, -420, -420, -420, -210, -420, 96,
- 96, 18, -318, 28, -420, -420, -420, -420, 96, -420,
- -420, -225, -420, 18, -420, 86, 96, 175, 96, -420,
- -420, -420, 96, 96, -420, -420, 96, -420, 96, -420,
- -420, -420, -420, -420, -420, 96, -420, 96, -420, -420,
- -420, 96, -420, 96, -420, -420, 96, -420, 96, -420,
+ -145, -145, -145, -145, -145, -145, -145, -145, -210, -210,
+ -210, -210, -210, -145, -420, -145, -164, -148, 105, -261,
+ 114, 101, -145, -145, -145, -145, -145, -145, -211, -297,
+ -302, -293, -294, -210, -211, -211, -210, -210, -145, -145,
+ -145, -145, -145, -145, -145, -145, -420, -145, -145, -145,
+ -145, -145, -253, -420, -210, 96, -402, 433, 434, 706,
+ -304, 289, -303, 28, -211, 98, 18, -263, 86, -295,
+ -235, -235, 69, 70, 65, -131, -132, -136, -420, -37,
+ 28, -255, -295, 645, 645, 68, 98, -333, -272, 387,
+ 388, 192, -145, -145, 96, -234, 30, 31, -190, -298,
+ 183, -302, -190, -264, 289, -190, -168, -170, -171, -172,
+ -193, -217, -419, -173, -31, 616, 613, 18, -183, -184,
+ -192, -301, -270, -315, -269, 96, 432, 434, 435, 85,
+ 134, -145, -334, 191, -362, -361, -360, -343, -345, -346,
+ -347, 97, -334, -339, 394, 393, -331, -331, -331, -331,
+ -331, -333, -333, -333, -333, 95, -331, 95, -331, -331,
+ -331, -331, -336, 95, -336, -336, -337, -336, 95, -337,
+ -338, 95, -338, -373, -145, -370, -369, -367, -368, 263,
+ 110, 688, 644, 596, 637, 678, 86, -365, -234, 105,
+ -420, -143, -286, -371, -368, -295, -295, -295, -301, 157,
+ 100, 98, 100, 98, 100, 98, -112, -60, -1, 745,
+ 746, 747, 96, 23, -344, -343, -59, 314, -376, -377,
+ 289, -372, -366, -352, 151, -351, -352, -352, -295, 96,
+ 32, 139, 139, 139, 139, 596, 242, 35, -287, 636,
+ 157, 688, 644, -343, -59, 256, 256, -314, -314, -314,
+ 98, 98, -282, 741, -183, -139, 306, 165, 295, 295,
+ 253, 308, 253, 308, -190, 319, 322, 320, 321, 318,
+ 323, 324, 325, 41, 41, 41, 41, 41, 41, 41,
+ 307, 309, 311, 297, -190, -190, -285, 85, -185, -190,
+ 29, -301, 98, 98, -190, -283, -283, -190, -283, -283,
+ -190, 98, -301, -415, 338, -295, 374, 699, 701, -123,
+ 433, 96, 596, 26, -124, 26, -419, -411, 132, 133,
+ -216, -216, -216, -209, -150, -153, -150, 156, 277, -150,
+ -150, -419, -218, -420, -297, 28, 96, 86, -420, 181,
+ 96, -420, -420, 96, 18, 96, -226, -224, 163, -145,
+ -420, 96, -420, -420, -210, -145, -145, -145, -145, -420,
+ -420, -420, -420, -420, -420, -420, -420, -420, -420, -210,
+ -420, 96, 96, 18, -318, 28, -420, -420, -420, -420,
+ 96, -420, -420, -225, -420, 18, -420, 86, 96, 176,
+ 96, -420, -420, -420, 96, 96, -420, -420, 96, -420,
+ 96, -420, -420, -420, -420, -420, -420, 96, -420, 96,
+ -420, -420, -420, 96, -420, 96, -420, -420, 96, -420,
96, -420, 96, -420, 96, -420, 96, -420, 96, -420,
96, -420, 96, -420, 96, -420, 96, -420, 96, -420,
96, -420, 96, -420, 96, -420, 96, -420, 96, -420,
- 96, -420, -420, -420, 96, -420, 96, -420, 96, -420,
- -420, 96, -420, 96, -420, 96, -420, 96, 96, -420,
- 96, 96, 96, -420, 96, 96, 96, 96, -420, -420,
- -420, -420, 96, 96, 96, 96, 96, 96, 96, 96,
- 96, 96, -420, -420, -420, -420, -420, -420, 96, -94,
- 620, -420, -420, 96, -420, 96, 96, 96, 96, 96,
- -420, -419, 235, -420, -420, -420, -420, -420, 96, 96,
- 96, 96, 96, 96, -420, -420, -420, 96, 96, -420,
- 96, -420, 96, -420, -401, 704, 433, -197, -196, -194,
- 83, 256, 84, -419, -303, -420, -158, -261, -262, -261,
- -203, -295, 105, 114, -237, -167, 96, -169, 18, -216,
- 97, 96, -333, -241, -247, -280, -295, 98, 191, -335,
- 191, -335, 386, 387, -233, 235, -198, 19, -202, 35,
- 63, -29, -419, -419, 35, 96, -186, -188, -187, -189,
- 75, 79, 81, 76, 77, 78, 82, -309, 28, -31,
- -168, -31, -419, -190, -183, -421, 18, 86, -421, 96,
- 235, -271, -274, 435, 432, 438, -387, 98, -111, 96,
- -360, -347, -238, -140, 46, -340, 394, -333, 603, -333,
- -342, 98, -342, 105, 105, 105, 97, -49, -44, -45,
- 36, 90, -367, -354, 98, 45, -354, -354, -295, 97,
- -234, -139, -190, 85, -371, -371, -371, 29, -2, 743,
- 749, 150, 95, 399, 22, -255, 96, 97, -219, 314,
- 97, -113, -295, 97, 95, -352, -352, -295, -419, 252,
- 34, 34, 687, 643, 635, -59, -219, -218, -295, -334,
- 742, 741, 97, 254, 312, -144, 452, -141, 98, 100,
- -190, -190, -190, -190, -190, -190, 244, 241, 422, -410,
- 325, -410, 297, 255, -183, -190, 96, -84, 271, 266,
- -306, -306, 36, -190, 432, 716, 714, -145, 155, 276,
- -162, -153, -119, -119, -150, -316, 191, 359, 275, 357,
- 353, 373, 364, 392, 355, 393, 350, 349, 348, -316,
- -314, -150, -210, -145, -145, -145, 163, -145, 161, -145,
- -95, -94, -420, -420, -420, -420, -420, -95, -95, -95,
- -95, -95, -95, -95, -95, -95, -95, -230, -145, -145,
- -145, -420, 191, 359, -95, -145, 18, -145, -314, -145,
- -145, -145, -145, -145, -145, -145, -145, -145, -145, -145,
+ 96, -420, 96, -420, -420, -420, 96, -420, 96, -420,
+ 96, -420, -420, 96, -420, 96, -420, 96, -420, 96,
+ 96, -420, 96, 96, 96, -420, 96, 96, 96, 96,
+ -420, -420, -420, -420, 96, 96, 96, 96, 96, 96,
+ 96, 96, 96, 96, -420, -420, -420, -420, -420, -420,
+ 96, -94, 621, -420, -420, 96, -420, 96, 96, 96,
+ 96, 96, -420, -419, 236, -420, -420, -420, -420, -420,
+ 96, 96, 96, 96, 96, 96, -420, -420, -420, 96,
+ 96, -420, 96, -420, 96, -420, -401, 705, 434, -197,
+ -196, -194, 83, 257, 84, -419, -303, -420, -158, -261,
+ -262, -261, -203, -295, 105, 114, -237, -167, 96, -169,
+ 18, -216, 97, 96, -333, -241, -247, -280, -295, 98,
+ 192, -335, 192, -335, 387, 388, -233, 236, -198, 19,
+ -202, 35, 63, -29, -419, -419, 35, 96, -186, -188,
+ -187, -189, 75, 79, 81, 76, 77, 78, 82, -309,
+ 28, -31, -168, -31, -419, -190, -183, -421, 18, 86,
+ -421, 96, 236, -271, -274, 436, 433, 439, -387, 98,
+ -111, 96, -360, -347, -238, -140, 46, -340, 395, -333,
+ 604, -333, -342, 98, -342, 105, 105, 105, 97, -49,
+ -44, -45, 36, 90, -367, -354, 98, 45, -354, -354,
+ -295, 97, -234, -139, -190, 85, -371, -371, -371, 29,
+ -2, 744, 750, 151, 95, 400, 22, -255, 96, 97,
+ -219, 315, 97, -113, -295, 97, 95, -352, -352, -295,
+ -419, 253, 34, 34, 688, 644, 636, -59, -219, -218,
+ -295, -334, 743, 742, 97, 255, 313, -144, 453, -141,
+ 98, 100, -190, -190, -190, -190, -190, -190, 245, 242,
+ 423, -410, 326, -410, 298, 256, -183, -190, 96, -84,
+ 272, 267, -306, -306, 36, -190, 433, 717, 715, -145,
+ 156, 277, -162, -153, -119, -119, -150, -316, 192, 360,
+ 276, 358, 354, 374, 365, 393, 356, 394, 351, 350,
+ 349, -316, -314, -150, -210, -145, -145, -145, 164, -145,
+ 162, -145, -95, -94, -420, -420, -420, -420, -420, -95,
+ -95, -95, -95, -95, -95, -95, -95, -95, -95, -230,
+ -145, -145, -145, -420, 192, 360, -95, -145, 18, -145,
+ -314, -145, -145, -145, -145, -145, -145, -145, -145, -145,
-145, -145, -145, -145, -145, -145, -145, -145, -145, -145,
-145, -145, -145, -145, -145, -145, -145, -145, -145, -145,
- -145, -145, -145, -145, -384, -145, -210, -145, -210, -145,
- -145, -145, -145, -145, -385, -385, -385, -385, -385, -210,
- -210, -210, -210, -145, -419, -295, -98, -97, -96, 670,
- 256, -94, -164, -98, -164, 234, -145, 234, 234, 234,
- -145, -211, -297, -145, -145, -145, -145, -145, -145, -145,
- -145, -145, -145, -194, -348, 294, -348, 294, -348, -265,
- 96, -276, 26, 18, 63, 63, -167, -198, -132, -168,
- -295, -244, 697, -250, 52, -248, -249, 53, -245, 54,
- 62, -335, -335, 182, -235, -145, -266, 85, -267, -275,
- -218, -213, -215, -214, -419, -254, -420, -295, -265, -267,
- -170, -171, -171, -170, -171, 75, 75, 75, 80, 75,
- 80, 75, -187, -301, -420, -145, -304, 86, -168, -168,
- -192, -301, 182, 432, 436, 437, -360, -408, 130, 156,
- 34, 85, 390, 110, -406, 190, 632, 682, 687, 643,
- 636, 677, -407, 258, 149, 150, 270, 28, 47, 97,
- 96, 97, 96, 97, 97, 96, -288, -287, -45, -44,
- -354, -354, 105, -387, 98, 98, 254, -190, 85, 85,
- 85, -114, 747, 105, 95, -3, 90, -145, 95, 23,
- -343, -218, -378, -328, -379, -329, -330, -5, -6, -355,
- -117, 63, 110, -63, 50, 253, 727, 728, 139, -419,
- 740, -370, -255, -374, -376, -190, -149, -419, -161, -147,
- -146, -148, -154, 180, 181, 275, 355, 356, -219, -190,
- -138, 303, 311, 95, -142, 101, -389, 86, 294, 390,
- 294, 390, 98, -412, 326, 98, -412, -190, -84, -49,
- -190, -283, -283, 36, -387, -420, -162, -153, -126, 175,
- 595, -319, 602, -331, -331, -331, -338, -331, 345, -331,
- 345, -331, -420, -420, -420, 96, -420, 26, -420, 96,
- -145, 96, -95, -95, -95, -95, -95, -122, 491, 96,
- 96, -420, 95, 95, -420, -145, -420, -420, -420, 96,
- -420, -420, -420, -420, -420, -420, -420, -420, -420, -420,
- -420, -420, -420, 96, -420, 96, -420, 96, -420, 96,
+ -145, -145, -145, -145, -145, -145, -384, -145, -210, -145,
+ -210, -145, -145, -145, -145, -145, -385, -385, -385, -385,
+ -385, -210, -210, -210, -210, -145, -419, -295, -98, -97,
+ -96, 671, 257, -94, -164, -98, -164, 235, -145, 235,
+ 235, 235, -145, -211, -297, -145, -145, -145, -145, -145,
+ -145, -145, -145, -145, -145, -194, -348, 295, -348, 295,
+ -348, -265, 96, -276, 26, 18, 63, 63, -167, -198,
+ -132, -168, -295, -244, 698, -250, 52, -248, -249, 53,
+ -245, 54, 62, -335, -335, 183, -235, -145, -266, 85,
+ -267, -275, -218, -213, -215, -214, -419, -254, -420, -295,
+ -265, -267, -170, -171, -171, -170, -171, 75, 75, 75,
+ 80, 75, 80, 75, -187, -301, -420, -145, -304, 86,
+ -168, -168, -192, -301, 183, 433, 437, 438, -360, -408,
+ 130, 157, 34, 85, 391, 110, -406, 191, 633, 683,
+ 688, 644, 637, 678, -407, 259, 150, 151, 271, 28,
+ 47, 97, 96, 97, 96, 97, 97, 96, -288, -287,
+ -45, -44, -354, -354, 105, -387, 98, 98, 255, -190,
+ 85, 85, 85, -114, 748, 105, 95, -3, 90, -145,
+ 95, 23, -343, -218, -378, -328, -379, -329, -330, -5,
+ -6, -355, -117, 63, 110, -63, 50, 254, 728, 729,
+ 139, -419, 741, -370, -255, -374, -376, -190, -149, -419,
+ -161, -147, -146, -148, -154, 181, 182, 276, 356, 357,
+ -219, -190, -138, 304, 312, 95, -142, 101, -389, 86,
+ 295, 391, 295, 391, 98, -412, 327, 98, -412, -190,
+ -84, -49, -190, -283, -283, 36, -387, -420, -162, -153,
+ -126, 176, 596, -319, 603, -331, -331, -331, -338, -331,
+ 346, -331, 346, -331, -420, -420, -420, 96, -420, 26,
+ -420, 96, -145, 96, -95, -95, -95, -95, -95, -122,
+ 492, 96, 96, -420, 95, 95, -420, -145, -420, -420,
+ -420, 96, -420, -420, -420, -420, -420, -420, -420, -420,
+ -420, -420, -420, -420, -420, 96, -420, 96, -420, 96,
-420, 96, -420, 96, -420, 96, -420, 96, -420, 96,
-420, 96, -420, 96, -420, 96, -420, 96, -420, 96,
- -420, 96, -420, 96, -420, -420, 96, -420, -420, -420,
- 96, -420, 96, -420, 96, -420, -420, -420, 96, -317,
- 688, -420, -420, -420, -420, -420, -420, -420, -420, -420,
- -420, -420, -93, -296, -94, 652, 652, -420, -94, -227,
- 96, -150, -420, -150, -150, -150, -420, -420, -420, 96,
- -420, 96, 96, -420, 96, -420, 96, -420, -420, -420,
- -420, 96, -195, 26, -419, -195, -419, -195, -420, -261,
- -190, -198, -228, 20, -241, 57, 365, -252, -251, 61,
- 53, -249, 23, 55, 23, 33, -266, 96, 164, -308,
- 96, 28, -420, -420, 96, 63, 235, -420, -198, -181,
- -180, 85, 86, -182, 85, -180, 75, 75, -256, 96,
- -264, -168, -198, -198, 235, 130, -419, -149, 16, 98,
- 98, -387, -405, 731, 732, 34, 105, -354, -354, 150,
- 150, -190, 95, -333, 98, -333, 105, 105, 34, 91,
- 92, 93, 34, 87, 88, 89, -190, -190, -190, -190,
- -375, 95, 23, -145, 95, 164, 97, -255, -255, 290,
- 175, -354, 725, 296, 296, -354, -354, -354, -116, -115,
- 747, 97, -420, 96, -341, 595, 598, -145, -155, -155,
- -256, 97, -383, 595, -388, -295, -295, -295, -295, 105,
- 107, -420, 593, 82, 596, -420, -333, -145, -145, -145,
- -145, -235, 98, -145, -145, 105, 105, -95, -420, -145,
+ -420, 96, -420, 96, -420, 96, -420, -420, 96, -420,
+ -420, -420, 96, -420, 96, -420, 96, -420, -420, -420,
+ 96, -317, 689, -420, -420, -420, -420, -420, -420, -420,
+ -420, -420, -420, -420, -93, -296, -94, 653, 653, -420,
+ -94, -227, 96, -150, -420, -150, -150, -150, -420, -420,
+ -420, 96, -420, 96, 96, -420, 96, -420, 96, -420,
+ -420, -420, -420, 96, -195, 26, -419, -195, -419, -195,
+ -420, -261, -190, -198, -228, 20, -241, 57, 366, -252,
+ -251, 61, 53, -249, 23, 55, 23, 33, -266, 96,
+ 165, -308, 96, 28, -420, -420, 96, 63, 236, -420,
+ -198, -181, -180, 85, 86, -182, 85, -180, 75, 75,
+ -256, 96, -264, -168, -198, -198, 236, 130, -419, -149,
+ 16, 98, 98, -387, -405, 732, 733, 34, 105, -354,
+ -354, 151, 151, -190, 95, -333, 98, -333, 105, 105,
+ 34, 91, 92, 93, 34, 87, 88, 89, -190, -190,
+ -190, -190, -375, 95, 23, -145, 95, 165, 97, -255,
+ -255, 291, 176, -354, 726, 297, 297, -354, -354, -354,
+ -116, -115, 748, 97, -420, 96, -341, 596, 599, -145,
+ -155, -155, -256, 97, -383, 596, -388, -295, -295, -295,
+ -295, 105, 107, -420, 594, 82, 597, -420, -333, -145,
+ -145, -145, -145, -235, 98, -145, -145, 105, 105, -95,
+ -420, -145, -145, -145, -145, -145, -145, -145, -145, -145,
-145, -145, -145, -145, -145, -145, -145, -145, -145, -145,
- -145, -145, -145, -145, -145, -145, -145, -145, -145, -210,
- -145, -420, -178, -177, -179, 708, 130, 34, -316, -420,
- -212, 288, -101, -100, -99, 18, -420, -145, -119, -119,
- -119, -119, -145, -145, -145, -145, -145, -145, -419, 75,
- 22, 20, -258, -295, 258, -419, -258, -419, -304, -228,
- -229, 21, 23, -242, 59, -240, 58, -240, -251, 23,
- 23, 98, 23, 98, 150, -275, -145, -215, -303, 63,
- -29, -295, -213, -295, -230, -145, 95, -145, -158, -198,
- -198, -145, -205, 515, 517, 518, 519, 516, 521, 522,
- 523, 524, 525, 526, 527, 528, 529, 530, 520, 531,
- 492, 493, 494, 117, 119, 118, 127, 128, 495, 496,
- 497, 359, 543, 544, 538, 541, 542, 540, 539, 374,
- 375, 498, 561, 562, 566, 565, 563, 564, 567, 570,
- 571, 572, 573, 574, 575, 577, 576, 568, 569, 546,
- 545, 547, 548, 549, 550, 551, 552, 554, 553, 555,
- 556, 557, 558, 559, 560, 578, 579, 580, 581, 582,
- 584, 583, 588, 587, 585, 586, 590, 589, 499, 500,
- 120, 121, 122, 123, 124, 125, 126, 501, 504, 502,
- 505, 506, 507, 512, 513, 508, 509, 510, 511, 514,
- 385, 383, 384, 380, 379, 378, 439, 444, 445, 447,
- 532, 533, 534, 535, 536, 537, 689, 690, 691, 692,
- 693, 694, 695, 696, 98, 98, 95, -145, 97, 97,
- -256, -374, -60, 97, -257, -255, 105, 97, 291, -214,
- -419, 98, -354, -354, -354, 105, 105, -303, -420, 96,
- -295, -407, -376, 599, 599, -420, 28, -382, -381, -297,
- 95, 86, 68, 594, 597, -420, -420, -420, 96, -420,
- -420, -420, 97, 97, -420, -420, -420, -420, -420, -420,
+ -145, -210, -145, -420, -178, -177, -179, 709, 130, 34,
+ -316, -420, -212, 289, -101, -100, -99, 18, -420, -145,
+ -119, -119, -119, -119, -145, -145, -145, -145, -145, -145,
+ -419, 75, 22, 20, -258, -295, 259, -419, -258, -419,
+ -304, -228, -229, 21, 23, -242, 59, -240, 58, -240,
+ -251, 23, 23, 98, 23, 98, 151, -275, -145, -215,
+ -303, 63, -29, -295, -213, -295, -230, -145, 95, -145,
+ -158, -198, -198, -145, -205, 516, 518, 519, 520, 517,
+ 522, 523, 524, 525, 526, 527, 528, 529, 530, 531,
+ 521, 532, 493, 494, 495, 117, 119, 118, 127, 128,
+ 496, 497, 498, 360, 544, 545, 539, 542, 543, 541,
+ 540, 375, 376, 499, 562, 563, 567, 566, 564, 565,
+ 568, 571, 572, 573, 574, 575, 576, 578, 577, 569,
+ 570, 547, 546, 548, 549, 550, 551, 552, 553, 555,
+ 554, 556, 557, 558, 559, 560, 561, 579, 580, 581,
+ 582, 583, 585, 584, 589, 588, 586, 587, 591, 590,
+ 500, 501, 120, 121, 122, 123, 124, 125, 126, 502,
+ 505, 503, 506, 507, 508, 513, 514, 509, 510, 511,
+ 512, 515, 386, 384, 385, 381, 380, 379, 440, 445,
+ 446, 448, 533, 534, 535, 536, 537, 538, 690, 691,
+ 692, 693, 694, 695, 696, 697, 98, 98, 95, -145,
+ 97, 97, -256, -374, -60, 97, -257, -255, 105, 97,
+ 292, -214, -419, 98, -354, -354, -354, 105, 105, -303,
+ -420, 96, -295, -407, -376, 600, 600, -420, 28, -382,
+ -381, -297, 95, 86, 68, 595, 598, -420, -420, -420,
+ 96, -420, -420, -420, 97, 97, -420, -420, -420, -420,
-420, -420, -420, -420, -420, -420, -420, -420, -420, -420,
- -420, -420, -420, -420, -420, -420, 96, -420, -177, -179,
- -420, 85, -158, -230, 23, -98, 313, 315, -98, -420,
- -420, -420, -420, -420, 96, -420, -420, 96, -420, 96,
- -420, -420, -258, -420, 23, 23, 96, -420, -258, -420,
- -258, -197, -229, -108, -107, -106, 626, -145, -210, -243,
- 60, 85, 134, 98, 98, 98, 16, -419, -213, 235,
- -308, -235, -255, -175, 399, -230, -420, -255, 97, 28,
- 97, 749, 150, 97, -214, -125, -419, 287, -303, 98,
- 98, -115, -118, -29, 96, 164, -255, -190, 68, -145,
- -210, -420, 85, 607, 708, -92, -91, -88, 719, 745,
- -210, -94, -94, -145, -145, -145, -420, -295, 258, -420,
- -420, -108, 96, -105, -104, -295, -320, 595, 85, 134,
- -267, -255, -308, -295, 97, -420, -419, -235, 97, -239,
- -29, 95, -3, 287, -328, -379, -329, -330, -5, -6,
- -355, -82, 595, -381, -359, -301, -297, 98, 105, 97,
- 595, -420, -420, -90, 158, 717, 685, -155, 234, -420,
- 96, -420, 96, -420, 96, -106, 96, 28, 600, -420,
- -304, -176, -174, -295, 649, -398, -397, 591, -408, -404,
- 130, 156, 110, -406, 687, 643, 140, 141, -82, -145,
- 95, -420, -83, 302, 704, 235, -389, 596, -90, 718,
- 663, 638, 663, 638, -150, -145, -145, -145, -104, -419,
- -420, 96, 26, -321, -62, 660, -395, -396, 85, -399,
- 405, 659, 680, 130, 98, 97, -255, 263, -302, -383,
- 597, 155, -119, -420, 96, -420, 96, -420, -93, -174,
- 656, -334, -158, -396, 85, -395, 85, 17, 16, -4,
- 748, 97, 304, -90, 663, 638, -145, -145, -420, -61,
- 29, -175, -394, 271, 266, 269, 35, -394, 105, -4,
- -420, -420, 660, 265, 34, 130, -158, -178, -177, -177,
+ -420, -420, -420, -420, -420, -420, -420, -420, 96, -420,
+ -177, -179, -420, 85, -158, -230, 23, -98, 314, 316,
+ -98, -420, -420, -420, -420, -420, 96, -420, -420, 96,
+ -420, 96, -420, -420, -258, -420, 23, 23, 96, -420,
+ -258, -420, -258, -197, -229, -108, -107, -106, 627, -145,
+ -210, -243, 60, 85, 134, 98, 98, 98, 16, -419,
+ -213, 236, -308, -235, -255, -175, 400, -230, -420, -255,
+ 97, 28, 97, 750, 151, 97, -214, -125, -419, 288,
+ -303, 98, 98, -115, -118, -29, 96, 165, -255, -190,
+ 68, -145, -210, -420, 85, 608, 709, -92, -91, -88,
+ 720, 746, -210, -94, -94, -145, -145, -145, -420, -295,
+ 259, -420, -420, -108, 96, -105, -104, -295, -320, 596,
+ 85, 134, -267, -255, -308, -295, 97, -420, -419, -235,
+ 97, -239, -29, 95, -3, 288, -328, -379, -329, -330,
+ -5, -6, -355, -82, 596, -381, -359, -301, -297, 98,
+ 105, 97, 596, -420, -420, -90, 159, 718, 686, -155,
+ 235, -420, 96, -420, 96, -420, 96, -106, 96, 28,
+ 601, -420, -304, -176, -174, -295, 650, -398, -397, 592,
+ -408, -404, 130, 157, 110, -406, 688, 644, 140, 141,
+ -82, -145, 95, -420, -83, 303, 705, 236, -389, 597,
+ -90, 719, 664, 639, 664, 639, -150, -145, -145, -145,
+ -104, -419, -420, 96, 26, -321, -62, 661, -395, -396,
+ 85, -399, 406, 660, 681, 130, 98, 97, -255, 264,
+ -302, -383, 598, 156, -119, -420, 96, -420, 96, -420,
+ -93, -174, 657, -334, -158, -396, 85, -395, 85, 17,
+ 16, -4, 749, 97, 305, -90, 664, 639, -145, -145,
+ -420, -61, 29, -175, -394, 272, 267, 270, 35, -394,
+ 105, -4, -420, -420, 661, 266, 34, 130, -158, -178,
+ -177, -177,
}
var yyDef = [...]int{
- 887, -2, -2, 889, 2, 4, 5, 6, 7, 8,
+ 888, -2, -2, 890, 2, 4, 5, 6, 7, 8,
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
- 39, 70, 72, 73, 887, 887, 887, 0, 887, 0,
- 0, 887, -2, -2, 887, 1642, 0, 887, 0, 882,
- 0, -2, 804, 810, 0, 819, -2, 0, 0, 887,
- 887, 2281, 2281, 882, 0, 0, 0, 0, 0, 887,
- 887, 887, 887, 1647, 1500, 50, 887, 0, 85, 86,
- 837, 838, 839, 65, 0, 2279, 888, 1, 3, 71,
- 75, 0, 0, 0, 58, 1509, 0, 78, 0, 0,
- 891, 0, 0, 1625, 887, 887, 0, 126, 127, 0,
+ 39, 70, 72, 73, 888, 888, 888, 0, 888, 0,
+ 0, 888, -2, -2, 888, 1643, 0, 888, 0, 883,
+ 0, -2, 804, 810, 0, 819, -2, 0, 0, 888,
+ 888, 2283, 2283, 883, 0, 0, 0, 0, 0, 888,
+ 888, 888, 888, 1648, 1501, 50, 888, 0, 85, 86,
+ 838, 839, 840, 65, 0, 2281, 889, 1, 3, 71,
+ 75, 0, 0, 0, 58, 1510, 0, 78, 0, 0,
+ 892, 0, 0, 1626, 888, 888, 0, 126, 127, 0,
0, 0, -2, 130, -2, 159, 160, 161, 0, 166,
609, 527, 579, 525, 564, -2, 513, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 530,
- 402, 402, 0, 0, -2, 513, 513, 513, 1627, 0,
+ 402, 402, 0, 0, -2, 513, 513, 513, 1628, 0,
0, 0, 561, 464, 402, 402, 402, 0, 402, 402,
402, 402, 0, 0, 402, 402, 402, 402, 402, 402,
402, 402, 402, 402, 402, 402, 402, 402, 402, 402,
- 402, 1527, 165, 1643, 1640, 1641, 1803, 1804, 1805, 1806,
- 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816,
- 1817, 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826,
- 1827, 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1836,
- 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846,
- 1847, 1848, 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856,
- 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866,
- 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876,
- 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886,
- 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896,
- 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906,
- 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916,
- 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926,
- 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936,
- 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946,
- 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956,
- 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966,
- 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976,
- 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986,
- 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
- 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
- 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016,
- 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026,
- 2027, 2028, 2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036,
- 2037, 2038, 2039, 2040, 2041, 2042, 2043, 2044, 2045, 2046,
- 2047, 2048, 2049, 2050, 2051, 2052, 2053, 2054, 2055, 2056,
- 2057, 2058, 2059, 2060, 2061, 2062, 2063, 2064, 2065, 2066,
- 2067, 2068, 2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076,
- 2077, 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2085, 2086,
- 2087, 2088, 2089, 2090, 2091, 2092, 2093, 2094, 2095, 2096,
- 2097, 2098, 2099, 2100, 2101, 2102, 2103, 2104, 2105, 2106,
- 2107, 2108, 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116,
- 2117, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126,
- 2127, 2128, 2129, 2130, 2131, 2132, 2133, 2134, 2135, 2136,
- 2137, 2138, 2139, 2140, 2141, 2142, 2143, 2144, 2145, 2146,
- 2147, 2148, 2149, 2150, 2151, 2152, 2153, 2154, 2155, 2156,
- 2157, 2158, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2166,
- 2167, 2168, 2169, 2170, 2171, 2172, 2173, 2174, 2175, 2176,
- 2177, 2178, 2179, 2180, 2181, 2182, 2183, 2184, 2185, 2186,
- 2187, 2188, 2189, 2190, 2191, 2192, 2193, 2194, 2195, 2196,
- 2197, 2198, 2199, 2200, 2201, 2202, 2203, 2204, 2205, 2206,
- 2207, 2208, 2209, 2210, 2211, 2212, 2213, 2214, 2215, 2216,
- 2217, 2218, 2219, 2220, 2221, 2222, 2223, 2224, 2225, 2226,
- 2227, 2228, 2229, 2230, 2231, 2232, 2233, 2234, 2235, 2236,
- 2237, 2238, 2239, 2240, 2241, 2242, 2243, 2244, 2245, 2246,
- 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2254, 2255, 2256,
- 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2264, 2265, 2266,
- 2267, 2268, 2269, 2270, 2271, 2272, 2273, 2274, 2275, 2276,
- 2277, 2278, 0, 1619, 0, 722, 991, 0, 883, 884,
- 0, 793, 793, 0, 793, 793, 793, 793, 0, 0,
- 0, 736, 0, 0, 0, 0, 790, 0, 752, 753,
- 0, 790, 0, 759, 796, 0, 0, 766, 793, 793,
- 769, 2282, 0, 2282, 2282, 0, 0, 1610, 0, 787,
- 785, 799, 800, 42, 803, 806, 807, 808, 809, 812,
- 0, 823, 826, 1636, 1637, 0, 828, 833, 850, 851,
- 0, 45, 1151, 0, 1015, 0, 1026, -2, 1037, 1054,
- 1055, 1056, 1057, 1058, 1060, 1061, 1062, 0, 0, 0,
- 0, 1067, 1068, 0, 0, 0, 0, 0, 1131, 0,
- 0, 0, 0, 2005, 1471, 0, 0, 1433, 1433, 1167,
- 1433, 1433, 1435, 1435, 1435, 1856, 1997, 2006, 2185, 1817,
- 1823, 1824, 1825, 2131, 2132, 2133, 2134, 2225, 2226, 2230,
- 1919, 1812, 2198, 2199, 0, 2278, 1958, 1966, 1967, 1943,
- 1952, 1991, 2093, 2209, 1835, 1986, 2056, 1916, 1938, 1939,
- 2074, 2075, 1962, 1963, 1942, 2137, 2139, 2155, 2156, 2141,
- 2143, 2152, 2158, 2163, 2142, 2154, 2159, 2172, 2176, 2179,
- 2180, 2181, 2149, 2147, 2160, 2164, 2166, 2168, 2174, 2177,
- 2150, 2148, 2161, 2165, 2167, 2169, 2175, 2178, 2136, 2140,
- 2144, 2153, 2171, 2151, 2170, 2145, 2157, 2162, 2173, 2146,
- 2138, 1956, 1959, 1946, 1947, 1949, 1951, 1957, 1964, 1970,
- 1948, 1969, 1968, 0, 1944, 1945, 1950, 1961, 1965, 1953,
- 1954, 1955, 1960, 1971, 2012, 2011, 2010, 2055, 1982, 2054,
- 0, 0, 0, 0, 0, 1806, 1861, 1862, 2182, 1355,
- 1356, 1357, 1358, 0, 0, 0, 0, 0, 0, 0,
- 291, 292, 1484, 1485, 44, 1150, 1606, 1435, 1435, 1435,
- 1435, 1435, 1435, 1089, 1090, 1091, 1092, 1093, 1119, 1120,
- 1126, 1127, 2069, 2070, 2071, 2072, 1899, 2220, 1908, 1909,
- 2051, 2052, 1921, 1922, 2252, 2253, -2, -2, -2, 232,
- 233, 234, 235, 236, 237, 238, 239, 0, 1860, 2196,
- 2197, 228, 0, 0, 296, 293, 294, 295, 1133, 1134,
- 249, 250, 251, 252, 253, 254, 255, 256, 257, 258,
- 259, 260, 261, 262, 263, 264, 265, 266, 267, 268,
- 269, 270, 271, 272, 273, 274, 275, 276, 277, 278,
- 279, 280, 281, 282, 283, 284, 285, 286, 287, 288,
- 289, 290, 298, 299, 2281, 0, 860, 0, 0, 0,
- 0, 0, 0, 1648, 1649, 1509, 0, 1501, 1500, 63,
- 0, 887, -2, 0, 0, 0, 0, 47, 0, 52,
- 948, 890, 77, 76, 1549, 1552, 0, 0, 0, 59,
- 1510, 67, 69, 1511, 0, 892, 893, 0, 924, 928,
- 0, 0, 0, 1626, 1625, 1625, 102, 0, 0, 103,
- 123, 124, 125, 0, 0, 109, 110, 1612, 1613, 43,
- 0, 0, 177, 178, 0, 1107, 429, 0, 173, 0,
- 422, 361, 0, 1527, 0, 0, 0, 0, 0, 1623,
- 0, 1620, 154, 155, 162, 163, 164, 402, 402, 402,
- 576, 0, 0, 165, 165, 534, 535, 536, 0, 0,
- -2, 427, 0, 514, 0, 0, 416, 416, 420, 418,
- 419, 0, 0, 0, 0, 0, 0, 0, 0, 553,
- 0, 554, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 670, 0, 403, 0, 574, 575, 465, 0, 0,
- 0, 0, 0, 0, 0, 0, 1628, 1629, 0, 551,
- 552, 0, 0, 0, 402, 402, 0, 0, 0, 0,
- 402, 402, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 153, 1540, 0, 0, 0, -2, 0, 714, 0, 0,
- 0, 1621, 1621, 0, 721, 0, 0, 0, 726, 0,
- 0, 727, 0, 790, 790, 788, 789, 729, 730, 731,
- 732, 793, 0, 0, 411, 412, 413, 790, 793, 0,
- 793, 793, 793, 793, 790, 790, 790, 793, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 2282, 796, 793,
- 0, 760, 0, 761, 762, 763, 764, 767, 768, 770,
- 2283, 2284, 1638, 1639, 1650, 1651, 1652, 1653, 1654, 1655,
+ 402, 1528, 165, 1644, 1641, 1642, 1804, 1805, 1806, 1807,
+ 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817,
+ 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827,
+ 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837,
+ 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847,
+ 1848, 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857,
+ 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867,
+ 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877,
+ 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887,
+ 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897,
+ 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907,
+ 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917,
+ 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927,
+ 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937,
+ 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947,
+ 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957,
+ 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967,
+ 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977,
+ 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987,
+ 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
+ 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
+ 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017,
+ 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027,
+ 2028, 2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037,
+ 2038, 2039, 2040, 2041, 2042, 2043, 2044, 2045, 2046, 2047,
+ 2048, 2049, 2050, 2051, 2052, 2053, 2054, 2055, 2056, 2057,
+ 2058, 2059, 2060, 2061, 2062, 2063, 2064, 2065, 2066, 2067,
+ 2068, 2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, 2077,
+ 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087,
+ 2088, 2089, 2090, 2091, 2092, 2093, 2094, 2095, 2096, 2097,
+ 2098, 2099, 2100, 2101, 2102, 2103, 2104, 2105, 2106, 2107,
+ 2108, 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117,
+ 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127,
+ 2128, 2129, 2130, 2131, 2132, 2133, 2134, 2135, 2136, 2137,
+ 2138, 2139, 2140, 2141, 2142, 2143, 2144, 2145, 2146, 2147,
+ 2148, 2149, 2150, 2151, 2152, 2153, 2154, 2155, 2156, 2157,
+ 2158, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2166, 2167,
+ 2168, 2169, 2170, 2171, 2172, 2173, 2174, 2175, 2176, 2177,
+ 2178, 2179, 2180, 2181, 2182, 2183, 2184, 2185, 2186, 2187,
+ 2188, 2189, 2190, 2191, 2192, 2193, 2194, 2195, 2196, 2197,
+ 2198, 2199, 2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207,
+ 2208, 2209, 2210, 2211, 2212, 2213, 2214, 2215, 2216, 2217,
+ 2218, 2219, 2220, 2221, 2222, 2223, 2224, 2225, 2226, 2227,
+ 2228, 2229, 2230, 2231, 2232, 2233, 2234, 2235, 2236, 2237,
+ 2238, 2239, 2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247,
+ 2248, 2249, 2250, 2251, 2252, 2253, 2254, 2255, 2256, 2257,
+ 2258, 2259, 2260, 2261, 2262, 2263, 2264, 2265, 2266, 2267,
+ 2268, 2269, 2270, 2271, 2272, 2273, 2274, 2275, 2276, 2277,
+ 2278, 2279, 2280, 0, 1620, 0, 722, 992, 0, 884,
+ 885, 0, 793, 793, 0, 793, 793, 793, 793, 0,
+ 0, 0, 736, 0, 0, 0, 0, 790, 0, 752,
+ 753, 0, 790, 0, 759, 796, 0, 0, 766, 793,
+ 793, 769, 2284, 0, 2284, 2284, 0, 0, 1611, 0,
+ 787, 785, 799, 800, 42, 803, 806, 807, 808, 809,
+ 812, 0, 823, 826, 1637, 1638, 0, 828, 833, 851,
+ 852, 0, 45, 1152, 0, 1016, 0, 1027, -2, 1038,
+ 1055, 1056, 1057, 1058, 1059, 1061, 1062, 1063, 0, 0,
+ 0, 0, 1068, 1069, 0, 0, 0, 0, 0, 1132,
+ 0, 0, 0, 0, 2006, 1472, 0, 0, 1434, 1434,
+ 1168, 1434, 1434, 1436, 1436, 1436, 1857, 1998, 2007, 2186,
+ 1818, 1824, 1825, 1826, 2132, 2133, 2134, 2135, 2227, 2228,
+ 2232, 1920, 1813, 2199, 2200, 0, 2280, 1959, 1967, 1968,
+ 1944, 1953, 1992, 2094, 2211, 1836, 1987, 2057, 1917, 1939,
+ 1940, 2075, 2076, 1963, 1964, 1943, 2138, 2140, 2156, 2157,
+ 2142, 2144, 2153, 2159, 2164, 2143, 2155, 2160, 2173, 2177,
+ 2180, 2181, 2182, 2150, 2148, 2161, 2165, 2167, 2169, 2175,
+ 2178, 2151, 2149, 2162, 2166, 2168, 2170, 2176, 2179, 2137,
+ 2141, 2145, 2154, 2172, 2152, 2171, 2146, 2158, 2163, 2174,
+ 2147, 2139, 1957, 1960, 1947, 1948, 1950, 1952, 1958, 1965,
+ 1971, 1949, 1970, 1969, 0, 1945, 1946, 1951, 1962, 1966,
+ 1954, 1955, 1956, 1961, 1972, 2013, 2012, 2011, 2056, 1983,
+ 2055, 0, 0, 0, 0, 0, 1807, 1862, 1863, 2183,
+ 1356, 1357, 1358, 1359, 0, 0, 0, 0, 0, 0,
+ 0, 291, 292, 1485, 1486, 44, 1151, 1607, 1436, 1436,
+ 1436, 1436, 1436, 1436, 1090, 1091, 1092, 1093, 1094, 1120,
+ 1121, 1127, 1128, 2070, 2071, 2072, 2073, 1900, 2222, 1909,
+ 1910, 2052, 2053, 1922, 1923, 2254, 2255, -2, -2, -2,
+ 232, 233, 234, 235, 236, 237, 238, 239, 0, 1861,
+ 2197, 2198, 228, 0, 0, 296, 293, 294, 295, 1134,
+ 1135, 249, 250, 251, 252, 253, 254, 255, 256, 257,
+ 258, 259, 260, 261, 262, 263, 264, 265, 266, 267,
+ 268, 269, 270, 271, 272, 273, 274, 275, 276, 277,
+ 278, 279, 280, 281, 282, 283, 284, 285, 286, 287,
+ 288, 289, 290, 298, 299, 2283, 0, 861, 0, 0,
+ 0, 0, 0, 0, 1649, 1650, 1510, 0, 1502, 1501,
+ 63, 0, 888, -2, 0, 0, 0, 0, 47, 0,
+ 52, 949, 891, 77, 76, 1550, 1553, 0, 0, 0,
+ 59, 1511, 67, 69, 1512, 0, 893, 894, 0, 925,
+ 929, 0, 0, 0, 1627, 1626, 1626, 102, 0, 0,
+ 103, 123, 124, 125, 0, 0, 109, 110, 1613, 1614,
+ 43, 0, 0, 177, 178, 0, 1108, 429, 0, 173,
+ 0, 422, 361, 0, 1528, 0, 0, 0, 0, 0,
+ 1624, 0, 1621, 154, 155, 162, 163, 164, 402, 402,
+ 402, 576, 0, 0, 165, 165, 534, 535, 536, 0,
+ 0, -2, 427, 0, 514, 0, 0, 416, 416, 420,
+ 418, 419, 0, 0, 0, 0, 0, 0, 0, 0,
+ 553, 0, 554, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 670, 0, 403, 0, 574, 575, 465, 0,
+ 0, 0, 0, 0, 0, 0, 0, 1629, 1630, 0,
+ 551, 552, 0, 0, 0, 402, 402, 0, 0, 0,
+ 0, 402, 402, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 153, 1541, 0, 0, 0, -2, 0, 714, 0,
+ 0, 0, 1622, 1622, 0, 721, 0, 0, 0, 726,
+ 0, 0, 727, 0, 790, 790, 788, 789, 729, 730,
+ 731, 732, 793, 0, 0, 411, 412, 413, 790, 793,
+ 0, 793, 793, 793, 793, 790, 790, 790, 793, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 2284, 796,
+ 793, 0, 760, 0, 761, 762, 763, 764, 767, 768,
+ 770, 2285, 2286, 1639, 1640, 1651, 1652, 1653, 1654, 1655,
1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665,
1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673, 1674, 1675,
1676, 1677, 1678, 1679, 1680, 1681, 1682, 1683, 1684, 1685,
@@ -9652,303 +9554,304 @@ var yyDef = [...]int{
1766, 1767, 1768, 1769, 1770, 1771, 1772, 1773, 1774, 1775,
1776, 1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784, 1785,
1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795,
- 1796, 1797, 1798, 1799, 1800, 1801, 1802, 2282, 2282, 774,
- 778, 782, 780, 1611, 805, 811, 813, 814, 0, 0,
- 824, 827, 844, 49, 1907, 832, 49, 834, 835, 836,
- 862, 863, 868, 0, 0, 0, 0, 874, 875, 876,
- 0, 0, 879, 880, 881, 0, 0, 0, 0, 0,
- 1013, 0, 0, 1139, 1140, 1141, 1142, 1143, 1144, 1145,
- 1146, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 1038,
- 1039, 0, 0, 0, 1063, 1064, 1065, 1066, 1069, 0,
- 1080, 0, 1082, 1480, -2, 0, 0, 0, 1074, 1075,
- 0, 0, 0, 1631, 1631, 0, 0, 0, 1472, 0,
- 0, 1165, 0, 1166, 1168, 1169, 1170, 0, 1171, 1172,
- 897, 897, 897, 897, 897, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 897, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 1631,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 141, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 1631, 0, 0, 1631, 1631, 0,
- 0, 220, 221, 222, 223, 224, 225, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 297, 240, 241, 242, 243, 244, 245, 300, 246,
- 247, 248, 1150, 0, 0, 0, 46, 852, 853, 0,
- 974, 1631, 0, 0, 903, 0, 1646, 57, 66, 68,
- 1509, 61, 1509, 0, 907, 0, 0, -2, -2, 908,
- 909, 913, 914, 915, 916, 917, 918, 919, 920, 921,
- 54, 2280, 55, 0, 74, 0, 48, 0, 0, 1550,
- 0, 1553, 0, 0, 0, 375, 1557, 0, 0, 1502,
- 1503, 1506, 0, 925, 2003, 929, 0, 931, 932, 0,
- 0, 100, 0, 990, 0, 0, 0, 111, 0, 113,
- 114, 0, 0, 0, 386, 1614, 1615, 1616, -2, 409,
- 0, 386, 370, 308, 309, 310, 361, 312, 361, 361,
- 361, 361, 375, 375, 375, 375, 343, 344, 345, 346,
- 347, 0, 361, 0, 329, 361, 361, 361, 361, 351,
- 352, 353, 354, 355, 356, 357, 358, 313, 314, 315,
- 316, 317, 318, 319, 320, 321, 363, 363, 363, 363,
- 363, 367, 367, 0, 1108, 0, 390, 0, 1506, 0,
- 0, 1540, 1623, 1633, 0, 0, 0, 0, 0, 132,
- 0, 0, 0, 577, 620, 528, 565, 578, 0, 531,
- 532, -2, 0, 0, 513, 0, 515, 0, 410, 0,
- -2, 0, 420, 0, 416, 420, 417, 420, 408, 421,
- 555, 556, 557, 0, 559, 560, 650, 960, 0, 0,
- 0, 0, 0, 656, 657, 658, 0, 660, 661, 662,
- 663, 664, 665, 666, 667, 668, 669, 566, 567, 568,
- 569, 570, 571, 572, 573, 0, 0, 0, 0, 515,
- 0, 562, 0, 0, 466, 467, 468, 0, 0, 471,
- 472, 473, 474, 0, 0, 477, 478, 479, 977, 978,
- 480, 481, 506, 507, 508, 482, 483, 484, 485, 486,
- 487, 488, 500, 501, 502, 503, 504, 505, 489, 490,
- 491, 492, 493, 494, 497, 0, 147, 1531, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 1621, 0, 0, 0, 0,
- 906, 992, 1644, 1645, 723, 0, 0, 794, 795, 0,
- 414, 415, 793, 793, 733, 775, 0, 793, 737, 776,
- 738, 740, 739, 741, 754, 755, 793, 744, 791, 792,
- 745, 746, 747, 748, 749, 750, 751, 771, 756, 757,
- 758, 797, 0, 801, 802, 772, 773, 0, 783, 0,
- 0, 0, 817, 818, 0, 825, 847, 845, 846, 848,
- 840, 841, 842, 843, 0, 849, 0, 0, 865, 96,
- 870, 871, 872, 873, 885, 878, 1152, 1010, 1011, 1012,
- 0, 1014, 1020, 0, 1135, 1137, 1018, 1019, 1022, 0,
- 0, 0, 1016, 1027, 1147, 1148, 1149, 0, 0, 0,
- 0, 0, 1031, 1035, 1040, 1041, 1042, 1043, 1044, 0,
- 1045, 0, 1048, 1049, 1050, 1051, 1052, 1053, 1059, 1448,
- 1449, 1450, 1078, 301, 302, 0, 1079, 0, 0, 0,
- 0, 0, 0, 0, 0, 1395, 1396, 1397, 1398, 1399,
- 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409,
- 1410, 1411, 1412, 1413, 1414, 1151, 0, 1632, 0, 0,
- 0, 1478, 1475, 0, 0, 0, 1434, 1436, 0, 0,
- 0, 898, 899, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424,
- 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 0, 0,
- 1451, 0, 0, 0, 0, 0, 0, 0, 1471, 0,
- 1084, 1085, 1086, 0, 0, 0, 0, 0, 0, 1213,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 142, 143, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 1359, 1360, 1361, 1362, 41,
- 0, 0, 0, 0, 0, 0, 0, 1482, 0, -2,
- -2, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 1384, 0, 0, 0, 0, 0,
- 0, 1604, 0, 0, 855, 856, 858, 0, 994, 0,
- 975, 0, 0, 861, 0, 902, 0, 905, 60, 62,
- 911, 912, 0, 933, 922, 910, 56, 51, 0, 0,
- 952, 1551, 1554, 1555, 375, 1577, 0, 384, 384, 381,
- 1512, 1513, 0, 1505, 1507, 1508, 79, 930, 926, 0,
- 1008, 0, 0, 989, 0, 936, 938, 939, 940, 972,
- 0, 943, 944, 0, 0, 0, 0, 0, 98, 991,
- 104, 0, 112, 0, 0, 117, 118, 105, 106, 107,
- 108, 0, 609, -2, 461, 179, 181, 182, 183, 174,
- -2, 373, 371, 372, 311, 375, 375, 337, 338, 339,
- 340, 341, 342, 0, 349, 0, 330, 331, 332, 333,
- 322, 0, 323, 324, 325, 365, 0, 326, 327, 0,
- 328, 428, 0, 1514, 391, 392, 394, 402, 0, 397,
- 398, 0, 402, 402, 0, 423, 424, 0, 1506, 1531,
- 0, 0, 1634, 1633, 1633, 1633, 152, 0, 167, 168,
- 169, 170, 171, 172, 645, 0, 0, 621, 643, 644,
- 165, 0, 0, 175, 517, 516, 0, 677, 0, 426,
- 0, 0, 420, 420, 405, 406, 558, 0, 0, 652,
- 653, 654, 655, 0, 0, 0, 544, 455, 0, 545,
- 546, 515, 517, 0, 0, 386, 469, 470, 475, 476,
- 495, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 593, 594, 596, 599, 601, 519, 605,
- 607, 595, 598, 600, 602, 519, 606, 608, 1528, 1529,
- 1530, 0, 0, 715, 0, 0, 452, 94, 1622, 720,
- 724, 725, 790, 743, 777, 790, 735, 742, 765, 779,
- 781, 815, 816, 821, 829, 830, 831, 869, 0, 0,
- 0, 0, 877, 0, 0, 1021, 1136, 1138, 1023, 1024,
- 1025, 1028, 0, 1032, 1036, 0, 0, 0, 0, 0,
- 1083, 1081, 1482, 0, 0, 0, 1132, 0, 0, 1155,
- 1156, 0, 0, 0, 0, 1476, 0, 0, 1163, 0,
- 1437, 1113, 0, 0, 0, 0, 0, 1113, 1113, 1113,
- 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1500, 1190, 0,
- 0, 0, 0, 0, 1195, 1196, 1197, 1113, 0, 1200,
- 1201, 0, 1203, 0, 1204, 0, 0, 0, 0, 1211,
- 1212, 1214, 0, 0, 1217, 1218, 0, 1220, 0, 1222,
- 1223, 1224, 1225, 1226, 1227, 0, 1229, 0, 1231, 1232,
- 1233, 0, 1235, 0, 1237, 1238, 0, 1240, 0, 1242,
- 0, 1245, 0, 1248, 0, 1251, 0, 1254, 0, 1257,
- 0, 1260, 0, 1263, 0, 1266, 0, 1269, 0, 1272,
- 0, 1275, 0, 1278, 0, 1281, 0, 1284, 0, 1287,
- 0, 1290, 1291, 1292, 0, 1294, 0, 1296, 0, 1299,
- 1300, 0, 1302, 0, 1305, 0, 1308, 0, 0, 1309,
- 0, 0, 0, 1313, 0, 0, 0, 0, 1322, 1323,
- 1324, 1325, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 1336, 1337, 1338, 1339, 1340, 1341, 0, 1343,
- 0, 1114, 0, 0, 1114, 0, 0, 0, 0, 0,
- 1153, 1631, 0, 1438, 1439, 1440, 1441, 1442, 0, 0,
- 0, 0, 0, 0, 1382, 1383, 1385, 0, 0, 1388,
- 0, 1390, 0, 1605, 854, 857, 859, 946, 995, 996,
- 0, 0, 0, 0, 976, 1630, 900, 901, 904, 954,
- 0, 1486, 0, 0, 933, 1008, 0, 934, 0, 53,
- 949, 0, 1559, 1558, 1571, 1584, 384, 384, 378, 379,
- 385, 380, 382, 383, 1504, 0, 1509, 0, 1598, 0,
- 0, 1587, 0, 0, 0, 0, 0, 0, 0, 0,
- 979, 0, 0, 982, 0, 0, 0, 0, 973, 944,
- 0, 945, 0, -2, 0, 0, 92, 93, 0, 0,
- 0, 115, 116, 0, 0, 122, 387, 388, 156, 165,
- 463, 180, 436, 0, 0, 307, 374, 334, 335, 336,
- 0, 359, 0, 0, 0, 0, 457, 128, 1518, 1517,
- 402, 402, 393, 0, 396, 0, 0, 0, 1635, 362,
- 425, 0, 146, 0, 0, 0, 0, 1624, 615, 0,
- 0, 622, 0, 0, 0, 526, 0, 537, 538, 0,
- 649, -2, 711, 390, 0, 404, 407, 961, 0, 0,
- 539, 0, 542, 543, 456, 517, 548, 549, 563, 550,
- 498, 499, 496, 0, 0, 1541, 1542, 1547, 1545, 1546,
- 133, 584, 586, 590, 585, 589, 0, 0, 0, 521,
- 0, 521, 582, 0, 452, 1514, 0, 719, 453, 454,
- 793, 793, 864, 97, 0, 867, 0, 0, 0, 0,
- 1029, 1033, 1046, 1047, 1443, 1469, 361, 361, 1456, 361,
- 367, 1459, 361, 1461, 361, 1464, 361, 1467, 1468, 0,
- 0, 1076, 0, 0, 0, 0, 1162, 1479, 0, 0,
- 1173, 1112, 1113, 1113, 1113, 1113, 1113, 1179, 1180, 1181,
- 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1473, 0, 0,
- 0, 1194, 0, 0, 1198, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 144, 145, 0, 0, 0, 0,
- 0, 0, 1393, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 1107, 1111, 0, 1115, 1116, 0,
- 0, 1345, 0, 0, 1363, 0, 0, 0, 0, 0,
- 0, 0, 1483, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 997, 1004, 0, 1004, 0, 1004, 0,
- 0, 0, 1617, 1618, 1487, 1488, 1008, 1489, 923, 935,
- 953, 1577, 0, 1570, 0, -2, 1579, 0, 0, 0,
- 1585, 376, 377, 927, 80, 1009, 83, 0, 1598, 1607,
- 0, 1595, 1600, 1602, 0, 0, 0, 1591, 0, 1008,
- 937, 968, 970, 0, 965, 980, 981, 983, 0, 985,
- 0, 987, 988, 948, 942, 0, 100, 0, 1008, 1008,
- 99, 0, 993, 119, 120, 121, 462, 184, 189, 0,
- 0, 0, 194, 0, 196, 0, 0, 0, 201, 202,
- 402, 402, 437, 0, 304, 306, 0, 0, 187, 375,
- 0, 375, 0, 366, 368, 0, 438, 458, 1515, 1516,
- 0, 0, 395, 399, 400, 401, 0, 148, 0, 0,
- 0, 618, 0, 646, 0, 0, 0, 0, 0, 0,
- 176, 518, 678, 679, 680, 681, 682, 683, 684, 685,
- 686, 0, 402, 0, 0, 0, 402, 402, 402, 0,
- 703, 389, 0, 0, 674, 671, 540, 0, 218, 219,
- 226, 227, 229, 0, 0, 0, 0, 0, 547, 948,
- 1532, 1533, 1534, 0, 1544, 1548, 136, 0, 0, 0,
- 0, 592, 597, 603, 0, 520, 604, 716, 717, 718,
- 95, 728, 734, 866, 886, 1017, 1030, 1034, 0, 0,
- 0, 0, 1470, 1454, 375, 1457, 1458, 1460, 1462, 1463,
- 1465, 1466, 1072, 1073, 1077, 0, 1159, 0, 1161, 0,
- 1477, 0, 1174, 1175, 1176, 1177, 1178, 1509, 0, 0,
- 0, 1193, 0, 0, 1113, 0, 1206, 1205, 1207, 0,
- 1209, 1210, 1215, 1216, 1219, 1221, 1228, 1230, 1234, 1236,
- 1239, 1241, 1243, 0, 1246, 0, 1249, 0, 1252, 0,
- 1255, 0, 1258, 0, 1261, 0, 1264, 0, 1267, 0,
- 1270, 0, 1273, 0, 1276, 0, 1279, 0, 1282, 0,
- 1285, 0, 1288, 0, 1293, 1295, 0, 1298, 1301, 1303,
- 0, 1306, 0, 1310, 0, 1312, 1314, 1315, 0, 0,
- 0, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334,
- 1335, 1342, 0, 1105, 1344, 1117, 1118, 1123, 1347, 0,
- 0, 0, 1350, 0, 0, 0, 1354, 1154, 1365, 0,
- 1370, 0, 0, 1376, 0, 1380, 0, 1386, 1387, 1389,
- 1391, 0, 0, 0, 0, 0, 0, 0, 974, 955,
- 64, 1489, 1493, 0, 1564, 1562, 1562, 1572, 1573, 0,
- 0, 1580, 0, 0, 0, 0, 84, 0, 0, 1586,
- 0, 0, 1603, 0, 0, 0, 0, 101, 1500, 962,
- 969, 0, 0, 963, 0, 964, 984, 986, 941, 0,
- 1008, 1008, 90, 91, 0, 190, 0, 192, 0, 195,
- 197, 198, 199, 205, 206, 207, 200, 0, 0, 303,
- 305, 0, 0, 348, 360, 350, 0, 0, 1519, 1520,
- 1521, 1522, 1523, 1524, 1525, 1526, 948, 149, 150, 151,
- 610, 0, 620, 0, 950, 0, 613, 0, 529, 0,
- 0, 0, 402, 402, 402, 0, 0, 0, 0, 688,
- 0, 0, 651, 0, 659, 0, 0, 0, 230, 231,
- 0, 1543, 583, 0, 134, 135, 0, 0, 588, 522,
- 523, 1070, 0, 0, 0, 1071, 1455, 0, 0, 0,
- 0, 0, 1474, 0, 0, 0, 0, 1199, 1202, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 1318, 0, 0, 0, 640, 641, 0, 1394, 1110,
- 1500, 0, 1114, 1124, 1125, 0, 1114, 1364, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 1005,
- 0, 0, 0, 956, 957, 0, 0, 0, 994, 1493,
- 1498, 0, 0, 1567, 0, 1560, 1563, 1561, 1574, 0,
- 0, 1581, 0, 1583, 0, 1608, 1609, 1601, 1596, 0,
- 1590, 1593, 1595, 1592, 1509, 966, 0, 971, 0, 1500,
- 89, 0, 193, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 203, 204, 0, 0, 364, 369,
- 0, 0, 0, 611, 0, 951, 623, 614, 0, 701,
- 0, 705, 0, 0, 0, 708, 709, 710, 687, 0,
- 691, 430, 675, 672, 673, 541, 0, 137, 138, 0,
- 0, 0, 1444, 0, 1447, 1157, 1160, 1158, 0, 1189,
- 1191, 1192, 1452, 1453, 1208, 1244, 1247, 1250, 1253, 1256,
- 1259, 1262, 1265, 1268, 1271, 1274, 1277, 1280, 1283, 1286,
- 1289, 1297, 1304, 1307, 1311, 1316, 0, 1319, 0, 0,
- 1320, 0, 642, 1101, 0, 0, 1121, 1122, 0, 1349,
- 1351, 1352, 1353, 1366, 0, 1371, 1372, 0, 1377, 0,
- 1381, 1392, 0, 999, 1006, 1007, 0, 1002, 0, 1003,
- 0, 947, 1498, 82, 1499, 1496, 0, 1494, 1491, 1556,
- 0, 1565, 1566, 1575, 1576, 1582, 0, 0, 1595, 0,
- 1589, 87, 0, 0, 0, 1509, 191, 0, 210, 0,
- 619, 0, 622, 612, 699, 700, 0, 712, 704, 706,
- 707, 689, -2, 1535, 0, 0, 0, 591, 1445, 0,
- 0, 1321, 0, 638, 639, 1109, 1102, 0, 1087, 1088,
- 1106, 1346, 1348, 0, 0, 0, 998, 958, 959, 1000,
- 1001, 81, 0, 1495, 1129, 0, 1490, 0, 1568, 1569,
- 1599, 0, 1588, 1594, 967, 974, 0, 88, 443, 436,
- 1535, 0, 0, 0, 692, 693, 694, 695, 696, 697,
- 698, 580, 1537, 139, 140, 0, 510, 511, 512, 133,
- 0, 1164, 1317, 1103, 0, 0, 0, 0, 0, 1367,
- 0, 1373, 0, 1378, 0, 1497, 0, 0, 1492, 1597,
- 624, 0, 626, 0, -2, 431, 444, 0, 185, 211,
- 212, 0, 0, 215, 216, 217, 208, 209, 129, 0,
- 0, 713, 0, 1538, 1539, 0, 136, 0, 0, 1094,
- 1095, 1096, 1097, 1099, 0, 0, 0, 0, 1130, 1107,
- 625, 0, 0, 386, 0, 635, 432, 433, 0, 439,
- 440, 441, 442, 213, 214, 647, 0, 0, 509, 587,
- 1446, 0, 0, 1368, 0, 1374, 0, 1379, 0, 627,
- 628, 636, 0, 434, 0, 435, 0, 0, 0, 616,
- 0, 647, 1536, 1104, 1098, 1100, 0, 0, 1128, 0,
- 637, 633, 445, 447, 448, 0, 0, 446, 648, 617,
- 1369, 1375, 0, 449, 450, 451, 629, 630, 631, 632,
+ 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 2284, 2284,
+ 774, 778, 782, 780, 1612, 805, 811, 813, 814, 0,
+ 0, 824, 827, 845, 49, 1908, 832, 49, 834, 835,
+ 836, 837, 863, 864, 869, 0, 0, 0, 0, 875,
+ 876, 877, 0, 0, 880, 881, 882, 0, 0, 0,
+ 0, 0, 1014, 0, 0, 1140, 1141, 1142, 1143, 1144,
+ 1145, 1146, 1147, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 1039, 1040, 0, 0, 0, 1064, 1065, 1066, 1067,
+ 1070, 0, 1081, 0, 1083, 1481, -2, 0, 0, 0,
+ 1075, 1076, 0, 0, 0, 1632, 1632, 0, 0, 0,
+ 1473, 0, 0, 1166, 0, 1167, 1169, 1170, 1171, 0,
+ 1172, 1173, 898, 898, 898, 898, 898, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 898, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 1632, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 141, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 1632, 0, 0, 1632,
+ 1632, 0, 0, 220, 221, 222, 223, 224, 225, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 297, 240, 241, 242, 243, 244, 245,
+ 300, 246, 247, 248, 1151, 0, 0, 0, 46, 853,
+ 854, 0, 975, 1632, 0, 0, 904, 0, 1647, 57,
+ 66, 68, 1510, 61, 1510, 0, 908, 0, 0, -2,
+ -2, 909, 910, 914, 915, 916, 917, 918, 919, 920,
+ 921, 922, 54, 2282, 55, 0, 74, 0, 48, 0,
+ 0, 1551, 0, 1554, 0, 0, 0, 375, 1558, 0,
+ 0, 1503, 1504, 1507, 0, 926, 2004, 930, 0, 932,
+ 933, 0, 0, 100, 0, 991, 0, 0, 0, 111,
+ 0, 113, 114, 0, 0, 0, 386, 1615, 1616, 1617,
+ -2, 409, 0, 386, 370, 308, 309, 310, 361, 312,
+ 361, 361, 361, 361, 375, 375, 375, 375, 343, 344,
+ 345, 346, 347, 0, 361, 0, 329, 361, 361, 361,
+ 361, 351, 352, 353, 354, 355, 356, 357, 358, 313,
+ 314, 315, 316, 317, 318, 319, 320, 321, 363, 363,
+ 363, 363, 363, 367, 367, 0, 1109, 0, 390, 0,
+ 1507, 0, 0, 1541, 1624, 1634, 0, 0, 0, 0,
+ 0, 132, 0, 0, 0, 577, 620, 528, 565, 578,
+ 0, 531, 532, -2, 0, 0, 513, 0, 515, 0,
+ 410, 0, -2, 0, 420, 0, 416, 420, 417, 420,
+ 408, 421, 555, 556, 557, 0, 559, 560, 650, 961,
+ 0, 0, 0, 0, 0, 656, 657, 658, 0, 660,
+ 661, 662, 663, 664, 665, 666, 667, 668, 669, 566,
+ 567, 568, 569, 570, 571, 572, 573, 0, 0, 0,
+ 0, 515, 0, 562, 0, 0, 466, 467, 468, 0,
+ 0, 471, 472, 473, 474, 0, 0, 477, 478, 479,
+ 978, 979, 480, 481, 506, 507, 508, 482, 483, 484,
+ 485, 486, 487, 488, 500, 501, 502, 503, 504, 505,
+ 489, 490, 491, 492, 493, 494, 497, 0, 147, 1532,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 1622, 0, 0,
+ 0, 0, 907, 993, 1645, 1646, 723, 0, 0, 794,
+ 795, 0, 414, 415, 793, 793, 733, 775, 0, 793,
+ 737, 776, 738, 740, 739, 741, 754, 755, 793, 744,
+ 791, 792, 745, 746, 747, 748, 749, 750, 751, 771,
+ 756, 757, 758, 797, 0, 801, 802, 772, 773, 0,
+ 783, 0, 0, 0, 817, 818, 0, 825, 848, 846,
+ 847, 849, 841, 842, 843, 844, 0, 850, 0, 0,
+ 866, 96, 871, 872, 873, 874, 886, 879, 1153, 1011,
+ 1012, 1013, 0, 1015, 1021, 0, 1136, 1138, 1019, 1020,
+ 1023, 0, 0, 0, 1017, 1028, 1148, 1149, 1150, 0,
+ 0, 0, 0, 0, 1032, 1036, 1041, 1042, 1043, 1044,
+ 1045, 0, 1046, 0, 1049, 1050, 1051, 1052, 1053, 1054,
+ 1060, 1449, 1450, 1451, 1079, 301, 302, 0, 1080, 0,
+ 0, 0, 0, 0, 0, 0, 0, 1396, 1397, 1398,
+ 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408,
+ 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1152, 0, 1633,
+ 0, 0, 0, 1479, 1476, 0, 0, 0, 1435, 1437,
+ 0, 0, 0, 899, 900, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423,
+ 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433,
+ 0, 0, 1452, 0, 0, 0, 0, 0, 0, 0,
+ 1472, 0, 1085, 1086, 1087, 0, 0, 0, 0, 0,
+ 0, 1214, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 142, 143, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 1360, 1361, 1362,
+ 1363, 41, 0, 0, 0, 0, 0, 0, 0, 1483,
+ 0, -2, -2, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 1385, 0, 0, 0,
+ 0, 0, 0, 1605, 0, 0, 856, 857, 859, 0,
+ 995, 0, 976, 0, 0, 862, 0, 903, 0, 906,
+ 60, 62, 912, 913, 0, 934, 923, 911, 56, 51,
+ 0, 0, 953, 1552, 1555, 1556, 375, 1578, 0, 384,
+ 384, 381, 1513, 1514, 0, 1506, 1508, 1509, 79, 931,
+ 927, 0, 1009, 0, 0, 990, 0, 937, 939, 940,
+ 941, 973, 0, 944, 945, 0, 0, 0, 0, 0,
+ 98, 992, 104, 0, 112, 0, 0, 117, 118, 105,
+ 106, 107, 108, 0, 609, -2, 461, 179, 181, 182,
+ 183, 174, -2, 373, 371, 372, 311, 375, 375, 337,
+ 338, 339, 340, 341, 342, 0, 349, 0, 330, 331,
+ 332, 333, 322, 0, 323, 324, 325, 365, 0, 326,
+ 327, 0, 328, 428, 0, 1515, 391, 392, 394, 402,
+ 0, 397, 398, 0, 402, 402, 0, 423, 424, 0,
+ 1507, 1532, 0, 0, 1635, 1634, 1634, 1634, 152, 0,
+ 167, 168, 169, 170, 171, 172, 645, 0, 0, 621,
+ 643, 644, 165, 0, 0, 175, 517, 516, 0, 677,
+ 0, 426, 0, 0, 420, 420, 405, 406, 558, 0,
+ 0, 652, 653, 654, 655, 0, 0, 0, 544, 455,
+ 0, 545, 546, 515, 517, 0, 0, 386, 469, 470,
+ 475, 476, 495, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 593, 594, 596, 599, 601,
+ 519, 605, 607, 595, 598, 600, 602, 519, 606, 608,
+ 1529, 1530, 1531, 0, 0, 715, 0, 0, 452, 94,
+ 1623, 720, 724, 725, 790, 743, 777, 790, 735, 742,
+ 765, 779, 781, 815, 816, 821, 829, 830, 831, 870,
+ 0, 0, 0, 0, 878, 0, 0, 1022, 1137, 1139,
+ 1024, 1025, 1026, 1029, 0, 1033, 1037, 0, 0, 0,
+ 0, 0, 1084, 1082, 1483, 0, 0, 0, 1133, 0,
+ 0, 1156, 1157, 0, 0, 0, 0, 1477, 0, 0,
+ 1164, 0, 1438, 1114, 0, 0, 0, 0, 0, 1114,
+ 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1501,
+ 1191, 0, 0, 0, 0, 0, 1196, 1197, 1198, 1114,
+ 0, 1201, 1202, 0, 1204, 0, 1205, 0, 0, 0,
+ 0, 1212, 1213, 1215, 0, 0, 1218, 1219, 0, 1221,
+ 0, 1223, 1224, 1225, 1226, 1227, 1228, 0, 1230, 0,
+ 1232, 1233, 1234, 0, 1236, 0, 1238, 1239, 0, 1241,
+ 0, 1243, 0, 1246, 0, 1249, 0, 1252, 0, 1255,
+ 0, 1258, 0, 1261, 0, 1264, 0, 1267, 0, 1270,
+ 0, 1273, 0, 1276, 0, 1279, 0, 1282, 0, 1285,
+ 0, 1288, 0, 1291, 1292, 1293, 0, 1295, 0, 1297,
+ 0, 1300, 1301, 0, 1303, 0, 1306, 0, 1309, 0,
+ 0, 1310, 0, 0, 0, 1314, 0, 0, 0, 0,
+ 1323, 1324, 1325, 1326, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 1337, 1338, 1339, 1340, 1341, 1342,
+ 0, 1344, 0, 1115, 0, 0, 1115, 0, 0, 0,
+ 0, 0, 1154, 1632, 0, 1439, 1440, 1441, 1442, 1443,
+ 0, 0, 0, 0, 0, 0, 1383, 1384, 1386, 0,
+ 0, 1389, 0, 1391, 0, 1606, 855, 858, 860, 947,
+ 996, 997, 0, 0, 0, 0, 977, 1631, 901, 902,
+ 905, 955, 0, 1487, 0, 0, 934, 1009, 0, 935,
+ 0, 53, 950, 0, 1560, 1559, 1572, 1585, 384, 384,
+ 378, 379, 385, 380, 382, 383, 1505, 0, 1510, 0,
+ 1599, 0, 0, 1588, 0, 0, 0, 0, 0, 0,
+ 0, 0, 980, 0, 0, 983, 0, 0, 0, 0,
+ 974, 945, 0, 946, 0, -2, 0, 0, 92, 93,
+ 0, 0, 0, 115, 116, 0, 0, 122, 387, 388,
+ 156, 165, 463, 180, 436, 0, 0, 307, 374, 334,
+ 335, 336, 0, 359, 0, 0, 0, 0, 457, 128,
+ 1519, 1518, 402, 402, 393, 0, 396, 0, 0, 0,
+ 1636, 362, 425, 0, 146, 0, 0, 0, 0, 1625,
+ 615, 0, 0, 622, 0, 0, 0, 526, 0, 537,
+ 538, 0, 649, -2, 711, 390, 0, 404, 407, 962,
+ 0, 0, 539, 0, 542, 543, 456, 517, 548, 549,
+ 563, 550, 498, 499, 496, 0, 0, 1542, 1543, 1548,
+ 1546, 1547, 133, 584, 586, 590, 585, 589, 0, 0,
+ 0, 521, 0, 521, 582, 0, 452, 1515, 0, 719,
+ 453, 454, 793, 793, 865, 97, 0, 868, 0, 0,
+ 0, 0, 1030, 1034, 1047, 1048, 1444, 1470, 361, 361,
+ 1457, 361, 367, 1460, 361, 1462, 361, 1465, 361, 1468,
+ 1469, 0, 0, 1077, 0, 0, 0, 0, 1163, 1480,
+ 0, 0, 1174, 1113, 1114, 1114, 1114, 1114, 1114, 1180,
+ 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1474,
+ 0, 0, 0, 1195, 0, 0, 1199, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 144, 145, 0, 0,
+ 0, 0, 0, 0, 1394, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 1108, 1112, 0, 1116,
+ 1117, 0, 0, 1346, 0, 0, 1364, 0, 0, 0,
+ 0, 0, 0, 0, 1484, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 998, 1005, 0, 1005, 0,
+ 1005, 0, 0, 0, 1618, 1619, 1488, 1489, 1009, 1490,
+ 924, 936, 954, 1578, 0, 1571, 0, -2, 1580, 0,
+ 0, 0, 1586, 376, 377, 928, 80, 1010, 83, 0,
+ 1599, 1608, 0, 1596, 1601, 1603, 0, 0, 0, 1592,
+ 0, 1009, 938, 969, 971, 0, 966, 981, 982, 984,
+ 0, 986, 0, 988, 989, 949, 943, 0, 100, 0,
+ 1009, 1009, 99, 0, 994, 119, 120, 121, 462, 184,
+ 189, 0, 0, 0, 194, 0, 196, 0, 0, 0,
+ 201, 202, 402, 402, 437, 0, 304, 306, 0, 0,
+ 187, 375, 0, 375, 0, 366, 368, 0, 438, 458,
+ 1516, 1517, 0, 0, 395, 399, 400, 401, 0, 148,
+ 0, 0, 0, 618, 0, 646, 0, 0, 0, 0,
+ 0, 0, 176, 518, 678, 679, 680, 681, 682, 683,
+ 684, 685, 686, 0, 402, 0, 0, 0, 402, 402,
+ 402, 0, 703, 389, 0, 0, 674, 671, 540, 0,
+ 218, 219, 226, 227, 229, 0, 0, 0, 0, 0,
+ 547, 949, 1533, 1534, 1535, 0, 1545, 1549, 136, 0,
+ 0, 0, 0, 592, 597, 603, 0, 520, 604, 716,
+ 717, 718, 95, 728, 734, 867, 887, 1018, 1031, 1035,
+ 0, 0, 0, 0, 1471, 1455, 375, 1458, 1459, 1461,
+ 1463, 1464, 1466, 1467, 1073, 1074, 1078, 0, 1160, 0,
+ 1162, 0, 1478, 0, 1175, 1176, 1177, 1178, 1179, 1510,
+ 0, 0, 0, 1194, 0, 0, 1114, 0, 1207, 1206,
+ 1208, 0, 1210, 1211, 1216, 1217, 1220, 1222, 1229, 1231,
+ 1235, 1237, 1240, 1242, 1244, 0, 1247, 0, 1250, 0,
+ 1253, 0, 1256, 0, 1259, 0, 1262, 0, 1265, 0,
+ 1268, 0, 1271, 0, 1274, 0, 1277, 0, 1280, 0,
+ 1283, 0, 1286, 0, 1289, 0, 1294, 1296, 0, 1299,
+ 1302, 1304, 0, 1307, 0, 1311, 0, 1313, 1315, 1316,
+ 0, 0, 0, 1327, 1328, 1329, 1330, 1331, 1332, 1333,
+ 1334, 1335, 1336, 1343, 0, 1106, 1345, 1118, 1119, 1124,
+ 1348, 0, 0, 0, 1351, 0, 0, 0, 1355, 1155,
+ 1366, 0, 1371, 0, 0, 1377, 0, 1381, 0, 1387,
+ 1388, 1390, 1392, 0, 0, 0, 0, 0, 0, 0,
+ 975, 956, 64, 1490, 1494, 0, 1565, 1563, 1563, 1573,
+ 1574, 0, 0, 1581, 0, 0, 0, 0, 84, 0,
+ 0, 1587, 0, 0, 1604, 0, 0, 0, 0, 101,
+ 1501, 963, 970, 0, 0, 964, 0, 965, 985, 987,
+ 942, 0, 1009, 1009, 90, 91, 0, 190, 0, 192,
+ 0, 195, 197, 198, 199, 205, 206, 207, 200, 0,
+ 0, 303, 305, 0, 0, 348, 360, 350, 0, 0,
+ 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 949, 149,
+ 150, 151, 610, 0, 620, 0, 951, 0, 613, 0,
+ 529, 0, 0, 0, 402, 402, 402, 0, 0, 0,
+ 0, 688, 0, 0, 651, 0, 659, 0, 0, 0,
+ 230, 231, 0, 1544, 583, 0, 134, 135, 0, 0,
+ 588, 522, 523, 1071, 0, 0, 0, 1072, 1456, 0,
+ 0, 0, 0, 0, 1475, 0, 0, 0, 0, 1200,
+ 1203, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 1319, 0, 0, 0, 640, 641, 0,
+ 1395, 1111, 1501, 0, 1115, 1125, 1126, 0, 1115, 1365,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 1006, 0, 0, 0, 957, 958, 0, 0, 0,
+ 995, 1494, 1499, 0, 0, 1568, 0, 1561, 1564, 1562,
+ 1575, 0, 0, 1582, 0, 1584, 0, 1609, 1610, 1602,
+ 1597, 0, 1591, 1594, 1596, 1593, 1510, 967, 0, 972,
+ 0, 1501, 89, 0, 193, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 203, 204, 0, 0,
+ 364, 369, 0, 0, 0, 611, 0, 952, 623, 614,
+ 0, 701, 0, 705, 0, 0, 0, 708, 709, 710,
+ 687, 0, 691, 430, 675, 672, 673, 541, 0, 137,
+ 138, 0, 0, 0, 1445, 0, 1448, 1158, 1161, 1159,
+ 0, 1190, 1192, 1193, 1453, 1454, 1209, 1245, 1248, 1251,
+ 1254, 1257, 1260, 1263, 1266, 1269, 1272, 1275, 1278, 1281,
+ 1284, 1287, 1290, 1298, 1305, 1308, 1312, 1317, 0, 1320,
+ 0, 0, 1321, 0, 642, 1102, 0, 0, 1122, 1123,
+ 0, 1350, 1352, 1353, 1354, 1367, 0, 1372, 1373, 0,
+ 1378, 0, 1382, 1393, 0, 1000, 1007, 1008, 0, 1003,
+ 0, 1004, 0, 948, 1499, 82, 1500, 1497, 0, 1495,
+ 1492, 1557, 0, 1566, 1567, 1576, 1577, 1583, 0, 0,
+ 1596, 0, 1590, 87, 0, 0, 0, 1510, 191, 0,
+ 210, 0, 619, 0, 622, 612, 699, 700, 0, 712,
+ 704, 706, 707, 689, -2, 1536, 0, 0, 0, 591,
+ 1446, 0, 0, 1322, 0, 638, 639, 1110, 1103, 0,
+ 1088, 1089, 1107, 1347, 1349, 0, 0, 0, 999, 959,
+ 960, 1001, 1002, 81, 0, 1496, 1130, 0, 1491, 0,
+ 1569, 1570, 1600, 0, 1589, 1595, 968, 975, 0, 88,
+ 443, 436, 1536, 0, 0, 0, 692, 693, 694, 695,
+ 696, 697, 698, 580, 1538, 139, 140, 0, 510, 511,
+ 512, 133, 0, 1165, 1318, 1104, 0, 0, 0, 0,
+ 0, 1368, 0, 1374, 0, 1379, 0, 1498, 0, 0,
+ 1493, 1598, 624, 0, 626, 0, -2, 431, 444, 0,
+ 185, 211, 212, 0, 0, 215, 216, 217, 208, 209,
+ 129, 0, 0, 713, 0, 1539, 1540, 0, 136, 0,
+ 0, 1095, 1096, 1097, 1098, 1100, 0, 0, 0, 0,
+ 1131, 1108, 625, 0, 0, 386, 0, 635, 432, 433,
+ 0, 439, 440, 441, 442, 213, 214, 647, 0, 0,
+ 509, 587, 1447, 0, 0, 1369, 0, 1375, 0, 1380,
+ 0, 627, 628, 636, 0, 434, 0, 435, 0, 0,
+ 0, 616, 0, 647, 1537, 1105, 1099, 1101, 0, 0,
+ 1129, 0, 637, 633, 445, 447, 448, 0, 0, 446,
+ 648, 617, 1370, 1376, 0, 449, 450, 451, 629, 630,
+ 631, 632,
}
var yyTok1 = [...]int{
1, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
- 3, 3, 3, 157, 3, 3, 3, 185, 177, 3,
- 95, 97, 182, 180, 96, 181, 235, 183, 3, 3,
- 3, 3, 3, 3, 3, 3, 3, 3, 3, 750,
- 165, 164, 166, 3, 3, 3, 3, 3, 3, 3,
+ 3, 3, 3, 158, 3, 3, 3, 186, 178, 3,
+ 95, 97, 183, 181, 96, 182, 236, 184, 3, 3,
+ 3, 3, 3, 3, 3, 3, 3, 3, 3, 751,
+ 166, 165, 167, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
- 3, 3, 3, 3, 187, 3, 3, 3, 3, 3,
+ 3, 3, 3, 3, 188, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
- 3, 3, 3, 3, 153, 3, 188,
+ 3, 3, 3, 3, 154, 3, 189,
}
var yyTok2 = [...]int{
@@ -9966,14 +9869,14 @@ var yyTok2 = [...]int{
115, 116, 117, 118, 119, 120, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
135, 136, 137, 138, 139, 140, 141, 142, 143, 144,
- 145, 146, 147, 148, 149, 150, 151, 152, 154, 155,
- 156, 158, 159, 160, 161, 162, 163, 167, 168, 169,
- 170, 171, 172, 173, 174, 175, 176, 178, 179, 184,
- 186, 189, 190, 191, 192, 193, 194, 195, 196, 197,
+ 145, 146, 147, 148, 149, 150, 151, 152, 153, 155,
+ 156, 157, 159, 160, 161, 162, 163, 164, 168, 169,
+ 170, 171, 172, 173, 174, 175, 176, 177, 179, 180,
+ 185, 187, 190, 191, 192, 193, 194, 195, 196, 197,
198, 199, 200, 201, 202, 203, 204, 205, 206, 207,
208, 209, 210, 211, 212, 213, 214, 215, 216, 217,
218, 219, 220, 221, 222, 223, 224, 225, 226, 227,
- 228, 229, 230, 231, 232, 233, 234, 236, 237, 238,
+ 228, 229, 230, 231, 232, 233, 234, 235, 237, 238,
239, 240, 241, 242, 243, 244, 245, 246, 247, 248,
249, 250, 251, 252, 253, 254, 255, 256, 257, 258,
259, 260, 261, 262, 263, 264, 265, 266, 267, 268,
@@ -10076,7 +9979,7 @@ var yyTok3 = [...]int{
58060, 735, 58061, 736, 58062, 737, 58063, 738, 58064, 739,
58065, 740, 58066, 741, 58067, 742, 58068, 743, 58069, 744,
58070, 745, 58071, 746, 58072, 747, 58073, 748, 58074, 749,
- 0,
+ 58075, 750, 0,
}
var yyErrorMessages = [...]struct {
@@ -16539,10 +16442,12 @@ yydefault:
yyVAL.union = yyLOCAL
case 837:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:4506
+ var yyLOCAL VExplainType
+//line sql.y:4504
{
- yyVAL.str = yyDollar[1].str
+ yyLOCAL = TraceVExplainType
}
+ yyVAL.union = yyLOCAL
case 838:
yyDollar = yyS[yypt-1 : yypt+1]
//line sql.y:4510
@@ -16557,18 +16462,16 @@ yydefault:
}
case 840:
yyDollar = yyS[yypt-1 : yypt+1]
- var yyLOCAL Statement
-//line sql.y:4520
+//line sql.y:4518
{
- yyLOCAL = yyDollar[1].selStmtUnion()
+ yyVAL.str = yyDollar[1].str
}
- yyVAL.union = yyLOCAL
case 841:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Statement
//line sql.y:4524
{
- yyLOCAL = yyDollar[1].statementUnion()
+ yyLOCAL = yyDollar[1].selStmtUnion()
}
yyVAL.union = yyLOCAL
case 842:
@@ -16588,208 +16491,210 @@ yydefault:
}
yyVAL.union = yyLOCAL
case 844:
- yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:4537
+ yyDollar = yyS[yypt-1 : yypt+1]
+ var yyLOCAL Statement
+//line sql.y:4536
{
- yyVAL.str = ""
+ yyLOCAL = yyDollar[1].statementUnion()
}
+ yyVAL.union = yyLOCAL
case 845:
- yyDollar = yyS[yypt-1 : yypt+1]
+ yyDollar = yyS[yypt-0 : yypt+1]
//line sql.y:4541
{
- yyVAL.str = yyDollar[1].identifierCI.val
+ yyVAL.str = ""
}
case 846:
yyDollar = yyS[yypt-1 : yypt+1]
//line sql.y:4545
{
- yyVAL.str = encodeSQLString(yyDollar[1].str)
+ yyVAL.str = yyDollar[1].identifierCI.val
}
case 847:
+ yyDollar = yyS[yypt-1 : yypt+1]
+//line sql.y:4549
+ {
+ yyVAL.str = encodeSQLString(yyDollar[1].str)
+ }
+ case 848:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4551
+//line sql.y:4555
{
yyLOCAL = &ExplainTab{Table: yyDollar[3].tableName, Wild: yyDollar[4].str}
}
yyVAL.union = yyLOCAL
- case 848:
+ case 849:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4555
+//line sql.y:4559
{
yyLOCAL = &ExplainStmt{Type: yyDollar[3].explainTypeUnion(), Statement: yyDollar[4].statementUnion(), Comments: Comments(yyDollar[2].strs).Parsed()}
}
yyVAL.union = yyLOCAL
- case 849:
+ case 850:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4561
+//line sql.y:4565
{
yyLOCAL = &VExplainStmt{Type: yyDollar[3].vexplainTypeUnion(), Statement: yyDollar[4].statementUnion(), Comments: Comments(yyDollar[2].strs).Parsed()}
}
yyVAL.union = yyLOCAL
- case 850:
+ case 851:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4567
+//line sql.y:4571
{
yyLOCAL = &OtherAdmin{}
}
yyVAL.union = yyLOCAL
- case 851:
+ case 852:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4571
+//line sql.y:4575
{
yyLOCAL = &OtherAdmin{}
}
yyVAL.union = yyLOCAL
- case 852:
+ case 853:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4577
+//line sql.y:4581
{
yyLOCAL = &LockTables{Tables: yyDollar[3].tableAndLockTypesUnion()}
}
yyVAL.union = yyLOCAL
- case 853:
+ case 854:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL TableAndLockTypes
-//line sql.y:4583
+//line sql.y:4587
{
yyLOCAL = TableAndLockTypes{yyDollar[1].tableAndLockTypeUnion()}
}
yyVAL.union = yyLOCAL
- case 854:
+ case 855:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:4587
+//line sql.y:4591
{
yySLICE := (*TableAndLockTypes)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[3].tableAndLockTypeUnion())
}
- case 855:
+ case 856:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *TableAndLockType
-//line sql.y:4593
+//line sql.y:4597
{
yyLOCAL = &TableAndLockType{Table: yyDollar[1].aliasedTableNameUnion(), Lock: yyDollar[2].lockTypeUnion()}
}
yyVAL.union = yyLOCAL
- case 856:
+ case 857:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL LockType
-//line sql.y:4599
+//line sql.y:4603
{
yyLOCAL = Read
}
yyVAL.union = yyLOCAL
- case 857:
+ case 858:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL LockType
-//line sql.y:4603
+//line sql.y:4607
{
yyLOCAL = ReadLocal
}
yyVAL.union = yyLOCAL
- case 858:
+ case 859:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL LockType
-//line sql.y:4607
+//line sql.y:4611
{
yyLOCAL = Write
}
yyVAL.union = yyLOCAL
- case 859:
+ case 860:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL LockType
-//line sql.y:4611
+//line sql.y:4615
{
yyLOCAL = LowPriorityWrite
}
yyVAL.union = yyLOCAL
- case 860:
+ case 861:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4617
+//line sql.y:4621
{
yyLOCAL = &UnlockTables{}
}
yyVAL.union = yyLOCAL
- case 861:
+ case 862:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4623
+//line sql.y:4627
{
yyLOCAL = &RevertMigration{Comments: Comments(yyDollar[2].strs).Parsed(), UUID: string(yyDollar[4].str)}
}
yyVAL.union = yyLOCAL
- case 862:
+ case 863:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4629
+//line sql.y:4633
{
yyLOCAL = &Flush{IsLocal: yyDollar[2].booleanUnion(), FlushOptions: yyDollar[3].strs}
}
yyVAL.union = yyLOCAL
- case 863:
+ case 864:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4633
+//line sql.y:4637
{
yyLOCAL = &Flush{IsLocal: yyDollar[2].booleanUnion()}
}
yyVAL.union = yyLOCAL
- case 864:
+ case 865:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4637
+//line sql.y:4641
{
yyLOCAL = &Flush{IsLocal: yyDollar[2].booleanUnion(), WithLock: true}
}
yyVAL.union = yyLOCAL
- case 865:
+ case 866:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4641
+//line sql.y:4645
{
yyLOCAL = &Flush{IsLocal: yyDollar[2].booleanUnion(), TableNames: yyDollar[4].tableNamesUnion()}
}
yyVAL.union = yyLOCAL
- case 866:
+ case 867:
yyDollar = yyS[yypt-7 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4645
+//line sql.y:4649
{
yyLOCAL = &Flush{IsLocal: yyDollar[2].booleanUnion(), TableNames: yyDollar[4].tableNamesUnion(), WithLock: true}
}
yyVAL.union = yyLOCAL
- case 867:
+ case 868:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4649
+//line sql.y:4653
{
yyLOCAL = &Flush{IsLocal: yyDollar[2].booleanUnion(), TableNames: yyDollar[4].tableNamesUnion(), ForExport: true}
}
yyVAL.union = yyLOCAL
- case 868:
+ case 869:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:4655
+//line sql.y:4659
{
yyVAL.strs = []string{yyDollar[1].str}
}
- case 869:
+ case 870:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:4659
+//line sql.y:4663
{
yyVAL.strs = append(yyDollar[1].strs, yyDollar[3].str)
}
- case 870:
- yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:4665
- {
- yyVAL.str = string(yyDollar[1].str) + " " + string(yyDollar[2].str)
- }
case 871:
yyDollar = yyS[yypt-2 : yypt+1]
//line sql.y:4669
@@ -16809,10 +16714,10 @@ yydefault:
yyVAL.str = string(yyDollar[1].str) + " " + string(yyDollar[2].str)
}
case 874:
- yyDollar = yyS[yypt-1 : yypt+1]
+ yyDollar = yyS[yypt-2 : yypt+1]
//line sql.y:4681
{
- yyVAL.str = string(yyDollar[1].str)
+ yyVAL.str = string(yyDollar[1].str) + " " + string(yyDollar[2].str)
}
case 875:
yyDollar = yyS[yypt-1 : yypt+1]
@@ -16827,22 +16732,22 @@ yydefault:
yyVAL.str = string(yyDollar[1].str)
}
case 877:
- yyDollar = yyS[yypt-3 : yypt+1]
+ yyDollar = yyS[yypt-1 : yypt+1]
//line sql.y:4693
{
- yyVAL.str = string(yyDollar[1].str) + " " + string(yyDollar[2].str) + yyDollar[3].str
+ yyVAL.str = string(yyDollar[1].str)
}
case 878:
- yyDollar = yyS[yypt-2 : yypt+1]
+ yyDollar = yyS[yypt-3 : yypt+1]
//line sql.y:4697
{
- yyVAL.str = string(yyDollar[1].str) + " " + string(yyDollar[2].str)
+ yyVAL.str = string(yyDollar[1].str) + " " + string(yyDollar[2].str) + yyDollar[3].str
}
case 879:
- yyDollar = yyS[yypt-1 : yypt+1]
+ yyDollar = yyS[yypt-2 : yypt+1]
//line sql.y:4701
{
- yyVAL.str = string(yyDollar[1].str)
+ yyVAL.str = string(yyDollar[1].str) + " " + string(yyDollar[2].str)
}
case 880:
yyDollar = yyS[yypt-1 : yypt+1]
@@ -16857,144 +16762,150 @@ yydefault:
yyVAL.str = string(yyDollar[1].str)
}
case 882:
+ yyDollar = yyS[yypt-1 : yypt+1]
+//line sql.y:4713
+ {
+ yyVAL.str = string(yyDollar[1].str)
+ }
+ case 883:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL bool
-//line sql.y:4714
+//line sql.y:4718
{
yyLOCAL = false
}
yyVAL.union = yyLOCAL
- case 883:
+ case 884:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL bool
-//line sql.y:4718
+//line sql.y:4722
{
yyLOCAL = true
}
yyVAL.union = yyLOCAL
- case 884:
+ case 885:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL bool
-//line sql.y:4722
+//line sql.y:4726
{
yyLOCAL = true
}
yyVAL.union = yyLOCAL
- case 885:
+ case 886:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:4727
+//line sql.y:4731
{
yyVAL.str = ""
}
- case 886:
+ case 887:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:4731
+//line sql.y:4735
{
yyVAL.str = " " + string(yyDollar[1].str) + " " + string(yyDollar[2].str) + " " + yyDollar[3].identifierCI.String()
}
- case 887:
+ case 888:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:4736
+//line sql.y:4740
{
setAllowComments(yylex, true)
}
- case 888:
+ case 889:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:4740
+//line sql.y:4744
{
yyVAL.strs = yyDollar[2].strs
setAllowComments(yylex, false)
}
- case 889:
+ case 890:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:4746
+//line sql.y:4750
{
yyVAL.strs = nil
}
- case 890:
+ case 891:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:4750
+//line sql.y:4754
{
yyVAL.strs = append(yyDollar[1].strs, yyDollar[2].str)
}
- case 891:
+ case 892:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL bool
-//line sql.y:4756
+//line sql.y:4760
{
yyLOCAL = true
}
yyVAL.union = yyLOCAL
- case 892:
+ case 893:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL bool
-//line sql.y:4760
+//line sql.y:4764
{
yyLOCAL = false
}
yyVAL.union = yyLOCAL
- case 893:
+ case 894:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL bool
-//line sql.y:4764
+//line sql.y:4768
{
yyLOCAL = true
}
yyVAL.union = yyLOCAL
- case 894:
+ case 895:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:4769
+//line sql.y:4773
{
yyVAL.str = ""
}
- case 895:
+ case 896:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:4773
+//line sql.y:4777
{
yyVAL.str = SQLNoCacheStr
}
- case 896:
+ case 897:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:4777
+//line sql.y:4781
{
yyVAL.str = SQLCacheStr
}
- case 897:
+ case 898:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL bool
-//line sql.y:4782
+//line sql.y:4786
{
yyLOCAL = false
}
yyVAL.union = yyLOCAL
- case 898:
+ case 899:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL bool
-//line sql.y:4786
+//line sql.y:4790
{
yyLOCAL = true
}
yyVAL.union = yyLOCAL
- case 899:
+ case 900:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL bool
-//line sql.y:4790
+//line sql.y:4794
{
yyLOCAL = true
}
yyVAL.union = yyLOCAL
- case 900:
+ case 901:
yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4796
+//line sql.y:4800
{
yyLOCAL = &PrepareStmt{Name: yyDollar[3].identifierCI, Comments: Comments(yyDollar[2].strs).Parsed(), Statement: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 901:
+ case 902:
yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4800
+//line sql.y:4804
{
yyLOCAL = &PrepareStmt{
Name: yyDollar[3].identifierCI,
@@ -17003,87 +16914,81 @@ yydefault:
}
}
yyVAL.union = yyLOCAL
- case 902:
+ case 903:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4810
+//line sql.y:4814
{
yyLOCAL = &ExecuteStmt{Name: yyDollar[3].identifierCI, Comments: Comments(yyDollar[2].strs).Parsed(), Arguments: yyDollar[4].variablesUnion()}
}
yyVAL.union = yyLOCAL
- case 903:
+ case 904:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL []*Variable
-//line sql.y:4815
+//line sql.y:4819
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 904:
+ case 905:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL []*Variable
-//line sql.y:4819
+//line sql.y:4823
{
yyLOCAL = yyDollar[2].variablesUnion()
}
yyVAL.union = yyLOCAL
- case 905:
+ case 906:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4825
+//line sql.y:4829
{
yyLOCAL = &DeallocateStmt{Comments: Comments(yyDollar[2].strs).Parsed(), Name: yyDollar[4].identifierCI}
}
yyVAL.union = yyLOCAL
- case 906:
+ case 907:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Statement
-//line sql.y:4829
+//line sql.y:4833
{
yyLOCAL = &DeallocateStmt{Comments: Comments(yyDollar[2].strs).Parsed(), Name: yyDollar[4].identifierCI}
}
yyVAL.union = yyLOCAL
- case 907:
+ case 908:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:4834
+//line sql.y:4838
{
yyVAL.strs = nil
}
- case 908:
+ case 909:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:4838
+//line sql.y:4842
{
yyVAL.strs = yyDollar[1].strs
}
- case 909:
+ case 910:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:4844
+//line sql.y:4848
{
yyVAL.strs = []string{yyDollar[1].str}
}
- case 910:
+ case 911:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:4848
+//line sql.y:4852
{
yyVAL.strs = append(yyDollar[1].strs, yyDollar[2].str)
}
- case 911:
- yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:4854
- {
- yyVAL.str = SQLNoCacheStr
- }
case 912:
yyDollar = yyS[yypt-1 : yypt+1]
//line sql.y:4858
{
- yyVAL.str = SQLCacheStr
+ yyVAL.str = SQLNoCacheStr
}
case 913:
yyDollar = yyS[yypt-1 : yypt+1]
//line sql.y:4862
{
- yyVAL.str = DistinctStr
+ yyVAL.str = SQLCacheStr
}
case 914:
yyDollar = yyS[yypt-1 : yypt+1]
@@ -17095,505 +17000,511 @@ yydefault:
yyDollar = yyS[yypt-1 : yypt+1]
//line sql.y:4870
{
- yyVAL.str = HighPriorityStr
+ yyVAL.str = DistinctStr
}
case 916:
yyDollar = yyS[yypt-1 : yypt+1]
//line sql.y:4874
{
- yyVAL.str = StraightJoinHint
+ yyVAL.str = HighPriorityStr
}
case 917:
yyDollar = yyS[yypt-1 : yypt+1]
//line sql.y:4878
{
- yyVAL.str = SQLBufferResultStr
+ yyVAL.str = StraightJoinHint
}
case 918:
yyDollar = yyS[yypt-1 : yypt+1]
//line sql.y:4882
{
- yyVAL.str = SQLSmallResultStr
+ yyVAL.str = SQLBufferResultStr
}
case 919:
yyDollar = yyS[yypt-1 : yypt+1]
//line sql.y:4886
{
- yyVAL.str = SQLBigResultStr
+ yyVAL.str = SQLSmallResultStr
}
case 920:
yyDollar = yyS[yypt-1 : yypt+1]
//line sql.y:4890
{
- yyVAL.str = SQLCalcFoundRowsStr
+ yyVAL.str = SQLBigResultStr
}
case 921:
yyDollar = yyS[yypt-1 : yypt+1]
//line sql.y:4894
{
- yyVAL.str = AllStr // These are not picked up by NewSelect, and so ALL will be dropped. But this is OK, since it's redundant anyway
+ yyVAL.str = SQLCalcFoundRowsStr
}
case 922:
yyDollar = yyS[yypt-1 : yypt+1]
+//line sql.y:4898
+ {
+ yyVAL.str = AllStr // These are not picked up by NewSelect, and so ALL will be dropped. But this is OK, since it's redundant anyway
+ }
+ case 923:
+ yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL SelectExprs
-//line sql.y:4900
+//line sql.y:4904
{
yyLOCAL = SelectExprs{yyDollar[1].selectExprUnion()}
}
yyVAL.union = yyLOCAL
- case 923:
+ case 924:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:4904
+//line sql.y:4908
{
yySLICE := (*SelectExprs)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[3].selectExprUnion())
}
- case 924:
+ case 925:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL SelectExpr
-//line sql.y:4910
+//line sql.y:4914
{
yyLOCAL = &StarExpr{}
}
yyVAL.union = yyLOCAL
- case 925:
+ case 926:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL SelectExpr
-//line sql.y:4914
+//line sql.y:4918
{
yyLOCAL = &AliasedExpr{Expr: yyDollar[1].exprUnion(), As: yyDollar[2].identifierCI}
}
yyVAL.union = yyLOCAL
- case 926:
+ case 927:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL SelectExpr
-//line sql.y:4918
+//line sql.y:4922
{
yyLOCAL = &StarExpr{TableName: TableName{Name: yyDollar[1].identifierCS}}
}
yyVAL.union = yyLOCAL
- case 927:
+ case 928:
yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL SelectExpr
-//line sql.y:4922
+//line sql.y:4926
{
yyLOCAL = &StarExpr{TableName: TableName{Qualifier: yyDollar[1].identifierCS, Name: yyDollar[3].identifierCS}}
}
yyVAL.union = yyLOCAL
- case 928:
+ case 929:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:4927
+//line sql.y:4931
{
yyVAL.identifierCI = IdentifierCI{}
}
- case 929:
+ case 930:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:4931
+//line sql.y:4935
{
yyVAL.identifierCI = yyDollar[1].identifierCI
}
- case 930:
+ case 931:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:4935
+//line sql.y:4939
{
yyVAL.identifierCI = yyDollar[2].identifierCI
}
- case 932:
+ case 933:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:4942
+//line sql.y:4946
{
yyVAL.identifierCI = NewIdentifierCI(string(yyDollar[1].str))
}
- case 933:
+ case 934:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL TableExprs
-//line sql.y:4947
+//line sql.y:4951
{
yyLOCAL = TableExprs{&AliasedTableExpr{Expr: TableName{Name: NewIdentifierCS("dual")}}}
}
yyVAL.union = yyLOCAL
- case 934:
+ case 935:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL TableExprs
-//line sql.y:4951
+//line sql.y:4955
{
yyLOCAL = yyDollar[1].tableExprsUnion()
}
yyVAL.union = yyLOCAL
- case 935:
+ case 936:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL TableExprs
-//line sql.y:4957
+//line sql.y:4961
{
yyLOCAL = yyDollar[2].tableExprsUnion()
}
yyVAL.union = yyLOCAL
- case 936:
+ case 937:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL TableExprs
-//line sql.y:4963
+//line sql.y:4967
{
yyLOCAL = TableExprs{yyDollar[1].tableExprUnion()}
}
yyVAL.union = yyLOCAL
- case 937:
+ case 938:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:4967
+//line sql.y:4971
{
yySLICE := (*TableExprs)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[3].tableExprUnion())
}
- case 940:
+ case 941:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL TableExpr
-//line sql.y:4977
+//line sql.y:4981
{
yyLOCAL = yyDollar[1].aliasedTableNameUnion()
}
yyVAL.union = yyLOCAL
- case 941:
+ case 942:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL TableExpr
-//line sql.y:4981
+//line sql.y:4985
{
yyLOCAL = &AliasedTableExpr{Expr: yyDollar[1].derivedTableUnion(), As: yyDollar[3].identifierCS, Columns: yyDollar[4].columnsUnion()}
}
yyVAL.union = yyLOCAL
- case 942:
+ case 943:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL TableExpr
-//line sql.y:4985
+//line sql.y:4989
{
yyLOCAL = &ParenTableExpr{Exprs: yyDollar[2].tableExprsUnion()}
}
yyVAL.union = yyLOCAL
- case 943:
+ case 944:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL TableExpr
-//line sql.y:4989
+//line sql.y:4993
{
yyLOCAL = yyDollar[1].tableExprUnion()
}
yyVAL.union = yyLOCAL
- case 944:
+ case 945:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL *DerivedTable
-//line sql.y:4995
+//line sql.y:4999
{
yyLOCAL = &DerivedTable{Lateral: false, Select: yyDollar[1].selStmtUnion()}
}
yyVAL.union = yyLOCAL
- case 945:
+ case 946:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *DerivedTable
-//line sql.y:4999
+//line sql.y:5003
{
yyLOCAL = &DerivedTable{Lateral: true, Select: yyDollar[2].selStmtUnion()}
}
yyVAL.union = yyLOCAL
- case 946:
+ case 947:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL *AliasedTableExpr
-//line sql.y:5005
+//line sql.y:5009
{
yyLOCAL = &AliasedTableExpr{Expr: yyDollar[1].tableName, As: yyDollar[2].identifierCS, Hints: yyDollar[3].indexHintsUnion()}
}
yyVAL.union = yyLOCAL
- case 947:
+ case 948:
yyDollar = yyS[yypt-7 : yypt+1]
var yyLOCAL *AliasedTableExpr
-//line sql.y:5009
+//line sql.y:5013
{
yyLOCAL = &AliasedTableExpr{Expr: yyDollar[1].tableName, Partitions: yyDollar[4].partitionsUnion(), As: yyDollar[6].identifierCS, Hints: yyDollar[7].indexHintsUnion()}
}
yyVAL.union = yyLOCAL
- case 948:
+ case 949:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL Columns
-//line sql.y:5014
+//line sql.y:5018
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 949:
+ case 950:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Columns
-//line sql.y:5018
+//line sql.y:5022
{
yyLOCAL = yyDollar[2].columnsUnion()
}
yyVAL.union = yyLOCAL
- case 950:
+ case 951:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL Columns
-//line sql.y:5023
+//line sql.y:5027
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 951:
+ case 952:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Columns
-//line sql.y:5027
+//line sql.y:5031
{
yyLOCAL = yyDollar[1].columnsUnion()
}
yyVAL.union = yyLOCAL
- case 952:
+ case 953:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Columns
-//line sql.y:5033
+//line sql.y:5037
{
yyLOCAL = Columns{yyDollar[1].identifierCI}
}
yyVAL.union = yyLOCAL
- case 953:
+ case 954:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:5037
+//line sql.y:5041
{
yySLICE := (*Columns)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[3].identifierCI)
}
- case 954:
+ case 955:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL []*Variable
-//line sql.y:5043
+//line sql.y:5047
{
yyLOCAL = []*Variable{yyDollar[1].variableUnion()}
}
yyVAL.union = yyLOCAL
- case 955:
+ case 956:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:5047
+//line sql.y:5051
{
yySLICE := (*[]*Variable)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[3].variableUnion())
}
- case 956:
+ case 957:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Columns
-//line sql.y:5053
+//line sql.y:5057
{
yyLOCAL = Columns{yyDollar[1].identifierCI}
}
yyVAL.union = yyLOCAL
- case 957:
+ case 958:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Columns
-//line sql.y:5057
+//line sql.y:5061
{
yyLOCAL = Columns{NewIdentifierCI(string(yyDollar[1].str))}
}
yyVAL.union = yyLOCAL
- case 958:
+ case 959:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:5061
+//line sql.y:5065
{
yySLICE := (*Columns)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[3].identifierCI)
}
- case 959:
+ case 960:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:5065
+//line sql.y:5069
{
yySLICE := (*Columns)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, NewIdentifierCI(string(yyDollar[3].str)))
}
- case 960:
+ case 961:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Partitions
-//line sql.y:5071
+//line sql.y:5075
{
yyLOCAL = Partitions{yyDollar[1].identifierCI}
}
yyVAL.union = yyLOCAL
- case 961:
+ case 962:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:5075
+//line sql.y:5079
{
yySLICE := (*Partitions)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[3].identifierCI)
}
- case 962:
+ case 963:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL TableExpr
-//line sql.y:5088
+//line sql.y:5092
{
yyLOCAL = &JoinTableExpr{LeftExpr: yyDollar[1].tableExprUnion(), Join: yyDollar[2].joinTypeUnion(), RightExpr: yyDollar[3].tableExprUnion(), Condition: yyDollar[4].joinCondition}
}
yyVAL.union = yyLOCAL
- case 963:
+ case 964:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL TableExpr
-//line sql.y:5092
+//line sql.y:5096
{
yyLOCAL = &JoinTableExpr{LeftExpr: yyDollar[1].tableExprUnion(), Join: yyDollar[2].joinTypeUnion(), RightExpr: yyDollar[3].tableExprUnion(), Condition: yyDollar[4].joinCondition}
}
yyVAL.union = yyLOCAL
- case 964:
+ case 965:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL TableExpr
-//line sql.y:5096
+//line sql.y:5100
{
yyLOCAL = &JoinTableExpr{LeftExpr: yyDollar[1].tableExprUnion(), Join: yyDollar[2].joinTypeUnion(), RightExpr: yyDollar[3].tableExprUnion(), Condition: yyDollar[4].joinCondition}
}
yyVAL.union = yyLOCAL
- case 965:
+ case 966:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL TableExpr
-//line sql.y:5100
+//line sql.y:5104
{
yyLOCAL = &JoinTableExpr{LeftExpr: yyDollar[1].tableExprUnion(), Join: yyDollar[2].joinTypeUnion(), RightExpr: yyDollar[3].tableExprUnion()}
}
yyVAL.union = yyLOCAL
- case 966:
+ case 967:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:5106
+//line sql.y:5110
{
yyVAL.joinCondition = &JoinCondition{On: yyDollar[2].exprUnion()}
}
- case 967:
+ case 968:
yyDollar = yyS[yypt-4 : yypt+1]
-//line sql.y:5108
+//line sql.y:5112
{
yyVAL.joinCondition = &JoinCondition{Using: yyDollar[3].columnsUnion()}
}
- case 968:
+ case 969:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:5112
+//line sql.y:5116
{
yyVAL.joinCondition = &JoinCondition{}
}
- case 969:
+ case 970:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:5114
+//line sql.y:5118
{
yyVAL.joinCondition = yyDollar[1].joinCondition
}
- case 970:
+ case 971:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:5118
+//line sql.y:5122
{
yyVAL.joinCondition = &JoinCondition{}
}
- case 971:
+ case 972:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:5120
+//line sql.y:5124
{
yyVAL.joinCondition = &JoinCondition{On: yyDollar[2].exprUnion()}
}
- case 972:
+ case 973:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:5123
+//line sql.y:5127
{
yyVAL.empty = struct{}{}
}
- case 973:
+ case 974:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:5125
+//line sql.y:5129
{
yyVAL.empty = struct{}{}
}
- case 974:
+ case 975:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:5128
+//line sql.y:5132
{
yyVAL.identifierCS = NewIdentifierCS("")
}
- case 975:
+ case 976:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:5132
+//line sql.y:5136
{
yyVAL.identifierCS = yyDollar[1].identifierCS
}
- case 976:
+ case 977:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:5136
+//line sql.y:5140
{
yyVAL.identifierCS = yyDollar[2].identifierCS
}
- case 978:
+ case 979:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:5143
+//line sql.y:5147
{
yyVAL.identifierCS = NewIdentifierCS(string(yyDollar[1].str))
}
- case 979:
+ case 980:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL JoinType
-//line sql.y:5149
+//line sql.y:5153
{
yyLOCAL = NormalJoinType
}
yyVAL.union = yyLOCAL
- case 980:
+ case 981:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL JoinType
-//line sql.y:5153
+//line sql.y:5157
{
yyLOCAL = NormalJoinType
}
yyVAL.union = yyLOCAL
- case 981:
+ case 982:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL JoinType
-//line sql.y:5157
+//line sql.y:5161
{
yyLOCAL = NormalJoinType
}
yyVAL.union = yyLOCAL
- case 982:
+ case 983:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL JoinType
-//line sql.y:5163
+//line sql.y:5167
{
yyLOCAL = StraightJoinType
}
yyVAL.union = yyLOCAL
- case 983:
+ case 984:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL JoinType
-//line sql.y:5169
+//line sql.y:5173
{
yyLOCAL = LeftJoinType
}
yyVAL.union = yyLOCAL
- case 984:
+ case 985:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL JoinType
-//line sql.y:5173
+//line sql.y:5177
{
yyLOCAL = LeftJoinType
}
yyVAL.union = yyLOCAL
- case 985:
+ case 986:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL JoinType
-//line sql.y:5177
+//line sql.y:5181
{
yyLOCAL = RightJoinType
}
yyVAL.union = yyLOCAL
- case 986:
+ case 987:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL JoinType
-//line sql.y:5181
+//line sql.y:5185
{
yyLOCAL = RightJoinType
}
yyVAL.union = yyLOCAL
- case 987:
+ case 988:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL JoinType
-//line sql.y:5187
+//line sql.y:5191
{
yyLOCAL = NaturalJoinType
}
yyVAL.union = yyLOCAL
- case 988:
+ case 989:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL JoinType
-//line sql.y:5191
+//line sql.y:5195
{
if yyDollar[2].joinTypeUnion() == LeftJoinType {
yyLOCAL = NaturalLeftJoinType
@@ -17602,267 +17513,259 @@ yydefault:
}
}
yyVAL.union = yyLOCAL
- case 989:
+ case 990:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:5201
+//line sql.y:5205
{
yyVAL.tableName = yyDollar[2].tableName
}
- case 990:
+ case 991:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:5205
+//line sql.y:5209
{
yyVAL.tableName = yyDollar[1].tableName
}
- case 991:
+ case 992:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:5211
+//line sql.y:5215
{
yyVAL.tableName = TableName{Name: yyDollar[1].identifierCS}
}
- case 992:
+ case 993:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:5215
+//line sql.y:5219
{
yyVAL.tableName = TableName{Qualifier: yyDollar[1].identifierCS, Name: yyDollar[3].identifierCS}
}
- case 993:
+ case 994:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:5221
+//line sql.y:5225
{
yyVAL.tableName = TableName{Name: yyDollar[1].identifierCS}
}
- case 994:
+ case 995:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL IndexHints
-//line sql.y:5226
+//line sql.y:5230
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 995:
+ case 996:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL IndexHints
-//line sql.y:5230
+//line sql.y:5234
{
yyLOCAL = yyDollar[1].indexHintsUnion()
}
yyVAL.union = yyLOCAL
- case 996:
+ case 997:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL IndexHints
-//line sql.y:5236
+//line sql.y:5240
{
yyLOCAL = IndexHints{yyDollar[1].indexHintUnion()}
}
yyVAL.union = yyLOCAL
- case 997:
+ case 998:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:5240
+//line sql.y:5244
{
yySLICE := (*IndexHints)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[2].indexHintUnion())
}
- case 998:
+ case 999:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL *IndexHint
-//line sql.y:5246
+//line sql.y:5250
{
yyLOCAL = &IndexHint{Type: UseOp, ForType: yyDollar[3].indexHintForTypeUnion(), Indexes: yyDollar[5].columnsUnion()}
}
yyVAL.union = yyLOCAL
- case 999:
+ case 1000:
yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL *IndexHint
-//line sql.y:5250
+//line sql.y:5254
{
yyLOCAL = &IndexHint{Type: UseOp, ForType: yyDollar[3].indexHintForTypeUnion()}
}
yyVAL.union = yyLOCAL
- case 1000:
+ case 1001:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL *IndexHint
-//line sql.y:5254
+//line sql.y:5258
{
yyLOCAL = &IndexHint{Type: IgnoreOp, ForType: yyDollar[3].indexHintForTypeUnion(), Indexes: yyDollar[5].columnsUnion()}
}
yyVAL.union = yyLOCAL
- case 1001:
+ case 1002:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL *IndexHint
-//line sql.y:5258
+//line sql.y:5262
{
yyLOCAL = &IndexHint{Type: ForceOp, ForType: yyDollar[3].indexHintForTypeUnion(), Indexes: yyDollar[5].columnsUnion()}
}
yyVAL.union = yyLOCAL
- case 1002:
+ case 1003:
yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL *IndexHint
-//line sql.y:5262
+//line sql.y:5266
{
yyLOCAL = &IndexHint{Type: UseVindexOp, Indexes: yyDollar[4].columnsUnion()}
}
yyVAL.union = yyLOCAL
- case 1003:
+ case 1004:
yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL *IndexHint
-//line sql.y:5266
+//line sql.y:5270
{
yyLOCAL = &IndexHint{Type: IgnoreVindexOp, Indexes: yyDollar[4].columnsUnion()}
}
yyVAL.union = yyLOCAL
- case 1004:
+ case 1005:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL IndexHintForType
-//line sql.y:5271
+//line sql.y:5275
{
yyLOCAL = NoForType
}
yyVAL.union = yyLOCAL
- case 1005:
+ case 1006:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL IndexHintForType
-//line sql.y:5275
+//line sql.y:5279
{
yyLOCAL = JoinForType
}
yyVAL.union = yyLOCAL
- case 1006:
+ case 1007:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL IndexHintForType
-//line sql.y:5279
+//line sql.y:5283
{
yyLOCAL = OrderByForType
}
yyVAL.union = yyLOCAL
- case 1007:
+ case 1008:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL IndexHintForType
-//line sql.y:5283
+//line sql.y:5287
{
yyLOCAL = GroupByForType
}
yyVAL.union = yyLOCAL
- case 1008:
+ case 1009:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5289
+//line sql.y:5293
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1009:
+ case 1010:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5293
+//line sql.y:5297
{
yyLOCAL = yyDollar[2].exprUnion()
}
yyVAL.union = yyLOCAL
- case 1010:
+ case 1011:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5300
+//line sql.y:5304
{
yyLOCAL = &OrExpr{Left: yyDollar[1].exprUnion(), Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1011:
+ case 1012:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5304
+//line sql.y:5308
{
yyLOCAL = &XorExpr{Left: yyDollar[1].exprUnion(), Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1012:
+ case 1013:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5308
+//line sql.y:5312
{
yyLOCAL = &AndExpr{Left: yyDollar[1].exprUnion(), Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1013:
+ case 1014:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5312
+//line sql.y:5316
{
yyLOCAL = &NotExpr{Expr: yyDollar[2].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1014:
+ case 1015:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5316
+//line sql.y:5320
{
yyLOCAL = &IsExpr{Left: yyDollar[1].exprUnion(), Right: yyDollar[3].isExprOperatorUnion()}
}
yyVAL.union = yyLOCAL
- case 1015:
+ case 1016:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5320
+//line sql.y:5324
{
yyLOCAL = yyDollar[1].exprUnion()
}
yyVAL.union = yyLOCAL
- case 1016:
+ case 1017:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5324
+//line sql.y:5328
{
yyLOCAL = &AssignmentExpr{Left: yyDollar[1].variableUnion(), Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1017:
+ case 1018:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5328
+//line sql.y:5332
{
yyLOCAL = &MemberOfExpr{Value: yyDollar[1].exprUnion(), JSONArr: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1018:
- yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:5334
- {
- }
case 1019:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:5337
+//line sql.y:5338
{
}
case 1020:
- yyDollar = yyS[yypt-3 : yypt+1]
- var yyLOCAL Expr
-//line sql.y:5342
+ yyDollar = yyS[yypt-1 : yypt+1]
+//line sql.y:5341
{
- yyLOCAL = &IsExpr{Left: yyDollar[1].exprUnion(), Right: IsNullOp}
}
- yyVAL.union = yyLOCAL
case 1021:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
//line sql.y:5346
{
- yyLOCAL = &IsExpr{Left: yyDollar[1].exprUnion(), Right: IsNotNullOp}
+ yyLOCAL = &IsExpr{Left: yyDollar[1].exprUnion(), Right: IsNullOp}
}
yyVAL.union = yyLOCAL
case 1022:
- yyDollar = yyS[yypt-3 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:5350
{
- yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: yyDollar[2].comparisonExprOperatorUnion(), Right: yyDollar[3].exprUnion()}
+ yyLOCAL = &IsExpr{Left: yyDollar[1].exprUnion(), Right: IsNotNullOp}
}
yyVAL.union = yyLOCAL
case 1023:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
//line sql.y:5354
{
- yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: yyDollar[2].comparisonExprOperatorUnion(), Modifier: Any, Right: yyDollar[4].subqueryUnion()}
+ yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: yyDollar[2].comparisonExprOperatorUnion(), Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1024:
@@ -17878,129 +17781,129 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5362
{
- yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: yyDollar[2].comparisonExprOperatorUnion(), Modifier: All, Right: yyDollar[4].subqueryUnion()}
+ yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: yyDollar[2].comparisonExprOperatorUnion(), Modifier: Any, Right: yyDollar[4].subqueryUnion()}
}
yyVAL.union = yyLOCAL
case 1026:
- yyDollar = yyS[yypt-1 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:5366
{
- yyLOCAL = yyDollar[1].exprUnion()
+ yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: yyDollar[2].comparisonExprOperatorUnion(), Modifier: All, Right: yyDollar[4].subqueryUnion()}
}
yyVAL.union = yyLOCAL
case 1027:
- yyDollar = yyS[yypt-3 : yypt+1]
+ yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5372
+//line sql.y:5370
{
- yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: InOp, Right: yyDollar[3].colTupleUnion()}
+ yyLOCAL = yyDollar[1].exprUnion()
}
yyVAL.union = yyLOCAL
case 1028:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
//line sql.y:5376
{
- yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: NotInOp, Right: yyDollar[4].colTupleUnion()}
+ yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: InOp, Right: yyDollar[3].colTupleUnion()}
}
yyVAL.union = yyLOCAL
case 1029:
- yyDollar = yyS[yypt-5 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:5380
{
- yyLOCAL = &BetweenExpr{Left: yyDollar[1].exprUnion(), IsBetween: true, From: yyDollar[3].exprUnion(), To: yyDollar[5].exprUnion()}
+ yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: NotInOp, Right: yyDollar[4].colTupleUnion()}
}
yyVAL.union = yyLOCAL
case 1030:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL Expr
//line sql.y:5384
{
- yyLOCAL = &BetweenExpr{Left: yyDollar[1].exprUnion(), IsBetween: false, From: yyDollar[4].exprUnion(), To: yyDollar[6].exprUnion()}
+ yyLOCAL = &BetweenExpr{Left: yyDollar[1].exprUnion(), IsBetween: true, From: yyDollar[3].exprUnion(), To: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1031:
- yyDollar = yyS[yypt-3 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:5388
{
- yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: LikeOp, Right: yyDollar[3].exprUnion()}
+ yyLOCAL = &BetweenExpr{Left: yyDollar[1].exprUnion(), IsBetween: false, From: yyDollar[4].exprUnion(), To: yyDollar[6].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1032:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
//line sql.y:5392
{
- yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: NotLikeOp, Right: yyDollar[4].exprUnion()}
+ yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: LikeOp, Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1033:
- yyDollar = yyS[yypt-5 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:5396
{
- yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: LikeOp, Right: yyDollar[3].exprUnion(), Escape: yyDollar[5].exprUnion()}
+ yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: NotLikeOp, Right: yyDollar[4].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1034:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL Expr
//line sql.y:5400
{
- yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: NotLikeOp, Right: yyDollar[4].exprUnion(), Escape: yyDollar[6].exprUnion()}
+ yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: LikeOp, Right: yyDollar[3].exprUnion(), Escape: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1035:
- yyDollar = yyS[yypt-3 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:5404
{
- yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: RegexpOp, Right: yyDollar[3].exprUnion()}
+ yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: NotLikeOp, Right: yyDollar[4].exprUnion(), Escape: yyDollar[6].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1036:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
//line sql.y:5408
{
- yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: NotRegexpOp, Right: yyDollar[4].exprUnion()}
+ yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: RegexpOp, Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1037:
- yyDollar = yyS[yypt-1 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:5412
{
- yyLOCAL = yyDollar[1].exprUnion()
+ yyLOCAL = &ComparisonExpr{Left: yyDollar[1].exprUnion(), Operator: NotRegexpOp, Right: yyDollar[4].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1038:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:5418
+ var yyLOCAL Expr
+//line sql.y:5416
{
+ yyLOCAL = yyDollar[1].exprUnion()
}
+ yyVAL.union = yyLOCAL
case 1039:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:5421
+//line sql.y:5422
{
}
case 1040:
- yyDollar = yyS[yypt-3 : yypt+1]
- var yyLOCAL Expr
-//line sql.y:5427
+ yyDollar = yyS[yypt-1 : yypt+1]
+//line sql.y:5425
{
- yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: BitOrOp, Right: yyDollar[3].exprUnion()}
}
- yyVAL.union = yyLOCAL
case 1041:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
//line sql.y:5431
{
- yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: BitAndOp, Right: yyDollar[3].exprUnion()}
+ yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: BitOrOp, Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1042:
@@ -18008,7 +17911,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5435
{
- yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: ShiftLeftOp, Right: yyDollar[3].exprUnion()}
+ yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: BitAndOp, Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1043:
@@ -18016,7 +17919,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5439
{
- yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: ShiftRightOp, Right: yyDollar[3].exprUnion()}
+ yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: ShiftLeftOp, Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1044:
@@ -18024,7 +17927,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5443
{
- yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: PlusOp, Right: yyDollar[3].exprUnion()}
+ yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: ShiftRightOp, Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1045:
@@ -18032,15 +17935,15 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5447
{
- yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: MinusOp, Right: yyDollar[3].exprUnion()}
+ yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: PlusOp, Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1046:
- yyDollar = yyS[yypt-5 : yypt+1]
+ yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
//line sql.y:5451
{
- yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprBinaryAdd, Date: yyDollar[1].exprUnion(), Unit: yyDollar[5].intervalTypeUnion(), Interval: yyDollar[4].exprUnion()}
+ yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: MinusOp, Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1047:
@@ -18048,15 +17951,15 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5455
{
- yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprBinarySub, Date: yyDollar[1].exprUnion(), Unit: yyDollar[5].intervalTypeUnion(), Interval: yyDollar[4].exprUnion()}
+ yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprBinaryAdd, Date: yyDollar[1].exprUnion(), Unit: yyDollar[5].intervalTypeUnion(), Interval: yyDollar[4].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1048:
- yyDollar = yyS[yypt-3 : yypt+1]
+ yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL Expr
//line sql.y:5459
{
- yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: MultOp, Right: yyDollar[3].exprUnion()}
+ yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprBinarySub, Date: yyDollar[1].exprUnion(), Unit: yyDollar[5].intervalTypeUnion(), Interval: yyDollar[4].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1049:
@@ -18064,7 +17967,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5463
{
- yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: DivOp, Right: yyDollar[3].exprUnion()}
+ yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: MultOp, Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1050:
@@ -18072,7 +17975,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5467
{
- yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: ModOp, Right: yyDollar[3].exprUnion()}
+ yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: DivOp, Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1051:
@@ -18080,7 +17983,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5471
{
- yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: IntDivOp, Right: yyDollar[3].exprUnion()}
+ yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: ModOp, Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1052:
@@ -18088,7 +17991,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5475
{
- yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: ModOp, Right: yyDollar[3].exprUnion()}
+ yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: IntDivOp, Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1053:
@@ -18096,21 +17999,21 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5479
{
- yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: BitXorOp, Right: yyDollar[3].exprUnion()}
+ yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: ModOp, Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1054:
- yyDollar = yyS[yypt-1 : yypt+1]
+ yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
//line sql.y:5483
{
- yyLOCAL = yyDollar[1].exprUnion()
+ yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: BitXorOp, Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1055:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5489
+//line sql.y:5487
{
yyLOCAL = yyDollar[1].exprUnion()
}
@@ -18140,19 +18043,19 @@ yydefault:
}
yyVAL.union = yyLOCAL
case 1059:
- yyDollar = yyS[yypt-3 : yypt+1]
+ yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Expr
//line sql.y:5505
{
- yyLOCAL = &CollateExpr{Expr: yyDollar[1].exprUnion(), Collation: yyDollar[3].str}
+ yyLOCAL = yyDollar[1].exprUnion()
}
yyVAL.union = yyLOCAL
case 1060:
- yyDollar = yyS[yypt-1 : yypt+1]
+ yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
//line sql.y:5509
{
- yyLOCAL = yyDollar[1].exprUnion()
+ yyLOCAL = &CollateExpr{Expr: yyDollar[1].exprUnion(), Collation: yyDollar[3].str}
}
yyVAL.union = yyLOCAL
case 1061:
@@ -18168,15 +18071,15 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5517
{
- yyLOCAL = yyDollar[1].variableUnion()
+ yyLOCAL = yyDollar[1].exprUnion()
}
yyVAL.union = yyLOCAL
case 1063:
- yyDollar = yyS[yypt-2 : yypt+1]
+ yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Expr
//line sql.y:5521
{
- yyLOCAL = yyDollar[2].exprUnion() // TODO: do we really want to ignore unary '+' before any kind of literals?
+ yyLOCAL = yyDollar[1].variableUnion()
}
yyVAL.union = yyLOCAL
case 1064:
@@ -18184,7 +18087,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5525
{
- yyLOCAL = &UnaryExpr{Operator: UMinusOp, Expr: yyDollar[2].exprUnion()}
+ yyLOCAL = yyDollar[2].exprUnion() // TODO: do we really want to ignore unary '+' before any kind of literals?
}
yyVAL.union = yyLOCAL
case 1065:
@@ -18192,7 +18095,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5529
{
- yyLOCAL = &UnaryExpr{Operator: TildaOp, Expr: yyDollar[2].exprUnion()}
+ yyLOCAL = &UnaryExpr{Operator: UMinusOp, Expr: yyDollar[2].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1066:
@@ -18200,15 +18103,15 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5533
{
- yyLOCAL = &UnaryExpr{Operator: BangOp, Expr: yyDollar[2].exprUnion()}
+ yyLOCAL = &UnaryExpr{Operator: TildaOp, Expr: yyDollar[2].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1067:
- yyDollar = yyS[yypt-1 : yypt+1]
+ yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Expr
//line sql.y:5537
{
- yyLOCAL = yyDollar[1].subqueryUnion()
+ yyLOCAL = &UnaryExpr{Operator: BangOp, Expr: yyDollar[2].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1068:
@@ -18216,23 +18119,23 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5541
{
- yyLOCAL = yyDollar[1].exprUnion()
+ yyLOCAL = yyDollar[1].subqueryUnion()
}
yyVAL.union = yyLOCAL
case 1069:
- yyDollar = yyS[yypt-2 : yypt+1]
+ yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Expr
//line sql.y:5545
{
- yyLOCAL = &ExistsExpr{Subquery: yyDollar[2].subqueryUnion()}
+ yyLOCAL = yyDollar[1].exprUnion()
}
yyVAL.union = yyLOCAL
case 1070:
- yyDollar = yyS[yypt-7 : yypt+1]
+ yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Expr
//line sql.y:5549
{
- yyLOCAL = &MatchExpr{Columns: yyDollar[2].colNamesUnion(), Expr: yyDollar[5].exprUnion(), Option: yyDollar[6].matchExprOptionUnion()}
+ yyLOCAL = &ExistsExpr{Subquery: yyDollar[2].subqueryUnion()}
}
yyVAL.union = yyLOCAL
case 1071:
@@ -18240,15 +18143,15 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5553
{
- yyLOCAL = &CastExpr{Expr: yyDollar[3].exprUnion(), Type: yyDollar[5].convertTypeUnion(), Array: yyDollar[6].booleanUnion()}
+ yyLOCAL = &MatchExpr{Columns: yyDollar[2].colNamesUnion(), Expr: yyDollar[5].exprUnion(), Option: yyDollar[6].matchExprOptionUnion()}
}
yyVAL.union = yyLOCAL
case 1072:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-7 : yypt+1]
var yyLOCAL Expr
//line sql.y:5557
{
- yyLOCAL = &ConvertExpr{Expr: yyDollar[3].exprUnion(), Type: yyDollar[5].convertTypeUnion()}
+ yyLOCAL = &CastExpr{Expr: yyDollar[3].exprUnion(), Type: yyDollar[5].convertTypeUnion(), Array: yyDollar[6].booleanUnion()}
}
yyVAL.union = yyLOCAL
case 1073:
@@ -18256,13 +18159,21 @@ yydefault:
var yyLOCAL Expr
//line sql.y:5561
{
- yyLOCAL = &ConvertUsingExpr{Expr: yyDollar[3].exprUnion(), Type: yyDollar[5].str}
+ yyLOCAL = &ConvertExpr{Expr: yyDollar[3].exprUnion(), Type: yyDollar[5].convertTypeUnion()}
}
yyVAL.union = yyLOCAL
case 1074:
- yyDollar = yyS[yypt-2 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:5565
+ {
+ yyLOCAL = &ConvertUsingExpr{Expr: yyDollar[3].exprUnion(), Type: yyDollar[5].str}
+ }
+ yyVAL.union = yyLOCAL
+ case 1075:
+ yyDollar = yyS[yypt-2 : yypt+1]
+ var yyLOCAL Expr
+//line sql.y:5569
{
// From: https://dev.mysql.com/doc/refman/8.0/en/cast-functions.html#operator_binary
// To convert a string expression to a binary string, these constructs are equivalent:
@@ -18271,91 +18182,83 @@ yydefault:
yyLOCAL = &ConvertExpr{Expr: yyDollar[2].exprUnion(), Type: &ConvertType{Type: yyDollar[1].str}}
}
yyVAL.union = yyLOCAL
- case 1075:
+ case 1076:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5573
+//line sql.y:5577
{
yyLOCAL = &Default{ColName: yyDollar[2].str}
}
yyVAL.union = yyLOCAL
- case 1076:
+ case 1077:
yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5577
+//line sql.y:5581
{
yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprBinaryAddLeft, Date: yyDollar[5].exprUnion(), Unit: yyDollar[3].intervalTypeUnion(), Interval: yyDollar[2].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1077:
+ case 1078:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5581
+//line sql.y:5585
{
yyLOCAL = &IntervalFuncExpr{Expr: yyDollar[3].exprUnion(), Exprs: yyDollar[5].exprsUnion()}
}
yyVAL.union = yyLOCAL
- case 1078:
+ case 1079:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5585
+//line sql.y:5589
{
yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: JSONExtractOp, Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1079:
+ case 1080:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5589
+//line sql.y:5593
{
yyLOCAL = &BinaryExpr{Left: yyDollar[1].exprUnion(), Operator: JSONUnquoteExtractOp, Right: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1080:
+ case 1081:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL []*ColName
-//line sql.y:5595
+//line sql.y:5599
{
yyLOCAL = yyDollar[1].colNamesUnion()
}
yyVAL.union = yyLOCAL
- case 1081:
+ case 1082:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL []*ColName
-//line sql.y:5599
+//line sql.y:5603
{
yyLOCAL = yyDollar[2].colNamesUnion()
}
yyVAL.union = yyLOCAL
- case 1082:
+ case 1083:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL []*ColName
-//line sql.y:5605
+//line sql.y:5609
{
yyLOCAL = []*ColName{yyDollar[1].colNameUnion()}
}
yyVAL.union = yyLOCAL
- case 1083:
+ case 1084:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:5609
+//line sql.y:5613
{
yySLICE := (*[]*ColName)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[3].colNameUnion())
}
- case 1084:
- yyDollar = yyS[yypt-1 : yypt+1]
- var yyLOCAL TrimType
-//line sql.y:5615
- {
- yyLOCAL = BothTrimType
- }
- yyVAL.union = yyLOCAL
case 1085:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL TrimType
//line sql.y:5619
{
- yyLOCAL = LeadingTrimType
+ yyLOCAL = BothTrimType
}
yyVAL.union = yyLOCAL
case 1086:
@@ -18363,15 +18266,15 @@ yydefault:
var yyLOCAL TrimType
//line sql.y:5623
{
- yyLOCAL = TrailingTrimType
+ yyLOCAL = LeadingTrimType
}
yyVAL.union = yyLOCAL
case 1087:
yyDollar = yyS[yypt-1 : yypt+1]
- var yyLOCAL FrameUnitType
-//line sql.y:5629
+ var yyLOCAL TrimType
+//line sql.y:5627
{
- yyLOCAL = FrameRowsType
+ yyLOCAL = TrailingTrimType
}
yyVAL.union = yyLOCAL
case 1088:
@@ -18379,15 +18282,15 @@ yydefault:
var yyLOCAL FrameUnitType
//line sql.y:5633
{
- yyLOCAL = FrameRangeType
+ yyLOCAL = FrameRowsType
}
yyVAL.union = yyLOCAL
case 1089:
yyDollar = yyS[yypt-1 : yypt+1]
- var yyLOCAL ArgumentLessWindowExprType
-//line sql.y:5640
+ var yyLOCAL FrameUnitType
+//line sql.y:5637
{
- yyLOCAL = CumeDistExprType
+ yyLOCAL = FrameRangeType
}
yyVAL.union = yyLOCAL
case 1090:
@@ -18395,7 +18298,7 @@ yydefault:
var yyLOCAL ArgumentLessWindowExprType
//line sql.y:5644
{
- yyLOCAL = DenseRankExprType
+ yyLOCAL = CumeDistExprType
}
yyVAL.union = yyLOCAL
case 1091:
@@ -18403,7 +18306,7 @@ yydefault:
var yyLOCAL ArgumentLessWindowExprType
//line sql.y:5648
{
- yyLOCAL = PercentRankExprType
+ yyLOCAL = DenseRankExprType
}
yyVAL.union = yyLOCAL
case 1092:
@@ -18411,7 +18314,7 @@ yydefault:
var yyLOCAL ArgumentLessWindowExprType
//line sql.y:5652
{
- yyLOCAL = RankExprType
+ yyLOCAL = PercentRankExprType
}
yyVAL.union = yyLOCAL
case 1093:
@@ -18419,15 +18322,15 @@ yydefault:
var yyLOCAL ArgumentLessWindowExprType
//line sql.y:5656
{
- yyLOCAL = RowNumberExprType
+ yyLOCAL = RankExprType
}
yyVAL.union = yyLOCAL
case 1094:
- yyDollar = yyS[yypt-2 : yypt+1]
- var yyLOCAL *FramePoint
-//line sql.y:5662
+ yyDollar = yyS[yypt-1 : yypt+1]
+ var yyLOCAL ArgumentLessWindowExprType
+//line sql.y:5660
{
- yyLOCAL = &FramePoint{Type: CurrentRowType}
+ yyLOCAL = RowNumberExprType
}
yyVAL.union = yyLOCAL
case 1095:
@@ -18435,7 +18338,7 @@ yydefault:
var yyLOCAL *FramePoint
//line sql.y:5666
{
- yyLOCAL = &FramePoint{Type: UnboundedPrecedingType}
+ yyLOCAL = &FramePoint{Type: CurrentRowType}
}
yyVAL.union = yyLOCAL
case 1096:
@@ -18443,7 +18346,7 @@ yydefault:
var yyLOCAL *FramePoint
//line sql.y:5670
{
- yyLOCAL = &FramePoint{Type: UnboundedFollowingType}
+ yyLOCAL = &FramePoint{Type: UnboundedPrecedingType}
}
yyVAL.union = yyLOCAL
case 1097:
@@ -18451,334 +18354,334 @@ yydefault:
var yyLOCAL *FramePoint
//line sql.y:5674
{
- yyLOCAL = &FramePoint{Type: ExprPrecedingType, Expr: yyDollar[1].exprUnion()}
+ yyLOCAL = &FramePoint{Type: UnboundedFollowingType}
}
yyVAL.union = yyLOCAL
case 1098:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *FramePoint
//line sql.y:5678
{
- yyLOCAL = &FramePoint{Type: ExprPrecedingType, Expr: yyDollar[2].exprUnion(), Unit: yyDollar[3].intervalTypeUnion()}
+ yyLOCAL = &FramePoint{Type: ExprPrecedingType, Expr: yyDollar[1].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1099:
- yyDollar = yyS[yypt-2 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL *FramePoint
//line sql.y:5682
{
- yyLOCAL = &FramePoint{Type: ExprFollowingType, Expr: yyDollar[1].exprUnion()}
+ yyLOCAL = &FramePoint{Type: ExprPrecedingType, Expr: yyDollar[2].exprUnion(), Unit: yyDollar[3].intervalTypeUnion()}
}
yyVAL.union = yyLOCAL
case 1100:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *FramePoint
//line sql.y:5686
{
- yyLOCAL = &FramePoint{Type: ExprFollowingType, Expr: yyDollar[2].exprUnion(), Unit: yyDollar[3].intervalTypeUnion()}
+ yyLOCAL = &FramePoint{Type: ExprFollowingType, Expr: yyDollar[1].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1101:
+ yyDollar = yyS[yypt-4 : yypt+1]
+ var yyLOCAL *FramePoint
+//line sql.y:5690
+ {
+ yyLOCAL = &FramePoint{Type: ExprFollowingType, Expr: yyDollar[2].exprUnion(), Unit: yyDollar[3].intervalTypeUnion()}
+ }
+ yyVAL.union = yyLOCAL
+ case 1102:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL *FrameClause
-//line sql.y:5691
+//line sql.y:5695
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1102:
+ case 1103:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL *FrameClause
-//line sql.y:5695
+//line sql.y:5699
{
yyLOCAL = yyDollar[1].frameClauseUnion()
}
yyVAL.union = yyLOCAL
- case 1103:
+ case 1104:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *FrameClause
-//line sql.y:5701
+//line sql.y:5705
{
yyLOCAL = &FrameClause{Unit: yyDollar[1].frameUnitTypeUnion(), Start: yyDollar[2].framePointUnion()}
}
yyVAL.union = yyLOCAL
- case 1104:
+ case 1105:
yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL *FrameClause
-//line sql.y:5705
+//line sql.y:5709
{
yyLOCAL = &FrameClause{Unit: yyDollar[1].frameUnitTypeUnion(), Start: yyDollar[3].framePointUnion(), End: yyDollar[5].framePointUnion()}
}
yyVAL.union = yyLOCAL
- case 1105:
+ case 1106:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL Exprs
-//line sql.y:5710
+//line sql.y:5714
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1106:
+ case 1107:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Exprs
-//line sql.y:5714
+//line sql.y:5718
{
yyLOCAL = yyDollar[3].exprsUnion()
}
yyVAL.union = yyLOCAL
- case 1107:
+ case 1108:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:5719
+//line sql.y:5723
{
yyVAL.identifierCI = IdentifierCI{}
}
- case 1108:
+ case 1109:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:5723
+//line sql.y:5727
{
yyVAL.identifierCI = yyDollar[1].identifierCI
}
- case 1109:
+ case 1110:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL *WindowSpecification
-//line sql.y:5729
+//line sql.y:5733
{
yyLOCAL = &WindowSpecification{Name: yyDollar[1].identifierCI, PartitionClause: yyDollar[2].exprsUnion(), OrderClause: yyDollar[3].orderByUnion(), FrameClause: yyDollar[4].frameClauseUnion()}
}
yyVAL.union = yyLOCAL
- case 1110:
+ case 1111:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL *OverClause
-//line sql.y:5735
+//line sql.y:5739
{
yyLOCAL = &OverClause{WindowSpec: yyDollar[3].windowSpecificationUnion()}
}
yyVAL.union = yyLOCAL
- case 1111:
+ case 1112:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *OverClause
-//line sql.y:5739
+//line sql.y:5743
{
yyLOCAL = &OverClause{WindowName: yyDollar[2].identifierCI}
}
yyVAL.union = yyLOCAL
- case 1112:
+ case 1113:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL *OverClause
-//line sql.y:5745
+//line sql.y:5749
{
yyLOCAL = yyDollar[1].overClauseUnion()
}
yyVAL.union = yyLOCAL
- case 1113:
+ case 1114:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL *OverClause
-//line sql.y:5749
+//line sql.y:5753
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1114:
+ case 1115:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL *NullTreatmentClause
-//line sql.y:5754
+//line sql.y:5758
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1116:
+ case 1117:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL *NullTreatmentClause
-//line sql.y:5761
+//line sql.y:5765
{
yyLOCAL = &NullTreatmentClause{yyDollar[1].nullTreatmentTypeUnion()}
}
yyVAL.union = yyLOCAL
- case 1117:
+ case 1118:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL NullTreatmentType
-//line sql.y:5767
+//line sql.y:5771
{
yyLOCAL = RespectNullsType
}
yyVAL.union = yyLOCAL
- case 1118:
+ case 1119:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL NullTreatmentType
-//line sql.y:5771
+//line sql.y:5775
{
yyLOCAL = IgnoreNullsType
}
yyVAL.union = yyLOCAL
- case 1119:
+ case 1120:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL FirstOrLastValueExprType
-//line sql.y:5777
+//line sql.y:5781
{
yyLOCAL = FirstValueExprType
}
yyVAL.union = yyLOCAL
- case 1120:
+ case 1121:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL FirstOrLastValueExprType
-//line sql.y:5781
+//line sql.y:5785
{
yyLOCAL = LastValueExprType
}
yyVAL.union = yyLOCAL
- case 1121:
+ case 1122:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL FromFirstLastType
-//line sql.y:5787
+//line sql.y:5791
{
yyLOCAL = FromFirstType
}
yyVAL.union = yyLOCAL
- case 1122:
+ case 1123:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL FromFirstLastType
-//line sql.y:5791
+//line sql.y:5795
{
yyLOCAL = FromLastType
}
yyVAL.union = yyLOCAL
- case 1123:
+ case 1124:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL *FromFirstLastClause
-//line sql.y:5796
+//line sql.y:5800
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1125:
+ case 1126:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL *FromFirstLastClause
-//line sql.y:5803
+//line sql.y:5807
{
yyLOCAL = &FromFirstLastClause{yyDollar[1].fromFirstLastTypeUnion()}
}
yyVAL.union = yyLOCAL
- case 1126:
+ case 1127:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL LagLeadExprType
-//line sql.y:5809
+//line sql.y:5813
{
yyLOCAL = LagExprType
}
yyVAL.union = yyLOCAL
- case 1127:
+ case 1128:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL LagLeadExprType
-//line sql.y:5813
+//line sql.y:5817
{
yyLOCAL = LeadExprType
}
yyVAL.union = yyLOCAL
- case 1128:
+ case 1129:
yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL *WindowDefinition
-//line sql.y:5819
+//line sql.y:5823
{
yyLOCAL = &WindowDefinition{Name: yyDollar[1].identifierCI, WindowSpec: yyDollar[4].windowSpecificationUnion()}
}
yyVAL.union = yyLOCAL
- case 1129:
+ case 1130:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL WindowDefinitions
-//line sql.y:5825
+//line sql.y:5829
{
yyLOCAL = WindowDefinitions{yyDollar[1].windowDefinitionUnion()}
}
yyVAL.union = yyLOCAL
- case 1130:
+ case 1131:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:5829
+//line sql.y:5833
{
yySLICE := (*WindowDefinitions)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[3].windowDefinitionUnion())
}
- case 1131:
+ case 1132:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:5835
+//line sql.y:5839
{
yyVAL.str = ""
}
- case 1132:
+ case 1133:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:5839
+//line sql.y:5843
{
yyVAL.str = string(yyDollar[2].identifierCI.String())
}
- case 1133:
+ case 1134:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL BoolVal
-//line sql.y:5845
+//line sql.y:5849
{
yyLOCAL = BoolVal(true)
}
yyVAL.union = yyLOCAL
- case 1134:
+ case 1135:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL BoolVal
-//line sql.y:5849
+//line sql.y:5853
{
yyLOCAL = BoolVal(false)
}
yyVAL.union = yyLOCAL
- case 1135:
+ case 1136:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL IsExprOperator
-//line sql.y:5856
+//line sql.y:5860
{
yyLOCAL = IsTrueOp
}
yyVAL.union = yyLOCAL
- case 1136:
+ case 1137:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL IsExprOperator
-//line sql.y:5860
+//line sql.y:5864
{
yyLOCAL = IsNotTrueOp
}
yyVAL.union = yyLOCAL
- case 1137:
+ case 1138:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL IsExprOperator
-//line sql.y:5864
+//line sql.y:5868
{
yyLOCAL = IsFalseOp
}
yyVAL.union = yyLOCAL
- case 1138:
+ case 1139:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL IsExprOperator
-//line sql.y:5868
+//line sql.y:5872
{
yyLOCAL = IsNotFalseOp
}
yyVAL.union = yyLOCAL
- case 1139:
- yyDollar = yyS[yypt-1 : yypt+1]
- var yyLOCAL ComparisonExprOperator
-//line sql.y:5874
- {
- yyLOCAL = yyDollar[1].comparisonExprOperatorUnion()
- }
- yyVAL.union = yyLOCAL
case 1140:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL ComparisonExprOperator
//line sql.y:5878
{
- yyLOCAL = NullSafeEqualOp
+ yyLOCAL = yyDollar[1].comparisonExprOperatorUnion()
}
yyVAL.union = yyLOCAL
case 1141:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL ComparisonExprOperator
-//line sql.y:5884
+//line sql.y:5882
{
- yyLOCAL = EqualOp
+ yyLOCAL = NullSafeEqualOp
}
yyVAL.union = yyLOCAL
case 1142:
@@ -18786,7 +18689,7 @@ yydefault:
var yyLOCAL ComparisonExprOperator
//line sql.y:5888
{
- yyLOCAL = LessThanOp
+ yyLOCAL = EqualOp
}
yyVAL.union = yyLOCAL
case 1143:
@@ -18794,7 +18697,7 @@ yydefault:
var yyLOCAL ComparisonExprOperator
//line sql.y:5892
{
- yyLOCAL = GreaterThanOp
+ yyLOCAL = LessThanOp
}
yyVAL.union = yyLOCAL
case 1144:
@@ -18802,7 +18705,7 @@ yydefault:
var yyLOCAL ComparisonExprOperator
//line sql.y:5896
{
- yyLOCAL = LessEqualOp
+ yyLOCAL = GreaterThanOp
}
yyVAL.union = yyLOCAL
case 1145:
@@ -18810,7 +18713,7 @@ yydefault:
var yyLOCAL ComparisonExprOperator
//line sql.y:5900
{
- yyLOCAL = GreaterEqualOp
+ yyLOCAL = LessEqualOp
}
yyVAL.union = yyLOCAL
case 1146:
@@ -18818,95 +18721,95 @@ yydefault:
var yyLOCAL ComparisonExprOperator
//line sql.y:5904
{
- yyLOCAL = NotEqualOp
+ yyLOCAL = GreaterEqualOp
}
yyVAL.union = yyLOCAL
case 1147:
+ yyDollar = yyS[yypt-1 : yypt+1]
+ var yyLOCAL ComparisonExprOperator
+//line sql.y:5908
+ {
+ yyLOCAL = NotEqualOp
+ }
+ yyVAL.union = yyLOCAL
+ case 1148:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL ColTuple
-//line sql.y:5910
+//line sql.y:5914
{
yyLOCAL = yyDollar[1].valTupleUnion()
}
yyVAL.union = yyLOCAL
- case 1148:
+ case 1149:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL ColTuple
-//line sql.y:5914
+//line sql.y:5918
{
yyLOCAL = yyDollar[1].subqueryUnion()
}
yyVAL.union = yyLOCAL
- case 1149:
+ case 1150:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL ColTuple
-//line sql.y:5918
+//line sql.y:5922
{
yyLOCAL = ListArg(yyDollar[1].str[2:])
markBindVariable(yylex, yyDollar[1].str[2:])
}
yyVAL.union = yyLOCAL
- case 1150:
+ case 1151:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL *Subquery
-//line sql.y:5925
+//line sql.y:5929
{
yyLOCAL = &Subquery{yyDollar[1].selStmtUnion()}
}
yyVAL.union = yyLOCAL
- case 1151:
+ case 1152:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Exprs
-//line sql.y:5931
+//line sql.y:5935
{
yyLOCAL = Exprs{yyDollar[1].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1152:
+ case 1153:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:5935
+//line sql.y:5939
{
yySLICE := (*Exprs)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[3].exprUnion())
}
- case 1153:
+ case 1154:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5945
+//line sql.y:5949
{
yyLOCAL = &FuncExpr{Name: yyDollar[1].identifierCI, Exprs: yyDollar[3].exprsUnion()}
}
yyVAL.union = yyLOCAL
- case 1154:
+ case 1155:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
-//line sql.y:5949
+//line sql.y:5953
{
yyLOCAL = &FuncExpr{Qualifier: yyDollar[1].identifierCS, Name: yyDollar[3].identifierCI, Exprs: yyDollar[5].exprsUnion()}
}
yyVAL.union = yyLOCAL
- case 1155:
- yyDollar = yyS[yypt-4 : yypt+1]
- var yyLOCAL Expr
-//line sql.y:5959
- {
- yyLOCAL = &FuncExpr{Name: NewIdentifierCI("left"), Exprs: yyDollar[3].exprsUnion()}
- }
- yyVAL.union = yyLOCAL
case 1156:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:5963
{
- yyLOCAL = &FuncExpr{Name: NewIdentifierCI("right"), Exprs: yyDollar[3].exprsUnion()}
+ yyLOCAL = &FuncExpr{Name: NewIdentifierCI("left"), Exprs: yyDollar[3].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1157:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:5967
{
- yyLOCAL = &SubstrExpr{Name: yyDollar[3].exprUnion(), From: yyDollar[5].exprUnion(), To: yyDollar[7].exprUnion()}
+ yyLOCAL = &FuncExpr{Name: NewIdentifierCI("right"), Exprs: yyDollar[3].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1158:
@@ -18918,83 +18821,83 @@ yydefault:
}
yyVAL.union = yyLOCAL
case 1159:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:5975
{
- yyLOCAL = &SubstrExpr{Name: yyDollar[3].exprUnion(), From: yyDollar[5].exprUnion()}
+ yyLOCAL = &SubstrExpr{Name: yyDollar[3].exprUnion(), From: yyDollar[5].exprUnion(), To: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1160:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:5979
{
- yyLOCAL = &SubstrExpr{Name: yyDollar[3].exprUnion(), From: yyDollar[5].exprUnion(), To: yyDollar[7].exprUnion()}
+ yyLOCAL = &SubstrExpr{Name: yyDollar[3].exprUnion(), From: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1161:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:5983
{
- yyLOCAL = &SubstrExpr{Name: yyDollar[3].exprUnion(), From: yyDollar[5].exprUnion()}
+ yyLOCAL = &SubstrExpr{Name: yyDollar[3].exprUnion(), From: yyDollar[5].exprUnion(), To: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1162:
- yyDollar = yyS[yypt-5 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:5987
{
- yyLOCAL = &CaseExpr{Expr: yyDollar[2].exprUnion(), Whens: yyDollar[3].whensUnion(), Else: yyDollar[4].exprUnion()}
+ yyLOCAL = &SubstrExpr{Name: yyDollar[3].exprUnion(), From: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1163:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL Expr
//line sql.y:5991
{
- yyLOCAL = &ValuesFuncExpr{Name: yyDollar[3].colNameUnion()}
+ yyLOCAL = &CaseExpr{Expr: yyDollar[2].exprUnion(), Whens: yyDollar[3].whensUnion(), Else: yyDollar[4].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1164:
- yyDollar = yyS[yypt-10 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:5995
{
- yyLOCAL = &InsertExpr{Str: yyDollar[3].exprUnion(), Pos: yyDollar[5].exprUnion(), Len: yyDollar[7].exprUnion(), NewStr: yyDollar[9].exprUnion()}
+ yyLOCAL = &ValuesFuncExpr{Name: yyDollar[3].colNameUnion()}
}
yyVAL.union = yyLOCAL
case 1165:
- yyDollar = yyS[yypt-2 : yypt+1]
+ yyDollar = yyS[yypt-10 : yypt+1]
var yyLOCAL Expr
//line sql.y:5999
{
- yyLOCAL = &FuncExpr{Name: NewIdentifierCI(yyDollar[1].str)}
+ yyLOCAL = &InsertExpr{Str: yyDollar[3].exprUnion(), Pos: yyDollar[5].exprUnion(), Len: yyDollar[7].exprUnion(), NewStr: yyDollar[9].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1166:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6010
+//line sql.y:6003
{
- yyLOCAL = &FuncExpr{Name: NewIdentifierCI("utc_date")}
+ yyLOCAL = &FuncExpr{Name: NewIdentifierCI(yyDollar[1].str)}
}
yyVAL.union = yyLOCAL
case 1167:
- yyDollar = yyS[yypt-1 : yypt+1]
+ yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Expr
//line sql.y:6014
{
- yyLOCAL = yyDollar[1].exprUnion()
+ yyLOCAL = &FuncExpr{Name: NewIdentifierCI("utc_date")}
}
yyVAL.union = yyLOCAL
case 1168:
- yyDollar = yyS[yypt-2 : yypt+1]
+ yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6020
+//line sql.y:6018
{
- yyLOCAL = &FuncExpr{Name: NewIdentifierCI("current_date")}
+ yyLOCAL = yyDollar[1].exprUnion()
}
yyVAL.union = yyLOCAL
case 1169:
@@ -19002,7 +18905,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6024
{
- yyLOCAL = &FuncExpr{Name: NewIdentifierCI("curdate")}
+ yyLOCAL = &FuncExpr{Name: NewIdentifierCI("current_date")}
}
yyVAL.union = yyLOCAL
case 1170:
@@ -19010,39 +18913,39 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6028
{
- yyLOCAL = &CurTimeFuncExpr{Name: NewIdentifierCI("utc_time"), Fsp: yyDollar[2].integerUnion()}
+ yyLOCAL = &FuncExpr{Name: NewIdentifierCI("curdate")}
}
yyVAL.union = yyLOCAL
case 1171:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6033
+//line sql.y:6032
{
- yyLOCAL = &CurTimeFuncExpr{Name: NewIdentifierCI("curtime"), Fsp: yyDollar[2].integerUnion()}
+ yyLOCAL = &CurTimeFuncExpr{Name: NewIdentifierCI("utc_time"), Fsp: yyDollar[2].integerUnion()}
}
yyVAL.union = yyLOCAL
case 1172:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6038
+//line sql.y:6037
{
- yyLOCAL = &CurTimeFuncExpr{Name: NewIdentifierCI("current_time"), Fsp: yyDollar[2].integerUnion()}
+ yyLOCAL = &CurTimeFuncExpr{Name: NewIdentifierCI("curtime"), Fsp: yyDollar[2].integerUnion()}
}
yyVAL.union = yyLOCAL
case 1173:
- yyDollar = yyS[yypt-5 : yypt+1]
+ yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Expr
//line sql.y:6042
{
- yyLOCAL = &CountStar{OverClause: yyDollar[5].overClauseUnion()}
+ yyLOCAL = &CurTimeFuncExpr{Name: NewIdentifierCI("current_time"), Fsp: yyDollar[2].integerUnion()}
}
yyVAL.union = yyLOCAL
case 1174:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL Expr
//line sql.y:6046
{
- yyLOCAL = &Count{Distinct: yyDollar[3].booleanUnion(), Args: yyDollar[4].exprsUnion(), OverClause: yyDollar[6].overClauseUnion()}
+ yyLOCAL = &CountStar{OverClause: yyDollar[5].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1175:
@@ -19050,7 +18953,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6050
{
- yyLOCAL = &Max{Distinct: yyDollar[3].booleanUnion(), Arg: yyDollar[4].exprUnion(), OverClause: yyDollar[6].overClauseUnion()}
+ yyLOCAL = &Count{Distinct: yyDollar[3].booleanUnion(), Args: yyDollar[4].exprsUnion(), OverClause: yyDollar[6].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1176:
@@ -19058,7 +18961,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6054
{
- yyLOCAL = &Min{Distinct: yyDollar[3].booleanUnion(), Arg: yyDollar[4].exprUnion(), OverClause: yyDollar[6].overClauseUnion()}
+ yyLOCAL = &Max{Distinct: yyDollar[3].booleanUnion(), Arg: yyDollar[4].exprUnion(), OverClause: yyDollar[6].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1177:
@@ -19066,7 +18969,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6058
{
- yyLOCAL = &Sum{Distinct: yyDollar[3].booleanUnion(), Arg: yyDollar[4].exprUnion(), OverClause: yyDollar[6].overClauseUnion()}
+ yyLOCAL = &Min{Distinct: yyDollar[3].booleanUnion(), Arg: yyDollar[4].exprUnion(), OverClause: yyDollar[6].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1178:
@@ -19074,15 +18977,15 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6062
{
- yyLOCAL = &Avg{Distinct: yyDollar[3].booleanUnion(), Arg: yyDollar[4].exprUnion(), OverClause: yyDollar[6].overClauseUnion()}
+ yyLOCAL = &Sum{Distinct: yyDollar[3].booleanUnion(), Arg: yyDollar[4].exprUnion(), OverClause: yyDollar[6].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1179:
- yyDollar = yyS[yypt-5 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6066
{
- yyLOCAL = &BitAnd{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
+ yyLOCAL = &Avg{Distinct: yyDollar[3].booleanUnion(), Arg: yyDollar[4].exprUnion(), OverClause: yyDollar[6].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1180:
@@ -19090,7 +18993,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6070
{
- yyLOCAL = &BitOr{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
+ yyLOCAL = &BitAnd{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1181:
@@ -19098,7 +19001,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6074
{
- yyLOCAL = &BitXor{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
+ yyLOCAL = &BitOr{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1182:
@@ -19106,7 +19009,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6078
{
- yyLOCAL = &Std{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
+ yyLOCAL = &BitXor{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1183:
@@ -19114,7 +19017,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6082
{
- yyLOCAL = &StdDev{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
+ yyLOCAL = &Std{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1184:
@@ -19122,7 +19025,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6086
{
- yyLOCAL = &StdPop{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
+ yyLOCAL = &StdDev{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1185:
@@ -19130,7 +19033,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6090
{
- yyLOCAL = &StdSamp{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
+ yyLOCAL = &StdPop{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1186:
@@ -19138,7 +19041,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6094
{
- yyLOCAL = &VarPop{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
+ yyLOCAL = &StdSamp{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1187:
@@ -19146,7 +19049,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6098
{
- yyLOCAL = &VarSamp{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
+ yyLOCAL = &VarPop{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1188:
@@ -19154,31 +19057,31 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6102
{
- yyLOCAL = &Variance{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
+ yyLOCAL = &VarSamp{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1189:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL Expr
//line sql.y:6106
{
- yyLOCAL = &GroupConcatExpr{Distinct: yyDollar[3].booleanUnion(), Exprs: yyDollar[4].exprsUnion(), OrderBy: yyDollar[5].orderByUnion(), Separator: yyDollar[6].str, Limit: yyDollar[7].limitUnion()}
+ yyLOCAL = &Variance{Arg: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1190:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6110
{
- yyLOCAL = &AnyValue{Arg: yyDollar[3].exprUnion()}
+ yyLOCAL = &GroupConcatExpr{Distinct: yyDollar[3].booleanUnion(), Exprs: yyDollar[4].exprsUnion(), OrderBy: yyDollar[5].orderByUnion(), Separator: yyDollar[6].str, Limit: yyDollar[7].limitUnion()}
}
yyVAL.union = yyLOCAL
case 1191:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6114
{
- yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprTimestampadd, Date: yyDollar[7].exprUnion(), Interval: yyDollar[5].exprUnion(), Unit: yyDollar[3].intervalTypeUnion()}
+ yyLOCAL = &AnyValue{Arg: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1192:
@@ -19186,31 +19089,31 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6118
{
- yyLOCAL = &TimestampDiffExpr{Unit: yyDollar[3].intervalTypeUnion(), Expr1: yyDollar[5].exprUnion(), Expr2: yyDollar[7].exprUnion()}
+ yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprTimestampadd, Date: yyDollar[7].exprUnion(), Interval: yyDollar[5].exprUnion(), Unit: yyDollar[3].intervalTypeUnion()}
}
yyVAL.union = yyLOCAL
case 1193:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6122
{
- yyLOCAL = &ExtractFuncExpr{IntervalType: yyDollar[3].intervalTypeUnion(), Expr: yyDollar[5].exprUnion()}
+ yyLOCAL = &TimestampDiffExpr{Unit: yyDollar[3].intervalTypeUnion(), Expr1: yyDollar[5].exprUnion(), Expr2: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1194:
- yyDollar = yyS[yypt-5 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6126
{
- yyLOCAL = &WeightStringFuncExpr{Expr: yyDollar[3].exprUnion(), As: yyDollar[4].convertTypeUnion()}
+ yyLOCAL = &ExtractFuncExpr{IntervalType: yyDollar[3].intervalTypeUnion(), Expr: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1195:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL Expr
//line sql.y:6130
{
- yyLOCAL = &JSONPrettyExpr{JSONVal: yyDollar[3].exprUnion()}
+ yyLOCAL = &WeightStringFuncExpr{Expr: yyDollar[3].exprUnion(), As: yyDollar[4].convertTypeUnion()}
}
yyVAL.union = yyLOCAL
case 1196:
@@ -19218,7 +19121,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6134
{
- yyLOCAL = &JSONStorageFreeExpr{JSONVal: yyDollar[3].exprUnion()}
+ yyLOCAL = &JSONPrettyExpr{JSONVal: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1197:
@@ -19226,31 +19129,31 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6138
{
- yyLOCAL = &JSONStorageSizeExpr{JSONVal: yyDollar[3].exprUnion()}
+ yyLOCAL = &JSONStorageFreeExpr{JSONVal: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1198:
- yyDollar = yyS[yypt-5 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6142
{
- yyLOCAL = &JSONArrayAgg{Expr: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
+ yyLOCAL = &JSONStorageSizeExpr{JSONVal: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1199:
- yyDollar = yyS[yypt-7 : yypt+1]
+ yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL Expr
//line sql.y:6146
{
- yyLOCAL = &JSONObjectAgg{Key: yyDollar[3].exprUnion(), Value: yyDollar[5].exprUnion(), OverClause: yyDollar[7].overClauseUnion()}
+ yyLOCAL = &JSONArrayAgg{Expr: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1200:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-7 : yypt+1]
var yyLOCAL Expr
//line sql.y:6150
{
- yyLOCAL = &TrimFuncExpr{TrimFuncType: LTrimType, Type: LeadingTrimType, StringArg: yyDollar[3].exprUnion()}
+ yyLOCAL = &JSONObjectAgg{Key: yyDollar[3].exprUnion(), Value: yyDollar[5].exprUnion(), OverClause: yyDollar[7].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1201:
@@ -19258,23 +19161,23 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6154
{
- yyLOCAL = &TrimFuncExpr{TrimFuncType: RTrimType, Type: TrailingTrimType, StringArg: yyDollar[3].exprUnion()}
+ yyLOCAL = &TrimFuncExpr{TrimFuncType: LTrimType, Type: LeadingTrimType, StringArg: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1202:
- yyDollar = yyS[yypt-7 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6158
{
- yyLOCAL = &TrimFuncExpr{Type: yyDollar[3].trimTypeUnion(), TrimArg: yyDollar[4].exprUnion(), StringArg: yyDollar[6].exprUnion()}
+ yyLOCAL = &TrimFuncExpr{TrimFuncType: RTrimType, Type: TrailingTrimType, StringArg: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1203:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-7 : yypt+1]
var yyLOCAL Expr
//line sql.y:6162
{
- yyLOCAL = &TrimFuncExpr{StringArg: yyDollar[3].exprUnion()}
+ yyLOCAL = &TrimFuncExpr{Type: yyDollar[3].trimTypeUnion(), TrimArg: yyDollar[4].exprUnion(), StringArg: yyDollar[6].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1204:
@@ -19282,15 +19185,15 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6166
{
- yyLOCAL = &CharExpr{Exprs: yyDollar[3].exprsUnion()}
+ yyLOCAL = &TrimFuncExpr{StringArg: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1205:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6170
{
- yyLOCAL = &CharExpr{Exprs: yyDollar[3].exprsUnion(), Charset: yyDollar[5].str}
+ yyLOCAL = &CharExpr{Exprs: yyDollar[3].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1206:
@@ -19298,7 +19201,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6174
{
- yyLOCAL = &TrimFuncExpr{TrimArg: yyDollar[3].exprUnion(), StringArg: yyDollar[5].exprUnion()}
+ yyLOCAL = &CharExpr{Exprs: yyDollar[3].exprsUnion(), Charset: yyDollar[5].str}
}
yyVAL.union = yyLOCAL
case 1207:
@@ -19306,23 +19209,23 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6178
{
- yyLOCAL = &LocateExpr{SubStr: yyDollar[3].exprUnion(), Str: yyDollar[5].exprUnion()}
+ yyLOCAL = &TrimFuncExpr{TrimArg: yyDollar[3].exprUnion(), StringArg: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1208:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6182
{
- yyLOCAL = &LocateExpr{SubStr: yyDollar[3].exprUnion(), Str: yyDollar[5].exprUnion(), Pos: yyDollar[7].exprUnion()}
+ yyLOCAL = &LocateExpr{SubStr: yyDollar[3].exprUnion(), Str: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1209:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6186
{
- yyLOCAL = &LocateExpr{SubStr: yyDollar[3].exprUnion(), Str: yyDollar[5].exprUnion()}
+ yyLOCAL = &LocateExpr{SubStr: yyDollar[3].exprUnion(), Str: yyDollar[5].exprUnion(), Pos: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1210:
@@ -19330,15 +19233,15 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6190
{
- yyLOCAL = &LockingFunc{Type: GetLock, Name: yyDollar[3].exprUnion(), Timeout: yyDollar[5].exprUnion()}
+ yyLOCAL = &LocateExpr{SubStr: yyDollar[3].exprUnion(), Str: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1211:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6194
{
- yyLOCAL = &LockingFunc{Type: IsFreeLock, Name: yyDollar[3].exprUnion()}
+ yyLOCAL = &LockingFunc{Type: GetLock, Name: yyDollar[3].exprUnion(), Timeout: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1212:
@@ -19346,31 +19249,31 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6198
{
- yyLOCAL = &LockingFunc{Type: IsUsedLock, Name: yyDollar[3].exprUnion()}
+ yyLOCAL = &LockingFunc{Type: IsFreeLock, Name: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1213:
- yyDollar = yyS[yypt-3 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6202
{
- yyLOCAL = &LockingFunc{Type: ReleaseAllLocks}
+ yyLOCAL = &LockingFunc{Type: IsUsedLock, Name: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1214:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
//line sql.y:6206
{
- yyLOCAL = &LockingFunc{Type: ReleaseLock, Name: yyDollar[3].exprUnion()}
+ yyLOCAL = &LockingFunc{Type: ReleaseAllLocks}
}
yyVAL.union = yyLOCAL
case 1215:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6210
{
- yyLOCAL = &JSONSchemaValidFuncExpr{Schema: yyDollar[3].exprUnion(), Document: yyDollar[5].exprUnion()}
+ yyLOCAL = &LockingFunc{Type: ReleaseLock, Name: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1216:
@@ -19378,15 +19281,15 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6214
{
- yyLOCAL = &JSONSchemaValidationReportFuncExpr{Schema: yyDollar[3].exprUnion(), Document: yyDollar[5].exprUnion()}
+ yyLOCAL = &JSONSchemaValidFuncExpr{Schema: yyDollar[3].exprUnion(), Document: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1217:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6218
{
- yyLOCAL = &JSONArrayExpr{Params: yyDollar[3].exprsUnion()}
+ yyLOCAL = &JSONSchemaValidationReportFuncExpr{Schema: yyDollar[3].exprUnion(), Document: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1218:
@@ -19394,39 +19297,39 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6222
{
- yyLOCAL = &GeomFormatExpr{FormatType: BinaryFormat, Geom: yyDollar[3].exprUnion()}
+ yyLOCAL = &JSONArrayExpr{Params: yyDollar[3].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1219:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6226
{
- yyLOCAL = &GeomFormatExpr{FormatType: BinaryFormat, Geom: yyDollar[3].exprUnion(), AxisOrderOpt: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFormatExpr{FormatType: BinaryFormat, Geom: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1220:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6230
{
- yyLOCAL = &GeomFormatExpr{FormatType: TextFormat, Geom: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFormatExpr{FormatType: BinaryFormat, Geom: yyDollar[3].exprUnion(), AxisOrderOpt: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1221:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6234
{
- yyLOCAL = &GeomFormatExpr{FormatType: TextFormat, Geom: yyDollar[3].exprUnion(), AxisOrderOpt: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFormatExpr{FormatType: TextFormat, Geom: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1222:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6238
{
- yyLOCAL = &GeomPropertyFuncExpr{Property: IsEmpty, Geom: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFormatExpr{FormatType: TextFormat, Geom: yyDollar[3].exprUnion(), AxisOrderOpt: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1223:
@@ -19434,7 +19337,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6242
{
- yyLOCAL = &GeomPropertyFuncExpr{Property: IsSimple, Geom: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomPropertyFuncExpr{Property: IsEmpty, Geom: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1224:
@@ -19442,7 +19345,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6246
{
- yyLOCAL = &GeomPropertyFuncExpr{Property: Dimension, Geom: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomPropertyFuncExpr{Property: IsSimple, Geom: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1225:
@@ -19450,7 +19353,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6250
{
- yyLOCAL = &GeomPropertyFuncExpr{Property: Envelope, Geom: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomPropertyFuncExpr{Property: Dimension, Geom: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1226:
@@ -19458,7 +19361,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6254
{
- yyLOCAL = &GeomPropertyFuncExpr{Property: GeometryType, Geom: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomPropertyFuncExpr{Property: Envelope, Geom: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1227:
@@ -19466,39 +19369,39 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6258
{
- yyLOCAL = &PointPropertyFuncExpr{Property: Latitude, Point: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomPropertyFuncExpr{Property: GeometryType, Geom: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1228:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6262
{
- yyLOCAL = &PointPropertyFuncExpr{Property: Latitude, Point: yyDollar[3].exprUnion(), ValueToSet: yyDollar[5].exprUnion()}
+ yyLOCAL = &PointPropertyFuncExpr{Property: Latitude, Point: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1229:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6266
{
- yyLOCAL = &PointPropertyFuncExpr{Property: Longitude, Point: yyDollar[3].exprUnion()}
+ yyLOCAL = &PointPropertyFuncExpr{Property: Latitude, Point: yyDollar[3].exprUnion(), ValueToSet: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1230:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6270
{
- yyLOCAL = &PointPropertyFuncExpr{Property: Longitude, Point: yyDollar[3].exprUnion(), ValueToSet: yyDollar[5].exprUnion()}
+ yyLOCAL = &PointPropertyFuncExpr{Property: Longitude, Point: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1231:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6274
{
- yyLOCAL = &LinestrPropertyFuncExpr{Property: EndPoint, Linestring: yyDollar[3].exprUnion()}
+ yyLOCAL = &PointPropertyFuncExpr{Property: Longitude, Point: yyDollar[3].exprUnion(), ValueToSet: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1232:
@@ -19506,7 +19409,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6278
{
- yyLOCAL = &LinestrPropertyFuncExpr{Property: IsClosed, Linestring: yyDollar[3].exprUnion()}
+ yyLOCAL = &LinestrPropertyFuncExpr{Property: EndPoint, Linestring: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1233:
@@ -19514,39 +19417,39 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6282
{
- yyLOCAL = &LinestrPropertyFuncExpr{Property: Length, Linestring: yyDollar[3].exprUnion()}
+ yyLOCAL = &LinestrPropertyFuncExpr{Property: IsClosed, Linestring: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1234:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6286
{
- yyLOCAL = &LinestrPropertyFuncExpr{Property: Length, Linestring: yyDollar[3].exprUnion(), PropertyDefArg: yyDollar[5].exprUnion()}
+ yyLOCAL = &LinestrPropertyFuncExpr{Property: Length, Linestring: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1235:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6290
{
- yyLOCAL = &LinestrPropertyFuncExpr{Property: NumPoints, Linestring: yyDollar[3].exprUnion()}
+ yyLOCAL = &LinestrPropertyFuncExpr{Property: Length, Linestring: yyDollar[3].exprUnion(), PropertyDefArg: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1236:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6294
{
- yyLOCAL = &LinestrPropertyFuncExpr{Property: PointN, Linestring: yyDollar[3].exprUnion(), PropertyDefArg: yyDollar[5].exprUnion()}
+ yyLOCAL = &LinestrPropertyFuncExpr{Property: NumPoints, Linestring: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1237:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6298
{
- yyLOCAL = &LinestrPropertyFuncExpr{Property: StartPoint, Linestring: yyDollar[3].exprUnion()}
+ yyLOCAL = &LinestrPropertyFuncExpr{Property: PointN, Linestring: yyDollar[3].exprUnion(), PropertyDefArg: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1238:
@@ -19554,423 +19457,423 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6302
{
- yyLOCAL = &PointPropertyFuncExpr{Property: XCordinate, Point: yyDollar[3].exprUnion()}
+ yyLOCAL = &LinestrPropertyFuncExpr{Property: StartPoint, Linestring: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1239:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6306
{
- yyLOCAL = &PointPropertyFuncExpr{Property: XCordinate, Point: yyDollar[3].exprUnion(), ValueToSet: yyDollar[5].exprUnion()}
+ yyLOCAL = &PointPropertyFuncExpr{Property: XCordinate, Point: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1240:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6310
{
- yyLOCAL = &PointPropertyFuncExpr{Property: YCordinate, Point: yyDollar[3].exprUnion()}
+ yyLOCAL = &PointPropertyFuncExpr{Property: XCordinate, Point: yyDollar[3].exprUnion(), ValueToSet: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1241:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6314
{
- yyLOCAL = &PointPropertyFuncExpr{Property: YCordinate, Point: yyDollar[3].exprUnion(), ValueToSet: yyDollar[5].exprUnion()}
+ yyLOCAL = &PointPropertyFuncExpr{Property: YCordinate, Point: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1242:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6318
{
- yyLOCAL = &GeomFromTextExpr{Type: GeometryFromText, WktText: yyDollar[3].exprUnion()}
+ yyLOCAL = &PointPropertyFuncExpr{Property: YCordinate, Point: yyDollar[3].exprUnion(), ValueToSet: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1243:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6322
{
- yyLOCAL = &GeomFromTextExpr{Type: GeometryFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: GeometryFromText, WktText: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1244:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6326
{
- yyLOCAL = &GeomFromTextExpr{Type: GeometryFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: GeometryFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1245:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6330
{
- yyLOCAL = &GeomFromTextExpr{Type: GeometryCollectionFromText, WktText: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: GeometryFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1246:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6334
{
- yyLOCAL = &GeomFromTextExpr{Type: GeometryCollectionFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: GeometryCollectionFromText, WktText: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1247:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6338
{
- yyLOCAL = &GeomFromTextExpr{Type: GeometryCollectionFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: GeometryCollectionFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1248:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6342
{
- yyLOCAL = &GeomFromTextExpr{Type: LineStringFromText, WktText: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: GeometryCollectionFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1249:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6346
{
- yyLOCAL = &GeomFromTextExpr{Type: LineStringFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: LineStringFromText, WktText: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1250:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6350
{
- yyLOCAL = &GeomFromTextExpr{Type: LineStringFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: LineStringFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1251:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6354
{
- yyLOCAL = &GeomFromTextExpr{Type: MultiLinestringFromText, WktText: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: LineStringFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1252:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6358
{
- yyLOCAL = &GeomFromTextExpr{Type: MultiLinestringFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: MultiLinestringFromText, WktText: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1253:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6362
{
- yyLOCAL = &GeomFromTextExpr{Type: MultiLinestringFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: MultiLinestringFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1254:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6366
{
- yyLOCAL = &GeomFromTextExpr{Type: MultiPointFromText, WktText: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: MultiLinestringFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1255:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6370
{
- yyLOCAL = &GeomFromTextExpr{Type: MultiPointFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: MultiPointFromText, WktText: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1256:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6374
{
- yyLOCAL = &GeomFromTextExpr{Type: MultiPointFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: MultiPointFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1257:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6378
{
- yyLOCAL = &GeomFromTextExpr{Type: MultiPolygonFromText, WktText: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: MultiPointFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1258:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6382
{
- yyLOCAL = &GeomFromTextExpr{Type: MultiPolygonFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: MultiPolygonFromText, WktText: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1259:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6386
{
- yyLOCAL = &GeomFromTextExpr{Type: MultiPolygonFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: MultiPolygonFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1260:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6390
{
- yyLOCAL = &GeomFromTextExpr{Type: PointFromText, WktText: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: MultiPolygonFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1261:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6394
{
- yyLOCAL = &GeomFromTextExpr{Type: PointFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: PointFromText, WktText: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1262:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6398
{
- yyLOCAL = &GeomFromTextExpr{Type: PointFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: PointFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1263:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6402
{
- yyLOCAL = &GeomFromTextExpr{Type: PolygonFromText, WktText: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: PointFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1264:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6406
{
- yyLOCAL = &GeomFromTextExpr{Type: PolygonFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: PolygonFromText, WktText: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1265:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6410
{
- yyLOCAL = &GeomFromTextExpr{Type: PolygonFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: PolygonFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1266:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6414
{
- yyLOCAL = &GeomFromWKBExpr{Type: GeometryFromWKB, WkbBlob: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromTextExpr{Type: PolygonFromText, WktText: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1267:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6418
{
- yyLOCAL = &GeomFromWKBExpr{Type: GeometryFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: GeometryFromWKB, WkbBlob: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1268:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6422
{
- yyLOCAL = &GeomFromWKBExpr{Type: GeometryFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: GeometryFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1269:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6426
{
- yyLOCAL = &GeomFromWKBExpr{Type: GeometryCollectionFromWKB, WkbBlob: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: GeometryFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1270:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6430
{
- yyLOCAL = &GeomFromWKBExpr{Type: GeometryCollectionFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: GeometryCollectionFromWKB, WkbBlob: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1271:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6434
{
- yyLOCAL = &GeomFromWKBExpr{Type: GeometryCollectionFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: GeometryCollectionFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1272:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6438
{
- yyLOCAL = &GeomFromWKBExpr{Type: LineStringFromWKB, WkbBlob: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: GeometryCollectionFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1273:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6442
{
- yyLOCAL = &GeomFromWKBExpr{Type: LineStringFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: LineStringFromWKB, WkbBlob: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1274:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6446
{
- yyLOCAL = &GeomFromWKBExpr{Type: LineStringFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: LineStringFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1275:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6450
{
- yyLOCAL = &GeomFromWKBExpr{Type: MultiLinestringFromWKB, WkbBlob: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: LineStringFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1276:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6454
{
- yyLOCAL = &GeomFromWKBExpr{Type: MultiLinestringFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: MultiLinestringFromWKB, WkbBlob: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1277:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6458
{
- yyLOCAL = &GeomFromWKBExpr{Type: MultiLinestringFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: MultiLinestringFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1278:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6462
{
- yyLOCAL = &GeomFromWKBExpr{Type: MultiPointFromWKB, WkbBlob: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: MultiLinestringFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1279:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6466
{
- yyLOCAL = &GeomFromWKBExpr{Type: MultiPointFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: MultiPointFromWKB, WkbBlob: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1280:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6470
{
- yyLOCAL = &GeomFromWKBExpr{Type: MultiPointFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: MultiPointFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1281:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6474
{
- yyLOCAL = &GeomFromWKBExpr{Type: MultiPolygonFromWKB, WkbBlob: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: MultiPointFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1282:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6478
{
- yyLOCAL = &GeomFromWKBExpr{Type: MultiPolygonFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: MultiPolygonFromWKB, WkbBlob: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1283:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6482
{
- yyLOCAL = &GeomFromWKBExpr{Type: MultiPolygonFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: MultiPolygonFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1284:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6486
{
- yyLOCAL = &GeomFromWKBExpr{Type: PointFromWKB, WkbBlob: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: MultiPolygonFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1285:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6490
{
- yyLOCAL = &GeomFromWKBExpr{Type: PointFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: PointFromWKB, WkbBlob: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1286:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6494
{
- yyLOCAL = &GeomFromWKBExpr{Type: PointFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: PointFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1287:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6498
{
- yyLOCAL = &GeomFromWKBExpr{Type: PolygonFromWKB, WkbBlob: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: PointFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1288:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6502
{
- yyLOCAL = &GeomFromWKBExpr{Type: PolygonFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: PolygonFromWKB, WkbBlob: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1289:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6506
{
- yyLOCAL = &GeomFromWKBExpr{Type: PolygonFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: PolygonFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1290:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6510
{
- yyLOCAL = &PolygonPropertyFuncExpr{Property: Area, Polygon: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromWKBExpr{Type: PolygonFromWKB, WkbBlob: yyDollar[3].exprUnion(), Srid: yyDollar[5].exprUnion(), AxisOrderOpt: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1291:
@@ -19978,7 +19881,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6514
{
- yyLOCAL = &PolygonPropertyFuncExpr{Property: Centroid, Polygon: yyDollar[3].exprUnion()}
+ yyLOCAL = &PolygonPropertyFuncExpr{Property: Area, Polygon: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1292:
@@ -19986,63 +19889,63 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6518
{
- yyLOCAL = &PolygonPropertyFuncExpr{Property: ExteriorRing, Polygon: yyDollar[3].exprUnion()}
+ yyLOCAL = &PolygonPropertyFuncExpr{Property: Centroid, Polygon: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1293:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6522
{
- yyLOCAL = &PolygonPropertyFuncExpr{Property: InteriorRingN, Polygon: yyDollar[3].exprUnion(), PropertyDefArg: yyDollar[5].exprUnion()}
+ yyLOCAL = &PolygonPropertyFuncExpr{Property: ExteriorRing, Polygon: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1294:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6526
{
- yyLOCAL = &PolygonPropertyFuncExpr{Property: NumInteriorRings, Polygon: yyDollar[3].exprUnion()}
+ yyLOCAL = &PolygonPropertyFuncExpr{Property: InteriorRingN, Polygon: yyDollar[3].exprUnion(), PropertyDefArg: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1295:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6530
{
- yyLOCAL = &GeomCollPropertyFuncExpr{Property: GeometryN, GeomColl: yyDollar[3].exprUnion(), PropertyDefArg: yyDollar[5].exprUnion()}
+ yyLOCAL = &PolygonPropertyFuncExpr{Property: NumInteriorRings, Polygon: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1296:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6534
{
- yyLOCAL = &GeomCollPropertyFuncExpr{Property: NumGeometries, GeomColl: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomCollPropertyFuncExpr{Property: GeometryN, GeomColl: yyDollar[3].exprUnion(), PropertyDefArg: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1297:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6538
{
- yyLOCAL = &GeoHashFromLatLongExpr{Longitude: yyDollar[3].exprUnion(), Latitude: yyDollar[5].exprUnion(), MaxLength: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomCollPropertyFuncExpr{Property: NumGeometries, GeomColl: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1298:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6542
{
- yyLOCAL = &GeoHashFromPointExpr{Point: yyDollar[3].exprUnion(), MaxLength: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeoHashFromLatLongExpr{Longitude: yyDollar[3].exprUnion(), Latitude: yyDollar[5].exprUnion(), MaxLength: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1299:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6546
{
- yyLOCAL = &GeomFromGeoHashExpr{GeomType: LatitudeFromHash, GeoHash: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeoHashFromPointExpr{Point: yyDollar[3].exprUnion(), MaxLength: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1300:
@@ -20050,71 +19953,71 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6550
{
- yyLOCAL = &GeomFromGeoHashExpr{GeomType: LongitudeFromHash, GeoHash: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromGeoHashExpr{GeomType: LatitudeFromHash, GeoHash: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1301:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6554
{
- yyLOCAL = &GeomFromGeoHashExpr{GeomType: PointFromHash, GeoHash: yyDollar[3].exprUnion(), SridOpt: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromGeoHashExpr{GeomType: LongitudeFromHash, GeoHash: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1302:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6558
{
- yyLOCAL = &GeomFromGeoJSONExpr{GeoJSON: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromGeoHashExpr{GeomType: PointFromHash, GeoHash: yyDollar[3].exprUnion(), SridOpt: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1303:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6562
{
- yyLOCAL = &GeomFromGeoJSONExpr{GeoJSON: yyDollar[3].exprUnion(), HigherDimHandlerOpt: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeomFromGeoJSONExpr{GeoJSON: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1304:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6566
{
- yyLOCAL = &GeomFromGeoJSONExpr{GeoJSON: yyDollar[3].exprUnion(), HigherDimHandlerOpt: yyDollar[5].exprUnion(), Srid: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeomFromGeoJSONExpr{GeoJSON: yyDollar[3].exprUnion(), HigherDimHandlerOpt: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1305:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6570
{
- yyLOCAL = &GeoJSONFromGeomExpr{Geom: yyDollar[3].exprUnion()}
+ yyLOCAL = &GeomFromGeoJSONExpr{GeoJSON: yyDollar[3].exprUnion(), HigherDimHandlerOpt: yyDollar[5].exprUnion(), Srid: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1306:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6574
{
- yyLOCAL = &GeoJSONFromGeomExpr{Geom: yyDollar[3].exprUnion(), MaxDecimalDigits: yyDollar[5].exprUnion()}
+ yyLOCAL = &GeoJSONFromGeomExpr{Geom: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1307:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6578
{
- yyLOCAL = &GeoJSONFromGeomExpr{Geom: yyDollar[3].exprUnion(), MaxDecimalDigits: yyDollar[5].exprUnion(), Bitmask: yyDollar[7].exprUnion()}
+ yyLOCAL = &GeoJSONFromGeomExpr{Geom: yyDollar[3].exprUnion(), MaxDecimalDigits: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1308:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6582
{
- yyLOCAL = &JSONObjectExpr{Params: yyDollar[3].jsonObjectParamsUnion()}
+ yyLOCAL = &GeoJSONFromGeomExpr{Geom: yyDollar[3].exprUnion(), MaxDecimalDigits: yyDollar[5].exprUnion(), Bitmask: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1309:
@@ -20122,47 +20025,47 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6586
{
- yyLOCAL = &JSONQuoteExpr{StringArg: yyDollar[3].exprUnion()}
+ yyLOCAL = &JSONObjectExpr{Params: yyDollar[3].jsonObjectParamsUnion()}
}
yyVAL.union = yyLOCAL
case 1310:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6590
{
- yyLOCAL = &JSONContainsExpr{Target: yyDollar[3].exprUnion(), Candidate: yyDollar[5].exprsUnion()[0], PathList: yyDollar[5].exprsUnion()[1:]}
+ yyLOCAL = &JSONQuoteExpr{StringArg: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1311:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6594
{
- yyLOCAL = &JSONContainsPathExpr{JSONDoc: yyDollar[3].exprUnion(), OneOrAll: yyDollar[5].exprUnion(), PathList: yyDollar[7].exprsUnion()}
+ yyLOCAL = &JSONContainsExpr{Target: yyDollar[3].exprUnion(), Candidate: yyDollar[5].exprsUnion()[0], PathList: yyDollar[5].exprsUnion()[1:]}
}
yyVAL.union = yyLOCAL
case 1312:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6598
{
- yyLOCAL = &JSONExtractExpr{JSONDoc: yyDollar[3].exprUnion(), PathList: yyDollar[5].exprsUnion()}
+ yyLOCAL = &JSONContainsPathExpr{JSONDoc: yyDollar[3].exprUnion(), OneOrAll: yyDollar[5].exprUnion(), PathList: yyDollar[7].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1313:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6602
{
- yyLOCAL = &JSONKeysExpr{JSONDoc: yyDollar[3].exprUnion()}
+ yyLOCAL = &JSONExtractExpr{JSONDoc: yyDollar[3].exprUnion(), PathList: yyDollar[5].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1314:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6606
{
- yyLOCAL = &JSONKeysExpr{JSONDoc: yyDollar[3].exprUnion(), Path: yyDollar[5].exprUnion()}
+ yyLOCAL = &JSONKeysExpr{JSONDoc: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1315:
@@ -20170,39 +20073,39 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6610
{
- yyLOCAL = &JSONOverlapsExpr{JSONDoc1: yyDollar[3].exprUnion(), JSONDoc2: yyDollar[5].exprUnion()}
+ yyLOCAL = &JSONKeysExpr{JSONDoc: yyDollar[3].exprUnion(), Path: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1316:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6614
{
- yyLOCAL = &JSONSearchExpr{JSONDoc: yyDollar[3].exprUnion(), OneOrAll: yyDollar[5].exprUnion(), SearchStr: yyDollar[7].exprUnion()}
+ yyLOCAL = &JSONOverlapsExpr{JSONDoc1: yyDollar[3].exprUnion(), JSONDoc2: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1317:
- yyDollar = yyS[yypt-10 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6618
{
- yyLOCAL = &JSONSearchExpr{JSONDoc: yyDollar[3].exprUnion(), OneOrAll: yyDollar[5].exprUnion(), SearchStr: yyDollar[7].exprUnion(), EscapeChar: yyDollar[9].exprsUnion()[0], PathList: yyDollar[9].exprsUnion()[1:]}
+ yyLOCAL = &JSONSearchExpr{JSONDoc: yyDollar[3].exprUnion(), OneOrAll: yyDollar[5].exprUnion(), SearchStr: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1318:
- yyDollar = yyS[yypt-7 : yypt+1]
+ yyDollar = yyS[yypt-10 : yypt+1]
var yyLOCAL Expr
//line sql.y:6622
{
- yyLOCAL = &JSONValueExpr{JSONDoc: yyDollar[3].exprUnion(), Path: yyDollar[5].exprUnion(), ReturningType: yyDollar[6].convertTypeUnion()}
+ yyLOCAL = &JSONSearchExpr{JSONDoc: yyDollar[3].exprUnion(), OneOrAll: yyDollar[5].exprUnion(), SearchStr: yyDollar[7].exprUnion(), EscapeChar: yyDollar[9].exprsUnion()[0], PathList: yyDollar[9].exprsUnion()[1:]}
}
yyVAL.union = yyLOCAL
case 1319:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-7 : yypt+1]
var yyLOCAL Expr
//line sql.y:6626
{
- yyLOCAL = &JSONValueExpr{JSONDoc: yyDollar[3].exprUnion(), Path: yyDollar[5].exprUnion(), ReturningType: yyDollar[6].convertTypeUnion(), EmptyOnResponse: yyDollar[7].jtOnResponseUnion()}
+ yyLOCAL = &JSONValueExpr{JSONDoc: yyDollar[3].exprUnion(), Path: yyDollar[5].exprUnion(), ReturningType: yyDollar[6].convertTypeUnion()}
}
yyVAL.union = yyLOCAL
case 1320:
@@ -20210,23 +20113,23 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6630
{
- yyLOCAL = &JSONValueExpr{JSONDoc: yyDollar[3].exprUnion(), Path: yyDollar[5].exprUnion(), ReturningType: yyDollar[6].convertTypeUnion(), ErrorOnResponse: yyDollar[7].jtOnResponseUnion()}
+ yyLOCAL = &JSONValueExpr{JSONDoc: yyDollar[3].exprUnion(), Path: yyDollar[5].exprUnion(), ReturningType: yyDollar[6].convertTypeUnion(), EmptyOnResponse: yyDollar[7].jtOnResponseUnion()}
}
yyVAL.union = yyLOCAL
case 1321:
- yyDollar = yyS[yypt-9 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6634
{
- yyLOCAL = &JSONValueExpr{JSONDoc: yyDollar[3].exprUnion(), Path: yyDollar[5].exprUnion(), ReturningType: yyDollar[6].convertTypeUnion(), EmptyOnResponse: yyDollar[7].jtOnResponseUnion(), ErrorOnResponse: yyDollar[8].jtOnResponseUnion()}
+ yyLOCAL = &JSONValueExpr{JSONDoc: yyDollar[3].exprUnion(), Path: yyDollar[5].exprUnion(), ReturningType: yyDollar[6].convertTypeUnion(), ErrorOnResponse: yyDollar[7].jtOnResponseUnion()}
}
yyVAL.union = yyLOCAL
case 1322:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-9 : yypt+1]
var yyLOCAL Expr
//line sql.y:6638
{
- yyLOCAL = &JSONAttributesExpr{Type: DepthAttributeType, JSONDoc: yyDollar[3].exprUnion()}
+ yyLOCAL = &JSONValueExpr{JSONDoc: yyDollar[3].exprUnion(), Path: yyDollar[5].exprUnion(), ReturningType: yyDollar[6].convertTypeUnion(), EmptyOnResponse: yyDollar[7].jtOnResponseUnion(), ErrorOnResponse: yyDollar[8].jtOnResponseUnion()}
}
yyVAL.union = yyLOCAL
case 1323:
@@ -20234,7 +20137,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6642
{
- yyLOCAL = &JSONAttributesExpr{Type: ValidAttributeType, JSONDoc: yyDollar[3].exprUnion()}
+ yyLOCAL = &JSONAttributesExpr{Type: DepthAttributeType, JSONDoc: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1324:
@@ -20242,7 +20145,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6646
{
- yyLOCAL = &JSONAttributesExpr{Type: TypeAttributeType, JSONDoc: yyDollar[3].exprUnion()}
+ yyLOCAL = &JSONAttributesExpr{Type: ValidAttributeType, JSONDoc: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1325:
@@ -20250,15 +20153,15 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6650
{
- yyLOCAL = &JSONAttributesExpr{Type: LengthAttributeType, JSONDoc: yyDollar[3].exprUnion()}
+ yyLOCAL = &JSONAttributesExpr{Type: TypeAttributeType, JSONDoc: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1326:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6654
{
- yyLOCAL = &JSONAttributesExpr{Type: LengthAttributeType, JSONDoc: yyDollar[3].exprUnion(), Path: yyDollar[5].exprUnion()}
+ yyLOCAL = &JSONAttributesExpr{Type: LengthAttributeType, JSONDoc: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1327:
@@ -20266,7 +20169,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6658
{
- yyLOCAL = &JSONValueModifierExpr{Type: JSONArrayAppendType, JSONDoc: yyDollar[3].exprUnion(), Params: yyDollar[5].jsonObjectParamsUnion()}
+ yyLOCAL = &JSONAttributesExpr{Type: LengthAttributeType, JSONDoc: yyDollar[3].exprUnion(), Path: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1328:
@@ -20274,7 +20177,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6662
{
- yyLOCAL = &JSONValueModifierExpr{Type: JSONArrayInsertType, JSONDoc: yyDollar[3].exprUnion(), Params: yyDollar[5].jsonObjectParamsUnion()}
+ yyLOCAL = &JSONValueModifierExpr{Type: JSONArrayAppendType, JSONDoc: yyDollar[3].exprUnion(), Params: yyDollar[5].jsonObjectParamsUnion()}
}
yyVAL.union = yyLOCAL
case 1329:
@@ -20282,7 +20185,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6666
{
- yyLOCAL = &JSONValueModifierExpr{Type: JSONInsertType, JSONDoc: yyDollar[3].exprUnion(), Params: yyDollar[5].jsonObjectParamsUnion()}
+ yyLOCAL = &JSONValueModifierExpr{Type: JSONArrayInsertType, JSONDoc: yyDollar[3].exprUnion(), Params: yyDollar[5].jsonObjectParamsUnion()}
}
yyVAL.union = yyLOCAL
case 1330:
@@ -20290,7 +20193,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6670
{
- yyLOCAL = &JSONValueModifierExpr{Type: JSONReplaceType, JSONDoc: yyDollar[3].exprUnion(), Params: yyDollar[5].jsonObjectParamsUnion()}
+ yyLOCAL = &JSONValueModifierExpr{Type: JSONInsertType, JSONDoc: yyDollar[3].exprUnion(), Params: yyDollar[5].jsonObjectParamsUnion()}
}
yyVAL.union = yyLOCAL
case 1331:
@@ -20298,7 +20201,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6674
{
- yyLOCAL = &JSONValueModifierExpr{Type: JSONSetType, JSONDoc: yyDollar[3].exprUnion(), Params: yyDollar[5].jsonObjectParamsUnion()}
+ yyLOCAL = &JSONValueModifierExpr{Type: JSONReplaceType, JSONDoc: yyDollar[3].exprUnion(), Params: yyDollar[5].jsonObjectParamsUnion()}
}
yyVAL.union = yyLOCAL
case 1332:
@@ -20306,7 +20209,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6678
{
- yyLOCAL = &JSONValueMergeExpr{Type: JSONMergeType, JSONDoc: yyDollar[3].exprUnion(), JSONDocList: yyDollar[5].exprsUnion()}
+ yyLOCAL = &JSONValueModifierExpr{Type: JSONSetType, JSONDoc: yyDollar[3].exprUnion(), Params: yyDollar[5].jsonObjectParamsUnion()}
}
yyVAL.union = yyLOCAL
case 1333:
@@ -20314,7 +20217,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6682
{
- yyLOCAL = &JSONValueMergeExpr{Type: JSONMergePatchType, JSONDoc: yyDollar[3].exprUnion(), JSONDocList: yyDollar[5].exprsUnion()}
+ yyLOCAL = &JSONValueMergeExpr{Type: JSONMergeType, JSONDoc: yyDollar[3].exprUnion(), JSONDocList: yyDollar[5].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1334:
@@ -20322,7 +20225,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6686
{
- yyLOCAL = &JSONValueMergeExpr{Type: JSONMergePreserveType, JSONDoc: yyDollar[3].exprUnion(), JSONDocList: yyDollar[5].exprsUnion()}
+ yyLOCAL = &JSONValueMergeExpr{Type: JSONMergePatchType, JSONDoc: yyDollar[3].exprUnion(), JSONDocList: yyDollar[5].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1335:
@@ -20330,15 +20233,15 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6690
{
- yyLOCAL = &JSONRemoveExpr{JSONDoc: yyDollar[3].exprUnion(), PathList: yyDollar[5].exprsUnion()}
+ yyLOCAL = &JSONValueMergeExpr{Type: JSONMergePreserveType, JSONDoc: yyDollar[3].exprUnion(), JSONDocList: yyDollar[5].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1336:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6694
{
- yyLOCAL = &JSONUnquoteExpr{JSONValue: yyDollar[3].exprUnion()}
+ yyLOCAL = &JSONRemoveExpr{JSONDoc: yyDollar[3].exprUnion(), PathList: yyDollar[5].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1337:
@@ -20346,7 +20249,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6698
{
- yyLOCAL = &MultiPolygonExpr{PolygonParams: yyDollar[3].exprsUnion()}
+ yyLOCAL = &JSONUnquoteExpr{JSONValue: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1338:
@@ -20354,7 +20257,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6702
{
- yyLOCAL = &MultiPointExpr{PointParams: yyDollar[3].exprsUnion()}
+ yyLOCAL = &MultiPolygonExpr{PolygonParams: yyDollar[3].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1339:
@@ -20362,7 +20265,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6706
{
- yyLOCAL = &MultiLinestringExpr{LinestringParams: yyDollar[3].exprsUnion()}
+ yyLOCAL = &MultiPointExpr{PointParams: yyDollar[3].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1340:
@@ -20370,7 +20273,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6710
{
- yyLOCAL = &PolygonExpr{LinestringParams: yyDollar[3].exprsUnion()}
+ yyLOCAL = &MultiLinestringExpr{LinestringParams: yyDollar[3].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1341:
@@ -20378,87 +20281,87 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6714
{
- yyLOCAL = &LineStringExpr{PointParams: yyDollar[3].exprsUnion()}
+ yyLOCAL = &PolygonExpr{LinestringParams: yyDollar[3].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1342:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6718
{
- yyLOCAL = &PointExpr{XCordinate: yyDollar[3].exprUnion(), YCordinate: yyDollar[5].exprUnion()}
+ yyLOCAL = &LineStringExpr{PointParams: yyDollar[3].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1343:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6722
{
- yyLOCAL = &ArgumentLessWindowExpr{Type: yyDollar[1].argumentLessWindowExprTypeUnion(), OverClause: yyDollar[4].overClauseUnion()}
+ yyLOCAL = &PointExpr{XCordinate: yyDollar[3].exprUnion(), YCordinate: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
case 1344:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
//line sql.y:6726
{
- yyLOCAL = &FirstOrLastValueExpr{Type: yyDollar[1].firstOrLastValueExprTypeUnion(), Expr: yyDollar[3].exprUnion(), NullTreatmentClause: yyDollar[5].nullTreatmentClauseUnion(), OverClause: yyDollar[6].overClauseUnion()}
+ yyLOCAL = &ArgumentLessWindowExpr{Type: yyDollar[1].argumentLessWindowExprTypeUnion(), OverClause: yyDollar[4].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1345:
- yyDollar = yyS[yypt-5 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6730
{
- yyLOCAL = &NtileExpr{N: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
+ yyLOCAL = &FirstOrLastValueExpr{Type: yyDollar[1].firstOrLastValueExprTypeUnion(), Expr: yyDollar[3].exprUnion(), NullTreatmentClause: yyDollar[5].nullTreatmentClauseUnion(), OverClause: yyDollar[6].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1346:
- yyDollar = yyS[yypt-9 : yypt+1]
+ yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL Expr
//line sql.y:6734
{
- yyLOCAL = &NTHValueExpr{Expr: yyDollar[3].exprUnion(), N: yyDollar[5].exprUnion(), FromFirstLastClause: yyDollar[7].fromFirstLastClauseUnion(), NullTreatmentClause: yyDollar[8].nullTreatmentClauseUnion(), OverClause: yyDollar[9].overClauseUnion()}
+ yyLOCAL = &NtileExpr{N: yyDollar[3].exprUnion(), OverClause: yyDollar[5].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1347:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-9 : yypt+1]
var yyLOCAL Expr
//line sql.y:6738
{
- yyLOCAL = &LagLeadExpr{Type: yyDollar[1].lagLeadExprTypeUnion(), Expr: yyDollar[3].exprUnion(), NullTreatmentClause: yyDollar[5].nullTreatmentClauseUnion(), OverClause: yyDollar[6].overClauseUnion()}
+ yyLOCAL = &NTHValueExpr{Expr: yyDollar[3].exprUnion(), N: yyDollar[5].exprUnion(), FromFirstLastClause: yyDollar[7].fromFirstLastClauseUnion(), NullTreatmentClause: yyDollar[8].nullTreatmentClauseUnion(), OverClause: yyDollar[9].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1348:
- yyDollar = yyS[yypt-9 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6742
{
- yyLOCAL = &LagLeadExpr{Type: yyDollar[1].lagLeadExprTypeUnion(), Expr: yyDollar[3].exprUnion(), N: yyDollar[5].exprUnion(), Default: yyDollar[6].exprUnion(), NullTreatmentClause: yyDollar[8].nullTreatmentClauseUnion(), OverClause: yyDollar[9].overClauseUnion()}
+ yyLOCAL = &LagLeadExpr{Type: yyDollar[1].lagLeadExprTypeUnion(), Expr: yyDollar[3].exprUnion(), NullTreatmentClause: yyDollar[5].nullTreatmentClauseUnion(), OverClause: yyDollar[6].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1349:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-9 : yypt+1]
var yyLOCAL Expr
//line sql.y:6746
{
- yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprAdddate, Date: yyDollar[3].exprUnion(), Interval: yyDollar[6].exprUnion(), Unit: yyDollar[7].intervalTypeUnion()}
+ yyLOCAL = &LagLeadExpr{Type: yyDollar[1].lagLeadExprTypeUnion(), Expr: yyDollar[3].exprUnion(), N: yyDollar[5].exprUnion(), Default: yyDollar[6].exprUnion(), NullTreatmentClause: yyDollar[8].nullTreatmentClauseUnion(), OverClause: yyDollar[9].overClauseUnion()}
}
yyVAL.union = yyLOCAL
case 1350:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6750
{
- yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprAdddate, Date: yyDollar[3].exprUnion(), Interval: yyDollar[5].exprUnion(), Unit: IntervalNone}
+ yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprAdddate, Date: yyDollar[3].exprUnion(), Interval: yyDollar[6].exprUnion(), Unit: yyDollar[7].intervalTypeUnion()}
}
yyVAL.union = yyLOCAL
case 1351:
- yyDollar = yyS[yypt-8 : yypt+1]
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
//line sql.y:6754
{
- yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprDateAdd, Date: yyDollar[3].exprUnion(), Interval: yyDollar[6].exprUnion(), Unit: yyDollar[7].intervalTypeUnion()}
+ yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprAdddate, Date: yyDollar[3].exprUnion(), Interval: yyDollar[5].exprUnion(), Unit: IntervalNone}
}
yyVAL.union = yyLOCAL
case 1352:
@@ -20466,7 +20369,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6758
{
- yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprDateSub, Date: yyDollar[3].exprUnion(), Interval: yyDollar[6].exprUnion(), Unit: yyDollar[7].intervalTypeUnion()}
+ yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprDateAdd, Date: yyDollar[3].exprUnion(), Interval: yyDollar[6].exprUnion(), Unit: yyDollar[7].intervalTypeUnion()}
}
yyVAL.union = yyLOCAL
case 1353:
@@ -20474,23 +20377,23 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6762
{
- yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprSubdate, Date: yyDollar[3].exprUnion(), Interval: yyDollar[6].exprUnion(), Unit: yyDollar[7].intervalTypeUnion()}
+ yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprDateSub, Date: yyDollar[3].exprUnion(), Interval: yyDollar[6].exprUnion(), Unit: yyDollar[7].intervalTypeUnion()}
}
yyVAL.union = yyLOCAL
case 1354:
- yyDollar = yyS[yypt-6 : yypt+1]
+ yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
//line sql.y:6766
{
- yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprSubdate, Date: yyDollar[3].exprUnion(), Interval: yyDollar[5].exprUnion(), Unit: IntervalNone}
+ yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprSubdate, Date: yyDollar[3].exprUnion(), Interval: yyDollar[6].exprUnion(), Unit: yyDollar[7].intervalTypeUnion()}
}
yyVAL.union = yyLOCAL
- case 1359:
- yyDollar = yyS[yypt-1 : yypt+1]
+ case 1355:
+ yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6776
+//line sql.y:6770
{
- yyLOCAL = yyDollar[1].exprUnion()
+ yyLOCAL = &IntervalDateExpr{Syntax: IntervalDateExprSubdate, Date: yyDollar[3].exprUnion(), Interval: yyDollar[5].exprUnion(), Unit: IntervalNone}
}
yyVAL.union = yyLOCAL
case 1360:
@@ -20498,7 +20401,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6780
{
- yyLOCAL = NewIntLiteral(yyDollar[1].str)
+ yyLOCAL = yyDollar[1].exprUnion()
}
yyVAL.union = yyLOCAL
case 1361:
@@ -20506,7 +20409,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6784
{
- yyLOCAL = yyDollar[1].variableUnion()
+ yyLOCAL = NewIntLiteral(yyDollar[1].str)
}
yyVAL.union = yyLOCAL
case 1362:
@@ -20514,282 +20417,282 @@ yydefault:
var yyLOCAL Expr
//line sql.y:6788
{
- yyLOCAL = parseBindVariable(yylex, yyDollar[1].str[1:])
+ yyLOCAL = yyDollar[1].variableUnion()
}
yyVAL.union = yyLOCAL
case 1363:
+ yyDollar = yyS[yypt-1 : yypt+1]
+ var yyLOCAL Expr
+//line sql.y:6792
+ {
+ yyLOCAL = parseBindVariable(yylex, yyDollar[1].str[1:])
+ }
+ yyVAL.union = yyLOCAL
+ case 1364:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6793
+//line sql.y:6797
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1364:
+ case 1365:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6797
+//line sql.y:6801
{
yyLOCAL = yyDollar[2].exprUnion()
}
yyVAL.union = yyLOCAL
- case 1365:
+ case 1366:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6803
+//line sql.y:6807
{
yyLOCAL = &RegexpInstrExpr{Expr: yyDollar[3].exprUnion(), Pattern: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1366:
+ case 1367:
yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6807
+//line sql.y:6811
{
yyLOCAL = &RegexpInstrExpr{Expr: yyDollar[3].exprUnion(), Pattern: yyDollar[5].exprUnion(), Position: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1367:
+ case 1368:
yyDollar = yyS[yypt-10 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6811
+//line sql.y:6815
{
yyLOCAL = &RegexpInstrExpr{Expr: yyDollar[3].exprUnion(), Pattern: yyDollar[5].exprUnion(), Position: yyDollar[7].exprUnion(), Occurrence: yyDollar[9].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1368:
+ case 1369:
yyDollar = yyS[yypt-12 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6815
+//line sql.y:6819
{
yyLOCAL = &RegexpInstrExpr{Expr: yyDollar[3].exprUnion(), Pattern: yyDollar[5].exprUnion(), Position: yyDollar[7].exprUnion(), Occurrence: yyDollar[9].exprUnion(), ReturnOption: yyDollar[11].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1369:
+ case 1370:
yyDollar = yyS[yypt-14 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6819
+//line sql.y:6823
{
// Match type is kept expression as TRIM( ' m ') is accepted
yyLOCAL = &RegexpInstrExpr{Expr: yyDollar[3].exprUnion(), Pattern: yyDollar[5].exprUnion(), Position: yyDollar[7].exprUnion(), Occurrence: yyDollar[9].exprUnion(), ReturnOption: yyDollar[11].exprUnion(), MatchType: yyDollar[13].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1370:
+ case 1371:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6824
+//line sql.y:6828
{
yyLOCAL = &RegexpLikeExpr{Expr: yyDollar[3].exprUnion(), Pattern: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1371:
+ case 1372:
yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6828
+//line sql.y:6832
{
yyLOCAL = &RegexpLikeExpr{Expr: yyDollar[3].exprUnion(), Pattern: yyDollar[5].exprUnion(), MatchType: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1372:
+ case 1373:
yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6832
+//line sql.y:6836
{
yyLOCAL = &RegexpReplaceExpr{Expr: yyDollar[3].exprUnion(), Pattern: yyDollar[5].exprUnion(), Repl: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1373:
+ case 1374:
yyDollar = yyS[yypt-10 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6836
+//line sql.y:6840
{
yyLOCAL = &RegexpReplaceExpr{Expr: yyDollar[3].exprUnion(), Pattern: yyDollar[5].exprUnion(), Repl: yyDollar[7].exprUnion(), Position: yyDollar[9].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1374:
+ case 1375:
yyDollar = yyS[yypt-12 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6840
+//line sql.y:6844
{
yyLOCAL = &RegexpReplaceExpr{Expr: yyDollar[3].exprUnion(), Pattern: yyDollar[5].exprUnion(), Repl: yyDollar[7].exprUnion(), Position: yyDollar[9].exprUnion(), Occurrence: yyDollar[11].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1375:
+ case 1376:
yyDollar = yyS[yypt-14 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6844
+//line sql.y:6848
{
// Match type is kept expression as TRIM( ' m ') is accepted
yyLOCAL = &RegexpReplaceExpr{Expr: yyDollar[3].exprUnion(), Pattern: yyDollar[5].exprUnion(), Repl: yyDollar[7].exprUnion(), Position: yyDollar[9].exprUnion(), Occurrence: yyDollar[11].exprUnion(), MatchType: yyDollar[13].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1376:
+ case 1377:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6849
+//line sql.y:6853
{
yyLOCAL = &RegexpSubstrExpr{Expr: yyDollar[3].exprUnion(), Pattern: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1377:
+ case 1378:
yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6853
+//line sql.y:6857
{
yyLOCAL = &RegexpSubstrExpr{Expr: yyDollar[3].exprUnion(), Pattern: yyDollar[5].exprUnion(), Position: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1378:
+ case 1379:
yyDollar = yyS[yypt-10 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6857
+//line sql.y:6861
{
yyLOCAL = &RegexpSubstrExpr{Expr: yyDollar[3].exprUnion(), Pattern: yyDollar[5].exprUnion(), Position: yyDollar[7].exprUnion(), Occurrence: yyDollar[9].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1379:
+ case 1380:
yyDollar = yyS[yypt-12 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6861
+//line sql.y:6865
{
// Match type is kept expression as TRIM( ' m ') is accepted
yyLOCAL = &RegexpSubstrExpr{Expr: yyDollar[3].exprUnion(), Pattern: yyDollar[5].exprUnion(), Position: yyDollar[7].exprUnion(), Occurrence: yyDollar[9].exprUnion(), MatchType: yyDollar[11].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1380:
+ case 1381:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6868
+//line sql.y:6872
{
yyLOCAL = &ExtractValueExpr{Fragment: yyDollar[3].exprUnion(), XPathExpr: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1381:
+ case 1382:
yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6872
+//line sql.y:6876
{
yyLOCAL = &UpdateXMLExpr{Target: yyDollar[3].exprUnion(), XPathExpr: yyDollar[5].exprUnion(), NewXML: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1382:
+ case 1383:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6878
+//line sql.y:6882
{
yyLOCAL = &PerformanceSchemaFuncExpr{Type: FormatBytesType, Argument: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1383:
+ case 1384:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6882
+//line sql.y:6886
{
yyLOCAL = &PerformanceSchemaFuncExpr{Type: FormatPicoTimeType, Argument: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1384:
+ case 1385:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6886
+//line sql.y:6890
{
yyLOCAL = &PerformanceSchemaFuncExpr{Type: PsCurrentThreadIDType}
}
yyVAL.union = yyLOCAL
- case 1385:
+ case 1386:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6890
+//line sql.y:6894
{
yyLOCAL = &PerformanceSchemaFuncExpr{Type: PsThreadIDType, Argument: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1386:
+ case 1387:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6896
+//line sql.y:6900
{
yyLOCAL = >IDFuncExpr{Type: GTIDSubsetType, Set1: yyDollar[3].exprUnion(), Set2: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1387:
+ case 1388:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6900
+//line sql.y:6904
{
yyLOCAL = >IDFuncExpr{Type: GTIDSubtractType, Set1: yyDollar[3].exprUnion(), Set2: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1388:
+ case 1389:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6904
+//line sql.y:6908
{
yyLOCAL = >IDFuncExpr{Type: WaitForExecutedGTIDSetType, Set1: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1389:
+ case 1390:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6908
+//line sql.y:6912
{
yyLOCAL = >IDFuncExpr{Type: WaitForExecutedGTIDSetType, Set1: yyDollar[3].exprUnion(), Timeout: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1390:
+ case 1391:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6912
+//line sql.y:6916
{
yyLOCAL = >IDFuncExpr{Type: WaitUntilSQLThreadAfterGTIDSType, Set1: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1391:
+ case 1392:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6916
+//line sql.y:6920
{
yyLOCAL = >IDFuncExpr{Type: WaitUntilSQLThreadAfterGTIDSType, Set1: yyDollar[3].exprUnion(), Timeout: yyDollar[5].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1392:
+ case 1393:
yyDollar = yyS[yypt-8 : yypt+1]
var yyLOCAL Expr
-//line sql.y:6920
+//line sql.y:6924
{
yyLOCAL = >IDFuncExpr{Type: WaitUntilSQLThreadAfterGTIDSType, Set1: yyDollar[3].exprUnion(), Timeout: yyDollar[5].exprUnion(), Channel: yyDollar[7].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1393:
+ case 1394:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL *ConvertType
-//line sql.y:6925
+//line sql.y:6929
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1394:
+ case 1395:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *ConvertType
-//line sql.y:6929
+//line sql.y:6933
{
yyLOCAL = yyDollar[2].convertTypeUnion()
}
yyVAL.union = yyLOCAL
- case 1395:
- yyDollar = yyS[yypt-1 : yypt+1]
- var yyLOCAL IntervalType
-//line sql.y:6935
- {
- yyLOCAL = IntervalDayHour
- }
- yyVAL.union = yyLOCAL
case 1396:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL IntervalType
//line sql.y:6939
{
- yyLOCAL = IntervalDayMicrosecond
+ yyLOCAL = IntervalDayHour
}
yyVAL.union = yyLOCAL
case 1397:
@@ -20797,7 +20700,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:6943
{
- yyLOCAL = IntervalDayMinute
+ yyLOCAL = IntervalDayMicrosecond
}
yyVAL.union = yyLOCAL
case 1398:
@@ -20805,7 +20708,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:6947
{
- yyLOCAL = IntervalDaySecond
+ yyLOCAL = IntervalDayMinute
}
yyVAL.union = yyLOCAL
case 1399:
@@ -20813,7 +20716,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:6951
{
- yyLOCAL = IntervalHourMicrosecond
+ yyLOCAL = IntervalDaySecond
}
yyVAL.union = yyLOCAL
case 1400:
@@ -20821,7 +20724,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:6955
{
- yyLOCAL = IntervalHourMinute
+ yyLOCAL = IntervalHourMicrosecond
}
yyVAL.union = yyLOCAL
case 1401:
@@ -20829,7 +20732,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:6959
{
- yyLOCAL = IntervalHourSecond
+ yyLOCAL = IntervalHourMinute
}
yyVAL.union = yyLOCAL
case 1402:
@@ -20837,7 +20740,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:6963
{
- yyLOCAL = IntervalMinuteMicrosecond
+ yyLOCAL = IntervalHourSecond
}
yyVAL.union = yyLOCAL
case 1403:
@@ -20845,7 +20748,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:6967
{
- yyLOCAL = IntervalMinuteSecond
+ yyLOCAL = IntervalMinuteMicrosecond
}
yyVAL.union = yyLOCAL
case 1404:
@@ -20853,7 +20756,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:6971
{
- yyLOCAL = IntervalSecondMicrosecond
+ yyLOCAL = IntervalMinuteSecond
}
yyVAL.union = yyLOCAL
case 1405:
@@ -20861,7 +20764,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:6975
{
- yyLOCAL = IntervalYearMonth
+ yyLOCAL = IntervalSecondMicrosecond
}
yyVAL.union = yyLOCAL
case 1406:
@@ -20869,7 +20772,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:6979
{
- yyLOCAL = IntervalDay
+ yyLOCAL = IntervalYearMonth
}
yyVAL.union = yyLOCAL
case 1407:
@@ -20877,7 +20780,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:6983
{
- yyLOCAL = IntervalWeek
+ yyLOCAL = IntervalDay
}
yyVAL.union = yyLOCAL
case 1408:
@@ -20885,7 +20788,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:6987
{
- yyLOCAL = IntervalHour
+ yyLOCAL = IntervalWeek
}
yyVAL.union = yyLOCAL
case 1409:
@@ -20893,7 +20796,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:6991
{
- yyLOCAL = IntervalMinute
+ yyLOCAL = IntervalHour
}
yyVAL.union = yyLOCAL
case 1410:
@@ -20901,7 +20804,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:6995
{
- yyLOCAL = IntervalMonth
+ yyLOCAL = IntervalMinute
}
yyVAL.union = yyLOCAL
case 1411:
@@ -20909,7 +20812,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:6999
{
- yyLOCAL = IntervalQuarter
+ yyLOCAL = IntervalMonth
}
yyVAL.union = yyLOCAL
case 1412:
@@ -20917,7 +20820,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7003
{
- yyLOCAL = IntervalSecond
+ yyLOCAL = IntervalQuarter
}
yyVAL.union = yyLOCAL
case 1413:
@@ -20925,7 +20828,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7007
{
- yyLOCAL = IntervalMicrosecond
+ yyLOCAL = IntervalSecond
}
yyVAL.union = yyLOCAL
case 1414:
@@ -20933,15 +20836,15 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7011
{
- yyLOCAL = IntervalYear
+ yyLOCAL = IntervalMicrosecond
}
yyVAL.union = yyLOCAL
case 1415:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL IntervalType
-//line sql.y:7017
+//line sql.y:7015
{
- yyLOCAL = IntervalDay
+ yyLOCAL = IntervalYear
}
yyVAL.union = yyLOCAL
case 1416:
@@ -20949,7 +20852,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7021
{
- yyLOCAL = IntervalWeek
+ yyLOCAL = IntervalDay
}
yyVAL.union = yyLOCAL
case 1417:
@@ -20957,7 +20860,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7025
{
- yyLOCAL = IntervalHour
+ yyLOCAL = IntervalWeek
}
yyVAL.union = yyLOCAL
case 1418:
@@ -20965,7 +20868,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7029
{
- yyLOCAL = IntervalMinute
+ yyLOCAL = IntervalHour
}
yyVAL.union = yyLOCAL
case 1419:
@@ -20973,7 +20876,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7033
{
- yyLOCAL = IntervalMonth
+ yyLOCAL = IntervalMinute
}
yyVAL.union = yyLOCAL
case 1420:
@@ -20981,7 +20884,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7037
{
- yyLOCAL = IntervalQuarter
+ yyLOCAL = IntervalMonth
}
yyVAL.union = yyLOCAL
case 1421:
@@ -20989,7 +20892,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7041
{
- yyLOCAL = IntervalSecond
+ yyLOCAL = IntervalQuarter
}
yyVAL.union = yyLOCAL
case 1422:
@@ -20997,7 +20900,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7045
{
- yyLOCAL = IntervalMicrosecond
+ yyLOCAL = IntervalSecond
}
yyVAL.union = yyLOCAL
case 1423:
@@ -21005,7 +20908,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7049
{
- yyLOCAL = IntervalYear
+ yyLOCAL = IntervalMicrosecond
}
yyVAL.union = yyLOCAL
case 1424:
@@ -21013,7 +20916,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7053
{
- yyLOCAL = IntervalDay
+ yyLOCAL = IntervalYear
}
yyVAL.union = yyLOCAL
case 1425:
@@ -21021,7 +20924,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7057
{
- yyLOCAL = IntervalWeek
+ yyLOCAL = IntervalDay
}
yyVAL.union = yyLOCAL
case 1426:
@@ -21029,7 +20932,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7061
{
- yyLOCAL = IntervalHour
+ yyLOCAL = IntervalWeek
}
yyVAL.union = yyLOCAL
case 1427:
@@ -21037,7 +20940,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7065
{
- yyLOCAL = IntervalMinute
+ yyLOCAL = IntervalHour
}
yyVAL.union = yyLOCAL
case 1428:
@@ -21045,7 +20948,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7069
{
- yyLOCAL = IntervalMonth
+ yyLOCAL = IntervalMinute
}
yyVAL.union = yyLOCAL
case 1429:
@@ -21053,7 +20956,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7073
{
- yyLOCAL = IntervalQuarter
+ yyLOCAL = IntervalMonth
}
yyVAL.union = yyLOCAL
case 1430:
@@ -21061,7 +20964,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7077
{
- yyLOCAL = IntervalSecond
+ yyLOCAL = IntervalQuarter
}
yyVAL.union = yyLOCAL
case 1431:
@@ -21069,7 +20972,7 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7081
{
- yyLOCAL = IntervalMicrosecond
+ yyLOCAL = IntervalSecond
}
yyVAL.union = yyLOCAL
case 1432:
@@ -21077,19 +20980,19 @@ yydefault:
var yyLOCAL IntervalType
//line sql.y:7085
{
- yyLOCAL = IntervalYear
+ yyLOCAL = IntervalMicrosecond
}
yyVAL.union = yyLOCAL
- case 1435:
- yyDollar = yyS[yypt-0 : yypt+1]
- var yyLOCAL int
-//line sql.y:7095
+ case 1433:
+ yyDollar = yyS[yypt-1 : yypt+1]
+ var yyLOCAL IntervalType
+//line sql.y:7089
{
- yyLOCAL = 0
+ yyLOCAL = IntervalYear
}
yyVAL.union = yyLOCAL
case 1436:
- yyDollar = yyS[yypt-2 : yypt+1]
+ yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL int
//line sql.y:7099
{
@@ -21097,19 +21000,19 @@ yydefault:
}
yyVAL.union = yyLOCAL
case 1437:
- yyDollar = yyS[yypt-3 : yypt+1]
+ yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL int
//line sql.y:7103
{
- yyLOCAL = convertStringToInt(yyDollar[2].str)
+ yyLOCAL = 0
}
yyVAL.union = yyLOCAL
case 1438:
- yyDollar = yyS[yypt-4 : yypt+1]
- var yyLOCAL Expr
-//line sql.y:7113
+ yyDollar = yyS[yypt-3 : yypt+1]
+ var yyLOCAL int
+//line sql.y:7107
{
- yyLOCAL = &FuncExpr{Name: NewIdentifierCI("if"), Exprs: yyDollar[3].exprsUnion()}
+ yyLOCAL = convertStringToInt(yyDollar[2].str)
}
yyVAL.union = yyLOCAL
case 1439:
@@ -21117,7 +21020,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:7117
{
- yyLOCAL = &FuncExpr{Name: NewIdentifierCI("database"), Exprs: yyDollar[3].exprsUnion()}
+ yyLOCAL = &FuncExpr{Name: NewIdentifierCI("if"), Exprs: yyDollar[3].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1440:
@@ -21125,7 +21028,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:7121
{
- yyLOCAL = &FuncExpr{Name: NewIdentifierCI("schema"), Exprs: yyDollar[3].exprsUnion()}
+ yyLOCAL = &FuncExpr{Name: NewIdentifierCI("database"), Exprs: yyDollar[3].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1441:
@@ -21133,7 +21036,7 @@ yydefault:
var yyLOCAL Expr
//line sql.y:7125
{
- yyLOCAL = &FuncExpr{Name: NewIdentifierCI("mod"), Exprs: yyDollar[3].exprsUnion()}
+ yyLOCAL = &FuncExpr{Name: NewIdentifierCI("schema"), Exprs: yyDollar[3].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1442:
@@ -21141,60 +21044,62 @@ yydefault:
var yyLOCAL Expr
//line sql.y:7129
{
- yyLOCAL = &FuncExpr{Name: NewIdentifierCI("replace"), Exprs: yyDollar[3].exprsUnion()}
+ yyLOCAL = &FuncExpr{Name: NewIdentifierCI("mod"), Exprs: yyDollar[3].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1443:
- yyDollar = yyS[yypt-0 : yypt+1]
- var yyLOCAL MatchExprOption
-//line sql.y:7135
+ yyDollar = yyS[yypt-4 : yypt+1]
+ var yyLOCAL Expr
+//line sql.y:7133
{
- yyLOCAL = NoOption
+ yyLOCAL = &FuncExpr{Name: NewIdentifierCI("replace"), Exprs: yyDollar[3].exprsUnion()}
}
yyVAL.union = yyLOCAL
case 1444:
- yyDollar = yyS[yypt-3 : yypt+1]
+ yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL MatchExprOption
//line sql.y:7139
{
- yyLOCAL = BooleanModeOpt
+ yyLOCAL = NoOption
}
yyVAL.union = yyLOCAL
case 1445:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL MatchExprOption
//line sql.y:7143
{
- yyLOCAL = NaturalLanguageModeOpt
+ yyLOCAL = BooleanModeOpt
}
yyVAL.union = yyLOCAL
case 1446:
- yyDollar = yyS[yypt-7 : yypt+1]
+ yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL MatchExprOption
//line sql.y:7147
{
- yyLOCAL = NaturalLanguageModeWithQueryExpansionOpt
+ yyLOCAL = NaturalLanguageModeOpt
}
yyVAL.union = yyLOCAL
case 1447:
- yyDollar = yyS[yypt-3 : yypt+1]
+ yyDollar = yyS[yypt-7 : yypt+1]
var yyLOCAL MatchExprOption
//line sql.y:7151
{
- yyLOCAL = QueryExpansionOpt
+ yyLOCAL = NaturalLanguageModeWithQueryExpansionOpt
}
yyVAL.union = yyLOCAL
case 1448:
- yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:7157
+ yyDollar = yyS[yypt-3 : yypt+1]
+ var yyLOCAL MatchExprOption
+//line sql.y:7155
{
- yyVAL.str = string(yyDollar[1].identifierCI.String())
+ yyLOCAL = QueryExpansionOpt
}
+ yyVAL.union = yyLOCAL
case 1449:
yyDollar = yyS[yypt-1 : yypt+1]
//line sql.y:7161
{
- yyVAL.str = string(yyDollar[1].str)
+ yyVAL.str = string(yyDollar[1].identifierCI.String())
}
case 1450:
yyDollar = yyS[yypt-1 : yypt+1]
@@ -21203,19 +21108,17 @@ yydefault:
yyVAL.str = string(yyDollar[1].str)
}
case 1451:
- yyDollar = yyS[yypt-0 : yypt+1]
- var yyLOCAL *ConvertType
-//line sql.y:7171
+ yyDollar = yyS[yypt-1 : yypt+1]
+//line sql.y:7169
{
- yyLOCAL = nil
+ yyVAL.str = string(yyDollar[1].str)
}
- yyVAL.union = yyLOCAL
case 1452:
- yyDollar = yyS[yypt-5 : yypt+1]
+ yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL *ConvertType
//line sql.y:7175
{
- yyLOCAL = &ConvertType{Type: string(yyDollar[2].str), Length: ptr.Of(convertStringToInt(yyDollar[4].str))}
+ yyLOCAL = nil
}
yyVAL.union = yyLOCAL
case 1453:
@@ -21227,35 +21130,35 @@ yydefault:
}
yyVAL.union = yyLOCAL
case 1454:
- yyDollar = yyS[yypt-2 : yypt+1]
+ yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL *ConvertType
-//line sql.y:7185
+//line sql.y:7183
{
- yyLOCAL = &ConvertType{Type: string(yyDollar[1].str), Length: yyDollar[2].intPtrUnion()}
+ yyLOCAL = &ConvertType{Type: string(yyDollar[2].str), Length: ptr.Of(convertStringToInt(yyDollar[4].str))}
}
yyVAL.union = yyLOCAL
case 1455:
- yyDollar = yyS[yypt-3 : yypt+1]
+ yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *ConvertType
//line sql.y:7189
{
- yyLOCAL = &ConvertType{Type: string(yyDollar[1].str), Length: yyDollar[2].intPtrUnion(), Charset: yyDollar[3].columnCharset}
+ yyLOCAL = &ConvertType{Type: string(yyDollar[1].str), Length: yyDollar[2].intPtrUnion()}
}
yyVAL.union = yyLOCAL
case 1456:
- yyDollar = yyS[yypt-1 : yypt+1]
+ yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL *ConvertType
//line sql.y:7193
{
- yyLOCAL = &ConvertType{Type: string(yyDollar[1].str)}
+ yyLOCAL = &ConvertType{Type: string(yyDollar[1].str), Length: yyDollar[2].intPtrUnion(), Charset: yyDollar[3].columnCharset}
}
yyVAL.union = yyLOCAL
case 1457:
- yyDollar = yyS[yypt-2 : yypt+1]
+ yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL *ConvertType
//line sql.y:7197
{
- yyLOCAL = &ConvertType{Type: string(yyDollar[1].str), Length: yyDollar[2].intPtrUnion()}
+ yyLOCAL = &ConvertType{Type: string(yyDollar[1].str)}
}
yyVAL.union = yyLOCAL
case 1458:
@@ -21263,37 +21166,37 @@ yydefault:
var yyLOCAL *ConvertType
//line sql.y:7201
{
- yyLOCAL = &ConvertType{Type: string(yyDollar[1].str)}
- yyLOCAL.Length = yyDollar[2].LengthScaleOption.Length
- yyLOCAL.Scale = yyDollar[2].LengthScaleOption.Scale
+ yyLOCAL = &ConvertType{Type: string(yyDollar[1].str), Length: yyDollar[2].intPtrUnion()}
}
yyVAL.union = yyLOCAL
case 1459:
- yyDollar = yyS[yypt-1 : yypt+1]
+ yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *ConvertType
-//line sql.y:7207
+//line sql.y:7205
{
yyLOCAL = &ConvertType{Type: string(yyDollar[1].str)}
+ yyLOCAL.Length = yyDollar[2].LengthScaleOption.Length
+ yyLOCAL.Scale = yyDollar[2].LengthScaleOption.Scale
}
yyVAL.union = yyLOCAL
case 1460:
- yyDollar = yyS[yypt-2 : yypt+1]
+ yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL *ConvertType
//line sql.y:7211
{
- yyLOCAL = &ConvertType{Type: string(yyDollar[1].str), Length: yyDollar[2].intPtrUnion()}
+ yyLOCAL = &ConvertType{Type: string(yyDollar[1].str)}
}
yyVAL.union = yyLOCAL
case 1461:
- yyDollar = yyS[yypt-1 : yypt+1]
+ yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *ConvertType
//line sql.y:7215
{
- yyLOCAL = &ConvertType{Type: string(yyDollar[1].str)}
+ yyLOCAL = &ConvertType{Type: string(yyDollar[1].str), Length: yyDollar[2].intPtrUnion()}
}
yyVAL.union = yyLOCAL
case 1462:
- yyDollar = yyS[yypt-2 : yypt+1]
+ yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL *ConvertType
//line sql.y:7219
{
@@ -21305,19 +21208,19 @@ yydefault:
var yyLOCAL *ConvertType
//line sql.y:7223
{
- yyLOCAL = &ConvertType{Type: string(yyDollar[1].str), Length: yyDollar[2].intPtrUnion()}
+ yyLOCAL = &ConvertType{Type: string(yyDollar[1].str)}
}
yyVAL.union = yyLOCAL
case 1464:
- yyDollar = yyS[yypt-1 : yypt+1]
+ yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *ConvertType
//line sql.y:7227
{
- yyLOCAL = &ConvertType{Type: string(yyDollar[1].str)}
+ yyLOCAL = &ConvertType{Type: string(yyDollar[1].str), Length: yyDollar[2].intPtrUnion()}
}
yyVAL.union = yyLOCAL
case 1465:
- yyDollar = yyS[yypt-2 : yypt+1]
+ yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL *ConvertType
//line sql.y:7231
{
@@ -21329,15 +21232,15 @@ yydefault:
var yyLOCAL *ConvertType
//line sql.y:7235
{
- yyLOCAL = &ConvertType{Type: string(yyDollar[1].str), Length: yyDollar[2].intPtrUnion()}
+ yyLOCAL = &ConvertType{Type: string(yyDollar[1].str)}
}
yyVAL.union = yyLOCAL
case 1467:
- yyDollar = yyS[yypt-1 : yypt+1]
+ yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *ConvertType
//line sql.y:7239
{
- yyLOCAL = &ConvertType{Type: string(yyDollar[1].str)}
+ yyLOCAL = &ConvertType{Type: string(yyDollar[1].str), Length: yyDollar[2].intPtrUnion()}
}
yyVAL.union = yyLOCAL
case 1468:
@@ -21349,140 +21252,148 @@ yydefault:
}
yyVAL.union = yyLOCAL
case 1469:
+ yyDollar = yyS[yypt-1 : yypt+1]
+ var yyLOCAL *ConvertType
+//line sql.y:7247
+ {
+ yyLOCAL = &ConvertType{Type: string(yyDollar[1].str)}
+ }
+ yyVAL.union = yyLOCAL
+ case 1470:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL bool
-//line sql.y:7249
+//line sql.y:7253
{
yyLOCAL = false
}
yyVAL.union = yyLOCAL
- case 1470:
+ case 1471:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL bool
-//line sql.y:7253
+//line sql.y:7257
{
yyLOCAL = true
}
yyVAL.union = yyLOCAL
- case 1471:
+ case 1472:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL Expr
-//line sql.y:7258
+//line sql.y:7262
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1472:
+ case 1473:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Expr
-//line sql.y:7262
+//line sql.y:7266
{
yyLOCAL = yyDollar[1].exprUnion()
}
yyVAL.union = yyLOCAL
- case 1473:
+ case 1474:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:7267
+//line sql.y:7271
{
yyVAL.str = string("")
}
- case 1474:
+ case 1475:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:7271
+//line sql.y:7275
{
yyVAL.str = encodeSQLString(yyDollar[2].str)
}
- case 1475:
+ case 1476:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL []*When
-//line sql.y:7277
+//line sql.y:7281
{
yyLOCAL = []*When{yyDollar[1].whenUnion()}
}
yyVAL.union = yyLOCAL
- case 1476:
+ case 1477:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:7281
+//line sql.y:7285
{
yySLICE := (*[]*When)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[2].whenUnion())
}
- case 1477:
+ case 1478:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL *When
-//line sql.y:7287
+//line sql.y:7291
{
yyLOCAL = &When{Cond: yyDollar[2].exprUnion(), Val: yyDollar[4].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1478:
+ case 1479:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL Expr
-//line sql.y:7292
+//line sql.y:7296
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1479:
+ case 1480:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Expr
-//line sql.y:7296
+//line sql.y:7300
{
yyLOCAL = yyDollar[2].exprUnion()
}
yyVAL.union = yyLOCAL
- case 1480:
+ case 1481:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL *ColName
-//line sql.y:7302
+//line sql.y:7306
{
yyLOCAL = &ColName{Name: yyDollar[1].identifierCI}
}
yyVAL.union = yyLOCAL
- case 1481:
+ case 1482:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL *ColName
-//line sql.y:7306
+//line sql.y:7310
{
yyLOCAL = &ColName{Name: NewIdentifierCI(string(yyDollar[1].str))}
}
yyVAL.union = yyLOCAL
- case 1482:
+ case 1483:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL *ColName
-//line sql.y:7310
+//line sql.y:7314
{
yyLOCAL = &ColName{Qualifier: TableName{Name: yyDollar[1].identifierCS}, Name: yyDollar[3].identifierCI}
}
yyVAL.union = yyLOCAL
- case 1483:
+ case 1484:
yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL *ColName
-//line sql.y:7314
+//line sql.y:7318
{
yyLOCAL = &ColName{Qualifier: TableName{Qualifier: yyDollar[1].identifierCS, Name: yyDollar[3].identifierCS}, Name: yyDollar[5].identifierCI}
}
yyVAL.union = yyLOCAL
- case 1484:
+ case 1485:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Expr
-//line sql.y:7320
+//line sql.y:7324
{
yyLOCAL = yyDollar[1].colNameUnion()
}
yyVAL.union = yyLOCAL
- case 1485:
+ case 1486:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Expr
-//line sql.y:7324
+//line sql.y:7328
{
yyLOCAL = &Offset{V: convertStringToInt(yyDollar[1].str)}
}
yyVAL.union = yyLOCAL
- case 1486:
+ case 1487:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Expr
-//line sql.y:7330
+//line sql.y:7334
{
// TODO(sougou): Deprecate this construct.
if yyDollar[1].identifierCI.Lowered() != "value" {
@@ -21492,234 +21403,226 @@ yydefault:
yyLOCAL = NewIntLiteral("1")
}
yyVAL.union = yyLOCAL
- case 1487:
+ case 1488:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Expr
-//line sql.y:7339
+//line sql.y:7343
{
yyLOCAL = NewIntLiteral(yyDollar[1].str)
}
yyVAL.union = yyLOCAL
- case 1488:
+ case 1489:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Expr
-//line sql.y:7343
+//line sql.y:7347
{
yyLOCAL = parseBindVariable(yylex, yyDollar[1].str[1:])
}
yyVAL.union = yyLOCAL
- case 1489:
+ case 1490:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL *GroupBy
-//line sql.y:7348
+//line sql.y:7352
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1490:
+ case 1491:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL *GroupBy
-//line sql.y:7352
+//line sql.y:7356
{
yyLOCAL = &GroupBy{Exprs: yyDollar[3].exprsUnion(), WithRollup: yyDollar[4].booleanUnion()}
}
yyVAL.union = yyLOCAL
- case 1491:
+ case 1492:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL bool
-//line sql.y:7357
+//line sql.y:7361
{
yyLOCAL = false
}
yyVAL.union = yyLOCAL
- case 1492:
+ case 1493:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL bool
-//line sql.y:7361
+//line sql.y:7365
{
yyLOCAL = true
}
yyVAL.union = yyLOCAL
- case 1493:
+ case 1494:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL Expr
-//line sql.y:7367
+//line sql.y:7371
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1494:
+ case 1495:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Expr
-//line sql.y:7371
+//line sql.y:7375
{
yyLOCAL = yyDollar[2].exprUnion()
}
yyVAL.union = yyLOCAL
- case 1495:
+ case 1496:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *NamedWindow
-//line sql.y:7377
+//line sql.y:7381
{
yyLOCAL = &NamedWindow{yyDollar[2].windowDefinitionsUnion()}
}
yyVAL.union = yyLOCAL
- case 1496:
+ case 1497:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL NamedWindows
-//line sql.y:7383
+//line sql.y:7387
{
yyLOCAL = NamedWindows{yyDollar[1].namedWindowUnion()}
}
yyVAL.union = yyLOCAL
- case 1497:
+ case 1498:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:7387
+//line sql.y:7391
{
yySLICE := (*NamedWindows)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[3].namedWindowUnion())
}
- case 1498:
+ case 1499:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL NamedWindows
-//line sql.y:7392
+//line sql.y:7396
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1499:
+ case 1500:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL NamedWindows
-//line sql.y:7396
+//line sql.y:7400
{
yyLOCAL = yyDollar[1].namedWindowsUnion()
}
yyVAL.union = yyLOCAL
- case 1500:
+ case 1501:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL OrderBy
-//line sql.y:7401
+//line sql.y:7405
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1501:
+ case 1502:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL OrderBy
-//line sql.y:7405
+//line sql.y:7409
{
yyLOCAL = yyDollar[1].orderByUnion()
}
yyVAL.union = yyLOCAL
- case 1502:
+ case 1503:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL OrderBy
-//line sql.y:7411
+//line sql.y:7415
{
yyLOCAL = yyDollar[3].orderByUnion()
}
yyVAL.union = yyLOCAL
- case 1503:
+ case 1504:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL OrderBy
-//line sql.y:7417
+//line sql.y:7421
{
yyLOCAL = OrderBy{yyDollar[1].orderUnion()}
}
yyVAL.union = yyLOCAL
- case 1504:
+ case 1505:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:7421
+//line sql.y:7425
{
yySLICE := (*OrderBy)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[3].orderUnion())
}
- case 1505:
+ case 1506:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *Order
-//line sql.y:7427
+//line sql.y:7431
{
yyLOCAL = &Order{Expr: yyDollar[1].exprUnion(), Direction: yyDollar[2].orderDirectionUnion()}
}
yyVAL.union = yyLOCAL
- case 1506:
+ case 1507:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL OrderDirection
-//line sql.y:7432
+//line sql.y:7436
{
yyLOCAL = AscOrder
}
yyVAL.union = yyLOCAL
- case 1507:
+ case 1508:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL OrderDirection
-//line sql.y:7436
+//line sql.y:7440
{
yyLOCAL = AscOrder
}
yyVAL.union = yyLOCAL
- case 1508:
+ case 1509:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL OrderDirection
-//line sql.y:7440
+//line sql.y:7444
{
yyLOCAL = DescOrder
}
yyVAL.union = yyLOCAL
- case 1509:
+ case 1510:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL *Limit
-//line sql.y:7445
+//line sql.y:7449
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1510:
+ case 1511:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL *Limit
-//line sql.y:7449
+//line sql.y:7453
{
yyLOCAL = yyDollar[1].limitUnion()
}
yyVAL.union = yyLOCAL
- case 1511:
+ case 1512:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *Limit
-//line sql.y:7455
+//line sql.y:7459
{
yyLOCAL = &Limit{Rowcount: yyDollar[2].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1512:
+ case 1513:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL *Limit
-//line sql.y:7459
+//line sql.y:7463
{
yyLOCAL = &Limit{Offset: yyDollar[2].exprUnion(), Rowcount: yyDollar[4].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1513:
+ case 1514:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL *Limit
-//line sql.y:7463
+//line sql.y:7467
{
yyLOCAL = &Limit{Offset: yyDollar[4].exprUnion(), Rowcount: yyDollar[2].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1514:
- yyDollar = yyS[yypt-0 : yypt+1]
- var yyLOCAL []AlterOption
-//line sql.y:7468
- {
- yyLOCAL = nil
- }
- yyVAL.union = yyLOCAL
case 1515:
- yyDollar = yyS[yypt-2 : yypt+1]
+ yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL []AlterOption
//line sql.y:7472
{
- yyLOCAL = []AlterOption{yyDollar[1].alterOptionUnion(), yyDollar[2].alterOptionUnion()}
+ yyLOCAL = nil
}
yyVAL.union = yyLOCAL
case 1516:
@@ -21731,11 +21634,11 @@ yydefault:
}
yyVAL.union = yyLOCAL
case 1517:
- yyDollar = yyS[yypt-1 : yypt+1]
+ yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL []AlterOption
//line sql.y:7480
{
- yyLOCAL = []AlterOption{yyDollar[1].alterOptionUnion()}
+ yyLOCAL = []AlterOption{yyDollar[1].alterOptionUnion(), yyDollar[2].alterOptionUnion()}
}
yyVAL.union = yyLOCAL
case 1518:
@@ -21747,11 +21650,11 @@ yydefault:
}
yyVAL.union = yyLOCAL
case 1519:
- yyDollar = yyS[yypt-3 : yypt+1]
- var yyLOCAL AlterOption
-//line sql.y:7491
+ yyDollar = yyS[yypt-1 : yypt+1]
+ var yyLOCAL []AlterOption
+//line sql.y:7488
{
- yyLOCAL = &LockOption{Type: DefaultType}
+ yyLOCAL = []AlterOption{yyDollar[1].alterOptionUnion()}
}
yyVAL.union = yyLOCAL
case 1520:
@@ -21759,7 +21662,7 @@ yydefault:
var yyLOCAL AlterOption
//line sql.y:7495
{
- yyLOCAL = &LockOption{Type: NoneType}
+ yyLOCAL = &LockOption{Type: DefaultType}
}
yyVAL.union = yyLOCAL
case 1521:
@@ -21767,7 +21670,7 @@ yydefault:
var yyLOCAL AlterOption
//line sql.y:7499
{
- yyLOCAL = &LockOption{Type: SharedType}
+ yyLOCAL = &LockOption{Type: NoneType}
}
yyVAL.union = yyLOCAL
case 1522:
@@ -21775,15 +21678,15 @@ yydefault:
var yyLOCAL AlterOption
//line sql.y:7503
{
- yyLOCAL = &LockOption{Type: ExclusiveType}
+ yyLOCAL = &LockOption{Type: SharedType}
}
yyVAL.union = yyLOCAL
case 1523:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL AlterOption
-//line sql.y:7509
+//line sql.y:7507
{
- yyLOCAL = AlgorithmValue(yyDollar[3].str)
+ yyLOCAL = &LockOption{Type: ExclusiveType}
}
yyVAL.union = yyLOCAL
case 1524:
@@ -21811,16 +21714,18 @@ yydefault:
}
yyVAL.union = yyLOCAL
case 1527:
- yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:7526
+ yyDollar = yyS[yypt-3 : yypt+1]
+ var yyLOCAL AlterOption
+//line sql.y:7525
{
- yyVAL.str = ""
+ yyLOCAL = AlgorithmValue(yyDollar[3].str)
}
+ yyVAL.union = yyLOCAL
case 1528:
- yyDollar = yyS[yypt-3 : yypt+1]
+ yyDollar = yyS[yypt-0 : yypt+1]
//line sql.y:7530
{
- yyVAL.str = string(yyDollar[3].str)
+ yyVAL.str = ""
}
case 1529:
yyDollar = yyS[yypt-3 : yypt+1]
@@ -21835,22 +21740,22 @@ yydefault:
yyVAL.str = string(yyDollar[3].str)
}
case 1531:
- yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:7543
+ yyDollar = yyS[yypt-3 : yypt+1]
+//line sql.y:7542
{
- yyVAL.str = ""
+ yyVAL.str = string(yyDollar[3].str)
}
case 1532:
- yyDollar = yyS[yypt-3 : yypt+1]
+ yyDollar = yyS[yypt-0 : yypt+1]
//line sql.y:7547
{
- yyVAL.str = yyDollar[3].str
+ yyVAL.str = ""
}
case 1533:
- yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:7553
+ yyDollar = yyS[yypt-3 : yypt+1]
+//line sql.y:7551
{
- yyVAL.str = string(yyDollar[1].str)
+ yyVAL.str = yyDollar[3].str
}
case 1534:
yyDollar = yyS[yypt-1 : yypt+1]
@@ -21859,28 +21764,28 @@ yydefault:
yyVAL.str = string(yyDollar[1].str)
}
case 1535:
- yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:7562
+ yyDollar = yyS[yypt-1 : yypt+1]
+//line sql.y:7561
{
- yyVAL.str = ""
+ yyVAL.str = string(yyDollar[1].str)
}
case 1536:
- yyDollar = yyS[yypt-4 : yypt+1]
+ yyDollar = yyS[yypt-0 : yypt+1]
//line sql.y:7566
{
- yyVAL.str = yyDollar[2].str
+ yyVAL.str = ""
}
case 1537:
- yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:7571
+ yyDollar = yyS[yypt-4 : yypt+1]
+//line sql.y:7570
{
- yyVAL.str = "cascaded"
+ yyVAL.str = yyDollar[2].str
}
case 1538:
- yyDollar = yyS[yypt-1 : yypt+1]
+ yyDollar = yyS[yypt-0 : yypt+1]
//line sql.y:7575
{
- yyVAL.str = string(yyDollar[1].str)
+ yyVAL.str = "cascaded"
}
case 1539:
yyDollar = yyS[yypt-1 : yypt+1]
@@ -21889,45 +21794,51 @@ yydefault:
yyVAL.str = string(yyDollar[1].str)
}
case 1540:
+ yyDollar = yyS[yypt-1 : yypt+1]
+//line sql.y:7583
+ {
+ yyVAL.str = string(yyDollar[1].str)
+ }
+ case 1541:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL *Definer
-//line sql.y:7584
+//line sql.y:7588
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1541:
+ case 1542:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL *Definer
-//line sql.y:7588
+//line sql.y:7592
{
yyLOCAL = yyDollar[3].definerUnion()
}
yyVAL.union = yyLOCAL
- case 1542:
+ case 1543:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL *Definer
-//line sql.y:7594
+//line sql.y:7598
{
yyLOCAL = &Definer{
Name: string(yyDollar[1].str),
}
}
yyVAL.union = yyLOCAL
- case 1543:
+ case 1544:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL *Definer
-//line sql.y:7600
+//line sql.y:7604
{
yyLOCAL = &Definer{
Name: string(yyDollar[1].str),
}
}
yyVAL.union = yyLOCAL
- case 1544:
+ case 1545:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *Definer
-//line sql.y:7606
+//line sql.y:7610
{
yyLOCAL = &Definer{
Name: yyDollar[1].str,
@@ -21935,433 +21846,433 @@ yydefault:
}
}
yyVAL.union = yyLOCAL
- case 1545:
+ case 1546:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:7615
+//line sql.y:7619
{
yyVAL.str = encodeSQLString(yyDollar[1].str)
}
- case 1546:
+ case 1547:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:7619
+//line sql.y:7623
{
yyVAL.str = formatIdentifier(yyDollar[1].str)
}
- case 1547:
+ case 1548:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:7624
+//line sql.y:7628
{
yyVAL.str = ""
}
- case 1548:
+ case 1549:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:7628
+//line sql.y:7632
{
yyVAL.str = formatAddress(yyDollar[1].str)
}
- case 1549:
+ case 1550:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Lock
-//line sql.y:7634
+//line sql.y:7638
{
yyLOCAL = ForUpdateLock
}
yyVAL.union = yyLOCAL
- case 1550:
+ case 1551:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Lock
-//line sql.y:7638
+//line sql.y:7642
{
yyLOCAL = ForUpdateLockNoWait
}
yyVAL.union = yyLOCAL
- case 1551:
+ case 1552:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Lock
-//line sql.y:7642
+//line sql.y:7646
{
yyLOCAL = ForUpdateLockSkipLocked
}
yyVAL.union = yyLOCAL
- case 1552:
+ case 1553:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL Lock
-//line sql.y:7646
+//line sql.y:7650
{
yyLOCAL = ForShareLock
}
yyVAL.union = yyLOCAL
- case 1553:
+ case 1554:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Lock
-//line sql.y:7650
+//line sql.y:7654
{
yyLOCAL = ForShareLockNoWait
}
yyVAL.union = yyLOCAL
- case 1554:
+ case 1555:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Lock
-//line sql.y:7654
+//line sql.y:7658
{
yyLOCAL = ForShareLockSkipLocked
}
yyVAL.union = yyLOCAL
- case 1555:
+ case 1556:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL Lock
-//line sql.y:7658
+//line sql.y:7662
{
yyLOCAL = ShareModeLock
}
yyVAL.union = yyLOCAL
- case 1556:
+ case 1557:
yyDollar = yyS[yypt-9 : yypt+1]
var yyLOCAL *SelectInto
-//line sql.y:7664
+//line sql.y:7668
{
yyLOCAL = &SelectInto{Type: IntoOutfileS3, FileName: encodeSQLString(yyDollar[4].str), Charset: yyDollar[5].columnCharset, FormatOption: yyDollar[6].str, ExportOption: yyDollar[7].str, Manifest: yyDollar[8].str, Overwrite: yyDollar[9].str}
}
yyVAL.union = yyLOCAL
- case 1557:
+ case 1558:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL *SelectInto
-//line sql.y:7668
+//line sql.y:7672
{
yyLOCAL = &SelectInto{Type: IntoDumpfile, FileName: encodeSQLString(yyDollar[3].str), Charset: ColumnCharset{}, FormatOption: "", ExportOption: "", Manifest: "", Overwrite: ""}
}
yyVAL.union = yyLOCAL
- case 1558:
+ case 1559:
yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL *SelectInto
-//line sql.y:7672
+//line sql.y:7676
{
yyLOCAL = &SelectInto{Type: IntoOutfile, FileName: encodeSQLString(yyDollar[3].str), Charset: yyDollar[4].columnCharset, FormatOption: "", ExportOption: yyDollar[5].str, Manifest: "", Overwrite: ""}
}
yyVAL.union = yyLOCAL
- case 1559:
+ case 1560:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:7677
+//line sql.y:7681
{
yyVAL.str = ""
}
- case 1560:
+ case 1561:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:7681
+//line sql.y:7685
{
yyVAL.str = " format csv" + yyDollar[3].str
}
- case 1561:
+ case 1562:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:7685
+//line sql.y:7689
{
yyVAL.str = " format text" + yyDollar[3].str
}
- case 1562:
+ case 1563:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:7690
+//line sql.y:7694
{
yyVAL.str = ""
}
- case 1563:
+ case 1564:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:7694
+//line sql.y:7698
{
yyVAL.str = " header"
}
- case 1564:
+ case 1565:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:7699
+//line sql.y:7703
{
yyVAL.str = ""
}
- case 1565:
+ case 1566:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:7703
+//line sql.y:7707
{
yyVAL.str = " manifest on"
}
- case 1566:
+ case 1567:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:7707
+//line sql.y:7711
{
yyVAL.str = " manifest off"
}
- case 1567:
+ case 1568:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:7712
+//line sql.y:7716
{
yyVAL.str = ""
}
- case 1568:
+ case 1569:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:7716
+//line sql.y:7720
{
yyVAL.str = " overwrite on"
}
- case 1569:
+ case 1570:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:7720
+//line sql.y:7724
{
yyVAL.str = " overwrite off"
}
- case 1570:
+ case 1571:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:7726
+//line sql.y:7730
{
yyVAL.str = yyDollar[1].str + yyDollar[2].str
}
- case 1571:
+ case 1572:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:7731
+//line sql.y:7735
{
yyVAL.str = ""
}
- case 1572:
+ case 1573:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:7735
+//line sql.y:7739
{
yyVAL.str = " lines" + yyDollar[2].str
}
- case 1573:
+ case 1574:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:7741
+//line sql.y:7745
{
yyVAL.str = yyDollar[1].str
}
- case 1574:
+ case 1575:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:7745
+//line sql.y:7749
{
yyVAL.str = yyDollar[1].str + yyDollar[2].str
}
- case 1575:
+ case 1576:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:7751
+//line sql.y:7755
{
yyVAL.str = " starting by " + encodeSQLString(yyDollar[3].str)
}
- case 1576:
+ case 1577:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:7755
+//line sql.y:7759
{
yyVAL.str = " terminated by " + encodeSQLString(yyDollar[3].str)
}
- case 1577:
+ case 1578:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:7760
+//line sql.y:7764
{
yyVAL.str = ""
}
- case 1578:
+ case 1579:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:7764
+//line sql.y:7768
{
yyVAL.str = " " + yyDollar[1].str + yyDollar[2].str
}
- case 1579:
+ case 1580:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:7770
+//line sql.y:7774
{
yyVAL.str = yyDollar[1].str
}
- case 1580:
+ case 1581:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:7774
+//line sql.y:7778
{
yyVAL.str = yyDollar[1].str + yyDollar[2].str
}
- case 1581:
+ case 1582:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:7780
+//line sql.y:7784
{
yyVAL.str = " terminated by " + encodeSQLString(yyDollar[3].str)
}
- case 1582:
+ case 1583:
yyDollar = yyS[yypt-4 : yypt+1]
-//line sql.y:7784
+//line sql.y:7788
{
yyVAL.str = yyDollar[1].str + " enclosed by " + encodeSQLString(yyDollar[4].str)
}
- case 1583:
+ case 1584:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:7788
+//line sql.y:7792
{
yyVAL.str = " escaped by " + encodeSQLString(yyDollar[3].str)
}
- case 1584:
+ case 1585:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:7793
+//line sql.y:7797
{
yyVAL.str = ""
}
- case 1585:
+ case 1586:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:7797
+//line sql.y:7801
{
yyVAL.str = " optionally"
}
- case 1586:
+ case 1587:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL *Insert
-//line sql.y:7810
+//line sql.y:7814
{
yyLOCAL = &Insert{Rows: yyDollar[2].valuesUnion(), RowAlias: yyDollar[3].rowAliasUnion()}
}
yyVAL.union = yyLOCAL
- case 1587:
+ case 1588:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL *Insert
-//line sql.y:7814
+//line sql.y:7818
{
yyLOCAL = &Insert{Rows: yyDollar[1].selStmtUnion()}
}
yyVAL.union = yyLOCAL
- case 1588:
+ case 1589:
yyDollar = yyS[yypt-6 : yypt+1]
var yyLOCAL *Insert
-//line sql.y:7818
+//line sql.y:7822
{
yyLOCAL = &Insert{Columns: yyDollar[2].columnsUnion(), Rows: yyDollar[5].valuesUnion(), RowAlias: yyDollar[6].rowAliasUnion()}
}
yyVAL.union = yyLOCAL
- case 1589:
+ case 1590:
yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL *Insert
-//line sql.y:7822
+//line sql.y:7826
{
yyLOCAL = &Insert{Columns: []IdentifierCI{}, Rows: yyDollar[4].valuesUnion(), RowAlias: yyDollar[5].rowAliasUnion()}
}
yyVAL.union = yyLOCAL
- case 1590:
+ case 1591:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL *Insert
-//line sql.y:7826
+//line sql.y:7830
{
yyLOCAL = &Insert{Columns: yyDollar[2].columnsUnion(), Rows: yyDollar[4].selStmtUnion()}
}
yyVAL.union = yyLOCAL
- case 1591:
+ case 1592:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Columns
-//line sql.y:7832
+//line sql.y:7836
{
yyLOCAL = Columns{yyDollar[1].identifierCI}
}
yyVAL.union = yyLOCAL
- case 1592:
+ case 1593:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Columns
-//line sql.y:7836
+//line sql.y:7840
{
yyLOCAL = Columns{yyDollar[3].identifierCI}
}
yyVAL.union = yyLOCAL
- case 1593:
+ case 1594:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:7840
+//line sql.y:7844
{
yySLICE := (*Columns)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[3].identifierCI)
}
- case 1594:
+ case 1595:
yyDollar = yyS[yypt-5 : yypt+1]
-//line sql.y:7844
+//line sql.y:7848
{
yySLICE := (*Columns)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[5].identifierCI)
}
- case 1595:
+ case 1596:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL *RowAlias
-//line sql.y:7849
+//line sql.y:7853
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1596:
+ case 1597:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *RowAlias
-//line sql.y:7853
+//line sql.y:7857
{
yyLOCAL = &RowAlias{TableName: yyDollar[2].identifierCS}
}
yyVAL.union = yyLOCAL
- case 1597:
+ case 1598:
yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL *RowAlias
-//line sql.y:7857
+//line sql.y:7861
{
yyLOCAL = &RowAlias{TableName: yyDollar[2].identifierCS, Columns: yyDollar[4].columnsUnion()}
}
yyVAL.union = yyLOCAL
- case 1598:
+ case 1599:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL UpdateExprs
-//line sql.y:7862
+//line sql.y:7866
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1599:
+ case 1600:
yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL UpdateExprs
-//line sql.y:7866
+//line sql.y:7870
{
yyLOCAL = yyDollar[5].updateExprsUnion()
}
yyVAL.union = yyLOCAL
- case 1600:
+ case 1601:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Values
-//line sql.y:7872
+//line sql.y:7876
{
yyLOCAL = Values{yyDollar[1].valTupleUnion()}
}
yyVAL.union = yyLOCAL
- case 1601:
+ case 1602:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:7876
+//line sql.y:7880
{
yySLICE := (*Values)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[3].valTupleUnion())
}
- case 1602:
+ case 1603:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL ValTuple
-//line sql.y:7882
+//line sql.y:7886
{
yyLOCAL = yyDollar[1].valTupleUnion()
}
yyVAL.union = yyLOCAL
- case 1603:
+ case 1604:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL ValTuple
-//line sql.y:7886
+//line sql.y:7890
{
yyLOCAL = ValTuple{}
}
yyVAL.union = yyLOCAL
- case 1604:
+ case 1605:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL ValTuple
-//line sql.y:7892
+//line sql.y:7896
{
yyLOCAL = ValTuple(yyDollar[2].exprsUnion())
}
yyVAL.union = yyLOCAL
- case 1605:
+ case 1606:
yyDollar = yyS[yypt-4 : yypt+1]
var yyLOCAL ValTuple
-//line sql.y:7896
+//line sql.y:7900
{
yyLOCAL = ValTuple(yyDollar[3].exprsUnion())
}
yyVAL.union = yyLOCAL
- case 1606:
+ case 1607:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Expr
-//line sql.y:7901
+//line sql.y:7905
{
if len(yyDollar[1].valTupleUnion()) == 1 {
yyLOCAL = yyDollar[1].valTupleUnion()[0]
@@ -22370,212 +22281,206 @@ yydefault:
}
}
yyVAL.union = yyLOCAL
- case 1607:
+ case 1608:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL UpdateExprs
-//line sql.y:7911
+//line sql.y:7915
{
yyLOCAL = UpdateExprs{yyDollar[1].updateExprUnion()}
}
yyVAL.union = yyLOCAL
- case 1608:
+ case 1609:
yyDollar = yyS[yypt-3 : yypt+1]
-//line sql.y:7915
+//line sql.y:7919
{
yySLICE := (*UpdateExprs)(yyIaddr(yyVAL.union))
*yySLICE = append(*yySLICE, yyDollar[3].updateExprUnion())
}
- case 1609:
+ case 1610:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL *UpdateExpr
-//line sql.y:7921
+//line sql.y:7925
{
yyLOCAL = &UpdateExpr{Name: yyDollar[1].colNameUnion(), Expr: yyDollar[3].exprUnion()}
}
yyVAL.union = yyLOCAL
- case 1611:
+ case 1612:
yyDollar = yyS[yypt-2 : yypt+1]
-//line sql.y:7928
+//line sql.y:7932
{
yyVAL.str = "charset"
}
- case 1614:
+ case 1615:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Expr
-//line sql.y:7938
+//line sql.y:7942
{
yyLOCAL = NewStrLiteral(yyDollar[1].identifierCI.String())
}
yyVAL.union = yyLOCAL
- case 1615:
+ case 1616:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Expr
-//line sql.y:7942
+//line sql.y:7946
{
yyLOCAL = NewStrLiteral(yyDollar[1].str)
}
yyVAL.union = yyLOCAL
- case 1616:
+ case 1617:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Expr
-//line sql.y:7946
+//line sql.y:7950
{
yyLOCAL = &Default{}
}
yyVAL.union = yyLOCAL
- case 1619:
+ case 1620:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL bool
-//line sql.y:7955
+//line sql.y:7959
{
yyLOCAL = false
}
yyVAL.union = yyLOCAL
- case 1620:
+ case 1621:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL bool
-//line sql.y:7957
+//line sql.y:7961
{
yyLOCAL = true
}
yyVAL.union = yyLOCAL
- case 1621:
+ case 1622:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL bool
-//line sql.y:7960
+//line sql.y:7964
{
yyLOCAL = false
}
yyVAL.union = yyLOCAL
- case 1622:
+ case 1623:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL bool
-//line sql.y:7962
+//line sql.y:7966
{
yyLOCAL = true
}
yyVAL.union = yyLOCAL
- case 1623:
+ case 1624:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL bool
-//line sql.y:7965
+//line sql.y:7969
{
yyLOCAL = false
}
yyVAL.union = yyLOCAL
- case 1624:
+ case 1625:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL bool
-//line sql.y:7967
+//line sql.y:7971
{
yyLOCAL = true
}
yyVAL.union = yyLOCAL
- case 1625:
+ case 1626:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL Ignore
-//line sql.y:7970
+//line sql.y:7974
{
yyLOCAL = false
}
yyVAL.union = yyLOCAL
- case 1626:
+ case 1627:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Ignore
-//line sql.y:7972
+//line sql.y:7976
{
yyLOCAL = true
}
yyVAL.union = yyLOCAL
- case 1627:
+ case 1628:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:7975
+//line sql.y:7979
{
yyVAL.empty = struct{}{}
}
- case 1628:
+ case 1629:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:7977
+//line sql.y:7981
{
yyVAL.empty = struct{}{}
}
- case 1629:
+ case 1630:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:7979
+//line sql.y:7983
{
yyVAL.empty = struct{}{}
}
- case 1630:
+ case 1631:
yyDollar = yyS[yypt-5 : yypt+1]
var yyLOCAL Statement
-//line sql.y:7983
+//line sql.y:7987
{
yyLOCAL = &CallProc{Name: yyDollar[2].tableName, Params: yyDollar[4].exprsUnion()}
}
yyVAL.union = yyLOCAL
- case 1631:
+ case 1632:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL Exprs
-//line sql.y:7988
+//line sql.y:7992
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1632:
+ case 1633:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL Exprs
-//line sql.y:7992
+//line sql.y:7996
{
yyLOCAL = yyDollar[1].exprsUnion()
}
yyVAL.union = yyLOCAL
- case 1633:
+ case 1634:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL []*IndexOption
-//line sql.y:7997
+//line sql.y:8001
{
yyLOCAL = nil
}
yyVAL.union = yyLOCAL
- case 1634:
+ case 1635:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL []*IndexOption
-//line sql.y:7999
+//line sql.y:8003
{
yyLOCAL = []*IndexOption{yyDollar[1].indexOptionUnion()}
}
yyVAL.union = yyLOCAL
- case 1635:
+ case 1636:
yyDollar = yyS[yypt-2 : yypt+1]
var yyLOCAL *IndexOption
-//line sql.y:8003
+//line sql.y:8007
{
yyLOCAL = &IndexOption{Name: string(yyDollar[1].str), String: string(yyDollar[2].identifierCI.String())}
}
yyVAL.union = yyLOCAL
- case 1636:
- yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:8009
- {
- yyVAL.identifierCI = yyDollar[1].identifierCI
- }
case 1637:
yyDollar = yyS[yypt-1 : yypt+1]
//line sql.y:8013
{
- yyVAL.identifierCI = NewIdentifierCI(string(yyDollar[1].str))
+ yyVAL.identifierCI = yyDollar[1].identifierCI
}
- case 1639:
+ case 1638:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:8020
+//line sql.y:8017
{
yyVAL.identifierCI = NewIdentifierCI(string(yyDollar[1].str))
}
case 1640:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:8026
+//line sql.y:8024
{
- yyVAL.identifierCS = NewIdentifierCS(string(yyDollar[1].str))
+ yyVAL.identifierCI = NewIdentifierCI(string(yyDollar[1].str))
}
case 1641:
yyDollar = yyS[yypt-1 : yypt+1]
@@ -22584,86 +22489,92 @@ yydefault:
yyVAL.identifierCS = NewIdentifierCS(string(yyDollar[1].str))
}
case 1642:
+ yyDollar = yyS[yypt-1 : yypt+1]
+//line sql.y:8034
+ {
+ yyVAL.identifierCS = NewIdentifierCS(string(yyDollar[1].str))
+ }
+ case 1643:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:8036
+//line sql.y:8040
{
yyVAL.identifierCS = NewIdentifierCS("")
}
- case 1643:
+ case 1644:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:8040
+//line sql.y:8044
{
yyVAL.identifierCS = yyDollar[1].identifierCS
}
- case 1645:
+ case 1646:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:8047
+//line sql.y:8051
{
yyVAL.identifierCS = NewIdentifierCS(string(yyDollar[1].str))
}
- case 1646:
+ case 1647:
yyDollar = yyS[yypt-3 : yypt+1]
var yyLOCAL Statement
-//line sql.y:8053
+//line sql.y:8057
{
yyLOCAL = &Kill{Type: yyDollar[2].killTypeUnion(), ProcesslistID: convertStringToUInt64(yyDollar[3].str)}
}
yyVAL.union = yyLOCAL
- case 1647:
+ case 1648:
yyDollar = yyS[yypt-0 : yypt+1]
var yyLOCAL KillType
-//line sql.y:8059
+//line sql.y:8063
{
yyLOCAL = ConnectionType
}
yyVAL.union = yyLOCAL
- case 1648:
+ case 1649:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL KillType
-//line sql.y:8063
+//line sql.y:8067
{
yyLOCAL = ConnectionType
}
yyVAL.union = yyLOCAL
- case 1649:
+ case 1650:
yyDollar = yyS[yypt-1 : yypt+1]
var yyLOCAL KillType
-//line sql.y:8067
+//line sql.y:8071
{
yyLOCAL = QueryType
}
yyVAL.union = yyLOCAL
- case 2279:
+ case 2281:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:8725
+//line sql.y:8730
{
}
- case 2280:
+ case 2282:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:8730
+//line sql.y:8735
{
}
- case 2281:
+ case 2283:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:8734
+//line sql.y:8739
{
skipToEnd(yylex)
}
- case 2282:
+ case 2284:
yyDollar = yyS[yypt-0 : yypt+1]
-//line sql.y:8739
+//line sql.y:8744
{
skipToEnd(yylex)
}
- case 2283:
+ case 2285:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:8743
+//line sql.y:8748
{
skipToEnd(yylex)
}
- case 2284:
+ case 2286:
yyDollar = yyS[yypt-1 : yypt+1]
-//line sql.y:8747
+//line sql.y:8752
{
skipToEnd(yylex)
}
diff --git a/go/vt/sqlparser/sql.y b/go/vt/sqlparser/sql.y
index 459f3f170a3..5e1a577002c 100644
--- a/go/vt/sqlparser/sql.y
+++ b/go/vt/sqlparser/sql.y
@@ -274,7 +274,7 @@ func markBindVariable(yylex yyLexer, bvar string) {
%token DISCARD IMPORT ENABLE DISABLE TABLESPACE
%token VIRTUAL STORED
%token BOTH LEADING TRAILING
-%token KILL
+%token KILL TRACE
%left EMPTY_FROM_CLAUSE
%right INTO
@@ -4500,6 +4500,10 @@ vexplain_type_opt:
{
$$ = QueriesVExplainType
}
+| TRACE
+ {
+ $$ = TraceVExplainType
+ }
explain_synonyms:
EXPLAIN
@@ -8641,6 +8645,7 @@ non_reserved_keyword:
| TINYBLOB
| TINYINT
| TINYTEXT
+| TRACE
| TRADITIONAL
| TRANSACTION
| TRANSACTIONS
diff --git a/go/vt/sqlparser/testdata/select_cases.txt b/go/vt/sqlparser/testdata/select_cases.txt
index 157b2ebfe99..453bc54381a 100644
--- a/go/vt/sqlparser/testdata/select_cases.txt
+++ b/go/vt/sqlparser/testdata/select_cases.txt
@@ -7238,7 +7238,7 @@ INPUT
select trace from information_schema.optimizer_trace;
END
OUTPUT
-select trace from information_schema.optimizer_trace
+select `trace` from information_schema.optimizer_trace
END
INPUT
select collation(group_concat(a,_koi8r 0xC1C2)) from t1;
diff --git a/go/vt/sqlparser/tracked_buffer.go b/go/vt/sqlparser/tracked_buffer.go
index aec206f3b3d..48efe9547af 100644
--- a/go/vt/sqlparser/tracked_buffer.go
+++ b/go/vt/sqlparser/tracked_buffer.go
@@ -18,6 +18,7 @@ package sqlparser
import (
"fmt"
+ "strconv"
"strings"
)
@@ -211,7 +212,32 @@ func (buf *TrackedBuffer) astPrintf(currentNode SQLNode, format string, values .
}
}
case 'd':
- buf.WriteString(fmt.Sprintf("%d", values[fieldnum]))
+ switch v := values[fieldnum].(type) {
+ case int:
+ buf.WriteInt(int64(v))
+ case int8:
+ buf.WriteInt(int64(v))
+ case int16:
+ buf.WriteInt(int64(v))
+ case int32:
+ buf.WriteInt(int64(v))
+ case int64:
+ buf.WriteInt(v)
+ case uint:
+ buf.WriteUint(uint64(v))
+ case uint8:
+ buf.WriteUint(uint64(v))
+ case uint16:
+ buf.WriteUint(uint64(v))
+ case uint32:
+ buf.WriteUint(uint64(v))
+ case uint64:
+ buf.WriteUint(v)
+ case uintptr:
+ buf.WriteUint(uint64(v))
+ default:
+ panic(fmt.Sprintf("unexepcted TrackedBuffer type %T", v))
+ }
case 'a':
buf.WriteArg("", values[fieldnum].(string))
default:
@@ -288,14 +314,26 @@ func areBothISExpr(op Expr, val Expr) bool {
// WriteArg writes a value argument into the buffer along with
// tracking information for future substitutions.
func (buf *TrackedBuffer) WriteArg(prefix, arg string) {
+ length := len(prefix) + len(arg)
buf.bindLocations = append(buf.bindLocations, BindLocation{
Offset: buf.Len(),
- Length: len(prefix) + len(arg),
+ Length: length,
})
+ buf.Grow(length)
buf.WriteString(prefix)
buf.WriteString(arg)
}
+// WriteInt writes a signed integer into the buffer.
+func (buf *TrackedBuffer) WriteInt(v int64) {
+ buf.WriteString(strconv.FormatInt(v, 10))
+}
+
+// WriteUint writes an unsigned integer into the buffer.
+func (buf *TrackedBuffer) WriteUint(v uint64) {
+ buf.WriteString(strconv.FormatUint(v, 10))
+}
+
// ParsedQuery returns a ParsedQuery that contains bind
// locations for easy substitution.
func (buf *TrackedBuffer) ParsedQuery() *ParsedQuery {
@@ -335,7 +373,6 @@ func UnescapedString(node SQLNode) string {
buf.SetEscapeNoIdentifier()
node.Format(buf)
return buf.String()
-
}
// CanonicalString returns a canonical string representation of an SQLNode where all identifiers
diff --git a/go/vt/sqlparser/tracked_buffer_test.go b/go/vt/sqlparser/tracked_buffer_test.go
index 4dff65634e8..96f2174481e 100644
--- a/go/vt/sqlparser/tracked_buffer_test.go
+++ b/go/vt/sqlparser/tracked_buffer_test.go
@@ -295,3 +295,35 @@ func TestCanonicalOutput(t *testing.T) {
})
}
}
+
+func TestTrackedBufferMyprintf(t *testing.T) {
+ testcases := []struct {
+ input string
+ output string
+ args []any
+ }{
+ {
+ input: "nothing",
+ output: "nothing",
+ args: []any{},
+ },
+ {
+ input: "my name is %s",
+ output: "my name is Homer",
+ args: []any{"Homer"},
+ },
+ {
+ input: "%d %d %d %d %d %d %d %d %d %d %d",
+ output: "1 2 3 4 5 6 7 8 9 10 11",
+ args: []any{int(1), int8(2), int16(3), int32(4), int64(5), uint(6), uint8(7), uint16(8), uint32(9), uint64(10), uintptr(11)},
+ },
+ }
+ for _, tc := range testcases {
+ t.Run(tc.input, func(t *testing.T) {
+ buf := NewTrackedBuffer(nil)
+ buf.Myprintf(tc.input, tc.args...)
+ got := buf.String()
+ assert.Equal(t, tc.output, got)
+ })
+ }
+}
diff --git a/go/vt/vtadmin/api.go b/go/vt/vtadmin/api.go
index 530b57ccdee..379925edd0b 100644
--- a/go/vt/vtadmin/api.go
+++ b/go/vt/vtadmin/api.go
@@ -33,11 +33,9 @@ import (
"github.com/patrickmn/go-cache"
vreplcommon "vitess.io/vitess/go/cmd/vtctldclient/command/vreplication/common"
- "vitess.io/vitess/go/stats"
- "vitess.io/vitess/go/textutil"
- "vitess.io/vitess/go/vt/vtenv"
-
+ "vitess.io/vitess/go/ptr"
"vitess.io/vitess/go/sets"
+ "vitess.io/vitess/go/stats"
"vitess.io/vitess/go/trace"
"vitess.io/vitess/go/vt/concurrency"
"vitess.io/vitess/go/vt/log"
@@ -55,6 +53,7 @@ import (
"vitess.io/vitess/go/vt/vtadmin/rbac"
"vitess.io/vitess/go/vt/vtadmin/sort"
"vitess.io/vitess/go/vt/vtadmin/vtadminproto"
+ "vitess.io/vitess/go/vt/vtenv"
"vitess.io/vitess/go/vt/vterrors"
"vitess.io/vitess/go/vt/vtexplain"
@@ -1721,11 +1720,8 @@ func (api *API) StartWorkflow(ctx context.Context, req *vtadminpb.StartWorkflowR
return c.Vtctld.WorkflowUpdate(ctx, &vtctldatapb.WorkflowUpdateRequest{
Keyspace: req.Keyspace,
TabletRequest: &tabletmanagerdatapb.UpdateVReplicationWorkflowRequest{
- Workflow: req.Workflow,
- Cells: textutil.SimulatedNullStringSlice,
- TabletTypes: []topodatapb.TabletType{topodatapb.TabletType(textutil.SimulatedNullInt)},
- OnDdl: binlogdatapb.OnDDLAction(textutil.SimulatedNullInt),
- State: binlogdatapb.VReplicationWorkflowState_Running,
+ Workflow: req.Workflow,
+ State: ptr.Of(binlogdatapb.VReplicationWorkflowState_Running),
},
})
}
@@ -1751,11 +1747,8 @@ func (api *API) StopWorkflow(ctx context.Context, req *vtadminpb.StopWorkflowReq
return c.Vtctld.WorkflowUpdate(ctx, &vtctldatapb.WorkflowUpdateRequest{
Keyspace: req.Keyspace,
TabletRequest: &tabletmanagerdatapb.UpdateVReplicationWorkflowRequest{
- Workflow: req.Workflow,
- Cells: textutil.SimulatedNullStringSlice,
- TabletTypes: []topodatapb.TabletType{topodatapb.TabletType(textutil.SimulatedNullInt)},
- OnDdl: binlogdatapb.OnDDLAction(textutil.SimulatedNullInt),
- State: binlogdatapb.VReplicationWorkflowState_Stopped,
+ Workflow: req.Workflow,
+ State: ptr.Of(binlogdatapb.VReplicationWorkflowState_Stopped),
},
})
}
diff --git a/go/vt/vtcombo/tablet_map.go b/go/vt/vtcombo/tablet_map.go
index 7a1cafa8ba3..dad58958def 100644
--- a/go/vt/vtcombo/tablet_map.go
+++ b/go/vt/vtcombo/tablet_map.go
@@ -898,6 +898,10 @@ func (itmc *internalTabletManagerClient) GetUnresolvedTransactions(ctx context.C
return nil, fmt.Errorf("not implemented in vtcombo")
}
+func (itmc *internalTabletManagerClient) ConcludeTransaction(ctx context.Context, tablet *topodatapb.Tablet, dtid string, mm bool) error {
+ return fmt.Errorf("not implemented in vtcombo")
+}
+
func (itmc *internalTabletManagerClient) PrimaryStatus(context.Context, *topodatapb.Tablet) (*replicationdatapb.PrimaryStatus, error) {
return nil, fmt.Errorf("not implemented in vtcombo")
}
diff --git a/go/vt/vtctl/grpcvtctldclient/client_gen.go b/go/vt/vtctl/grpcvtctldclient/client_gen.go
index 1d7f499ca22..45db87a582d 100644
--- a/go/vt/vtctl/grpcvtctldclient/client_gen.go
+++ b/go/vt/vtctl/grpcvtctldclient/client_gen.go
@@ -155,6 +155,15 @@ func (client *gRPCVtctldClient) CompleteSchemaMigration(ctx context.Context, in
return client.c.CompleteSchemaMigration(ctx, in, opts...)
}
+// ConcludeTransaction is part of the vtctlservicepb.VtctldClient interface.
+func (client *gRPCVtctldClient) ConcludeTransaction(ctx context.Context, in *vtctldatapb.ConcludeTransactionRequest, opts ...grpc.CallOption) (*vtctldatapb.ConcludeTransactionResponse, error) {
+ if client.c == nil {
+ return nil, status.Error(codes.Unavailable, connClosedMsg)
+ }
+
+ return client.c.ConcludeTransaction(ctx, in, opts...)
+}
+
// CreateKeyspace is part of the vtctlservicepb.VtctldClient interface.
func (client *gRPCVtctldClient) CreateKeyspace(ctx context.Context, in *vtctldatapb.CreateKeyspaceRequest, opts ...grpc.CallOption) (*vtctldatapb.CreateKeyspaceResponse, error) {
if client.c == nil {
diff --git a/go/vt/vtctl/grpcvtctldserver/server.go b/go/vt/vtctl/grpcvtctldserver/server.go
index d7cb1acdd92..f8cfeb4311e 100644
--- a/go/vt/vtctl/grpcvtctldserver/server.go
+++ b/go/vt/vtctl/grpcvtctldserver/server.go
@@ -44,6 +44,7 @@ import (
"vitess.io/vitess/go/trace"
"vitess.io/vitess/go/vt/callerid"
"vitess.io/vitess/go/vt/concurrency"
+ "vitess.io/vitess/go/vt/dtids"
hk "vitess.io/vitess/go/vt/hook"
"vitess.io/vitess/go/vt/key"
"vitess.io/vitess/go/vt/log"
@@ -52,6 +53,16 @@ import (
"vitess.io/vitess/go/vt/mysqlctl/backupstorage"
"vitess.io/vitess/go/vt/mysqlctl/mysqlctlproto"
"vitess.io/vitess/go/vt/mysqlctl/tmutils"
+ logutilpb "vitess.io/vitess/go/vt/proto/logutil"
+ mysqlctlpb "vitess.io/vitess/go/vt/proto/mysqlctl"
+ querypb "vitess.io/vitess/go/vt/proto/query"
+ replicationdatapb "vitess.io/vitess/go/vt/proto/replicationdata"
+ tabletmanagerdatapb "vitess.io/vitess/go/vt/proto/tabletmanagerdata"
+ topodatapb "vitess.io/vitess/go/vt/proto/topodata"
+ vschemapb "vitess.io/vitess/go/vt/proto/vschema"
+ vtctldatapb "vitess.io/vitess/go/vt/proto/vtctldata"
+ vtctlservicepb "vitess.io/vitess/go/vt/proto/vtctlservice"
+ vtrpcpb "vitess.io/vitess/go/vt/proto/vtrpc"
"vitess.io/vitess/go/vt/schema"
"vitess.io/vitess/go/vt/schemamanager"
"vitess.io/vitess/go/vt/sqlparser"
@@ -67,17 +78,6 @@ import (
"vitess.io/vitess/go/vt/vtgate/vindexes"
"vitess.io/vitess/go/vt/vttablet/tabletserver/throttle/base"
"vitess.io/vitess/go/vt/vttablet/tmclient"
-
- logutilpb "vitess.io/vitess/go/vt/proto/logutil"
- mysqlctlpb "vitess.io/vitess/go/vt/proto/mysqlctl"
- querypb "vitess.io/vitess/go/vt/proto/query"
- replicationdatapb "vitess.io/vitess/go/vt/proto/replicationdata"
- tabletmanagerdatapb "vitess.io/vitess/go/vt/proto/tabletmanagerdata"
- topodatapb "vitess.io/vitess/go/vt/proto/topodata"
- vschemapb "vitess.io/vitess/go/vt/proto/vschema"
- vtctldatapb "vitess.io/vitess/go/vt/proto/vtctldata"
- vtctlservicepb "vitess.io/vitess/go/vt/proto/vtctlservice"
- vtrpcpb "vitess.io/vitess/go/vt/proto/vtrpc"
)
const (
@@ -2400,6 +2400,8 @@ func (s *VtctldServer) GetUnresolvedTransactions(ctx context.Context, req *vtctl
span, ctx := trace.NewSpan(ctx, "VtctldServer.GetUnresolvedTransactions")
defer span.Finish()
+ span.Annotate("keyspace", req.Keyspace)
+
shards, err := s.ts.GetShardNames(ctx, req.Keyspace)
if err != nil {
return nil, err
@@ -2438,6 +2440,58 @@ func (s *VtctldServer) GetUnresolvedTransactions(ctx context.Context, req *vtctl
}, nil
}
+// ConcludeTransaction is part of the vtctlservicepb.VtctldServer interface.
+// It concludes the unresolved distributed transaction.
+func (s *VtctldServer) ConcludeTransaction(ctx context.Context, req *vtctldatapb.ConcludeTransactionRequest) (resp *vtctldatapb.ConcludeTransactionResponse, err error) {
+ span, ctx := trace.NewSpan(ctx, "VtctldServer.ConcludeTransaction")
+ defer span.Finish()
+
+ span.Annotate("dtid", req.Dtid)
+ span.Annotate("participants", req.Participants)
+
+ ss, err := dtids.ShardSession(req.Dtid)
+ if err != nil {
+ return nil, err
+ }
+ primary, err := s.getPrimaryTablet(ctx, ss.Target)
+ if err != nil {
+ return nil, err
+ }
+
+ eg, newCtx := errgroup.WithContext(ctx)
+ eg.SetLimit(10)
+ for _, rm := range req.Participants {
+ eg.Go(func() error {
+ primary, err := s.getPrimaryTablet(newCtx, rm)
+ if err != nil {
+ return err
+ }
+ return s.tmc.ConcludeTransaction(newCtx, primary.Tablet, req.Dtid, false)
+ })
+ }
+ if err = eg.Wait(); err != nil {
+ return nil, err
+ }
+
+ if err = s.tmc.ConcludeTransaction(ctx, primary.Tablet, req.Dtid, true); err != nil {
+ return nil, err
+ }
+
+ return &vtctldatapb.ConcludeTransactionResponse{}, nil
+}
+
+func (s *VtctldServer) getPrimaryTablet(newCtx context.Context, rm *querypb.Target) (*topo.TabletInfo, error) {
+ si, err := s.ts.GetShard(newCtx, rm.Keyspace, rm.Shard)
+ if err != nil {
+ return nil, err
+ }
+ primary, err := s.ts.GetTablet(newCtx, si.PrimaryAlias)
+ if err != nil {
+ return nil, err
+ }
+ return primary, nil
+}
+
// GetVersion returns the version of a tablet from its debug vars
func (s *VtctldServer) GetVersion(ctx context.Context, req *vtctldatapb.GetVersionRequest) (resp *vtctldatapb.GetVersionResponse, err error) {
span, ctx := trace.NewSpan(ctx, "VtctldServer.GetVersion")
@@ -5158,6 +5212,9 @@ func (s *VtctldServer) WorkflowDelete(ctx context.Context, req *vtctldatapb.Work
span.Annotate("keyspace", req.Keyspace)
span.Annotate("workflow", req.Workflow)
+ span.Annotate("keep_data", req.KeepData)
+ span.Annotate("keep_routing_rules", req.KeepRoutingRules)
+ span.Annotate("shards", req.Shards)
resp, err = s.ws.WorkflowDelete(ctx, req)
return resp, err
@@ -5189,6 +5246,7 @@ func (s *VtctldServer) WorkflowSwitchTraffic(ctx context.Context, req *vtctldata
span.Annotate("tablet-types", req.TabletTypes)
span.Annotate("direction", req.Direction)
span.Annotate("enable-reverse-replication", req.EnableReverseReplication)
+ span.Annotate("force", req.Force)
resp, err = s.ws.WorkflowSwitchTraffic(ctx, req)
return resp, err
diff --git a/go/vt/vtctl/grpcvtctldserver/server_test.go b/go/vt/vtctl/grpcvtctldserver/server_test.go
index d7981c67c70..5dd627e6ea1 100644
--- a/go/vt/vtctl/grpcvtctldserver/server_test.go
+++ b/go/vt/vtctl/grpcvtctldserver/server_test.go
@@ -5248,6 +5248,78 @@ func TestGetUnresolvedTransactions(t *testing.T) {
}
}
+func TestConcludeTransaction(t *testing.T) {
+ ks := "testkeyspace"
+
+ tests := []struct {
+ name string
+ tmc *testutil.TabletManagerClient
+ dtid string
+ expErr string
+ participant []*querypb.Target
+ }{
+ {
+ name: "invalid dtid",
+ tmc: &testutil.TabletManagerClient{},
+ dtid: "dtid01",
+ expErr: "invalid parts in dtid: dtid01",
+ }, {
+ name: "invalid transaction id",
+ tmc: &testutil.TabletManagerClient{},
+ dtid: "ks:80-:013c",
+ expErr: "invalid transaction id in dtid: ks:80-:013c",
+ }, {
+ name: "only dtid",
+ tmc: &testutil.TabletManagerClient{},
+ dtid: "testkeyspace:80-:1234",
+ }, {
+ name: "with participant",
+ tmc: &testutil.TabletManagerClient{},
+ dtid: "testkeyspace:80-:1234",
+ participant: []*querypb.Target{{Keyspace: ks, Shard: "-80"}},
+ }, {
+ name: "call error",
+ tmc: &testutil.TabletManagerClient{CallError: true},
+ dtid: "testkeyspace:80-:1234",
+ participant: []*querypb.Target{{Keyspace: ks, Shard: "-80"}},
+ expErr: "blocked call for ConcludeTransaction on fake TabletManagerClient",
+ },
+ }
+
+ tablets := []*topodatapb.Tablet{{
+ Alias: &topodatapb.TabletAlias{Cell: "zone1", Uid: 100},
+ Keyspace: ks,
+ Shard: "-80",
+ Type: topodatapb.TabletType_PRIMARY,
+ }, {
+ Alias: &topodatapb.TabletAlias{Cell: "zone1", Uid: 200},
+ Keyspace: ks,
+ Shard: "80-",
+ Type: topodatapb.TabletType_PRIMARY,
+ }}
+ ts := memorytopo.NewServer(context.Background(), "zone1")
+ testutil.AddTablets(context.Background(), t, ts, &testutil.AddTabletOptions{AlsoSetShardPrimary: true}, tablets...)
+
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ ctx, cancel := context.WithCancel(context.Background())
+ defer cancel()
+
+ vtctld := testutil.NewVtctldServerWithTabletManagerClient(t, ts, tt.tmc, func(ts *topo.Server) vtctlservicepb.VtctldServer {
+ return NewVtctldServer(vtenv.NewTestEnv(), ts)
+ })
+ req := &vtctldatapb.ConcludeTransactionRequest{Dtid: tt.dtid, Participants: tt.participant}
+ _, err := vtctld.ConcludeTransaction(ctx, req)
+ if tt.expErr != "" {
+ require.ErrorContains(t, err, tt.expErr)
+ return
+ }
+
+ require.NoError(t, err)
+ })
+ }
+}
+
func TestFindAllShardsInKeyspace(t *testing.T) {
t.Parallel()
diff --git a/go/vt/vtctl/grpcvtctldserver/testutil/test_tmclient.go b/go/vt/vtctl/grpcvtctldserver/testutil/test_tmclient.go
index 769d794ab41..b05bc136d70 100644
--- a/go/vt/vtctl/grpcvtctldserver/testutil/test_tmclient.go
+++ b/go/vt/vtctl/grpcvtctldserver/testutil/test_tmclient.go
@@ -174,6 +174,10 @@ func init() {
// with mock delays and response values, for use in unit tests.
type TabletManagerClient struct {
tmclient.TabletManagerClient
+
+ // If true, the call will return an error.
+ CallError bool
+
// TopoServer is used for certain TabletManagerClient rpcs that update topo
// information, e.g. ChangeType. To force an error result for those rpcs in
// a test, set tmc.TopoServer = nil.
@@ -659,6 +663,14 @@ func (fake *TabletManagerClient) GetUnresolvedTransactions(ctx context.Context,
return fake.GetUnresolvedTransactionsResults[tablet.Shard], nil
}
+// ConcludeTransaction is part of the tmclient.TabletManagerClient interface.
+func (fake *TabletManagerClient) ConcludeTransaction(ctx context.Context, tablet *topodatapb.Tablet, dtid string, mm bool) error {
+ if fake.CallError {
+ return fmt.Errorf("%w: blocked call for ConcludeTransaction on fake TabletManagerClient", assert.AnError)
+ }
+ return nil
+}
+
// FullStatus is part of the tmclient.TabletManagerClient interface.
func (fake *TabletManagerClient) FullStatus(ctx context.Context, tablet *topodatapb.Tablet) (*replicationdatapb.FullStatus, error) {
if fake.FullStatusResult != nil {
diff --git a/go/vt/vtctl/localvtctldclient/client_gen.go b/go/vt/vtctl/localvtctldclient/client_gen.go
index 370b523a50e..b8fdca174e6 100644
--- a/go/vt/vtctl/localvtctldclient/client_gen.go
+++ b/go/vt/vtctl/localvtctldclient/client_gen.go
@@ -191,6 +191,11 @@ func (client *localVtctldClient) CompleteSchemaMigration(ctx context.Context, in
return client.s.CompleteSchemaMigration(ctx, in)
}
+// ConcludeTransaction is part of the vtctlservicepb.VtctldClient interface.
+func (client *localVtctldClient) ConcludeTransaction(ctx context.Context, in *vtctldatapb.ConcludeTransactionRequest, opts ...grpc.CallOption) (*vtctldatapb.ConcludeTransactionResponse, error) {
+ return client.s.ConcludeTransaction(ctx, in)
+}
+
// CreateKeyspace is part of the vtctlservicepb.VtctldClient interface.
func (client *localVtctldClient) CreateKeyspace(ctx context.Context, in *vtctldatapb.CreateKeyspaceRequest, opts ...grpc.CallOption) (*vtctldatapb.CreateKeyspaceResponse, error) {
return client.s.CreateKeyspace(ctx, in)
diff --git a/go/vt/vtctl/vtctl.go b/go/vt/vtctl/vtctl.go
index 1f07dce40ff..1a4735b1c82 100644
--- a/go/vt/vtctl/vtctl.go
+++ b/go/vt/vtctl/vtctl.go
@@ -99,6 +99,7 @@ import (
"vitess.io/vitess/go/constants/sidecar"
"vitess.io/vitess/go/mysql/collations"
+ "vitess.io/vitess/go/ptr"
"vitess.io/vitess/go/cmd/vtctldclient/cli"
"vitess.io/vitess/go/flagutil"
@@ -3805,7 +3806,7 @@ func commandWorkflow(ctx context.Context, wr *wrangler.Wrangler, subFlags *pflag
}
}
} else {
- tabletTypes = []topodatapb.TabletType{topodatapb.TabletType(textutil.SimulatedNullInt)}
+ tabletTypes = textutil.SimulatedNullTabletTypeSlice
}
onddl := int32(textutil.SimulatedNullInt) // To signify no value has been provided
if subFlags.Lookup("on-ddl").Changed { // Validate the provided value
@@ -3827,9 +3828,10 @@ func commandWorkflow(ctx context.Context, wr *wrangler.Wrangler, subFlags *pflag
Workflow: workflow,
Cells: *cells,
TabletTypes: tabletTypes,
- TabletSelectionPreference: tsp,
- OnDdl: binlogdatapb.OnDDLAction(onddl),
- State: binlogdatapb.VReplicationWorkflowState(textutil.SimulatedNullInt), // We don't allow changing this in the client command
+ TabletSelectionPreference: &tsp,
+ }
+ if onddl != int32(textutil.SimulatedNullInt) {
+ rpcReq.(*tabletmanagerdatapb.UpdateVReplicationWorkflowRequest).OnDdl = ptr.Of(binlogdatapb.OnDDLAction(onddl))
}
}
results, err = wr.WorkflowAction(ctx, workflow, keyspace, action, *dryRun, rpcReq, *shards) // Only update currently uses the new RPC path
diff --git a/go/vt/vtctl/workflow/framework_test.go b/go/vt/vtctl/workflow/framework_test.go
index fb3c547964e..5c1bdfbd9c0 100644
--- a/go/vt/vtctl/workflow/framework_test.go
+++ b/go/vt/vtctl/workflow/framework_test.go
@@ -141,7 +141,7 @@ func initSrvKeyspace(t *testing.T, topo *topo.Server, keyspace string, sources,
for _, shard := range shards {
keyRange, err := key.ParseShardingSpec(shard)
require.NoError(t, err)
- require.Equal(t, 1, len(keyRange))
+ require.Len(t, keyRange, 1)
partition.ShardReferences = append(partition.ShardReferences, &topodatapb.ShardReference{
Name: shard,
KeyRange: keyRange[0],
@@ -177,6 +177,7 @@ func (env *testEnv) addTablet(t *testing.T, ctx context.Context, id int, keyspac
Shard: shard,
KeyRange: &topodatapb.KeyRange{},
Type: tabletType,
+ Hostname: "localhost", // Without a hostname the RefreshState call is skipped
PortMap: map[string]int32{
"test": int32(id),
},
@@ -256,6 +257,7 @@ type testTMClient struct {
readVReplicationWorkflowRequests map[uint32]*tabletmanagerdatapb.ReadVReplicationWorkflowRequest
primaryPositions map[uint32]string
vdiffRequests map[uint32]*vdiffRequestResponse
+ refreshStateErrors map[uint32]error
// Stack of ReadVReplicationWorkflowsResponse to return, in order, for each shard
readVReplicationWorkflowsResponses map[string][]*tabletmanagerdatapb.ReadVReplicationWorkflowsResponse
@@ -277,6 +279,8 @@ func newTestTMClient(env *testEnv) *testTMClient {
readVReplicationWorkflowRequests: make(map[uint32]*tabletmanagerdatapb.ReadVReplicationWorkflowRequest),
readVReplicationWorkflowsResponses: make(map[string][]*tabletmanagerdatapb.ReadVReplicationWorkflowsResponse),
primaryPositions: make(map[uint32]string),
+ vdiffRequests: make(map[uint32]*vdiffRequestResponse),
+ refreshStateErrors: make(map[uint32]error),
env: env,
}
}
@@ -604,6 +608,26 @@ func (tmc *testTMClient) VReplicationWaitForPos(ctx context.Context, tablet *top
return nil
}
+func (tmc *testTMClient) SetRefreshStateError(tablet *topodatapb.Tablet, err error) {
+ tmc.mu.Lock()
+ defer tmc.mu.Unlock()
+
+ if tmc.refreshStateErrors == nil {
+ tmc.refreshStateErrors = make(map[uint32]error)
+ }
+ tmc.refreshStateErrors[tablet.Alias.Uid] = err
+}
+
+func (tmc *testTMClient) RefreshState(ctx context.Context, tablet *topodatapb.Tablet) error {
+ tmc.mu.Lock()
+ defer tmc.mu.Unlock()
+
+ if tmc.refreshStateErrors == nil {
+ tmc.refreshStateErrors = make(map[uint32]error)
+ }
+ return tmc.refreshStateErrors[tablet.Alias.Uid]
+}
+
func (tmc *testTMClient) AddVReplicationWorkflowsResponse(key string, resp *tabletmanagerdatapb.ReadVReplicationWorkflowsResponse) {
tmc.mu.Lock()
defer tmc.mu.Unlock()
diff --git a/go/vt/vtctl/workflow/materializer.go b/go/vt/vtctl/workflow/materializer.go
index f0171f31cab..ea8b75c41c8 100644
--- a/go/vt/vtctl/workflow/materializer.go
+++ b/go/vt/vtctl/workflow/materializer.go
@@ -24,6 +24,7 @@ import (
"sync"
"time"
+ "vitess.io/vitess/go/ptr"
"vitess.io/vitess/go/sqltypes"
"vitess.io/vitess/go/textutil"
"vitess.io/vitess/go/vt/concurrency"
@@ -42,7 +43,6 @@ import (
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
tabletmanagerdatapb "vitess.io/vitess/go/vt/proto/tabletmanagerdata"
- topodatapb "vitess.io/vitess/go/vt/proto/topodata"
vschemapb "vitess.io/vitess/go/vt/proto/vschema"
vtctldatapb "vitess.io/vitess/go/vt/proto/vtctldata"
)
@@ -127,7 +127,7 @@ func (mz *materializer) createWorkflowStreams(req *tabletmanagerdatapb.CreateVRe
return err
}
req.WorkflowSubType = workflowSubType
- optionsJSON, err := mz.getOptionsJSON()
+ optionsJSON, err := getOptionsJSON(mz.ms.GetWorkflowOptions())
if err != nil {
return err
}
@@ -261,7 +261,7 @@ func (mz *materializer) deploySchema() error {
removeAutoInc := false
if mz.workflowType == binlogdatapb.VReplicationWorkflowType_MoveTables &&
(mz.targetVSchema != nil && mz.targetVSchema.Keyspace != nil && mz.targetVSchema.Keyspace.Sharded) &&
- (mz.ms != nil && mz.ms.GetWorkflowOptions().GetStripShardedAutoIncrement()) {
+ (mz.ms.GetWorkflowOptions() != nil && mz.ms.GetWorkflowOptions().StripShardedAutoIncrement) {
removeAutoInc = true
}
@@ -497,13 +497,10 @@ func (mz *materializer) startStreams(ctx context.Context) error {
}
if _, err := mz.tmc.UpdateVReplicationWorkflow(ctx, targetPrimary.Tablet, &tabletmanagerdatapb.UpdateVReplicationWorkflowRequest{
Workflow: mz.ms.Workflow,
- State: binlogdatapb.VReplicationWorkflowState_Running,
+ State: ptr.Of(binlogdatapb.VReplicationWorkflowState_Running),
// Don't change anything else, so pass simulated NULLs.
- Cells: textutil.SimulatedNullStringSlice,
- TabletTypes: []topodatapb.TabletType{
- topodatapb.TabletType(textutil.SimulatedNullInt),
- },
- OnDdl: binlogdatapb.OnDDLAction(textutil.SimulatedNullInt),
+ Cells: textutil.SimulatedNullStringSlice,
+ TabletTypes: textutil.SimulatedNullTabletTypeSlice,
}); err != nil {
return vterrors.Wrap(err, "failed to update workflow")
}
diff --git a/go/vt/vtctl/workflow/resharder.go b/go/vt/vtctl/workflow/resharder.go
index 4f4ed34963a..57c860bdfaf 100644
--- a/go/vt/vtctl/workflow/resharder.go
+++ b/go/vt/vtctl/workflow/resharder.go
@@ -21,13 +21,15 @@ import (
"context"
"fmt"
"slices"
+ "strings"
"sync"
"time"
- "vitess.io/vitess/go/textutil"
+ "vitess.io/vitess/go/ptr"
"vitess.io/vitess/go/vt/concurrency"
"vitess.io/vitess/go/vt/discovery"
"vitess.io/vitess/go/vt/key"
+ "vitess.io/vitess/go/vt/proto/vtctldata"
"vitess.io/vitess/go/vt/schema"
"vitess.io/vitess/go/vt/topo"
"vitess.io/vitess/go/vt/topotools"
@@ -58,6 +60,7 @@ type resharder struct {
stopAfterCopy bool
onDDL string
deferSecondaryKeys bool
+ workflowOptions *vtctldata.WorkflowOptions
}
type refStream struct {
@@ -69,7 +72,14 @@ type refStream struct {
workflowSubType binlogdatapb.VReplicationWorkflowSubType
}
-func (s *Server) buildResharder(ctx context.Context, keyspace, workflow string, sources, targets []string, cell, tabletTypes string) (*resharder, error) {
+func (s *Server) buildResharder(ctx context.Context, req *vtctldata.ReshardCreateRequest) (*resharder, error) {
+ keyspace := req.GetKeyspace()
+ workflow := req.GetWorkflow()
+ cell := strings.Join(req.GetCells(), ",")
+ tabletTypes := discovery.BuildTabletTypesString(req.GetTabletTypes(), req.GetTabletSelectionPreference())
+ sources := req.GetSourceShards()
+ targets := req.GetTargetShards()
+
rs := &resharder{
s: s,
keyspace: keyspace,
@@ -78,6 +88,7 @@ func (s *Server) buildResharder(ctx context.Context, keyspace, workflow string,
targetPrimaries: make(map[string]*topo.TabletInfo),
cell: cell,
tabletTypes: tabletTypes,
+ workflowOptions: req.GetWorkflowOptions(),
}
for _, shard := range sources {
si, err := s.ts.GetShard(ctx, keyspace, shard)
@@ -283,6 +294,11 @@ func (rs *resharder) createStreams(ctx context.Context) error {
// Clone excludeRules to prevent data races.
copyExcludeRules := slices.Clone(excludeRules)
+ optionsJSON, err := getOptionsJSON(rs.workflowOptions)
+ if err != nil {
+ return err
+ }
+ optionsJSON = fmt.Sprintf("'%s'", optionsJSON)
for _, source := range rs.sourceShards {
if !key.KeyRangeIntersect(target.KeyRange, source.KeyRange) {
continue
@@ -303,14 +319,14 @@ func (rs *resharder) createStreams(ctx context.Context) error {
ig.AddRow(rs.workflow, bls, "", rs.cell, rs.tabletTypes,
binlogdatapb.VReplicationWorkflowType_Reshard,
binlogdatapb.VReplicationWorkflowSubType_None,
- rs.deferSecondaryKeys)
+ rs.deferSecondaryKeys, optionsJSON)
}
for _, rstream := range rs.refStreams {
ig.AddRow(rstream.workflow, rstream.bls, "", rstream.cell, rstream.tabletTypes,
rstream.workflowType,
rstream.workflowSubType,
- rs.deferSecondaryKeys)
+ rs.deferSecondaryKeys, optionsJSON)
}
query := ig.String()
if _, err := rs.s.tmc.VReplicationExec(ctx, targetPrimary.Tablet, query); err != nil {
@@ -331,10 +347,7 @@ func (rs *resharder) startStreams(ctx context.Context) error {
// that we've created on the new shards as we're migrating them.
req := &tabletmanagerdatapb.UpdateVReplicationWorkflowsRequest{
AllWorkflows: true,
- State: binlogdatapb.VReplicationWorkflowState_Running,
- // We don't want to update anything else so use simulated NULLs.
- Message: textutil.SimulatedNullString,
- StopPosition: textutil.SimulatedNullString,
+ State: ptr.Of(binlogdatapb.VReplicationWorkflowState_Running),
}
if _, err := rs.s.tmc.UpdateVReplicationWorkflows(ctx, targetPrimary.Tablet, req); err != nil {
return vterrors.Wrapf(err, "UpdateVReplicationWorkflows(%v, 'state='%s')",
diff --git a/go/vt/vtctl/workflow/server.go b/go/vt/vtctl/workflow/server.go
index 0a855e8094e..84cb15c87f0 100644
--- a/go/vt/vtctl/workflow/server.go
+++ b/go/vt/vtctl/workflow/server.go
@@ -44,6 +44,7 @@ import (
"vitess.io/vitess/go/vt/concurrency"
"vitess.io/vitess/go/vt/discovery"
"vitess.io/vitess/go/vt/key"
+ "vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/logutil"
"vitess.io/vitess/go/vt/mysqlctl/tmutils"
"vitess.io/vitess/go/vt/schema"
@@ -1738,8 +1739,7 @@ func (s *Server) ReshardCreate(ctx context.Context, req *vtctldatapb.ReshardCrea
s.Logger().Errorf("%v", err2)
return nil, err
}
- tabletTypesStr := discovery.BuildTabletTypesString(req.TabletTypes, req.TabletSelectionPreference)
- rs, err := s.buildResharder(ctx, keyspace, req.Workflow, req.SourceShards, req.TargetShards, strings.Join(cells, ","), tabletTypesStr)
+ rs, err := s.buildResharder(ctx, req)
if err != nil {
return nil, vterrors.Wrap(err, "buildResharder")
}
@@ -2362,6 +2362,7 @@ func (s *Server) WorkflowUpdate(ctx context.Context, req *vtctldatapb.WorkflowUp
span.Annotate("tablet_types", req.TabletRequest.TabletTypes)
span.Annotate("on_ddl", req.TabletRequest.OnDdl)
span.Annotate("state", req.TabletRequest.State)
+ span.Annotate("config_overrides", req.TabletRequest.ConfigOverrides)
vx := vexec.NewVExec(req.Keyspace, req.TabletRequest.Workflow, s.ts, s.tmc, s.env.Parser())
callback := func(ctx context.Context, tablet *topo.TabletInfo) (*querypb.QueryResult, error) {
@@ -3009,7 +3010,7 @@ func (s *Server) updateShardRecords(ctx context.Context, keyspace string, shards
}
// refreshPrimaryTablets will just RPC-ping all the primary tablets with RefreshState
-func (s *Server) refreshPrimaryTablets(ctx context.Context, shards []*topo.ShardInfo) error {
+func (s *Server) refreshPrimaryTablets(ctx context.Context, shards []*topo.ShardInfo, force bool) error {
wg := sync.WaitGroup{}
rec := concurrency.AllErrorRecorder{}
for _, si := range shards {
@@ -3023,9 +3024,11 @@ func (s *Server) refreshPrimaryTablets(ctx context.Context, shards []*topo.Shard
}
if err := s.tmc.RefreshState(ctx, ti.Tablet); err != nil {
- rec.RecordError(err)
- } else {
- s.Logger().Infof("%v responded", topoproto.TabletAliasString(si.PrimaryAlias))
+ if !force {
+ rec.RecordError(err)
+ return
+ }
+ s.Logger().Warningf("%v encountered error on tablet refresh: %v", topoproto.TabletAliasString(si.PrimaryAlias), err)
}
}(si)
}
@@ -3081,6 +3084,16 @@ func (s *Server) finalizeMigrateWorkflow(ctx context.Context, ts *trafficSwitche
// WorkflowSwitchTraffic switches traffic in the direction passed for specified tablet types.
func (s *Server) WorkflowSwitchTraffic(ctx context.Context, req *vtctldatapb.WorkflowSwitchTrafficRequest) (*vtctldatapb.WorkflowSwitchTrafficResponse, error) {
+ span, ctx := trace.NewSpan(ctx, "workflow.Server.WorkflowSwitchTraffic")
+ defer span.Finish()
+
+ span.Annotate("keyspace", req.Keyspace)
+ span.Annotate("workflow", req.Workflow)
+ span.Annotate("tablet-types", req.TabletTypes)
+ span.Annotate("direction", req.Direction)
+ span.Annotate("enable-reverse-replication", req.EnableReverseReplication)
+ span.Annotate("force", req.Force)
+
var (
dryRunResults []string
rdDryRunResults, wrDryRunResults *[]string
@@ -3130,12 +3143,16 @@ func (s *Server) WorkflowSwitchTraffic(ctx context.Context, req *vtctldatapb.Wor
return nil, vterrors.Errorf(vtrpcpb.Code_INVALID_ARGUMENT, "cannot reverse traffic for multi-tenant migrations")
}
}
- reason, err := s.canSwitch(ctx, ts, startState, direction, int64(maxReplicationLagAllowed.Seconds()), req.Shards)
+
+ ts.force = req.GetForce()
+
+ reason, err := s.canSwitch(ctx, ts, startState, direction, int64(maxReplicationLagAllowed.Seconds()), req.GetShards())
if err != nil {
return nil, err
}
if reason != "" {
- return nil, vterrors.Errorf(vtrpcpb.Code_FAILED_PRECONDITION, "cannot switch traffic for workflow %s at this time: %s", startState.Workflow, reason)
+ return nil, vterrors.Errorf(vtrpcpb.Code_FAILED_PRECONDITION, "cannot switch traffic for workflow %s at this time: %s",
+ startState.Workflow, reason)
}
hasReplica, hasRdonly, hasPrimary, err = parseTabletTypes(req.TabletTypes)
if err != nil {
@@ -3172,7 +3189,8 @@ func (s *Server) WorkflowSwitchTraffic(ctx context.Context, req *vtctldatapb.Wor
s.Logger().Infof("%s done for workflow %s.%s", cmd, req.Keyspace, req.Workflow)
resp := &vtctldatapb.WorkflowSwitchTrafficResponse{}
if req.DryRun {
- resp.Summary = fmt.Sprintf("%s dry run results for workflow %s.%s at %v", cmd, req.Keyspace, req.Workflow, time.Now().UTC().Format(time.RFC822))
+ resp.Summary = fmt.Sprintf("%s dry run results for workflow %s.%s at %v",
+ cmd, req.Keyspace, req.Workflow, time.Now().UTC().Format(time.RFC822))
resp.DryRunResults = dryRunResults
} else {
s.Logger().Infof("%s done for workflow %s.%s", cmd, req.Keyspace, req.Workflow)
@@ -3222,10 +3240,12 @@ func (s *Server) switchReads(ctx context.Context, req *vtctldatapb.WorkflowSwitc
cellsStr := strings.Join(req.Cells, ",")
- s.Logger().Infof("Switching reads: %s.%s tablet types: %s, cells: %s, workflow state: %s", ts.targetKeyspace, ts.workflow, roTypesToSwitchStr, cellsStr, state.String())
+ s.Logger().Infof("Switching reads: %s.%s tablet types: %s, cells: %s, workflow state: %s",
+ ts.targetKeyspace, ts.workflow, roTypesToSwitchStr, cellsStr, state.String())
if !switchReplica && !switchRdonly {
return defaultErrorHandler(ts.Logger(), "invalid tablet types",
- vterrors.Errorf(vtrpcpb.Code_INVALID_ARGUMENT, "tablet types must be REPLICA or RDONLY: %s", roTypesToSwitchStr))
+ vterrors.Errorf(vtrpcpb.Code_INVALID_ARGUMENT, "tablet types must be REPLICA or RDONLY: %s",
+ roTypesToSwitchStr))
}
// For partial (shard-by-shard migrations) or multi-tenant migrations, traffic for all tablet types
// is expected to be switched at once. For other MoveTables migrations where we use table routing rules
@@ -3245,9 +3265,15 @@ func (s *Server) switchReads(ctx context.Context, req *vtctldatapb.WorkflowSwitc
if err != nil {
return nil, err
}
- if len(req.GetCells()) != 0 && len(req.GetCells()) != len(allCells) {
- return defaultErrorHandler(ts.Logger(), "invalid request", vterrors.Errorf(vtrpcpb.Code_INVALID_ARGUMENT,
- "requesting read traffic for multi-tenant migrations must include all cells"))
+
+ if len(req.GetCells()) > 0 {
+ slices.Sort(req.GetCells())
+ slices.Sort(allCells)
+ if !slices.Equal(req.GetCells(), allCells) {
+ return defaultErrorHandler(ts.Logger(), "invalid request", vterrors.Errorf(vtrpcpb.Code_INVALID_ARGUMENT,
+ "requesting switch of read traffic for multi-tenant migrations must include all cells; all cells: %v, requested cells: %v",
+ strings.Join(allCells, ","), strings.Join(req.GetCells(), ",")))
+ }
}
}
@@ -3277,14 +3303,14 @@ func (s *Server) switchReads(ctx context.Context, req *vtctldatapb.WorkflowSwitc
}
}
- // If journals exist notify user and fail.
journalsExist, _, err := ts.checkJournals(ctx)
- if err != nil {
+ if err != nil && !req.GetForce() {
return defaultErrorHandler(ts.Logger(), fmt.Sprintf("failed to read journal in the %s keyspace", ts.SourceKeyspaceName()), err)
}
if journalsExist {
s.Logger().Infof("Found a previous journal entry for %d", ts.id)
}
+
var sw iswitcher
if req.DryRun {
sw = &switcherDryRun{ts: ts, drLog: NewLogRecorder()}
@@ -3664,10 +3690,15 @@ func (s *Server) canSwitch(ctx context.Context, ts *trafficSwitcher, state *Stat
defer wg.Done()
for _, si := range shards {
if partial, partialDetails, err := topotools.RefreshTabletsByShard(rtbsCtx, s.ts, s.tmc, si, nil, ts.Logger()); err != nil || partial {
- m.Lock()
- refreshErrors.WriteString(fmt.Sprintf("failed to successfully refresh all tablets in the %s/%s %s shard (%v):\n %v\n",
- si.Keyspace(), si.ShardName(), stype, err, partialDetails))
- m.Unlock()
+ msg := fmt.Sprintf("failed to successfully refresh all tablets in the %s/%s %s shard (%v):\n %v\n",
+ si.Keyspace(), si.ShardName(), stype, err, partialDetails)
+ if partial && ts.force {
+ log.Warning(msg)
+ } else {
+ m.Lock()
+ refreshErrors.WriteString(msg)
+ m.Unlock()
+ }
}
}
}
diff --git a/go/vt/vtctl/workflow/server_test.go b/go/vt/vtctl/workflow/server_test.go
index c9be9a4cc7e..efc649e1ebe 100644
--- a/go/vt/vtctl/workflow/server_test.go
+++ b/go/vt/vtctl/workflow/server_test.go
@@ -19,6 +19,7 @@ package workflow
import (
"context"
"encoding/json"
+ "errors"
"fmt"
"slices"
"sort"
@@ -1029,6 +1030,7 @@ func TestMoveTablesTrafficSwitching(t *testing.T) {
name string
sourceKeyspace, targetKeyspace *testKeyspace
req *vtctldatapb.WorkflowSwitchTrafficRequest
+ preFunc func(env *testEnv)
want *vtctldatapb.WorkflowSwitchTrafficResponse
wantErr bool
}{
@@ -1076,6 +1078,55 @@ func TestMoveTablesTrafficSwitching(t *testing.T) {
CurrentState: "Reads Not Switched. Writes Not Switched",
},
},
+ {
+ name: "forward with tablet refresh error",
+ sourceKeyspace: &testKeyspace{
+ KeyspaceName: sourceKeyspaceName,
+ ShardNames: []string{"0"},
+ },
+ targetKeyspace: &testKeyspace{
+ KeyspaceName: targetKeyspaceName,
+ ShardNames: []string{"-80", "80-"},
+ },
+ req: &vtctldatapb.WorkflowSwitchTrafficRequest{
+ Keyspace: targetKeyspaceName,
+ Workflow: workflowName,
+ Direction: int32(DirectionForward),
+ TabletTypes: tabletTypes,
+ },
+ preFunc: func(env *testEnv) {
+ env.tmc.SetRefreshStateError(env.tablets[sourceKeyspaceName][startingSourceTabletUID], errors.New("tablet refresh error"))
+ env.tmc.SetRefreshStateError(env.tablets[targetKeyspaceName][startingTargetTabletUID], errors.New("tablet refresh error"))
+ },
+ wantErr: true,
+ },
+ {
+ name: "forward with tablet refresh error and force",
+ sourceKeyspace: &testKeyspace{
+ KeyspaceName: sourceKeyspaceName,
+ ShardNames: []string{"0"},
+ },
+ targetKeyspace: &testKeyspace{
+ KeyspaceName: targetKeyspaceName,
+ ShardNames: []string{"-80", "80-"},
+ },
+ req: &vtctldatapb.WorkflowSwitchTrafficRequest{
+ Keyspace: targetKeyspaceName,
+ Workflow: workflowName,
+ Direction: int32(DirectionForward),
+ TabletTypes: tabletTypes,
+ Force: true,
+ },
+ preFunc: func(env *testEnv) {
+ env.tmc.SetRefreshStateError(env.tablets[sourceKeyspaceName][startingSourceTabletUID], errors.New("tablet refresh error"))
+ env.tmc.SetRefreshStateError(env.tablets[targetKeyspaceName][startingTargetTabletUID], errors.New("tablet refresh error"))
+ },
+ want: &vtctldatapb.WorkflowSwitchTrafficResponse{
+ Summary: fmt.Sprintf("SwitchTraffic was successful for workflow %s.%s", targetKeyspaceName, workflowName),
+ StartState: "Reads Not Switched. Writes Not Switched",
+ CurrentState: "All Reads Switched. Writes Switched",
+ },
+ },
}
for _, tc := range testcases {
t.Run(tc.name, func(t *testing.T) {
@@ -1119,11 +1170,15 @@ func TestMoveTablesTrafficSwitching(t *testing.T) {
env.tmc.expectVRQueryResultOnKeyspaceTablets(tc.targetKeyspace.KeyspaceName, createJournalQR)
env.tmc.expectVRQueryResultOnKeyspaceTablets(tc.sourceKeyspace.KeyspaceName, freezeReverseWFQR)
}
+ if tc.preFunc != nil {
+ tc.preFunc(env)
+ }
got, err := env.ws.WorkflowSwitchTraffic(ctx, tc.req)
- if (err != nil) != tc.wantErr {
- require.Fail(t, "unexpected error value", "Server.WorkflowSwitchTraffic() error = %v, wantErr %v", err, tc.wantErr)
+ if tc.wantErr {
+ require.Error(t, err)
return
}
+ require.NoError(t, err)
require.Equal(t, tc.want.String(), got.String(), "Server.WorkflowSwitchTraffic() = %v, want %v", got, tc.want)
// Confirm that we have the expected routing rules.
@@ -1138,7 +1193,7 @@ func TestMoveTablesTrafficSwitching(t *testing.T) {
require.Equal(t, to, tt)
}
}
- // Confirm that we have the expected denied tables entires.
+ // Confirm that we have the expected denied tables entries.
for _, keyspace := range []*testKeyspace{tc.sourceKeyspace, tc.targetKeyspace} {
for _, shardName := range keyspace.ShardNames {
si, err := env.ts.GetShard(ctx, keyspace.KeyspaceName, shardName)
diff --git a/go/vt/vtctl/workflow/stream_migrator.go b/go/vt/vtctl/workflow/stream_migrator.go
index b294ba1fcd0..a700a1338dd 100644
--- a/go/vt/vtctl/workflow/stream_migrator.go
+++ b/go/vt/vtctl/workflow/stream_migrator.go
@@ -1001,7 +1001,7 @@ func (sm *StreamMigrator) createTargetStreams(ctx context.Context, tmpl []*VRepl
}
ig.AddRow(vrs.Workflow, vrs.BinlogSource, replication.EncodePosition(vrs.Position), "", "",
- vrs.WorkflowType, vrs.WorkflowSubType, vrs.DeferSecondaryKeys)
+ vrs.WorkflowType, vrs.WorkflowSubType, vrs.DeferSecondaryKeys, "")
return nil
}
diff --git a/go/vt/vtctl/workflow/traffic_switcher.go b/go/vt/vtctl/workflow/traffic_switcher.go
index 3ac6861dce5..0dab2e159c2 100644
--- a/go/vt/vtctl/workflow/traffic_switcher.go
+++ b/go/vt/vtctl/workflow/traffic_switcher.go
@@ -35,6 +35,7 @@ import (
"vitess.io/vitess/go/vt/binlog/binlogplayer"
"vitess.io/vitess/go/vt/concurrency"
"vitess.io/vitess/go/vt/key"
+ "vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/logutil"
"vitess.io/vitess/go/vt/sqlparser"
"vitess.io/vitess/go/vt/topo"
@@ -224,7 +225,10 @@ type trafficSwitcher struct {
isPartialMigration bool
workflow string
- // if frozen is true, the rest of the fields are not set.
+ // Should we continue if we encounter some potentially non-fatal errors such
+ // as partial tablet refreshes?
+ force bool
+ // If frozen is true, the rest of the fields are not set.
frozen bool
reverseWorkflow string
id int64
@@ -472,7 +476,17 @@ func (ts *trafficSwitcher) dropSourceDeniedTables(ctx context.Context) error {
}
rtbsCtx, cancel := context.WithTimeout(ctx, shardTabletRefreshTimeout)
defer cancel()
- _, _, err := topotools.RefreshTabletsByShard(rtbsCtx, ts.TopoServer(), ts.TabletManagerClient(), source.GetShard(), nil, ts.Logger())
+ isPartial, partialDetails, err := topotools.RefreshTabletsByShard(rtbsCtx, ts.TopoServer(), ts.TabletManagerClient(), source.GetShard(), nil, ts.Logger())
+ if isPartial {
+ msg := fmt.Sprintf("failed to successfully refresh all tablets in the %s/%s source shard (%v):\n %v",
+ source.GetShard().Keyspace(), source.GetShard().ShardName(), err, partialDetails)
+ if ts.force {
+ log.Warning(msg)
+ return nil
+ } else {
+ return errors.New(msg)
+ }
+ }
return err
})
}
@@ -486,7 +500,17 @@ func (ts *trafficSwitcher) dropTargetDeniedTables(ctx context.Context) error {
}
rtbsCtx, cancel := context.WithTimeout(ctx, shardTabletRefreshTimeout)
defer cancel()
- _, _, err := topotools.RefreshTabletsByShard(rtbsCtx, ts.TopoServer(), ts.TabletManagerClient(), target.GetShard(), nil, ts.Logger())
+ isPartial, partialDetails, err := topotools.RefreshTabletsByShard(rtbsCtx, ts.TopoServer(), ts.TabletManagerClient(), target.GetShard(), nil, ts.Logger())
+ if isPartial {
+ msg := fmt.Sprintf("failed to successfully refresh all tablets in the %s/%s target shard (%v):\n %v",
+ target.GetShard().Keyspace(), target.GetShard().ShardName(), err, partialDetails)
+ if ts.force {
+ log.Warning(msg)
+ return nil
+ } else {
+ return errors.New(msg)
+ }
+ }
return err
})
}
@@ -706,7 +730,7 @@ func (ts *trafficSwitcher) changeShardsAccess(ctx context.Context, keyspace stri
if err := ts.TopoServer().UpdateDisableQueryService(ctx, keyspace, shards, topodatapb.TabletType_PRIMARY, nil, access == disallowWrites /* disable */); err != nil {
return err
}
- return ts.ws.refreshPrimaryTablets(ctx, shards)
+ return ts.ws.refreshPrimaryTablets(ctx, shards, ts.force)
}
func (ts *trafficSwitcher) allowTargetWrites(ctx context.Context) error {
@@ -1040,8 +1064,14 @@ func (ts *trafficSwitcher) switchDeniedTables(ctx context.Context) error {
defer cancel()
isPartial, partialDetails, err := topotools.RefreshTabletsByShard(rtbsCtx, ts.TopoServer(), ts.TabletManagerClient(), source.GetShard(), nil, ts.Logger())
if isPartial {
- err = fmt.Errorf("failed to successfully refresh all tablets in the %s/%s source shard (%v):\n %v",
+ msg := fmt.Sprintf("failed to successfully refresh all tablets in the %s/%s source shard (%v):\n %v",
source.GetShard().Keyspace(), source.GetShard().ShardName(), err, partialDetails)
+ if ts.force {
+ log.Warning(msg)
+ return nil
+ } else {
+ return errors.New(msg)
+ }
}
return err
})
@@ -1057,8 +1087,14 @@ func (ts *trafficSwitcher) switchDeniedTables(ctx context.Context) error {
defer cancel()
isPartial, partialDetails, err := topotools.RefreshTabletsByShard(rtbsCtx, ts.TopoServer(), ts.TabletManagerClient(), target.GetShard(), nil, ts.Logger())
if isPartial {
- err = fmt.Errorf("failed to successfully refresh all tablets in the %s/%s target shard (%v):\n %v",
+ msg := fmt.Sprintf("failed to successfully refresh all tablets in the %s/%s target shard (%v):\n %v",
target.GetShard().Keyspace(), target.GetShard().ShardName(), err, partialDetails)
+ if ts.force {
+ log.Warning(msg)
+ return nil
+ } else {
+ return errors.New(msg)
+ }
}
return err
})
@@ -1204,7 +1240,7 @@ func (ts *trafficSwitcher) dropTargetShards(ctx context.Context) error {
func (ts *trafficSwitcher) validate(ctx context.Context) error {
if ts.MigrationType() == binlogdatapb.MigrationType_TABLES {
if ts.isPartialMigration ||
- (ts.IsMultiTenantMigration() && len(ts.options.GetShards()) > 0) {
+ (ts.IsMultiTenantMigration() && ts.options != nil && len(ts.options.GetShards()) > 0) {
return nil
}
sourceTopo := ts.ws.ts
diff --git a/go/vt/vtctl/workflow/traffic_switcher_test.go b/go/vt/vtctl/workflow/traffic_switcher_test.go
index dfe394b2608..6f05a787f53 100644
--- a/go/vt/vtctl/workflow/traffic_switcher_test.go
+++ b/go/vt/vtctl/workflow/traffic_switcher_test.go
@@ -28,10 +28,11 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
- tabletmanagerdatapb "vitess.io/vitess/go/vt/proto/tabletmanagerdata"
"vitess.io/vitess/go/vt/proto/vschema"
"vitess.io/vitess/go/vt/topo"
"vitess.io/vitess/go/vt/vtgate/vindexes"
+
+ tabletmanagerdatapb "vitess.io/vitess/go/vt/proto/tabletmanagerdata"
)
type testTrafficSwitcher struct {
diff --git a/go/vt/vtctl/workflow/utils.go b/go/vt/vtctl/workflow/utils.go
index 56d093d6d25..2337fdbc747 100644
--- a/go/vt/vtctl/workflow/utils.go
+++ b/go/vt/vtctl/workflow/utils.go
@@ -960,6 +960,18 @@ func IsTableDidNotExistError(err error) bool {
return false
}
+func getOptionsJSON(workflowOptions *vtctldatapb.WorkflowOptions) (string, error) {
+ defaultJSON := "{}"
+ if workflowOptions == nil {
+ return defaultJSON, nil
+ }
+ optionsJSON, err := json.Marshal(workflowOptions)
+ if err != nil || optionsJSON == nil {
+ return defaultJSON, err
+ }
+ return string(optionsJSON), nil
+}
+
// defaultErrorHandler provides a way to consistently handle errors by logging and
// returning them.
func defaultErrorHandler(logger logutil.Logger, message string, err error) (*[]string, error) {
diff --git a/go/vt/vtgate/engine/fake_vcursor_test.go b/go/vt/vtgate/engine/fake_vcursor_test.go
index e7b38658d68..f0b11b7a3ac 100644
--- a/go/vt/vtgate/engine/fake_vcursor_test.go
+++ b/go/vt/vtgate/engine/fake_vcursor_test.go
@@ -132,6 +132,10 @@ func (t *noopVCursor) UnresolvedTransactions(ctx context.Context, keyspace strin
panic("implement me")
}
+func (t *noopVCursor) StartPrimitiveTrace() func() Stats {
+ panic("implement me")
+}
+
func (t *noopVCursor) SetExec(ctx context.Context, name string, value string) error {
panic("implement me")
}
diff --git a/go/vt/vtgate/engine/mirror.go b/go/vt/vtgate/engine/mirror.go
index bfab4cee91d..89e70ebd695 100644
--- a/go/vt/vtgate/engine/mirror.go
+++ b/go/vt/vtgate/engine/mirror.go
@@ -46,7 +46,7 @@ var _ Primitive = (*percentBasedMirror)(nil)
// NewPercentBasedMirror creates a Mirror.
func NewPercentBasedMirror(percentage float32, primitive Primitive, target Primitive) Primitive {
- return &percentBasedMirror{percentage, primitive, target}
+ return &percentBasedMirror{percent: percentage, primitive: primitive, target: target}
}
func (m *percentBasedMirror) RouteType() string {
diff --git a/go/vt/vtgate/engine/plan.go b/go/vt/vtgate/engine/plan.go
index 769c69aaa06..9ea9f07655c 100644
--- a/go/vt/vtgate/engine/plan.go
+++ b/go/vt/vtgate/engine/plan.go
@@ -72,7 +72,7 @@ func (p *Plan) Stats() (execCount uint64, execTime time.Duration, shardQueries,
func (p *Plan) MarshalJSON() ([]byte, error) {
var instructions *PrimitiveDescription
if p.Instructions != nil {
- description := PrimitiveToPlanDescription(p.Instructions)
+ description := PrimitiveToPlanDescription(p.Instructions, nil)
instructions = &description
}
diff --git a/go/vt/vtgate/engine/plan_description.go b/go/vt/vtgate/engine/plan_description.go
index a8daa25ecd0..dfcad4e5e6b 100644
--- a/go/vt/vtgate/engine/plan_description.go
+++ b/go/vt/vtgate/engine/plan_description.go
@@ -47,6 +47,9 @@ type PrimitiveDescription struct {
InputName string
Inputs []PrimitiveDescription
+
+ RowsReceived RowsReceived
+ ShardsQueried *ShardsQueried
}
// MarshalJSON serializes the PlanDescription into a JSON representation.
@@ -90,6 +93,23 @@ func (pd PrimitiveDescription) MarshalJSON() ([]byte, error) {
return nil, err
}
}
+ if len(pd.RowsReceived) > 0 {
+ if err := marshalAdd(prepend, buf, "NoOfCalls", len(pd.RowsReceived)); err != nil {
+ return nil, err
+ }
+
+ if err := marshalAdd(prepend, buf, "AvgNumberOfRows", average(pd.RowsReceived)); err != nil {
+ return nil, err
+ }
+ if err := marshalAdd(prepend, buf, "MedianNumberOfRows", median(pd.RowsReceived)); err != nil {
+ return nil, err
+ }
+ }
+ if pd.ShardsQueried != nil {
+ if err := marshalAdd(prepend, buf, "ShardsQueried", pd.ShardsQueried); err != nil {
+ return nil, err
+ }
+ }
err := addMap(pd.Other, buf)
if err != nil {
return nil, err
@@ -106,6 +126,28 @@ func (pd PrimitiveDescription) MarshalJSON() ([]byte, error) {
return buf.Bytes(), nil
}
+func average(nums []int) float64 {
+ total := 0
+ for _, num := range nums {
+ total += num
+ }
+ return float64(total) / float64(len(nums))
+}
+
+func median(nums []int) float64 {
+ sortedNums := make([]int, len(nums))
+ copy(sortedNums, nums)
+ sort.Ints(sortedNums)
+
+ n := len(sortedNums)
+ if n%2 == 0 {
+ mid1 := sortedNums[n/2-1]
+ mid2 := sortedNums[n/2]
+ return float64(mid1+mid2) / 2.0
+ }
+ return float64(sortedNums[n/2])
+}
+
func (pd PrimitiveDescription) addToGraph(g *graphviz.Graph) (*graphviz.Node, error) {
var nodes []*graphviz.Node
for _, input := range pd.Inputs {
@@ -146,7 +188,7 @@ func (pd PrimitiveDescription) addToGraph(g *graphviz.Graph) (*graphviz.Node, er
func GraphViz(p Primitive) (*graphviz.Graph, error) {
g := graphviz.New()
- description := PrimitiveToPlanDescription(p)
+ description := PrimitiveToPlanDescription(p, nil)
_, err := description.addToGraph(g)
if err != nil {
return nil, err
@@ -182,12 +224,22 @@ func marshalAdd(prepend string, buf *bytes.Buffer, name string, obj any) error {
}
// PrimitiveToPlanDescription transforms a primitive tree into a corresponding PlanDescription tree
-func PrimitiveToPlanDescription(in Primitive) PrimitiveDescription {
+// If stats is not nil, it will be used to populate the stats field of the PlanDescription
+func PrimitiveToPlanDescription(in Primitive, stats *Stats) PrimitiveDescription {
this := in.description()
+ if stats != nil {
+ this.RowsReceived = stats.InterOpStats[in]
+
+ // Only applies to Route primitive
+ v, ok := stats.ShardsStats[in]
+ if ok {
+ this.ShardsQueried = &v
+ }
+ }
inputs, infos := in.Inputs()
for idx, input := range inputs {
- pd := PrimitiveToPlanDescription(input)
+ pd := PrimitiveToPlanDescription(input, stats)
if infos != nil {
for k, v := range infos[idx] {
if k == inputName {
diff --git a/go/vt/vtgate/engine/plan_description_test.go b/go/vt/vtgate/engine/plan_description_test.go
index dfed7d7f675..9f20e37976a 100644
--- a/go/vt/vtgate/engine/plan_description_test.go
+++ b/go/vt/vtgate/engine/plan_description_test.go
@@ -31,7 +31,7 @@ import (
func TestCreateRoutePlanDescription(t *testing.T) {
route := createRoute()
- planDescription := PrimitiveToPlanDescription(route)
+ planDescription := PrimitiveToPlanDescription(route, nil)
expected := PrimitiveDescription{
OperatorType: "Route",
@@ -76,7 +76,7 @@ func TestPlanDescriptionWithInputs(t *testing.T) {
Input: route,
}
- planDescription := PrimitiveToPlanDescription(limit)
+ planDescription := PrimitiveToPlanDescription(limit, nil)
expected := PrimitiveDescription{
OperatorType: "Limit",
diff --git a/go/vt/vtgate/engine/primitive.go b/go/vt/vtgate/engine/primitive.go
index b7aee52372f..76d0a28e516 100644
--- a/go/vt/vtgate/engine/primitive.go
+++ b/go/vt/vtgate/engine/primitive.go
@@ -140,6 +140,10 @@ type (
// UnresolvedTransactions reads the state of all the unresolved atomic transactions in the given keyspace.
UnresolvedTransactions(ctx context.Context, keyspace string) ([]*querypb.TransactionMetadata, error)
+
+ // StartPrimitiveTrace starts a trace for the given primitive,
+ // and returns a function to get the trace logs after the primitive execution.
+ StartPrimitiveTrace() func() Stats
}
// SessionActions gives primitives ability to interact with the session state
diff --git a/go/vt/vtgate/engine/vexplain.go b/go/vt/vtgate/engine/vexplain.go
index 010901021fa..78941e8160f 100644
--- a/go/vt/vtgate/engine/vexplain.go
+++ b/go/vt/vtgate/engine/vexplain.go
@@ -21,6 +21,7 @@ import (
"encoding/json"
"fmt"
+ "vitess.io/vitess/go/mysql/collations"
"vitess.io/vitess/go/sqltypes"
querypb "vitess.io/vitess/go/vt/proto/query"
vtrpcpb "vitess.io/vitess/go/vt/proto/vtrpc"
@@ -42,6 +43,14 @@ type (
Input Primitive
Type sqlparser.VExplainType
}
+
+ ShardsQueried int
+ RowsReceived []int
+
+ Stats struct {
+ InterOpStats map[Primitive]RowsReceived
+ ShardsStats map[Primitive]ShardsQueried
+ }
)
var _ Primitive = (*VExplain)(nil)
@@ -62,8 +71,43 @@ func (v *VExplain) GetTableName() string {
}
// GetFields implements the Primitive interface
-func (v *VExplain) GetFields(ctx context.Context, vcursor VCursor, bindVars map[string]*querypb.BindVariable) (*sqltypes.Result, error) {
- return v.Input.GetFields(ctx, vcursor, bindVars)
+func (v *VExplain) GetFields(context.Context, VCursor, map[string]*querypb.BindVariable) (*sqltypes.Result, error) {
+ var fields []*querypb.Field
+ switch v.Type {
+ case sqlparser.QueriesVExplainType:
+ fields = getVExplainQueriesFields()
+ case sqlparser.AllVExplainType:
+ fields = getVExplainAllFields()
+ case sqlparser.TraceVExplainType:
+ fields = getVExplainTraceFields()
+ default:
+ return nil, vterrors.Errorf(vtrpcpb.Code_INTERNAL, "Unknown type of VExplain plan")
+ }
+ return &sqltypes.Result{Fields: fields}, nil
+}
+
+func getVExplainTraceFields() []*querypb.Field {
+ return []*querypb.Field{{
+ Name: "Trace",
+ Type: sqltypes.VarChar,
+ Charset: uint32(collations.SystemCollation.Collation),
+ Flags: uint32(querypb.MySqlFlag_NOT_NULL_FLAG),
+ }}
+}
+
+func getVExplainQueriesFields() []*querypb.Field {
+ return []*querypb.Field{
+ {Name: "#", Type: sqltypes.Int32},
+ {Name: "keyspace", Type: sqltypes.VarChar},
+ {Name: "shard", Type: sqltypes.VarChar},
+ {Name: "query", Type: sqltypes.VarChar}}
+
+}
+
+func getVExplainAllFields() []*querypb.Field {
+ return []*querypb.Field{{
+ Name: "VExplain", Type: sqltypes.VarChar,
+ }}
}
// NeedsTransaction implements the Primitive interface
@@ -73,42 +117,75 @@ func (v *VExplain) NeedsTransaction() bool {
// TryExecute implements the Primitive interface
func (v *VExplain) TryExecute(ctx context.Context, vcursor VCursor, bindVars map[string]*querypb.BindVariable, wantfields bool) (*sqltypes.Result, error) {
- vcursor.Session().VExplainLogging()
+ var stats func() Stats
+ if v.Type == sqlparser.TraceVExplainType {
+ stats = vcursor.StartPrimitiveTrace()
+ } else {
+ vcursor.Session().VExplainLogging()
+ }
_, err := vcursor.ExecutePrimitive(ctx, v.Input, bindVars, wantfields)
if err != nil {
return nil, err
}
- return v.convertToResult(ctx, vcursor)
+ return v.convertToResult(ctx, vcursor, stats)
+}
+
+func noOpCallback(*sqltypes.Result) error {
+ return nil
}
// TryStreamExecute implements the Primitive interface
func (v *VExplain) TryStreamExecute(ctx context.Context, vcursor VCursor, bindVars map[string]*querypb.BindVariable, wantfields bool, callback func(*sqltypes.Result) error) error {
- vcursor.Session().VExplainLogging()
- err := vcursor.StreamExecutePrimitive(ctx, v.Input, bindVars, wantfields, func(result *sqltypes.Result) error {
- return nil
- })
+ var stats func() Stats
+ if v.Type == sqlparser.TraceVExplainType {
+ stats = vcursor.StartPrimitiveTrace()
+ } else {
+ vcursor.Session().VExplainLogging()
+ }
+
+ err := vcursor.StreamExecutePrimitive(ctx, v.Input, bindVars, wantfields, noOpCallback)
if err != nil {
return err
}
- result, err := v.convertToResult(ctx, vcursor)
+ result, err := v.convertToResult(ctx, vcursor, stats)
if err != nil {
return err
}
return callback(result)
}
-func (v *VExplain) convertToResult(ctx context.Context, vcursor VCursor) (*sqltypes.Result, error) {
+func (v *VExplain) convertToResult(ctx context.Context, vcursor VCursor, stats func() Stats) (*sqltypes.Result, error) {
switch v.Type {
case sqlparser.QueriesVExplainType:
result := convertToVExplainQueriesResult(vcursor.Session().GetVExplainLogs())
return result, nil
case sqlparser.AllVExplainType:
return v.convertToVExplainAllResult(ctx, vcursor)
+ case sqlparser.TraceVExplainType:
+ return v.getExplainTraceOutput(stats)
+
default:
return nil, vterrors.Errorf(vtrpcpb.Code_INTERNAL, "Unknown type of VExplain plan")
}
}
+func (v *VExplain) getExplainTraceOutput(getOpStats func() Stats) (*sqltypes.Result, error) {
+ stats := getOpStats()
+ description := PrimitiveToPlanDescription(v.Input, &stats)
+
+ output, err := json.MarshalIndent(description, "", "\t")
+ if err != nil {
+ return nil, err
+ }
+
+ return &sqltypes.Result{
+ Fields: getVExplainTraceFields(),
+ Rows: []sqltypes.Row{{
+ sqltypes.NewVarChar(string(output)),
+ }},
+ }, nil
+}
+
func (v *VExplain) convertToVExplainAllResult(ctx context.Context, vcursor VCursor) (*sqltypes.Result, error) {
logEntries := vcursor.Session().GetVExplainLogs()
explainResults := make(map[Primitive]string)
@@ -144,18 +221,14 @@ func (v *VExplain) convertToVExplainAllResult(ctx context.Context, vcursor VCurs
}
result := string(resultBytes)
- fields := []*querypb.Field{
- {
- Name: "VExplain", Type: sqltypes.VarChar,
- },
- }
+
rows := []sqltypes.Row{
{
sqltypes.NewVarChar(result),
},
}
qr := &sqltypes.Result{
- Fields: fields,
+ Fields: getVExplainAllFields(),
Rows: rows,
}
return qr, nil
@@ -193,17 +266,8 @@ func primitiveToPlanDescriptionWithSQLResults(in Primitive, res map[Primitive]st
}
func convertToVExplainQueriesResult(logs []ExecuteEntry) *sqltypes.Result {
- fields := []*querypb.Field{{
- Name: "#", Type: sqltypes.Int32,
- }, {
- Name: "keyspace", Type: sqltypes.VarChar,
- }, {
- Name: "shard", Type: sqltypes.VarChar,
- }, {
- Name: "query", Type: sqltypes.VarChar,
- }}
qr := &sqltypes.Result{
- Fields: fields,
+ Fields: getVExplainQueriesFields(),
}
for _, line := range logs {
qr.Rows = append(qr.Rows, sqltypes.Row{
diff --git a/go/vt/vtgate/executor_vexplain_test.go b/go/vt/vtgate/executor_vexplain_test.go
new file mode 100644
index 00000000000..9a0668be3cb
--- /dev/null
+++ b/go/vt/vtgate/executor_vexplain_test.go
@@ -0,0 +1,111 @@
+/*
+Copyright 2024 The Vitess Authors.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+package vtgate
+
+import (
+ "testing"
+
+ "github.com/stretchr/testify/require"
+
+ "vitess.io/vitess/go/sqltypes"
+ "vitess.io/vitess/go/test/utils"
+ "vitess.io/vitess/go/vt/discovery"
+ querypb "vitess.io/vitess/go/vt/proto/query"
+ topodatapb "vitess.io/vitess/go/vt/proto/topodata"
+ vtgatepb "vitess.io/vitess/go/vt/proto/vtgate"
+ "vitess.io/vitess/go/vt/vttablet/sandboxconn"
+)
+
+func TestSimpleVexplainTrace(t *testing.T) {
+ ctx := utils.LeakCheckContext(t)
+
+ cell := "aa"
+ hc := discovery.NewFakeHealthCheck(nil)
+ u := createSandbox(KsTestUnsharded)
+ s := createSandbox(KsTestSharded)
+ s.VSchema = executorVSchema
+ u.VSchema = unshardedVSchema
+ serv := newSandboxForCells(ctx, []string{cell})
+ resolver := newTestResolver(ctx, hc, serv, cell)
+ shards := []string{"-20", "20-40", "40-60", "60-80", "80-a0", "a0-c0", "c0-e0", "e0-"}
+ var conns []*sandboxconn.SandboxConn
+ for i, shard := range shards {
+ sbc := hc.AddTestTablet(cell, shard, 1, "TestExecutor", shard, topodatapb.TabletType_PRIMARY, true, 1, nil)
+ sbc.SetResults([]*sqltypes.Result{{
+ Fields: []*querypb.Field{
+ {Name: "col1", Type: sqltypes.Int32},
+ {Name: "col2", Type: sqltypes.Int32},
+ {Name: "weight_string(col2)"},
+ },
+ InsertID: 0,
+ Rows: [][]sqltypes.Value{
+ {sqltypes.NewInt32(1), sqltypes.NewInt32(int32(i % 4)), sqltypes.NULL},
+ {sqltypes.NewInt32(2), sqltypes.NewInt32(int32(i % 4)), sqltypes.NULL},
+ },
+ }})
+ conns = append(conns, sbc)
+ }
+ executor := createExecutor(ctx, serv, cell, resolver)
+ defer executor.Close()
+
+ query := "vexplain trace select count(*), col2 from music group by col2"
+ session := &vtgatepb.Session{
+ TargetString: "@primary",
+ }
+ gotResult, err := executorExec(ctx, executor, session, query, nil)
+ require.NoError(t, err)
+
+ wantQueries := []*querypb.BoundQuery{{
+ Sql: "select count(*), col2, weight_string(col2) from music group by col2, weight_string(col2) order by col2 asc",
+ BindVariables: map[string]*querypb.BindVariable{},
+ }}
+ for _, conn := range conns {
+ utils.MustMatch(t, wantQueries, conn.Queries)
+ }
+
+ expectedRowString := `{
+ "OperatorType": "Aggregate",
+ "Variant": "Ordered",
+ "NoOfCalls": 1,
+ "AvgNumberOfRows": 4,
+ "MedianNumberOfRows": 4,
+ "Aggregates": "sum_count_star(0) AS count(*)",
+ "GroupBy": "(1|2)",
+ "ResultColumns": 2,
+ "Inputs": [
+ {
+ "OperatorType": "Route",
+ "Variant": "Scatter",
+ "Keyspace": {
+ "Name": "TestExecutor",
+ "Sharded": true
+ },
+ "NoOfCalls": 1,
+ "AvgNumberOfRows": 16,
+ "MedianNumberOfRows": 16,
+ "ShardsQueried": 8,
+ "FieldQuery": "select count(*), col2, weight_string(col2) from music where 1 != 1 group by col2, weight_string(col2)",
+ "OrderBy": "(1|2) ASC",
+ "Query": "select count(*), col2, weight_string(col2) from music group by col2, weight_string(col2) order by col2 asc",
+ "Table": "music"
+ }
+ ]
+}`
+
+ gotRowString := gotResult.Rows[0][0].ToString()
+ require.Equal(t, expectedRowString, gotRowString)
+}
diff --git a/go/vt/vtgate/planbuilder/operators/delete.go b/go/vt/vtgate/planbuilder/operators/delete.go
index e4f1fc0e7ae..4d30d9b9cc1 100644
--- a/go/vt/vtgate/planbuilder/operators/delete.go
+++ b/go/vt/vtgate/planbuilder/operators/delete.go
@@ -52,8 +52,8 @@ func (d *Delete) GetOrdering(*plancontext.PlanningContext) []OrderBy {
return nil
}
-func (d *Delete) TablesUsed() []string {
- return SingleQualifiedIdentifier(d.Target.VTable.Keyspace, d.Target.VTable.Name)
+func (d *Delete) TablesUsed(in []string) []string {
+ return append(in, QualifiedString(d.Target.VTable.Keyspace, d.Target.VTable.Name.String()))
}
func (d *Delete) ShortDescription() string {
diff --git a/go/vt/vtgate/planbuilder/operators/helpers.go b/go/vt/vtgate/planbuilder/operators/helpers.go
index 31d9bcfd279..36b10c96ae1 100644
--- a/go/vt/vtgate/planbuilder/operators/helpers.go
+++ b/go/vt/vtgate/planbuilder/operators/helpers.go
@@ -18,6 +18,7 @@ package operators
import (
"fmt"
+ "slices"
"sort"
"vitess.io/vitess/go/vt/sqlparser"
@@ -82,20 +83,21 @@ func TableID(op Operator) (result semantics.TableSet) {
// TableUser is used to signal that this operator directly interacts with one or more tables
type TableUser interface {
- TablesUsed() []string
+ TablesUsed([]string) []string
}
func TablesUsed(op Operator) []string {
- addString, collect := collectSortedUniqueStrings()
+ var in []string
_ = Visit(op, func(this Operator) error {
if tbl, ok := this.(TableUser); ok {
- for _, u := range tbl.TablesUsed() {
- addString(u)
- }
+ in = tbl.TablesUsed(in)
}
return nil
})
- return collect()
+
+ slices.Sort(in)
+ compacted := slices.Compact(in)
+ return compacted
}
func CostOf(op Operator) (cost int) {
diff --git a/go/vt/vtgate/planbuilder/operators/insert.go b/go/vt/vtgate/planbuilder/operators/insert.go
index 3176bac50a2..4ce37901a77 100644
--- a/go/vt/vtgate/planbuilder/operators/insert.go
+++ b/go/vt/vtgate/planbuilder/operators/insert.go
@@ -96,8 +96,12 @@ func (i *Insert) Clone([]Operator) Operator {
}
}
-func (i *Insert) TablesUsed() []string {
- return SingleQualifiedIdentifier(i.VTable.Keyspace, i.VTable.Name)
+func (i *Insert) TablesUsed(in []string) []string {
+ return append(in, i.tableTarget())
+}
+
+func (i *Insert) tableTarget() string {
+ return QualifiedString(i.VTable.Keyspace, i.VTable.Name.String())
}
func (i *Insert) Statement() sqlparser.Statement {
@@ -423,7 +427,7 @@ func insertSelectPlan(
// When the table you are streaming data from and table you are inserting from are same.
// Then due to locking of the index range on the table we might not be able to insert into the table.
// Therefore, instead of streaming, this flag will ensure the records are first read and then inserted.
- insertTbl := insOp.TablesUsed()[0]
+ insertTbl := insOp.tableTarget()
selTables := TablesUsed(selOp)
for _, tbl := range selTables {
if insertTbl == tbl {
diff --git a/go/vt/vtgate/planbuilder/operators/route.go b/go/vt/vtgate/planbuilder/operators/route.go
index a8cf8582851..e398fb05607 100644
--- a/go/vt/vtgate/planbuilder/operators/route.go
+++ b/go/vt/vtgate/planbuilder/operators/route.go
@@ -717,14 +717,11 @@ func (r *Route) GetOrdering(ctx *plancontext.PlanningContext) []OrderBy {
// TablesUsed returns tables used by MergedWith routes, which are not included
// in Inputs() and thus not a part of the operator tree
-func (r *Route) TablesUsed() []string {
- addString, collect := collectSortedUniqueStrings()
+func (r *Route) TablesUsed(in []string) []string {
for _, mw := range r.MergedWith {
- for _, u := range TablesUsed(mw) {
- addString(u)
- }
+ in = append(in, TablesUsed(mw)...)
}
- return collect()
+ return in
}
func isSpecialOrderBy(o OrderBy) bool {
diff --git a/go/vt/vtgate/planbuilder/operators/table.go b/go/vt/vtgate/planbuilder/operators/table.go
index 6f221f2337a..4391380480c 100644
--- a/go/vt/vtgate/planbuilder/operators/table.go
+++ b/go/vt/vtgate/planbuilder/operators/table.go
@@ -107,11 +107,11 @@ func (to *Table) AddCol(col *sqlparser.ColName) {
to.Columns = append(to.Columns, col)
}
-func (to *Table) TablesUsed() []string {
+func (to *Table) TablesUsed(in []string) []string {
if sqlparser.SystemSchema(to.QTable.Table.Qualifier.String()) {
- return nil
+ return in
}
- return SingleQualifiedIdentifier(to.VTable.Keyspace, to.VTable.Name)
+ return append(in, QualifiedString(to.VTable.Keyspace, to.VTable.Name.String()))
}
func addColumn(ctx *plancontext.PlanningContext, op ColNameColumns, e sqlparser.Expr) int {
diff --git a/go/vt/vtgate/planbuilder/operators/update.go b/go/vt/vtgate/planbuilder/operators/update.go
index 9844b341670..dd0a86c2de2 100644
--- a/go/vt/vtgate/planbuilder/operators/update.go
+++ b/go/vt/vtgate/planbuilder/operators/update.go
@@ -86,8 +86,8 @@ func (u *Update) GetOrdering(*plancontext.PlanningContext) []OrderBy {
return nil
}
-func (u *Update) TablesUsed() []string {
- return SingleQualifiedIdentifier(u.Target.VTable.Keyspace, u.Target.VTable.Name)
+func (u *Update) TablesUsed(in []string) []string {
+ return append(in, QualifiedString(u.Target.VTable.Keyspace, u.Target.VTable.Name.String()))
}
func (u *Update) ShortDescription() string {
diff --git a/go/vt/vtgate/planbuilder/operators/vindex.go b/go/vt/vtgate/planbuilder/operators/vindex.go
index fbfbb6c0ccd..30f13701df6 100644
--- a/go/vt/vtgate/planbuilder/operators/vindex.go
+++ b/go/vt/vtgate/planbuilder/operators/vindex.go
@@ -164,8 +164,8 @@ func (v *Vindex) AddPredicate(ctx *plancontext.PlanningContext, expr sqlparser.E
// TablesUsed implements the Operator interface.
// It is not keyspace-qualified.
-func (v *Vindex) TablesUsed() []string {
- return []string{v.Table.Table.Name.String()}
+func (v *Vindex) TablesUsed(in []string) []string {
+ return append(in, v.Table.Table.Name.String())
}
func (v *Vindex) ShortDescription() string {
diff --git a/go/vt/vtgate/planbuilder/vexplain.go b/go/vt/vtgate/planbuilder/vexplain.go
index 21a35f02967..f31eeee1714 100644
--- a/go/vt/vtgate/planbuilder/vexplain.go
+++ b/go/vt/vtgate/planbuilder/vexplain.go
@@ -38,6 +38,8 @@ func buildVExplainPlan(ctx context.Context, vexplainStmt *sqlparser.VExplainStmt
return buildVExplainLoggingPlan(ctx, vexplainStmt, reservedVars, vschema, enableOnlineDDL, enableDirectDDL)
case sqlparser.PlanVExplainType:
return buildVExplainVtgatePlan(ctx, vexplainStmt.Statement, reservedVars, vschema, enableOnlineDDL, enableDirectDDL)
+ case sqlparser.TraceVExplainType:
+ return buildVExplainTracePlan(ctx, vexplainStmt.Statement, reservedVars, vschema, enableOnlineDDL, enableDirectDDL)
}
return nil, vterrors.Errorf(vtrpcpb.Code_INTERNAL, "[BUG] unexpected vtexplain type: %s", vexplainStmt.Type.ToString())
}
@@ -87,7 +89,7 @@ func buildVExplainVtgatePlan(ctx context.Context, explainStatement sqlparser.Sta
if err != nil {
return nil, err
}
- description := engine.PrimitiveToPlanDescription(innerInstruction.primitive)
+ description := engine.PrimitiveToPlanDescription(innerInstruction.primitive, nil)
output, err := json.MarshalIndent(description, "", "\t")
if err != nil {
return nil, err
@@ -166,3 +168,17 @@ func explainPlan(explain *sqlparser.ExplainStmt, reservedVars *sqlparser.Reserve
SingleShardOnly: true,
}, tables...), nil
}
+
+func buildVExplainTracePlan(ctx context.Context, explainStatement sqlparser.Statement, reservedVars *sqlparser.ReservedVars, vschema plancontext.VSchema, enableOnlineDDL, enableDirectDDL bool) (*planResult, error) {
+ innerInstruction, err := createInstructionFor(ctx, sqlparser.String(explainStatement), explainStatement, reservedVars, vschema, enableOnlineDDL, enableDirectDDL)
+ if err != nil {
+ return nil, err
+ }
+
+ // We'll set the trace engine as the root primitive
+ innerInstruction.primitive = &engine.VExplain{
+ Input: innerInstruction.primitive,
+ Type: sqlparser.TraceVExplainType,
+ }
+ return innerInstruction, nil
+}
diff --git a/go/vt/vtgate/vcursor_impl.go b/go/vt/vtgate/vcursor_impl.go
index a3c3f96b5a9..4f616f77fc8 100644
--- a/go/vt/vtgate/vcursor_impl.go
+++ b/go/vt/vtgate/vcursor_impl.go
@@ -65,73 +65,80 @@ var (
_ vindexes.VCursor = (*vcursorImpl)(nil)
)
-// vcursor_impl needs these facilities to be able to be able to execute queries for vindexes
-type iExecute interface {
- Execute(ctx context.Context, mysqlCtx vtgateservice.MySQLConnection, method string, session *SafeSession, s string, vars map[string]*querypb.BindVariable) (*sqltypes.Result, error)
- ExecuteMultiShard(ctx context.Context, primitive engine.Primitive, rss []*srvtopo.ResolvedShard, queries []*querypb.BoundQuery, session *SafeSession, autocommit bool, ignoreMaxMemoryRows bool, resultsObserver resultsObserver) (qr *sqltypes.Result, errs []error)
- StreamExecuteMulti(ctx context.Context, primitive engine.Primitive, query string, rss []*srvtopo.ResolvedShard, vars []map[string]*querypb.BindVariable, session *SafeSession, autocommit bool, callback func(reply *sqltypes.Result) error, observer resultsObserver) []error
- ExecuteLock(ctx context.Context, rs *srvtopo.ResolvedShard, query *querypb.BoundQuery, session *SafeSession, lockFuncType sqlparser.LockingFuncType) (*sqltypes.Result, error)
- Commit(ctx context.Context, safeSession *SafeSession) error
- ExecuteMessageStream(ctx context.Context, rss []*srvtopo.ResolvedShard, name string, callback func(*sqltypes.Result) error) error
- ExecuteVStream(ctx context.Context, rss []*srvtopo.ResolvedShard, filter *binlogdatapb.Filter, gtid string, callback func(evs []*binlogdatapb.VEvent) error) error
- ReleaseLock(ctx context.Context, session *SafeSession) error
-
- showVitessReplicationStatus(ctx context.Context, filter *sqlparser.ShowFilter) (*sqltypes.Result, error)
- showShards(ctx context.Context, filter *sqlparser.ShowFilter, destTabletType topodatapb.TabletType) (*sqltypes.Result, error)
- showTablets(filter *sqlparser.ShowFilter) (*sqltypes.Result, error)
- showVitessMetadata(ctx context.Context, filter *sqlparser.ShowFilter) (*sqltypes.Result, error)
- setVitessMetadata(ctx context.Context, name, value string) error
-
- // TODO: remove when resolver is gone
- ParseDestinationTarget(targetString string) (string, topodatapb.TabletType, key.Destination, error)
- VSchema() *vindexes.VSchema
- planPrepareStmt(ctx context.Context, vcursor *vcursorImpl, query string) (*engine.Plan, sqlparser.Statement, error)
-
- environment() *vtenv.Environment
- ReadTransaction(ctx context.Context, transactionID string) (*querypb.TransactionMetadata, error)
- UnresolvedTransactions(ctx context.Context, targets []*querypb.Target) ([]*querypb.TransactionMetadata, error)
-}
-
-// VSchemaOperator is an interface to Vschema Operations
-type VSchemaOperator interface {
- GetCurrentSrvVschema() *vschemapb.SrvVSchema
- UpdateVSchema(ctx context.Context, ksName string, vschema *vschemapb.SrvVSchema) error
-}
-
-// vcursorImpl implements the VCursor functionality used by dependent
-// packages to call back into VTGate.
-type vcursorImpl struct {
- safeSession *SafeSession
- keyspace string
- tabletType topodatapb.TabletType
- destination key.Destination
- marginComments sqlparser.MarginComments
- executor iExecute
- resolver *srvtopo.Resolver
- topoServer *topo.Server
- logStats *logstats.LogStats
- collation collations.ID
-
- // fkChecksState stores the state of foreign key checks variable.
- // This state is meant to be the final fk checks state after consulting the
- // session state, and the given query's comments for `SET_VAR` optimizer hints.
- // A nil value represents that no foreign_key_checks value was provided.
- fkChecksState *bool
- ignoreMaxMemoryRows bool
- vschema *vindexes.VSchema
- vm VSchemaOperator
- semTable *semantics.SemTable
- warnShardedOnly bool // when using sharded only features, a warning will be warnings field
- queryTimeout time.Duration
-
- warnings []*querypb.QueryWarning // any warnings that are accumulated during the planning phase are stored here
- pv plancontext.PlannerVersion
-
- warmingReadsPercent int
- warmingReadsChannel chan bool
-
- resultsObserver resultsObserver
-}
+type (
+ // vcursor_impl needs these facilities to be able to be able to execute queries for vindexes
+ iExecute interface {
+ Execute(ctx context.Context, mysqlCtx vtgateservice.MySQLConnection, method string, session *SafeSession, s string, vars map[string]*querypb.BindVariable) (*sqltypes.Result, error)
+ ExecuteMultiShard(ctx context.Context, primitive engine.Primitive, rss []*srvtopo.ResolvedShard, queries []*querypb.BoundQuery, session *SafeSession, autocommit bool, ignoreMaxMemoryRows bool, resultsObserver resultsObserver) (qr *sqltypes.Result, errs []error)
+ StreamExecuteMulti(ctx context.Context, primitive engine.Primitive, query string, rss []*srvtopo.ResolvedShard, vars []map[string]*querypb.BindVariable, session *SafeSession, autocommit bool, callback func(reply *sqltypes.Result) error, observer resultsObserver) []error
+ ExecuteLock(ctx context.Context, rs *srvtopo.ResolvedShard, query *querypb.BoundQuery, session *SafeSession, lockFuncType sqlparser.LockingFuncType) (*sqltypes.Result, error)
+ Commit(ctx context.Context, safeSession *SafeSession) error
+ ExecuteMessageStream(ctx context.Context, rss []*srvtopo.ResolvedShard, name string, callback func(*sqltypes.Result) error) error
+ ExecuteVStream(ctx context.Context, rss []*srvtopo.ResolvedShard, filter *binlogdatapb.Filter, gtid string, callback func(evs []*binlogdatapb.VEvent) error) error
+ ReleaseLock(ctx context.Context, session *SafeSession) error
+
+ showVitessReplicationStatus(ctx context.Context, filter *sqlparser.ShowFilter) (*sqltypes.Result, error)
+ showShards(ctx context.Context, filter *sqlparser.ShowFilter, destTabletType topodatapb.TabletType) (*sqltypes.Result, error)
+ showTablets(filter *sqlparser.ShowFilter) (*sqltypes.Result, error)
+ showVitessMetadata(ctx context.Context, filter *sqlparser.ShowFilter) (*sqltypes.Result, error)
+ setVitessMetadata(ctx context.Context, name, value string) error
+
+ // TODO: remove when resolver is gone
+ ParseDestinationTarget(targetString string) (string, topodatapb.TabletType, key.Destination, error)
+ VSchema() *vindexes.VSchema
+ planPrepareStmt(ctx context.Context, vcursor *vcursorImpl, query string) (*engine.Plan, sqlparser.Statement, error)
+
+ environment() *vtenv.Environment
+ ReadTransaction(ctx context.Context, transactionID string) (*querypb.TransactionMetadata, error)
+ UnresolvedTransactions(ctx context.Context, targets []*querypb.Target) ([]*querypb.TransactionMetadata, error)
+ }
+
+ // VSchemaOperator is an interface to Vschema Operations
+ VSchemaOperator interface {
+ GetCurrentSrvVschema() *vschemapb.SrvVSchema
+ UpdateVSchema(ctx context.Context, ksName string, vschema *vschemapb.SrvVSchema) error
+ }
+
+ // vcursorImpl implements the VCursor functionality used by dependent
+ // packages to call back into VTGate.
+ vcursorImpl struct {
+ safeSession *SafeSession
+ keyspace string
+ tabletType topodatapb.TabletType
+ destination key.Destination
+ marginComments sqlparser.MarginComments
+ executor iExecute
+ resolver *srvtopo.Resolver
+ topoServer *topo.Server
+ logStats *logstats.LogStats
+ collation collations.ID
+
+ // fkChecksState stores the state of foreign key checks variable.
+ // This state is meant to be the final fk checks state after consulting the
+ // session state, and the given query's comments for `SET_VAR` optimizer hints.
+ // A nil value represents that no foreign_key_checks value was provided.
+ fkChecksState *bool
+ ignoreMaxMemoryRows bool
+ vschema *vindexes.VSchema
+ vm VSchemaOperator
+ semTable *semantics.SemTable
+ warnShardedOnly bool // when using sharded only features, a warning will be warnings field
+ queryTimeout time.Duration
+
+ warnings []*querypb.QueryWarning // any warnings that are accumulated during the planning phase are stored here
+ pv plancontext.PlannerVersion
+
+ warmingReadsPercent int
+ warmingReadsChannel chan bool
+
+ resultsObserver resultsObserver
+
+ // this is a map of the number of rows that every primitive has returned
+ // if this field is nil, it means that we are not logging operator traffic
+ interOpStats map[engine.Primitive]engine.RowsReceived
+ shardsStats map[engine.Primitive]engine.ShardsQueried
+ }
+)
// newVcursorImpl creates a vcursorImpl. Before creating this object, you have to separate out any marginComments that came with
// the query and supply it here. Trailing comments are typically sent by the application for various reasons,
@@ -279,6 +286,17 @@ func (vc *vcursorImpl) UnresolvedTransactions(ctx context.Context, keyspace stri
return vc.executor.UnresolvedTransactions(ctx, targets)
}
+func (vc *vcursorImpl) StartPrimitiveTrace() func() engine.Stats {
+ vc.interOpStats = make(map[engine.Primitive]engine.RowsReceived)
+ vc.shardsStats = make(map[engine.Primitive]engine.ShardsQueried)
+ return func() engine.Stats {
+ return engine.Stats{
+ InterOpStats: vc.interOpStats,
+ ShardsStats: vc.shardsStats,
+ }
+ }
+}
+
// FindTable finds the specified table. If the keyspace what specified in the input, it gets used as qualifier.
// Otherwise, the keyspace from the request is used, if one was provided.
func (vc *vcursorImpl) FindTable(name sqlparser.TableName) (*vindexes.Table, string, topodatapb.TabletType, key.Destination, error) {
@@ -512,11 +530,30 @@ func (vc *vcursorImpl) ExecutePrimitive(ctx context.Context, primitive engine.Pr
if err != nil && vterrors.RootCause(err) == buffer.ShardMissingError {
continue
}
+ vc.logOpTraffic(primitive, res)
return res, err
}
return nil, vterrors.New(vtrpcpb.Code_UNAVAILABLE, "upstream shards are not available")
}
+func (vc *vcursorImpl) logOpTraffic(primitive engine.Primitive, res *sqltypes.Result) {
+ if vc.interOpStats != nil {
+ rows := vc.interOpStats[primitive]
+ if res == nil {
+ rows = append(rows, 0)
+ } else {
+ rows = append(rows, len(res.Rows))
+ }
+ vc.interOpStats[primitive] = rows
+ }
+}
+
+func (vc *vcursorImpl) logShardsQueried(primitive engine.Primitive, shardsNb int) {
+ if vc.shardsStats != nil {
+ vc.shardsStats[primitive] += engine.ShardsQueried(shardsNb)
+ }
+}
+
func (vc *vcursorImpl) ExecutePrimitiveStandalone(ctx context.Context, primitive engine.Primitive, bindVars map[string]*querypb.BindVariable, wantfields bool) (*sqltypes.Result, error) {
// clone the vcursorImpl with a new session.
newVC := vc.cloneWithAutocommitSession()
@@ -525,12 +562,26 @@ func (vc *vcursorImpl) ExecutePrimitiveStandalone(ctx context.Context, primitive
if err != nil && vterrors.RootCause(err) == buffer.ShardMissingError {
continue
}
+ vc.logOpTraffic(primitive, res)
return res, err
}
return nil, vterrors.New(vtrpcpb.Code_UNAVAILABLE, "upstream shards are not available")
}
+func (vc *vcursorImpl) wrapCallback(callback func(*sqltypes.Result) error, primitive engine.Primitive) func(*sqltypes.Result) error {
+ if vc.interOpStats == nil {
+ return callback
+ }
+
+ return func(result *sqltypes.Result) error {
+ vc.logOpTraffic(primitive, result)
+ return callback(result)
+ }
+}
+
func (vc *vcursorImpl) StreamExecutePrimitive(ctx context.Context, primitive engine.Primitive, bindVars map[string]*querypb.BindVariable, wantfields bool, callback func(*sqltypes.Result) error) error {
+ callback = vc.wrapCallback(callback, primitive)
+
for try := 0; try < MaxBufferingRetries; try++ {
err := primitive.TryStreamExecute(ctx, vc, bindVars, wantfields, callback)
if err != nil && vterrors.RootCause(err) == buffer.ShardMissingError {
@@ -542,6 +593,8 @@ func (vc *vcursorImpl) StreamExecutePrimitive(ctx context.Context, primitive eng
}
func (vc *vcursorImpl) StreamExecutePrimitiveStandalone(ctx context.Context, primitive engine.Primitive, bindVars map[string]*querypb.BindVariable, wantfields bool, callback func(result *sqltypes.Result) error) error {
+ callback = vc.wrapCallback(callback, primitive)
+
// clone the vcursorImpl with a new session.
newVC := vc.cloneWithAutocommitSession()
for try := 0; try < MaxBufferingRetries; try++ {
@@ -608,12 +661,14 @@ func (vc *vcursorImpl) ExecuteMultiShard(ctx context.Context, primitive engine.P
qr, errs := vc.executor.ExecuteMultiShard(ctx, primitive, rss, commentedShardQueries(queries, vc.marginComments), vc.safeSession, canAutocommit, vc.ignoreMaxMemoryRows, vc.resultsObserver)
vc.setRollbackOnPartialExecIfRequired(len(errs) != len(rss), rollbackOnError)
-
+ vc.logShardsQueried(primitive, len(rss))
return qr, errs
}
// StreamExecuteMulti is the streaming version of ExecuteMultiShard.
func (vc *vcursorImpl) StreamExecuteMulti(ctx context.Context, primitive engine.Primitive, query string, rss []*srvtopo.ResolvedShard, bindVars []map[string]*querypb.BindVariable, rollbackOnError bool, autocommit bool, callback func(reply *sqltypes.Result) error) []error {
+ callback = vc.wrapCallback(callback, primitive)
+
noOfShards := len(rss)
atomic.AddUint64(&vc.logStats.ShardQueries, uint64(noOfShards))
err := vc.markSavepoint(ctx, rollbackOnError && (noOfShards > 1), map[string]*querypb.BindVariable{})
@@ -645,6 +700,7 @@ func (vc *vcursorImpl) ExecuteStandalone(ctx context.Context, primitive engine.P
// The autocommit flag is always set to false because we currently don't
// execute DMLs through ExecuteStandalone.
qr, errs := vc.executor.ExecuteMultiShard(ctx, primitive, rss, bqs, NewAutocommitSession(vc.safeSession.Session), false /* autocommit */, vc.ignoreMaxMemoryRows, vc.resultsObserver)
+ vc.logShardsQueried(primitive, len(rss))
return qr, vterrors.Aggregate(errs)
}
diff --git a/go/vt/vtgate/vstream_manager.go b/go/vt/vtgate/vstream_manager.go
index 55a828a5a4b..beb556f21f5 100644
--- a/go/vt/vtgate/vstream_manager.go
+++ b/go/vt/vtgate/vstream_manager.go
@@ -103,6 +103,10 @@ type vstream struct {
// default behavior is to automatically migrate the resharded streams from the old to the new shards
stopOnReshard bool
+ // This flag is set by the client, default is false.
+ // If true then the reshard journal events are sent in the stream irrespective of the stopOnReshard flag.
+ includeReshardJournalEvents bool
+
// mutex used to synchronize access to skew detection parameters
skewMu sync.Mutex
// channel is created whenever there is a skew detected. closing it implies the current skew has been fixed
@@ -169,22 +173,23 @@ func (vsm *vstreamManager) VStream(ctx context.Context, tabletType topodatapb.Ta
return fmt.Errorf("unable to get topo server")
}
vs := &vstream{
- vgtid: vgtid,
- tabletType: tabletType,
- optCells: flags.Cells,
- filter: filter,
- send: send,
- resolver: vsm.resolver,
- journaler: make(map[int64]*journalEvent),
- minimizeSkew: flags.GetMinimizeSkew(),
- stopOnReshard: flags.GetStopOnReshard(),
- skewTimeoutSeconds: maxSkewTimeoutSeconds,
- timestamps: make(map[string]int64),
- vsm: vsm,
- eventCh: make(chan []*binlogdatapb.VEvent),
- heartbeatInterval: flags.GetHeartbeatInterval(),
- ts: ts,
- copyCompletedShard: make(map[string]struct{}),
+ vgtid: vgtid,
+ tabletType: tabletType,
+ optCells: flags.Cells,
+ filter: filter,
+ send: send,
+ resolver: vsm.resolver,
+ journaler: make(map[int64]*journalEvent),
+ minimizeSkew: flags.GetMinimizeSkew(),
+ stopOnReshard: flags.GetStopOnReshard(),
+ includeReshardJournalEvents: flags.GetIncludeReshardJournalEvents(),
+ skewTimeoutSeconds: maxSkewTimeoutSeconds,
+ timestamps: make(map[string]int64),
+ vsm: vsm,
+ eventCh: make(chan []*binlogdatapb.VEvent),
+ heartbeatInterval: flags.GetHeartbeatInterval(),
+ ts: ts,
+ copyCompletedShard: make(map[string]struct{}),
tabletPickerOptions: discovery.TabletPickerOptions{
CellPreference: flags.GetCellPreference(),
TabletOrder: flags.GetTabletOrder(),
@@ -677,8 +682,9 @@ func (vs *vstream) streamFromTablet(ctx context.Context, sgtid *binlogdatapb.Sha
case binlogdatapb.VEventType_JOURNAL:
journal := event.Journal
// Journal events are not sent to clients by default, but only when
- // StopOnReshard is set.
- if vs.stopOnReshard && journal.MigrationType == binlogdatapb.MigrationType_SHARDS {
+ // IncludeReshardJournalEvents or StopOnReshard is set.
+ if (vs.includeReshardJournalEvents || vs.stopOnReshard) &&
+ journal.MigrationType == binlogdatapb.MigrationType_SHARDS {
sendevents = append(sendevents, event)
// Read any subsequent events until we get the VGTID->COMMIT events that
// always follow the JOURNAL event which is generated as a result of
@@ -702,22 +708,28 @@ func (vs *vstream) streamFromTablet(ctx context.Context, sgtid *binlogdatapb.Sha
return err
}
if je != nil {
- // We're going to be ending the tablet stream, so we ensure a reasonable
- // minimum amount of time is alloted for clients to Recv the journal event
- // before the stream's context is cancelled (which would cause the grpc
- // SendMsg or RecvMsg to fail). If the client doesn't Recv the journal
- // event before the stream ends then they'll have to resume from the last
- // ShardGtid they received before the journal event.
- endTimer := time.NewTimer(stopOnReshardDelay)
- defer endTimer.Stop()
+ var endTimer *time.Timer
+ if vs.stopOnReshard {
+ // We're going to be ending the tablet stream, along with the VStream, so
+ // we ensure a reasonable minimum amount of time is alloted for clients
+ // to Recv the journal event before the VStream's context is cancelled
+ // (which would cause the grpc SendMsg or RecvMsg to fail). If the client
+ // doesn't Recv the journal event before the VStream ends then they'll
+ // have to resume from the last ShardGtid they received before the
+ // journal event.
+ endTimer = time.NewTimer(stopOnReshardDelay)
+ defer endTimer.Stop()
+ }
// Wait until all other participants converge and then return EOF after
- // the minimum delay has passed.
+ // any minimum delay has passed.
journalDone = je.done
select {
case <-ctx.Done():
return ctx.Err()
case <-journalDone:
- <-endTimer.C
+ if endTimer != nil {
+ <-endTimer.C
+ }
return io.EOF
}
}
@@ -726,7 +738,6 @@ func (vs *vstream) streamFromTablet(ctx context.Context, sgtid *binlogdatapb.Sha
}
lag := event.CurrentTime/1e9 - event.Timestamp
vs.vsm.vstreamsLag.Set(labels, lag)
-
}
if len(sendevents) != 0 {
eventss = append(eventss, sendevents)
diff --git a/go/vt/vttablet/common/config.go b/go/vt/vttablet/common/config.go
new file mode 100644
index 00000000000..72047ce4580
--- /dev/null
+++ b/go/vt/vttablet/common/config.go
@@ -0,0 +1,281 @@
+/*
+Copyright 2024 The Vitess Authors.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+package vttablet
+
+import (
+ "encoding/json"
+ "fmt"
+ "maps"
+ "strconv"
+ "strings"
+ "sync"
+ "time"
+)
+
+/*
+ This file contains the model for all the configuration parameters for VReplication workflows. It also provides methods to
+ initialize the default configuration and to override the default configuration with user-provided values. The overrides
+ are stored in the `config` sub-document of the `options` attribute in `_vt.vreplication` and merged with the defaults
+ when the workflow is initialized.
+*/
+
+// VReplicationConfig has the all the configuration parameters for VReplication workflows, both applicable on the
+// target (vreplication)and the source (vstreamer) side.
+type VReplicationConfig struct {
+ // Config parameters applicable to the target side (vreplication)
+ ExperimentalFlags int64
+ NetReadTimeout int
+ NetWriteTimeout int
+ CopyPhaseDuration time.Duration
+ RetryDelay time.Duration
+ MaxTimeToRetryError time.Duration
+ RelayLogMaxSize int
+ RelayLogMaxItems int
+ ReplicaLagTolerance time.Duration
+ HeartbeatUpdateInterval int
+ StoreCompressedGTID bool
+ ParallelInsertWorkers int
+ TabletTypesStr string
+
+ // Config parameters applicable to the source side (vstreamer)
+ // The coresponding Override fields are used to determine if the user has provided a value for the parameter so
+ // that they can be sent in the VStreamer API calls to the source.
+ VStreamPacketSize int
+ VStreamPacketSizeOverride bool
+ VStreamDynamicPacketSize bool
+ VStreamDynamicPacketSizeOverride bool
+ VStreamBinlogRotationThreshold int64
+ VStreamBinlogRotationThresholdOverride bool
+
+ // Overrides is a map of user-provided configuration values that override the default configuration.
+ Overrides map[string]string
+}
+
+var configMutex sync.Mutex
+
+// DefaultVReplicationConfig has the default values for VReplicationConfig initialized from the vttablet flags
+// when the workflow is initialized.
+var DefaultVReplicationConfig *VReplicationConfig
+
+// GetVReplicationConfigDefaults returns the default VReplicationConfig. If `useCached` is true, it returns the previously
+// loaded configuration. Otherwise it reloads the configuration from the vttablet flags. useCached is set to false
+// when the vttablet flags are updated in unit tests.
+func GetVReplicationConfigDefaults(useCached bool) *VReplicationConfig {
+ configMutex.Lock()
+ defer configMutex.Unlock()
+ if useCached && DefaultVReplicationConfig != nil {
+ return DefaultVReplicationConfig
+ }
+ DefaultVReplicationConfig = &VReplicationConfig{
+ ExperimentalFlags: vreplicationExperimentalFlags,
+ NetReadTimeout: vreplicationNetReadTimeout,
+ NetWriteTimeout: vreplicationNetWriteTimeout,
+ CopyPhaseDuration: vreplicationCopyPhaseDuration,
+ RetryDelay: vreplicationRetryDelay,
+ MaxTimeToRetryError: vreplicationMaxTimeToRetryError,
+ RelayLogMaxSize: vreplicationRelayLogMaxSize,
+ RelayLogMaxItems: vreplicationRelayLogMaxItems,
+ ReplicaLagTolerance: vreplicationReplicaLagTolerance,
+ HeartbeatUpdateInterval: vreplicationHeartbeatUpdateInterval,
+ StoreCompressedGTID: vreplicationStoreCompressedGTID,
+ ParallelInsertWorkers: vreplicationParallelInsertWorkers,
+ TabletTypesStr: vreplicationTabletTypesStr,
+
+ VStreamPacketSizeOverride: false,
+ VStreamPacketSize: VStreamerDefaultPacketSize,
+ VStreamDynamicPacketSizeOverride: false,
+ VStreamDynamicPacketSize: VStreamerUseDynamicPacketSize,
+ VStreamBinlogRotationThresholdOverride: false,
+ VStreamBinlogRotationThreshold: VStreamerBinlogRotationThreshold,
+
+ Overrides: make(map[string]string),
+ }
+ return DefaultVReplicationConfig
+}
+
+// InitVReplicationConfigDefaults initializes the default VReplicationConfig in an idempotent way.
+func InitVReplicationConfigDefaults() *VReplicationConfig {
+ return GetVReplicationConfigDefaults(true)
+}
+
+// GetDefaultVReplicationConfig returns a copy of the default VReplicationConfig.
+func GetDefaultVReplicationConfig() *VReplicationConfig {
+ c := &VReplicationConfig{}
+ defaultConfig := GetVReplicationConfigDefaults(true)
+ *c = *defaultConfig
+ return c
+}
+
+// NewVReplicationConfig creates a new VReplicationConfig by merging the default configuration with the user-provided
+// overrides. It returns an error if the user-provided values are invalid.
+func NewVReplicationConfig(overrides map[string]string) (*VReplicationConfig, error) {
+ c := GetDefaultVReplicationConfig()
+ c.Overrides = maps.Clone(overrides)
+ var errors []string
+ getError := func(k, v string) string {
+ return fmt.Sprintf("invalid value for %s: %s", k, v)
+ }
+ for k, v := range overrides {
+ if v == "" {
+ continue
+ }
+ switch k {
+ case "vreplication_experimental_flags":
+ value, err := strconv.ParseInt(v, 10, 64)
+ if err != nil {
+ errors = append(errors, getError(k, v))
+ } else {
+ c.ExperimentalFlags = value
+ }
+ case "vreplication_net_read_timeout":
+ value, err := strconv.ParseInt(v, 10, 64)
+ if err != nil {
+ errors = append(errors, getError(k, v))
+ } else {
+ c.NetReadTimeout = int(value)
+ }
+ case "vreplication_net_write_timeout":
+ value, err := strconv.ParseInt(v, 10, 64)
+ if err != nil {
+ errors = append(errors, getError(k, v))
+ } else {
+ c.NetWriteTimeout = int(value)
+ }
+ case "vreplication_copy_phase_duration":
+ value, err := time.ParseDuration(v)
+ if err != nil {
+ errors = append(errors, getError(k, v))
+ } else {
+ c.CopyPhaseDuration = value
+ }
+ case "vreplication_retry_delay":
+ value, err := time.ParseDuration(v)
+ if err != nil {
+ errors = append(errors, getError(k, v))
+ } else {
+ c.RetryDelay = value
+ }
+ case "vreplication_max_time_to_retry_on_error":
+ value, err := time.ParseDuration(v)
+ if err != nil {
+ errors = append(errors, getError(k, v))
+ } else {
+ c.MaxTimeToRetryError = value
+ }
+ case "relay_log_max_size":
+ value, err := strconv.ParseInt(v, 10, 64)
+ if err != nil {
+ errors = append(errors, getError(k, v))
+ } else {
+ c.RelayLogMaxSize = int(value)
+ }
+ case "relay_log_max_items":
+ value, err := strconv.ParseInt(v, 10, 64)
+ if err != nil {
+ errors = append(errors, getError(k, v))
+ } else {
+ c.RelayLogMaxItems = int(value)
+ }
+ case "vreplication_replica_lag_tolerance":
+ value, err := time.ParseDuration(v)
+ if err != nil {
+ errors = append(errors, getError(k, v))
+ } else {
+ c.ReplicaLagTolerance = value
+ }
+ case "vreplication_heartbeat_update_interval":
+ value, err := strconv.ParseInt(v, 10, 64)
+ if err != nil {
+ errors = append(errors, getError(k, v))
+ } else {
+ c.HeartbeatUpdateInterval = int(value)
+ }
+ case "vreplication_store_compressed_gtid":
+ value, err := strconv.ParseBool(v)
+ if err != nil {
+ errors = append(errors, getError(k, v))
+ } else {
+ c.StoreCompressedGTID = value
+ }
+ case "vreplication-parallel-insert-workers":
+ value, err := strconv.ParseInt(v, 10, 64)
+ if err != nil {
+ errors = append(errors, getError(k, v))
+ } else {
+ c.ParallelInsertWorkers = int(value)
+ }
+ case "vstream_packet_size":
+ value, err := strconv.ParseInt(v, 10, 64)
+ if err != nil {
+ errors = append(errors, getError(k, v))
+ } else {
+ c.VStreamPacketSizeOverride = true
+ c.VStreamPacketSize = int(value)
+ }
+ case "vstream_dynamic_packet_size":
+ value, err := strconv.ParseBool(v)
+ if err != nil {
+ errors = append(errors, getError(k, v))
+ } else {
+ c.VStreamDynamicPacketSizeOverride = true
+ c.VStreamDynamicPacketSize = value
+ }
+ case "vstream_binlog_rotation_threshold":
+ value, err := strconv.ParseInt(v, 10, 64)
+ if err != nil {
+ errors = append(errors, getError(k, v))
+ } else {
+ c.VStreamBinlogRotationThresholdOverride = true
+ c.VStreamBinlogRotationThreshold = value
+ }
+ default:
+ errors = append(errors, fmt.Sprintf("unknown vreplication config flag: %s", k))
+ }
+ }
+ if len(errors) > 0 {
+ return c, fmt.Errorf("%s", strings.Join(errors, ", "))
+ }
+ return c, nil
+}
+
+// Map returns a map of the VReplicationConfig: the keys are the flag names and the values are string representations.
+// Used in tests to compare the expected and actual configuration values and in validations to check if the user-provided
+// keys are one of those that are supported.
+func (c VReplicationConfig) Map() map[string]string {
+ return map[string]string{
+ "vreplication_experimental_flags": strconv.FormatInt(c.ExperimentalFlags, 10),
+ "vreplication_net_read_timeout": strconv.Itoa(c.NetReadTimeout),
+ "vreplication_net_write_timeout": strconv.Itoa(c.NetWriteTimeout),
+ "vreplication_copy_phase_duration": c.CopyPhaseDuration.String(),
+ "vreplication_retry_delay": c.RetryDelay.String(),
+ "vreplication_max_time_to_retry_on_error": c.MaxTimeToRetryError.String(),
+ "relay_log_max_size": strconv.Itoa(c.RelayLogMaxSize),
+ "relay_log_max_items": strconv.Itoa(c.RelayLogMaxItems),
+ "vreplication_replica_lag_tolerance": c.ReplicaLagTolerance.String(),
+ "vreplication_heartbeat_update_interval": strconv.Itoa(c.HeartbeatUpdateInterval),
+ "vreplication_store_compressed_gtid": strconv.FormatBool(c.StoreCompressedGTID),
+ "vreplication-parallel-insert-workers": strconv.Itoa(c.ParallelInsertWorkers),
+ "vstream_packet_size": strconv.Itoa(c.VStreamPacketSize),
+ "vstream_dynamic_packet_size": strconv.FormatBool(c.VStreamDynamicPacketSize),
+ "vstream_binlog_rotation_threshold": strconv.FormatInt(c.VStreamBinlogRotationThreshold, 10),
+ }
+}
+
+func (c VReplicationConfig) String() string {
+ s, _ := json.Marshal(c.Map())
+ return string(s)
+}
diff --git a/go/vt/vttablet/common/config_test.go b/go/vt/vttablet/common/config_test.go
new file mode 100644
index 00000000000..c73259036f2
--- /dev/null
+++ b/go/vt/vttablet/common/config_test.go
@@ -0,0 +1,159 @@
+/*
+Copyright 2024 The Vitess Authors.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+package vttablet
+
+import (
+ "strconv"
+ "strings"
+ "testing"
+ "time"
+
+ "github.com/stretchr/testify/require"
+)
+
+func TestNewVReplicationConfig(t *testing.T) {
+ InitVReplicationConfigDefaults()
+ tests := []struct {
+ name string
+ config map[string]string
+ wantErr int
+ want *VReplicationConfig
+ }{
+ {
+ name: "Valid values",
+ config: map[string]string{
+ "vreplication_experimental_flags": "3",
+ "vreplication_net_read_timeout": "100",
+ "vreplication_net_write_timeout": "200",
+ "vreplication_copy_phase_duration": "2h",
+ "vreplication_retry_delay": "10s",
+ "vreplication_max_time_to_retry_on_error": "1h",
+ "relay_log_max_size": "500000",
+ "relay_log_max_items": "10000",
+ "vreplication_replica_lag_tolerance": "2m",
+ "vreplication_heartbeat_update_interval": "2",
+ "vreplication_store_compressed_gtid": "true",
+ "vreplication-parallel-insert-workers": "4",
+ "vstream_packet_size": "1024",
+ "vstream_dynamic_packet_size": "false",
+ "vstream_binlog_rotation_threshold": "2048",
+ },
+ wantErr: 0,
+ want: &VReplicationConfig{
+ ExperimentalFlags: 3,
+ NetReadTimeout: 100,
+ NetWriteTimeout: 200,
+ CopyPhaseDuration: 2 * time.Hour,
+ RetryDelay: 10 * time.Second,
+ MaxTimeToRetryError: 1 * time.Hour,
+ RelayLogMaxSize: 500000,
+ RelayLogMaxItems: 10000,
+ ReplicaLagTolerance: 2 * time.Minute,
+ HeartbeatUpdateInterval: 2,
+ StoreCompressedGTID: true,
+ ParallelInsertWorkers: 4,
+ VStreamPacketSize: 1024,
+ VStreamDynamicPacketSize: false,
+ VStreamBinlogRotationThreshold: 2048,
+ TabletTypesStr: DefaultVReplicationConfig.TabletTypesStr,
+ VStreamPacketSizeOverride: true,
+ VStreamDynamicPacketSizeOverride: true,
+ VStreamBinlogRotationThresholdOverride: true,
+ },
+ },
+ {
+ name: "Invalid values",
+ config: map[string]string{
+ "vreplication_experimental_flags": "invalid",
+ "vreplication_net_read_timeout": "100.0",
+ "vreplication_net_write_timeout": "invalid",
+ "vreplication_copy_phase_duration": "invalid",
+ "vreplication_retry_delay": "invalid",
+ "vreplication_max_time_to_retry_on_error": "invalid",
+ "relay_log_max_size": "invalid",
+ "relay_log_max_items": "invalid",
+ "vreplication_replica_lag_tolerance": "invalid",
+ "vreplication_heartbeat_update_interval": "invalid",
+ "vreplication_store_compressed_gtid": "nottrue",
+ "vreplication-parallel-insert-workers": "invalid",
+ "vstream_packet_size": "invalid",
+ "vstream_dynamic_packet_size": "waar",
+ "vstream_binlog_rotation_threshold": "invalid",
+ },
+ wantErr: 15,
+ },
+ {
+ name: "Partial values",
+ config: map[string]string{
+ "vreplication_experimental_flags": "5",
+ "vreplication_net_read_timeout": "150",
+ "vstream_dynamic_packet_size": strconv.FormatBool(!DefaultVReplicationConfig.VStreamDynamicPacketSize),
+ "vreplication_store_compressed_gtid": strconv.FormatBool(!DefaultVReplicationConfig.StoreCompressedGTID),
+ },
+ wantErr: 0,
+ want: &VReplicationConfig{
+ ExperimentalFlags: 5,
+ NetReadTimeout: 150,
+ NetWriteTimeout: DefaultVReplicationConfig.NetWriteTimeout,
+ CopyPhaseDuration: DefaultVReplicationConfig.CopyPhaseDuration,
+ RetryDelay: DefaultVReplicationConfig.RetryDelay,
+ MaxTimeToRetryError: DefaultVReplicationConfig.MaxTimeToRetryError,
+ RelayLogMaxSize: DefaultVReplicationConfig.RelayLogMaxSize,
+ RelayLogMaxItems: DefaultVReplicationConfig.RelayLogMaxItems,
+ ReplicaLagTolerance: DefaultVReplicationConfig.ReplicaLagTolerance,
+ HeartbeatUpdateInterval: DefaultVReplicationConfig.HeartbeatUpdateInterval,
+ StoreCompressedGTID: !DefaultVReplicationConfig.StoreCompressedGTID,
+ ParallelInsertWorkers: DefaultVReplicationConfig.ParallelInsertWorkers,
+ VStreamPacketSize: DefaultVReplicationConfig.VStreamPacketSize,
+ VStreamDynamicPacketSize: !DefaultVReplicationConfig.VStreamDynamicPacketSize,
+ VStreamBinlogRotationThreshold: DefaultVReplicationConfig.VStreamBinlogRotationThreshold,
+ VStreamDynamicPacketSizeOverride: true,
+ TabletTypesStr: DefaultVReplicationConfig.TabletTypesStr,
+ },
+ },
+ }
+
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ InitVReplicationConfigDefaults()
+ got, err := NewVReplicationConfig(tt.config)
+ if tt.wantErr == 0 {
+ require.EqualValuesf(t, tt.config, got.Overrides,
+ "NewVReplicationConfig() overrides got = %v, want %v", got.Overrides, tt.config)
+
+ }
+ if tt.wantErr > 0 && err == nil || tt.wantErr == 0 && err != nil {
+ t.Errorf("NewVReplicationConfig() got num errors = %v, want %v", err, tt.wantErr)
+ }
+ if tt.wantErr > 0 && err != nil {
+ errors := strings.Split(err.Error(), ", ")
+ if len(errors) != tt.wantErr {
+ t.Errorf("NewVReplicationConfig() got num errors = %v, want %v", len(errors), tt.wantErr)
+ }
+ }
+ if tt.want == nil {
+ require.EqualValuesf(t, DefaultVReplicationConfig.Map(), got.Map(),
+ "NewVReplicationConfig() Map got = %v, want %v", got.Map(), DefaultVReplicationConfig.Map())
+ } else {
+ tt.want.Overrides = tt.config
+ require.EqualValues(t, tt.want.Map(), got.Map(),
+ "NewVReplicationConfig() Map got = %v, want %v", got.Map(), tt.want.Map())
+ }
+
+ })
+ }
+}
diff --git a/go/vt/vttablet/common/flags.go b/go/vt/vttablet/common/flags.go
new file mode 100644
index 00000000000..f9775b8af3e
--- /dev/null
+++ b/go/vt/vttablet/common/flags.go
@@ -0,0 +1,97 @@
+/*
+Copyright 2024 The Vitess Authors.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+package vttablet
+
+import (
+ "time"
+
+ "github.com/spf13/pflag"
+
+ "vitess.io/vitess/go/vt/servenv"
+)
+
+const (
+ // VReplicationExperimentalFlags is a bitmask of experimental features in vreplication.
+ VReplicationExperimentalFlagOptimizeInserts = int64(1)
+ VReplicationExperimentalFlagAllowNoBlobBinlogRowImage = int64(2)
+ VReplicationExperimentalFlagVPlayerBatching = int64(4)
+)
+
+var (
+ // Default flags: currently VReplicationExperimentalFlagVPlayerBatching is not enabled by default.
+ vreplicationExperimentalFlags = VReplicationExperimentalFlagOptimizeInserts | VReplicationExperimentalFlagAllowNoBlobBinlogRowImage
+ vreplicationNetReadTimeout = 300
+ vreplicationNetWriteTimeout = 600
+ vreplicationCopyPhaseDuration = 1 * time.Hour
+ vreplicationRetryDelay = 5 * time.Second
+ vreplicationMaxTimeToRetryError = 0 * time.Second // Default behavior is to keep retrying, for backward compatibility
+
+ vreplicationTabletTypesStr = "in_order:REPLICA,PRIMARY" // Default value
+
+ vreplicationRelayLogMaxSize = 250000
+ vreplicationRelayLogMaxItems = 5000
+
+ vreplicationReplicaLagTolerance = 1 * time.Minute
+
+ vreplicationHeartbeatUpdateInterval = 1
+
+ vreplicationStoreCompressedGTID = false
+ vreplicationParallelInsertWorkers = 1
+
+ // VStreamerBinlogRotationThreshold is the threshold, above which we rotate binlogs, before taking a GTID snapshot
+ VStreamerBinlogRotationThreshold = int64(64 * 1024 * 1024) // 64MiB
+ VStreamerDefaultPacketSize = 250000
+ VStreamerUseDynamicPacketSize = true
+)
+
+func GetVReplicationNetReadTimeout() int {
+ return vreplicationNetReadTimeout
+}
+func GetVReplicationNetWriteTimeout() int {
+ return vreplicationNetWriteTimeout
+}
+
+func init() {
+ servenv.OnParseFor("vttablet", registerFlags)
+ servenv.OnParseFor("vtcombo", registerFlags)
+}
+
+func registerFlags(fs *pflag.FlagSet) {
+ fs.Int64Var(&vreplicationExperimentalFlags, "vreplication_experimental_flags", vreplicationExperimentalFlags,
+ "(Bitmask) of experimental features in vreplication to enable")
+ fs.IntVar(&vreplicationNetReadTimeout, "vreplication_net_read_timeout", vreplicationNetReadTimeout, "Session value of net_read_timeout for vreplication, in seconds")
+ fs.IntVar(&vreplicationNetWriteTimeout, "vreplication_net_write_timeout", vreplicationNetWriteTimeout, "Session value of net_write_timeout for vreplication, in seconds")
+ fs.DurationVar(&vreplicationCopyPhaseDuration, "vreplication_copy_phase_duration", vreplicationCopyPhaseDuration, "Duration for each copy phase loop (before running the next catchup: default 1h)")
+ fs.DurationVar(&vreplicationRetryDelay, "vreplication_retry_delay", vreplicationRetryDelay, "delay before retrying a failed workflow event in the replication phase")
+ fs.DurationVar(&vreplicationMaxTimeToRetryError, "vreplication_max_time_to_retry_on_error", vreplicationMaxTimeToRetryError, "stop automatically retrying when we've had consecutive failures with the same error for this long after the first occurrence")
+
+ fs.IntVar(&vreplicationRelayLogMaxSize, "relay_log_max_size", vreplicationRelayLogMaxSize, "Maximum buffer size (in bytes) for vreplication target buffering. If single rows are larger than this, a single row is buffered at a time.")
+ fs.IntVar(&vreplicationRelayLogMaxItems, "relay_log_max_items", vreplicationRelayLogMaxItems, "Maximum number of rows for vreplication target buffering.")
+
+ fs.DurationVar(&vreplicationReplicaLagTolerance, "vreplication_replica_lag_tolerance", vreplicationReplicaLagTolerance, "Replica lag threshold duration: once lag is below this we switch from copy phase to the replication (streaming) phase")
+
+ // vreplicationHeartbeatUpdateInterval determines how often the time_updated column is updated if there are no
+ // real events on the source and the source vstream is only sending heartbeats for this long. Keep this low if you
+ // expect high QPS and are monitoring this column to alert about potential outages. Keep this high if
+ // * you have too many streams the extra write qps or cpu load due to these updates are unacceptable
+ // * you have too many streams and/or a large source field (lot of participating tables) which generates
+ // unacceptable increase in your binlog size
+ fs.IntVar(&vreplicationHeartbeatUpdateInterval, "vreplication_heartbeat_update_interval", vreplicationHeartbeatUpdateInterval, "Frequency (in seconds, default 1, max 60) at which the time_updated column of a vreplication stream when idling")
+ fs.BoolVar(&vreplicationStoreCompressedGTID, "vreplication_store_compressed_gtid", vreplicationStoreCompressedGTID, "Store compressed gtids in the pos column of the sidecar database's vreplication table")
+
+ fs.IntVar(&vreplicationParallelInsertWorkers, "vreplication-parallel-insert-workers", vreplicationParallelInsertWorkers, "Number of parallel insertion workers to use during copy phase. Set <= 1 to disable parallelism, or > 1 to enable concurrent insertion during copy phase.")
+}
diff --git a/go/vt/vttablet/faketmclient/fake_client.go b/go/vt/vttablet/faketmclient/fake_client.go
index 068582bccc8..c5a3acd08b1 100644
--- a/go/vt/vttablet/faketmclient/fake_client.go
+++ b/go/vt/vttablet/faketmclient/fake_client.go
@@ -217,6 +217,11 @@ func (client *FakeTabletManagerClient) GetUnresolvedTransactions(ctx context.Con
return nil, nil
}
+// ConcludeTransaction is part of the tmclient.TabletManagerClient interface.
+func (client *FakeTabletManagerClient) ConcludeTransaction(ctx context.Context, tablet *topodatapb.Tablet, dtid string, mm bool) error {
+ return nil
+}
+
//
// Replication related methods
//
diff --git a/go/vt/vttablet/flags.go b/go/vt/vttablet/flags.go
deleted file mode 100644
index 994080b95a5..00000000000
--- a/go/vt/vttablet/flags.go
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
-Copyright 2023 The Vitess Authors.
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-package vttablet
-
-import (
- "time"
-
- "github.com/spf13/pflag"
-
- "vitess.io/vitess/go/vt/servenv"
-)
-
-const (
- // VReplicationExperimentalFlags is a bitmask of experimental features in vreplication.
- VReplicationExperimentalFlagOptimizeInserts = int64(1)
- VReplicationExperimentalFlagAllowNoBlobBinlogRowImage = int64(2)
- VReplicationExperimentalFlagVPlayerBatching = int64(4)
-)
-
-var (
- // Default flags.
- VReplicationExperimentalFlags = VReplicationExperimentalFlagOptimizeInserts | VReplicationExperimentalFlagAllowNoBlobBinlogRowImage
- VReplicationNetReadTimeout = 300
- VReplicationNetWriteTimeout = 600
- CopyPhaseDuration = 1 * time.Hour
-)
-
-func init() {
- servenv.OnParseFor("vttablet", registerFlags)
- servenv.OnParseFor("vtcombo", registerFlags)
-
-}
-
-func registerFlags(fs *pflag.FlagSet) {
- fs.Int64Var(&VReplicationExperimentalFlags, "vreplication_experimental_flags", VReplicationExperimentalFlags,
- "(Bitmask) of experimental features in vreplication to enable")
- fs.IntVar(&VReplicationNetReadTimeout, "vreplication_net_read_timeout", VReplicationNetReadTimeout, "Session value of net_read_timeout for vreplication, in seconds")
- fs.IntVar(&VReplicationNetWriteTimeout, "vreplication_net_write_timeout", VReplicationNetWriteTimeout, "Session value of net_write_timeout for vreplication, in seconds")
- fs.DurationVar(&CopyPhaseDuration, "vreplication_copy_phase_duration", CopyPhaseDuration, "Duration for each copy phase loop (before running the next catchup: default 1h)")
-}
diff --git a/go/vt/vttablet/grpctmclient/client.go b/go/vt/vttablet/grpctmclient/client.go
index 5776c824f7c..7f31961318b 100644
--- a/go/vt/vttablet/grpctmclient/client.go
+++ b/go/vt/vttablet/grpctmclient/client.go
@@ -673,6 +673,21 @@ func (client *Client) GetUnresolvedTransactions(ctx context.Context, tablet *top
return response.Transactions, nil
}
+// ConcludeTransaction is part of the tmclient.TabletManagerClient interface.
+func (client *Client) ConcludeTransaction(ctx context.Context, tablet *topodatapb.Tablet, dtid string, mm bool) error {
+ c, closer, err := client.dialer.dial(ctx, tablet)
+ if err != nil {
+ return err
+ }
+ defer closer.Close()
+
+ _, err = c.ConcludeTransaction(ctx, &tabletmanagerdatapb.ConcludeTransactionRequest{
+ Dtid: dtid,
+ Mm: mm,
+ })
+ return err
+}
+
//
// Replication related methods
//
diff --git a/go/vt/vttablet/grpctmserver/server.go b/go/vt/vttablet/grpctmserver/server.go
index 3b1fc5ac842..e672c3d8aa5 100644
--- a/go/vt/vttablet/grpctmserver/server.go
+++ b/go/vt/vttablet/grpctmserver/server.go
@@ -287,6 +287,18 @@ func (s *server) GetUnresolvedTransactions(ctx context.Context, request *tabletm
return &tabletmanagerdatapb.GetUnresolvedTransactionsResponse{Transactions: transactions}, nil
}
+func (s *server) ConcludeTransaction(ctx context.Context, request *tabletmanagerdatapb.ConcludeTransactionRequest) (response *tabletmanagerdatapb.ConcludeTransactionResponse, err error) {
+ defer s.tm.HandleRPCPanic(ctx, "ConcludeTransaction", request, response, false /*verbose*/, &err)
+ ctx = callinfo.GRPCCallInfo(ctx)
+
+ err = s.tm.ConcludeTransaction(ctx, request)
+ if err != nil {
+ return nil, vterrors.ToGRPC(err)
+ }
+
+ return &tabletmanagerdatapb.ConcludeTransactionResponse{}, nil
+}
+
//
// Replication related methods
//
diff --git a/go/vt/vttablet/onlineddl/executor.go b/go/vt/vttablet/onlineddl/executor.go
index f693dfe135c..aad8417237e 100644
--- a/go/vt/vttablet/onlineddl/executor.go
+++ b/go/vt/vttablet/onlineddl/executor.go
@@ -97,7 +97,6 @@ var (
maxConcurrentOnlineDDLs = 256
migrationNextCheckIntervals = []time.Duration{1 * time.Second, 5 * time.Second, 10 * time.Second, 20 * time.Second}
- maxConstraintNameLength = 64
cutoverIntervals = []time.Duration{0, 1 * time.Minute, 5 * time.Minute, 10 * time.Minute, 30 * time.Minute}
)
@@ -137,31 +136,6 @@ var (
onlineDDLGrant = fmt.Sprintf("'%s'@'%s'", onlineDDLUser, "%")
)
-type ConstraintType int
-
-const (
- UnknownConstraintType ConstraintType = iota
- CheckConstraintType
- ForeignKeyConstraintType
-)
-
-var (
- constraintIndicatorMap = map[int]string{
- int(CheckConstraintType): "chk",
- int(ForeignKeyConstraintType): "fk",
- }
-)
-
-func GetConstraintType(constraintInfo sqlparser.ConstraintInfo) ConstraintType {
- if _, ok := constraintInfo.(*sqlparser.CheckConstraintDefinition); ok {
- return CheckConstraintType
- }
- if _, ok := constraintInfo.(*sqlparser.ForeignKeyDefinition); ok {
- return ForeignKeyConstraintType
- }
- return UnknownConstraintType
-}
-
type mysqlVariables struct {
host string
port int
@@ -1304,185 +1278,6 @@ func (e *Executor) initConnectionLockWaitTimeout(ctx context.Context, conn *conn
return deferFunc, nil
}
-// newConstraintName generates a new, unique name for a constraint. Our problem is that a MySQL
-// constraint's name is unique in the schema (!). And so as we duplicate the original table, we must
-// create completely new names for all constraints.
-// Moreover, we really want this name to be consistent across all shards. We therefore use a deterministic
-// UUIDv5 (SHA) function over the migration UUID, table name, and constraint's _contents_.
-// We _also_ include the original constraint name as prefix, as room allows
-// for example, if the original constraint name is "check_1",
-// we might generate "check_1_cps1okb4uafunfqusi2lp22u3".
-// If we then again migrate a table whose constraint name is "check_1_cps1okb4uafunfqusi2lp22u3 " we
-// get for example "check_1_19l09s37kbhj4axnzmi10e18k" (hash changes, and we still try to preserve original name)
-//
-// Furthermore, per bug report https://bugs.mysql.com/bug.php?id=107772, if the user doesn't provide a name for
-// their CHECK constraint, then MySQL picks a name in this format _chk_.
-// Example: sometable_chk_1
-// Next, when MySQL is asked to RENAME TABLE and sees a constraint with this format, it attempts to rename
-// the constraint with the new table's name. This is problematic for Vitess, because we often rename tables to
-// very long names, such as _vt_HOLD_394f9e6dfc3d11eca0390a43f95f28a3_20220706091048.
-// As we rename the constraint to e.g. `sometable_chk_1_cps1okb4uafunfqusi2lp22u3`, this makes MySQL want to
-// call the new constraint something like _vt_HOLD_394f9e6dfc3d11eca0390a43f95f28a3_20220706091048_chk_1_cps1okb4uafunfqusi2lp22u3,
-// which exceeds the 64 character limit for table names. Long story short, we also trim down if the constraint seems
-// to be auto-generated.
-func (e *Executor) newConstraintName(onlineDDL *schema.OnlineDDL, constraintType ConstraintType, hashExists map[string]bool, seed string, oldName string) string {
- constraintIndicator := constraintIndicatorMap[int(constraintType)]
- oldName = schemadiff.ExtractConstraintOriginalName(onlineDDL.Table, oldName)
- hash := textutil.UUIDv5Base36(onlineDDL.UUID, onlineDDL.Table, seed)
- for i := 1; hashExists[hash]; i++ {
- hash = textutil.UUIDv5Base36(onlineDDL.UUID, onlineDDL.Table, seed, fmt.Sprintf("%d", i))
- }
- hashExists[hash] = true
- suffix := "_" + hash
- maxAllowedNameLength := maxConstraintNameLength - len(suffix)
- newName := oldName
- if newName == "" {
- newName = constraintIndicator // start with something that looks consistent with MySQL's naming
- }
- if len(newName) > maxAllowedNameLength {
- newName = newName[0:maxAllowedNameLength]
- }
- newName = newName + suffix
- return newName
-}
-
-// validateAndEditCreateTableStatement inspects the CreateTable AST and does the following:
-// - extra validation (no FKs for now...)
-// - generate new and unique names for all constraints (CHECK and FK; yes, why not handle FK names; even as we don't support FKs today, we may in the future)
-func (e *Executor) validateAndEditCreateTableStatement(onlineDDL *schema.OnlineDDL, createTable *sqlparser.CreateTable) (constraintMap map[string]string, err error) {
- constraintMap = map[string]string{}
- hashExists := map[string]bool{}
-
- validateWalk := func(node sqlparser.SQLNode) (kontinue bool, err error) {
- switch node := node.(type) {
- case *sqlparser.ForeignKeyDefinition:
- if !onlineDDL.StrategySetting().IsAllowForeignKeysFlag() {
- return false, schema.ErrForeignKeyFound
- }
- case *sqlparser.ConstraintDefinition:
- oldName := node.Name.String()
- newName := e.newConstraintName(onlineDDL, GetConstraintType(node.Details), hashExists, sqlparser.CanonicalString(node.Details), oldName)
- node.Name = sqlparser.NewIdentifierCI(newName)
- constraintMap[oldName] = newName
- }
- return true, nil
- }
- if err := sqlparser.Walk(validateWalk, createTable); err != nil {
- return constraintMap, err
- }
- return constraintMap, nil
-}
-
-// validateAndEditAlterTableStatement inspects the AlterTable statement and:
-// - modifies any CONSTRAINT name according to given name mapping
-// - explode ADD FULLTEXT KEY into multiple statements
-func (e *Executor) validateAndEditAlterTableStatement(capableOf capabilities.CapableOf, onlineDDL *schema.OnlineDDL, alterTable *sqlparser.AlterTable, constraintMap map[string]string) (alters []*sqlparser.AlterTable, err error) {
- capableOfInstantDDLXtrabackup, err := capableOf(capabilities.InstantDDLXtrabackupCapability)
- if err != nil {
- return nil, err
- }
-
- hashExists := map[string]bool{}
- validateWalk := func(node sqlparser.SQLNode) (kontinue bool, err error) {
- switch node := node.(type) {
- case *sqlparser.DropKey:
- if node.Type == sqlparser.CheckKeyType || node.Type == sqlparser.ForeignKeyType {
- // drop a check or a foreign key constraint
- mappedName, ok := constraintMap[node.Name.String()]
- if !ok {
- return false, vterrors.Errorf(vtrpcpb.Code_INTERNAL, "Found DROP CONSTRAINT: %v, but could not find constraint name in map", sqlparser.CanonicalString(node))
- }
- node.Name = sqlparser.NewIdentifierCI(mappedName)
- }
- case *sqlparser.AddConstraintDefinition:
- oldName := node.ConstraintDefinition.Name.String()
- newName := e.newConstraintName(onlineDDL, GetConstraintType(node.ConstraintDefinition.Details), hashExists, sqlparser.CanonicalString(node.ConstraintDefinition.Details), oldName)
- node.ConstraintDefinition.Name = sqlparser.NewIdentifierCI(newName)
- constraintMap[oldName] = newName
- }
- return true, nil
- }
- if err := sqlparser.Walk(validateWalk, alterTable); err != nil {
- return alters, err
- }
- alters = append(alters, alterTable)
- // Handle ADD FULLTEXT KEY statements
- countAddFullTextStatements := 0
- redactedOptions := make([]sqlparser.AlterOption, 0, len(alterTable.AlterOptions))
- for i := range alterTable.AlterOptions {
- opt := alterTable.AlterOptions[i]
- switch opt := opt.(type) {
- case sqlparser.AlgorithmValue:
- if !capableOfInstantDDLXtrabackup {
- // we do not pass ALGORITHM. We choose our own ALGORITHM.
- continue
- }
- case *sqlparser.AddIndexDefinition:
- if opt.IndexDefinition.Info.Type == sqlparser.IndexTypeFullText {
- countAddFullTextStatements++
- if countAddFullTextStatements > 1 {
- // We've already got one ADD FULLTEXT KEY. We can't have another
- // in the same statement
- extraAlterTable := &sqlparser.AlterTable{
- Table: alterTable.Table,
- AlterOptions: []sqlparser.AlterOption{opt},
- }
- if !capableOfInstantDDLXtrabackup {
- extraAlterTable.AlterOptions = append(extraAlterTable.AlterOptions, copyAlgorithm)
- }
- alters = append(alters, extraAlterTable)
- continue
- }
- }
- }
- redactedOptions = append(redactedOptions, opt)
- }
- alterTable.AlterOptions = redactedOptions
- if !capableOfInstantDDLXtrabackup {
- alterTable.AlterOptions = append(alterTable.AlterOptions, copyAlgorithm)
- }
- return alters, nil
-}
-
-// duplicateCreateTable parses the given `CREATE TABLE` statement, and returns:
-// - The format CreateTable AST
-// - A new CreateTable AST, with the table renamed as `newTableName`, and with constraints renamed deterministically
-// - Map of renamed constraints
-func (e *Executor) duplicateCreateTable(ctx context.Context, onlineDDL *schema.OnlineDDL, originalCreateTable *sqlparser.CreateTable, newTableName string) (
- newCreateTable *sqlparser.CreateTable,
- constraintMap map[string]string,
- err error,
-) {
- newCreateTable = sqlparser.Clone(originalCreateTable)
- newCreateTable.SetTable(newCreateTable.GetTable().Qualifier.CompliantName(), newTableName)
-
- // If this table has a self-referencing foreign key constraint, ensure the referenced table gets renamed:
- renameSelfFK := func(node sqlparser.SQLNode) (kontinue bool, err error) {
- switch node := node.(type) {
- case *sqlparser.ConstraintDefinition:
- fk, ok := node.Details.(*sqlparser.ForeignKeyDefinition)
- if !ok {
- return true, nil
- }
- if referencedTableName := fk.ReferenceDefinition.ReferencedTable.Name.String(); referencedTableName == originalCreateTable.Table.Name.String() {
- // This is a self-referencing foreign key
- // We need to rename the referenced table as well
- fk.ReferenceDefinition.ReferencedTable.Name = sqlparser.NewIdentifierCS(newTableName)
- }
- }
- return true, nil
- }
- _ = sqlparser.Walk(renameSelfFK, newCreateTable)
-
- // manipulate CreateTable statement: take care of constraints names which have to be
- // unique across the schema
- constraintMap, err = e.validateAndEditCreateTableStatement(onlineDDL, newCreateTable)
- if err != nil {
- return nil, nil, err
- }
- return newCreateTable, constraintMap, nil
-}
-
// createDuplicateTableLike creates the table named by `newTableName` in the likeness of onlineDDL.Table
// This function emulates MySQL's `CREATE TABLE LIKE ...` statement. The difference is that this function takes control over the generated CONSTRAINT names,
// if any, such that they are deterministic across shards, as well as preserve original names where possible.
@@ -1495,7 +1290,7 @@ func (e *Executor) createDuplicateTableLike(ctx context.Context, newTableName st
if err != nil {
return nil, nil, err
}
- vreplCreateTable, constraintMap, err := e.duplicateCreateTable(ctx, onlineDDL, originalCreateTable, newTableName)
+ vreplCreateTable, constraintMap, err := schemadiff.DuplicateCreateTable(originalCreateTable, onlineDDL.UUID, newTableName, onlineDDL.StrategySetting().IsAllowForeignKeysFlag())
if err != nil {
return nil, nil, err
}
@@ -1546,7 +1341,7 @@ func (e *Executor) initVreplicationOriginalMigration(ctx context.Context, online
// Also, change any constraint names:
capableOf := mysql.ServerVersionCapableOf(conn.ServerVersion)
- alters, err := e.validateAndEditAlterTableStatement(capableOf, onlineDDL, alterTable, constraintMap)
+ alters, err := schemadiff.ValidateAndEditAlterTableStatement(onlineDDL.Table, onlineDDL.UUID, capableOf, alterTable, constraintMap)
if err != nil {
return v, err
}
@@ -3014,7 +2809,7 @@ func (e *Executor) analyzeDropDDLActionMigration(ctx context.Context, onlineDDL
// Analyze foreign keys:
for _, constraint := range createTable.TableSpec.Constraints {
- if GetConstraintType(constraint.Details) == ForeignKeyConstraintType {
+ if schemadiff.GetConstraintType(constraint.Details) == schemadiff.ForeignKeyConstraintType {
removedForeignKeyNames = append(removedForeignKeyNames, constraint.Name.String())
}
}
@@ -3116,7 +2911,7 @@ func (e *Executor) executeCreateDDLActionMigration(ctx context.Context, onlineDD
newCreateTable := sqlparser.Clone(originalCreateTable)
// Rewrite this CREATE TABLE statement such that CONSTRAINT names are edited,
// specifically removing any prefix.
- if _, err := e.validateAndEditCreateTableStatement(onlineDDL, newCreateTable); err != nil {
+ if _, err := schemadiff.ValidateAndEditCreateTableStatement(onlineDDL.Table, onlineDDL.UUID, newCreateTable, onlineDDL.StrategySetting().IsAllowForeignKeysFlag()); err != nil {
return failMigration(err)
}
ddlStmt = newCreateTable
@@ -3243,20 +3038,6 @@ func (e *Executor) executeAlterViewOnline(ctx context.Context, onlineDDL *schema
return nil
}
-// addInstantAlgorithm adds or modifies the AlterTable's ALGORITHM to INSTANT
-func (e *Executor) addInstantAlgorithm(alterTable *sqlparser.AlterTable) {
- instantOpt := sqlparser.AlgorithmValue("INSTANT")
- for i, opt := range alterTable.AlterOptions {
- if _, ok := opt.(sqlparser.AlgorithmValue); ok {
- // replace an existing algorithm
- alterTable.AlterOptions[i] = instantOpt
- return
- }
- }
- // append an algorithm
- alterTable.AlterOptions = append(alterTable.AlterOptions, instantOpt)
-}
-
// executeSpecialAlterDDLActionMigrationIfApplicable sees if the given migration can be executed via special execution path, that isn't a full blown online schema change process.
func (e *Executor) executeSpecialAlterDDLActionMigrationIfApplicable(ctx context.Context, onlineDDL *schema.OnlineDDL) (specialMigrationExecuted bool, err error) {
// Before we jump on to strategies... Some ALTERs can be optimized without having to run through
@@ -3278,7 +3059,7 @@ func (e *Executor) executeSpecialAlterDDLActionMigrationIfApplicable(ctx context
switch specialPlan.operation {
case instantDDLSpecialOperation:
- e.addInstantAlgorithm(specialPlan.alterTable)
+ schemadiff.AddInstantAlgorithm(specialPlan.alterTable)
onlineDDL.SQL = sqlparser.CanonicalString(specialPlan.alterTable)
if _, err := e.executeDirectly(ctx, onlineDDL); err != nil {
return false, err
diff --git a/go/vt/vttablet/onlineddl/executor_test.go b/go/vt/vttablet/onlineddl/executor_test.go
index d5e7f635a19..2533f3a4b48 100644
--- a/go/vt/vttablet/onlineddl/executor_test.go
+++ b/go/vt/vttablet/onlineddl/executor_test.go
@@ -21,393 +21,12 @@ Functionality of this Executor is tested in go/test/endtoend/onlineddl/...
package onlineddl
import (
- "context"
"testing"
"time"
"github.com/stretchr/testify/assert"
- "github.com/stretchr/testify/require"
-
- "vitess.io/vitess/go/mysql"
- "vitess.io/vitess/go/vt/vtenv"
- "vitess.io/vitess/go/vt/vttablet/tabletserver/tabletenv"
-
- "vitess.io/vitess/go/vt/schema"
- "vitess.io/vitess/go/vt/sqlparser"
-)
-
-var (
- testMySQLVersion = "8.0.34"
)
-func TestGetConstraintType(t *testing.T) {
- {
- typ := GetConstraintType(&sqlparser.CheckConstraintDefinition{})
- assert.Equal(t, CheckConstraintType, typ)
- }
- {
- typ := GetConstraintType(&sqlparser.ForeignKeyDefinition{})
- assert.Equal(t, ForeignKeyConstraintType, typ)
- }
-}
-
-func TestValidateAndEditCreateTableStatement(t *testing.T) {
- e := Executor{
- env: tabletenv.NewEnv(vtenv.NewTestEnv(), nil, "ValidateAndEditCreateTableStatementTest"),
- }
- tt := []struct {
- name string
- query string
- strategyOptions string
- expectError string
- countConstraints int
- expectConstraintMap map[string]string
- }{
- {
- name: "table with FK, not allowed",
- query: `
- create table onlineddl_test (
- id int auto_increment,
- i int not null,
- parent_id int not null,
- primary key(id),
- constraint test_ibfk foreign key (parent_id) references onlineddl_test_parent (id) on delete no action
- )
- `,
- expectError: schema.ErrForeignKeyFound.Error(),
- },
- {
- name: "table with FK, allowed",
- query: `
- create table onlineddl_test (
- id int auto_increment,
- i int not null,
- parent_id int not null,
- primary key(id),
- constraint test_ibfk foreign key (parent_id) references onlineddl_test_parent (id) on delete no action
- )
- `,
- strategyOptions: "--unsafe-allow-foreign-keys",
- countConstraints: 1,
- expectConstraintMap: map[string]string{"test_ibfk": "test_ibfk_2wtivm6zk4lthpz14g9uoyaqk"},
- },
- {
- name: "table with default FK name, strip table name",
- query: `
- create table onlineddl_test (
- id int auto_increment,
- i int not null,
- parent_id int not null,
- primary key(id),
- constraint onlineddl_test_ibfk_1 foreign key (parent_id) references onlineddl_test_parent (id) on delete no action
- )
- `,
- strategyOptions: "--unsafe-allow-foreign-keys",
- countConstraints: 1,
- // we want 'onlineddl_test_' to be stripped out:
- expectConstraintMap: map[string]string{"onlineddl_test_ibfk_1": "ibfk_1_2wtivm6zk4lthpz14g9uoyaqk"},
- },
- {
- name: "table with anonymous FK, allowed",
- query: `
- create table onlineddl_test (
- id int auto_increment,
- i int not null,
- parent_id int not null,
- primary key(id),
- foreign key (parent_id) references onlineddl_test_parent (id) on delete no action
- )
- `,
- strategyOptions: "--unsafe-allow-foreign-keys",
- countConstraints: 1,
- expectConstraintMap: map[string]string{"": "fk_2wtivm6zk4lthpz14g9uoyaqk"},
- },
- {
- name: "table with CHECK constraints",
- query: `
- create table onlineddl_test (
- id int auto_increment,
- i int not null,
- primary key(id),
- constraint check_1 CHECK ((i >= 0)),
- constraint check_2 CHECK ((i <> 5)),
- constraint check_3 CHECK ((i >= 0)),
- constraint chk_1111033c1d2d5908bf1f956ba900b192_check_4 CHECK ((i >= 0))
- )
- `,
- countConstraints: 4,
- expectConstraintMap: map[string]string{
- "check_1": "check_1_7dbssrkwdaxhdunwi5zj53q83",
- "check_2": "check_2_ehg3rtk6ejvbxpucimeess30o",
- "check_3": "check_3_0se0t8x98mf8v7lqmj2la8j9u",
- "chk_1111033c1d2d5908bf1f956ba900b192_check_4": "chk_1111033c1d2d5908bf1f956ba900b192_c_0c2c3bxi9jp4evqrct44wg3xh",
- },
- },
- {
- name: "table with both FOREIGN and CHECK constraints",
- query: `
- create table onlineddl_test (
- id int auto_increment,
- i int not null,
- primary key(id),
- constraint check_1 CHECK ((i >= 0)),
- constraint test_ibfk foreign key (parent_id) references onlineddl_test_parent (id) on delete no action,
- constraint chk_1111033c1d2d5908bf1f956ba900b192_check_4 CHECK ((i >= 0))
- )
- `,
- strategyOptions: "--unsafe-allow-foreign-keys",
- countConstraints: 3,
- expectConstraintMap: map[string]string{
- "check_1": "check_1_7dbssrkwdaxhdunwi5zj53q83",
- "chk_1111033c1d2d5908bf1f956ba900b192_check_4": "chk_1111033c1d2d5908bf1f956ba900b192_c_0se0t8x98mf8v7lqmj2la8j9u",
- "test_ibfk": "test_ibfk_2wtivm6zk4lthpz14g9uoyaqk",
- },
- },
- }
- for _, tc := range tt {
- t.Run(tc.name, func(t *testing.T) {
- stmt, err := e.env.Environment().Parser().ParseStrictDDL(tc.query)
- require.NoError(t, err)
- createTable, ok := stmt.(*sqlparser.CreateTable)
- require.True(t, ok)
-
- onlineDDL := &schema.OnlineDDL{UUID: "a5a563da_dc1a_11ec_a416_0a43f95f28a3", Table: "onlineddl_test", Options: tc.strategyOptions}
- constraintMap, err := e.validateAndEditCreateTableStatement(onlineDDL, createTable)
- if tc.expectError != "" {
- assert.ErrorContains(t, err, tc.expectError)
- return
- }
- assert.NoError(t, err)
- assert.Equal(t, tc.expectConstraintMap, constraintMap)
-
- uniqueConstraintNames := map[string]bool{}
- err = sqlparser.Walk(func(node sqlparser.SQLNode) (kontinue bool, err error) {
- switch node := node.(type) {
- case *sqlparser.ConstraintDefinition:
- uniqueConstraintNames[node.Name.String()] = true
- }
- return true, nil
- }, createTable)
- assert.NoError(t, err)
- assert.Equal(t, tc.countConstraints, len(uniqueConstraintNames))
- assert.Equalf(t, tc.countConstraints, len(constraintMap), "got contraints: %v", constraintMap)
- })
- }
-}
-
-func TestValidateAndEditAlterTableStatement(t *testing.T) {
- e := Executor{
- env: tabletenv.NewEnv(vtenv.NewTestEnv(), nil, "TestValidateAndEditAlterTableStatementTest"),
- }
- tt := []struct {
- alter string
- mySQLVersion string
- m map[string]string
- expect []string
- }{
- {
- alter: "alter table t add column i int",
- mySQLVersion: "8.0.29",
- expect: []string{"alter table t add column i int, algorithm = copy"},
- },
- {
- alter: "alter table t add column i int",
- mySQLVersion: "8.0.32",
- expect: []string{"alter table t add column i int"},
- },
- {
- alter: "alter table t add column i int, add fulltext key name1_ft (name1)",
- expect: []string{"alter table t add column i int, add fulltext key name1_ft (name1)"},
- },
- {
- alter: "alter table t add column i int, add fulltext key name1_ft (name1), add fulltext key name2_ft (name2)",
- expect: []string{"alter table t add column i int, add fulltext key name1_ft (name1)", "alter table t add fulltext key name2_ft (name2)"},
- },
- {
- alter: "alter table t add fulltext key name0_ft (name0), add column i int, add fulltext key name1_ft (name1), add fulltext key name2_ft (name2)",
- expect: []string{"alter table t add fulltext key name0_ft (name0), add column i int", "alter table t add fulltext key name1_ft (name1)", "alter table t add fulltext key name2_ft (name2)"},
- },
- {
- alter: "alter table t add constraint check (id != 1)",
- expect: []string{"alter table t add constraint chk_aulpn7bjeortljhguy86phdn9 check (id != 1)"},
- },
- {
- alter: "alter table t add constraint t_chk_1 check (id != 1)",
- expect: []string{"alter table t add constraint chk_1_aulpn7bjeortljhguy86phdn9 check (id != 1)"},
- },
- {
- alter: "alter table t add constraint some_check check (id != 1)",
- expect: []string{"alter table t add constraint some_check_aulpn7bjeortljhguy86phdn9 check (id != 1)"},
- },
- {
- alter: "alter table t add constraint some_check check (id != 1), add constraint another_check check (id != 2)",
- expect: []string{"alter table t add constraint some_check_aulpn7bjeortljhguy86phdn9 check (id != 1), add constraint another_check_4fa197273p3w96267pzm3gfi3 check (id != 2)"},
- },
- {
- alter: "alter table t add foreign key (parent_id) references onlineddl_test_parent (id) on delete no action",
- expect: []string{"alter table t add constraint fk_6fmhzdlya89128u5j3xapq34i foreign key (parent_id) references onlineddl_test_parent (id) on delete no action"},
- },
- {
- alter: "alter table t add constraint myfk foreign key (parent_id) references onlineddl_test_parent (id) on delete no action",
- expect: []string{"alter table t add constraint myfk_6fmhzdlya89128u5j3xapq34i foreign key (parent_id) references onlineddl_test_parent (id) on delete no action"},
- },
- {
- // strip out table name
- alter: "alter table t add constraint t_ibfk_1 foreign key (parent_id) references onlineddl_test_parent (id) on delete no action",
- expect: []string{"alter table t add constraint ibfk_1_6fmhzdlya89128u5j3xapq34i foreign key (parent_id) references onlineddl_test_parent (id) on delete no action"},
- },
- {
- // stript out table name
- alter: "alter table t add constraint t_ibfk_1 foreign key (parent_id) references onlineddl_test_parent (id) on delete no action",
- expect: []string{"alter table t add constraint ibfk_1_6fmhzdlya89128u5j3xapq34i foreign key (parent_id) references onlineddl_test_parent (id) on delete no action"},
- },
- {
- alter: "alter table t add constraint t_ibfk_1 foreign key (parent_id) references onlineddl_test_parent (id) on delete no action, add constraint some_check check (id != 1)",
- expect: []string{"alter table t add constraint ibfk_1_6fmhzdlya89128u5j3xapq34i foreign key (parent_id) references onlineddl_test_parent (id) on delete no action, add constraint some_check_aulpn7bjeortljhguy86phdn9 check (id != 1)"},
- },
- {
- alter: "alter table t drop foreign key t_ibfk_1",
- m: map[string]string{
- "t_ibfk_1": "ibfk_1_aaaaaaaaaaaaaa",
- },
- expect: []string{"alter table t drop foreign key ibfk_1_aaaaaaaaaaaaaa"},
- },
- }
-
- for _, tc := range tt {
- t.Run(tc.alter, func(t *testing.T) {
- stmt, err := e.env.Environment().Parser().ParseStrictDDL(tc.alter)
- require.NoError(t, err)
- alterTable, ok := stmt.(*sqlparser.AlterTable)
- require.True(t, ok)
-
- m := map[string]string{}
- for k, v := range tc.m {
- m[k] = v
- }
- if tc.mySQLVersion == "" {
- tc.mySQLVersion = testMySQLVersion
- }
- capableOf := mysql.ServerVersionCapableOf(tc.mySQLVersion)
- onlineDDL := &schema.OnlineDDL{UUID: "a5a563da_dc1a_11ec_a416_0a43f95f28a3", Table: "t", Options: "--unsafe-allow-foreign-keys"}
- alters, err := e.validateAndEditAlterTableStatement(capableOf, onlineDDL, alterTable, m)
- assert.NoError(t, err)
- var altersStrings []string
- for _, alter := range alters {
- altersStrings = append(altersStrings, sqlparser.String(alter))
- }
- assert.Equal(t, tc.expect, altersStrings)
- })
- }
-}
-
-func TestAddInstantAlgorithm(t *testing.T) {
- e := Executor{
- env: tabletenv.NewEnv(vtenv.NewTestEnv(), nil, "AddInstantAlgorithmTest"),
- }
- tt := []struct {
- alter string
- expect string
- }{
- {
- alter: "alter table t add column i2 int not null",
- expect: "ALTER TABLE `t` ADD COLUMN `i2` int NOT NULL, ALGORITHM = INSTANT",
- },
- {
- alter: "alter table t add column i2 int not null, lock=none",
- expect: "ALTER TABLE `t` ADD COLUMN `i2` int NOT NULL, LOCK NONE, ALGORITHM = INSTANT",
- },
- {
- alter: "alter table t add column i2 int not null, algorithm=inplace",
- expect: "ALTER TABLE `t` ADD COLUMN `i2` int NOT NULL, ALGORITHM = INSTANT",
- },
- {
- alter: "alter table t add column i2 int not null, algorithm=inplace, lock=none",
- expect: "ALTER TABLE `t` ADD COLUMN `i2` int NOT NULL, ALGORITHM = INSTANT, LOCK NONE",
- },
- }
- for _, tc := range tt {
- t.Run(tc.alter, func(t *testing.T) {
- stmt, err := e.env.Environment().Parser().ParseStrictDDL(tc.alter)
- require.NoError(t, err)
- alterTable, ok := stmt.(*sqlparser.AlterTable)
- require.True(t, ok)
-
- e.addInstantAlgorithm(alterTable)
- alterInstant := sqlparser.CanonicalString(alterTable)
-
- assert.Equal(t, tc.expect, alterInstant)
-
- stmt, err = e.env.Environment().Parser().ParseStrictDDL(alterInstant)
- require.NoError(t, err)
- _, ok = stmt.(*sqlparser.AlterTable)
- require.True(t, ok)
- })
- }
-}
-
-func TestDuplicateCreateTable(t *testing.T) {
- e := Executor{
- env: tabletenv.NewEnv(vtenv.NewTestEnv(), nil, "DuplicateCreateTableTest"),
- }
- ctx := context.Background()
- onlineDDL := &schema.OnlineDDL{UUID: "a5a563da_dc1a_11ec_a416_0a43f95f28a3", Table: "something", Strategy: "vitess", Options: "--unsafe-allow-foreign-keys"}
-
- tcases := []struct {
- sql string
- newName string
- expectSQL string
- expectMapSize int
- }{
- {
- sql: "create table t (id int primary key)",
- newName: "mytable",
- expectSQL: "create table mytable (\n\tid int primary key\n)",
- },
- {
- sql: "create table t (id int primary key, i int, constraint f foreign key (i) references parent (id) on delete cascade)",
- newName: "mytable",
- expectSQL: "create table mytable (\n\tid int primary key,\n\ti int,\n\tconstraint f_bjj16562shq086ozik3zf6kjg foreign key (i) references parent (id) on delete cascade\n)",
- expectMapSize: 1,
- },
- {
- sql: "create table self (id int primary key, i int, constraint f foreign key (i) references self (id))",
- newName: "mytable",
- expectSQL: "create table mytable (\n\tid int primary key,\n\ti int,\n\tconstraint f_8aymb58nzb78l5jhq600veg6y foreign key (i) references mytable (id)\n)",
- expectMapSize: 1,
- },
- {
- sql: "create table self (id int primary key, i1 int, i2 int, constraint f1 foreign key (i1) references self (id), constraint f1 foreign key (i2) references parent (id))",
- newName: "mytable",
- expectSQL: `create table mytable (
- id int primary key,
- i1 int,
- i2 int,
- constraint f1_1rlsg9yls1t91i35zq5gyeoq7 foreign key (i1) references mytable (id),
- constraint f1_59t4lvb1ncti6fxy27drad4jp foreign key (i2) references parent (id)
-)`,
- expectMapSize: 1,
- },
- }
- for _, tcase := range tcases {
- t.Run(tcase.sql, func(t *testing.T) {
- stmt, err := e.env.Environment().Parser().ParseStrictDDL(tcase.sql)
- require.NoError(t, err)
- originalCreateTable, ok := stmt.(*sqlparser.CreateTable)
- require.True(t, ok)
- require.NotNil(t, originalCreateTable)
- newCreateTable, constraintMap, err := e.duplicateCreateTable(ctx, onlineDDL, originalCreateTable, tcase.newName)
- assert.NoError(t, err)
- assert.NotNil(t, newCreateTable)
- assert.NotNil(t, constraintMap)
-
- newSQL := sqlparser.String(newCreateTable)
- assert.Equal(t, tcase.expectSQL, newSQL)
- assert.Equal(t, tcase.expectMapSize, len(constraintMap))
- })
- }
-}
-
func TestShouldCutOverAccordingToBackoff(t *testing.T) {
tcases := []struct {
name string
diff --git a/go/vt/vttablet/onlineddl/vrepl.go b/go/vt/vttablet/onlineddl/vrepl.go
index 58e6a2c8b3a..26eb614e95a 100644
--- a/go/vt/vttablet/onlineddl/vrepl.go
+++ b/go/vt/vttablet/onlineddl/vrepl.go
@@ -389,7 +389,7 @@ func (v *VRepl) analyze(ctx context.Context, conn *dbconnpool.DBConnection) erro
func (v *VRepl) generateInsertStatement() (string, error) {
ig := vreplication.NewInsertGenerator(binlogdatapb.VReplicationWorkflowState_Stopped, v.dbName)
ig.AddRow(v.workflow, v.bls, v.pos, "", "in_order:REPLICA,PRIMARY",
- binlogdatapb.VReplicationWorkflowType_OnlineDDL, binlogdatapb.VReplicationWorkflowSubType_None, false)
+ binlogdatapb.VReplicationWorkflowType_OnlineDDL, binlogdatapb.VReplicationWorkflowSubType_None, false, "")
return ig.String(), nil
}
diff --git a/go/vt/vttablet/tabletmanager/framework_test.go b/go/vt/vttablet/tabletmanager/framework_test.go
index 27a3a562cd3..872b96585f7 100644
--- a/go/vt/vttablet/tabletmanager/framework_test.go
+++ b/go/vt/vttablet/tabletmanager/framework_test.go
@@ -27,6 +27,8 @@ import (
"github.com/stretchr/testify/require"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
+
"vitess.io/vitess/go/mysql/fakesqldb"
"vitess.io/vitess/go/mysql/replication"
"vitess.io/vitess/go/sqltypes"
@@ -84,6 +86,7 @@ type testEnv struct {
}
func newTestEnv(t *testing.T, ctx context.Context, sourceKeyspace string, sourceShards []string) *testEnv {
+ vttablet.InitVReplicationConfigDefaults()
tenv := &testEnv{
ctx: context.Background(),
tmc: newFakeTMClient(),
@@ -127,7 +130,7 @@ func (tenv *testEnv) close() {
tenv.mysqld.Close()
}
-//--------------------------------------
+// --------------------------------------
// Tablets
func (tenv *testEnv) addTablet(t *testing.T, id int, keyspace, shard string) *fakeTabletConn {
@@ -369,7 +372,7 @@ func (ftc *fakeTabletConn) StreamHealth(ctx context.Context, callback func(*quer
})
}
-//----------------------------------------------
+// ----------------------------------------------
// fakeTMClient
type fakeTMClient struct {
diff --git a/go/vt/vttablet/tabletmanager/rpc_agent.go b/go/vt/vttablet/tabletmanager/rpc_agent.go
index df202e5137a..08fcfe0e9b5 100644
--- a/go/vt/vttablet/tabletmanager/rpc_agent.go
+++ b/go/vt/vttablet/tabletmanager/rpc_agent.go
@@ -85,6 +85,8 @@ type RPCTM interface {
GetUnresolvedTransactions(ctx context.Context) ([]*querypb.TransactionMetadata, error)
+ ConcludeTransaction(ctx context.Context, req *tabletmanagerdatapb.ConcludeTransactionRequest) error
+
// Replication related methods
PrimaryStatus(ctx context.Context) (*replicationdatapb.PrimaryStatus, error)
diff --git a/go/vt/vttablet/tabletmanager/rpc_query.go b/go/vt/vttablet/tabletmanager/rpc_query.go
index 4b8f3148122..c2179993313 100644
--- a/go/vt/vttablet/tabletmanager/rpc_query.go
+++ b/go/vt/vttablet/tabletmanager/rpc_query.go
@@ -286,6 +286,20 @@ func (tm *TabletManager) GetUnresolvedTransactions(ctx context.Context) ([]*quer
return tm.QueryServiceControl.UnresolvedTransactions(ctx, target)
}
+// ConcludeTransaction concludes the given distributed transaction.
+func (tm *TabletManager) ConcludeTransaction(ctx context.Context, req *tabletmanagerdatapb.ConcludeTransactionRequest) error {
+ if err := tm.waitForGrantsToHaveApplied(ctx); err != nil {
+ return err
+ }
+
+ tablet := tm.Tablet()
+ target := &querypb.Target{Keyspace: tablet.Keyspace, Shard: tablet.Shard, TabletType: tablet.Type}
+ if req.Mm {
+ return tm.QueryServiceControl.ConcludeTransaction(ctx, target, req.Dtid)
+ }
+ return tm.QueryServiceControl.RollbackPrepared(ctx, target, req.Dtid, 0)
+}
+
// ExecuteQuery submits a new online DDL request
func (tm *TabletManager) ExecuteQuery(ctx context.Context, req *tabletmanagerdatapb.ExecuteQueryRequest) (*querypb.QueryResult, error) {
if err := tm.waitForGrantsToHaveApplied(ctx); err != nil {
diff --git a/go/vt/vttablet/tabletmanager/rpc_query_test.go b/go/vt/vttablet/tabletmanager/rpc_query_test.go
index fb1775799c6..940a5ea3c90 100644
--- a/go/vt/vttablet/tabletmanager/rpc_query_test.go
+++ b/go/vt/vttablet/tabletmanager/rpc_query_test.go
@@ -150,8 +150,9 @@ func TestTabletManager_ExecuteFetchAsDba(t *testing.T) {
func TestTabletManager_UnresolvedTransactions(t *testing.T) {
ctx := context.Background()
+ qsc := tabletservermock.NewController()
tm := &TabletManager{
- QueryServiceControl: tabletservermock.NewController(),
+ QueryServiceControl: qsc,
Env: vtenv.NewTestEnv(),
_waitForGrantsComplete: make(chan struct{}),
BatchCtx: ctx,
@@ -161,4 +162,33 @@ func TestTabletManager_UnresolvedTransactions(t *testing.T) {
_, err := tm.GetUnresolvedTransactions(ctx)
require.NoError(t, err)
+ require.True(t, qsc.MethodCalled["UnresolvedTransactions"])
+}
+
+func TestTabletManager_ConcludeTransaction(t *testing.T) {
+ ctx := context.Background()
+
+ qsc := tabletservermock.NewController()
+ tm := &TabletManager{
+ QueryServiceControl: qsc,
+ Env: vtenv.NewTestEnv(),
+ _waitForGrantsComplete: make(chan struct{}),
+ BatchCtx: ctx,
+ }
+ close(tm._waitForGrantsComplete)
+ tm.tmState = newTMState(tm, newTestTablet(t, 100, "ks", "-80"))
+
+ err := tm.ConcludeTransaction(ctx, &tabletmanagerdatapb.ConcludeTransactionRequest{
+ Dtid: "dtid01",
+ Mm: false,
+ })
+ require.NoError(t, err)
+ require.True(t, qsc.MethodCalled["RollbackPrepared"])
+
+ err = tm.ConcludeTransaction(ctx, &tabletmanagerdatapb.ConcludeTransactionRequest{
+ Dtid: "dtid01",
+ Mm: true,
+ })
+ require.NoError(t, err)
+ require.True(t, qsc.MethodCalled["ConcludeTransaction"])
}
diff --git a/go/vt/vttablet/tabletmanager/rpc_vreplication.go b/go/vt/vttablet/tabletmanager/rpc_vreplication.go
index c8c334d896e..3dec2c81071 100644
--- a/go/vt/vttablet/tabletmanager/rpc_vreplication.go
+++ b/go/vt/vttablet/tabletmanager/rpc_vreplication.go
@@ -19,6 +19,7 @@ package tabletmanager
import (
"context"
"fmt"
+ "sort"
"strings"
"golang.org/x/exp/maps"
@@ -55,7 +56,7 @@ const (
// Retrieve the current configuration values for a workflow's vreplication stream(s).
sqlSelectVReplicationWorkflowConfig = "select id, source, cell, tablet_types, state, message from %s.vreplication where workflow = %a"
// Update the configuration values for a workflow's vreplication stream.
- sqlUpdateVReplicationWorkflowStreamConfig = "update %s.vreplication set state = %a, source = %a, cell = %a, tablet_types = %a where id = %a"
+ sqlUpdateVReplicationWorkflowStreamConfig = "update %s.vreplication set state = %a, source = %a, cell = %a, tablet_types = %a %s where id = %a"
// Update field values for multiple workflows. The final format specifier is
// used to optionally add any additional predicates to the query.
sqlUpdateVReplicationWorkflows = "update /*vt+ ALLOW_UNSAFE_VREPLICATION_WRITE */ %s.vreplication set%s where db_name = '%s'%s"
@@ -438,13 +439,11 @@ func (tm *TabletManager) UpdateVReplicationWorkflow(ctx context.Context, req *ta
source := row.AsBytes("source", []byte{})
state := row.AsString("state", "")
message := row.AsString("message", "")
- if req.State == binlogdatapb.VReplicationWorkflowState_Running && strings.ToUpper(message) == workflow.Frozen {
+ if req.State != nil && *req.State == binlogdatapb.VReplicationWorkflowState_Running &&
+ strings.ToUpper(message) == workflow.Frozen {
return &tabletmanagerdatapb.UpdateVReplicationWorkflowResponse{Result: nil},
vterrors.New(vtrpcpb.Code_FAILED_PRECONDITION, "cannot start a workflow when it is frozen")
}
- // For the string based values, we use NULL to differentiate
- // from an empty string. The NULL value indicates that we
- // should keep the existing value.
if !textutil.ValueIsSimulatedNull(req.Cells) {
cells = req.Cells
}
@@ -452,24 +451,27 @@ func (tm *TabletManager) UpdateVReplicationWorkflow(ctx context.Context, req *ta
tabletTypes = req.TabletTypes
}
tabletTypesStr := topoproto.MakeStringTypeCSV(tabletTypes)
- if (inorder && req.TabletSelectionPreference == tabletmanagerdatapb.TabletSelectionPreference_UNKNOWN) ||
- (req.TabletSelectionPreference == tabletmanagerdatapb.TabletSelectionPreference_INORDER) {
+ if req.TabletSelectionPreference != nil &&
+ ((inorder && *req.TabletSelectionPreference == tabletmanagerdatapb.TabletSelectionPreference_UNKNOWN) ||
+ (*req.TabletSelectionPreference == tabletmanagerdatapb.TabletSelectionPreference_INORDER)) {
tabletTypesStr = discovery.InOrderHint + tabletTypesStr
}
if err = prototext.Unmarshal(source, bls); err != nil {
return nil, err
}
- // If we don't want to update the existing value then pass
- // the simulated NULL value of -1.
- if !textutil.ValueIsSimulatedNull(req.OnDdl) {
- bls.OnDdl = req.OnDdl
+ // We also need to check for a SimulatedNull here to support older clients and
+ // smooth upgrades. All non-slice simulated NULL checks can be removed in v22+.
+ if req.OnDdl != nil && *req.OnDdl != binlogdatapb.OnDDLAction(textutil.SimulatedNullInt) {
+ bls.OnDdl = *req.OnDdl
}
source, err = prototext.Marshal(bls)
if err != nil {
return nil, err
}
- if !textutil.ValueIsSimulatedNull(req.State) {
- state = binlogdatapb.VReplicationWorkflowState_name[int32(req.State)]
+ // We also need to check for a SimulatedNull here to support older clients and
+ // smooth upgrades. All non-slice simulated NULL checks can be removed in v22+.
+ if req.State != nil && *req.State != binlogdatapb.VReplicationWorkflowState(textutil.SimulatedNullInt) {
+ state = binlogdatapb.VReplicationWorkflowState_name[int32(*req.State)]
}
if state == binlogdatapb.VReplicationWorkflowState_Running.String() {
// `Workflow Start` sets the new state to Running. However, if stream is still copying tables, we should set
@@ -482,6 +484,8 @@ func (tm *TabletManager) UpdateVReplicationWorkflow(ctx context.Context, req *ta
state = binlogdatapb.VReplicationWorkflowState_Copying.String()
}
}
+ options := getOptionSetString(req.ConfigOverrides)
+
bindVars = map[string]*querypb.BindVariable{
"st": sqltypes.StringBindVariable(state),
"sc": sqltypes.StringBindVariable(string(source)),
@@ -489,7 +493,7 @@ func (tm *TabletManager) UpdateVReplicationWorkflow(ctx context.Context, req *ta
"tt": sqltypes.StringBindVariable(tabletTypesStr),
"id": sqltypes.Int64BindVariable(id),
}
- parsed = sqlparser.BuildParsedQuery(sqlUpdateVReplicationWorkflowStreamConfig, sidecar.GetIdentifier(), ":st", ":sc", ":cl", ":tt", ":id")
+ parsed = sqlparser.BuildParsedQuery(sqlUpdateVReplicationWorkflowStreamConfig, sidecar.GetIdentifier(), ":st", ":sc", ":cl", ":tt", options, ":id")
stmt, err = parsed.GenerateQuery(bindVars, nil)
if err != nil {
return nil, err
@@ -508,6 +512,51 @@ func (tm *TabletManager) UpdateVReplicationWorkflow(ctx context.Context, req *ta
}, nil
}
+// getOptionSetString takes the option keys passed in and creates a sql clause to update the existing options
+// field in the vreplication table. The clause is built using the json_set() for new and updated options
+// and json_remove() for deleted options, denoted by an empty value.
+func getOptionSetString(config map[string]string) string {
+ if len(config) == 0 {
+ return ""
+ }
+
+ var (
+ options string
+ deletedKeys []string
+ keys []string
+ )
+ for k, v := range config {
+ if strings.TrimSpace(v) == "" {
+ deletedKeys = append(deletedKeys, k)
+ } else {
+ keys = append(keys, k)
+ }
+ }
+ sort.Strings(keys)
+ sort.Strings(deletedKeys)
+ clause := "options"
+ if len(deletedKeys) > 0 {
+ // We need to quote the key in the json functions because flag names can contain hyphens.
+ clause = fmt.Sprintf("json_remove(options, '$.config.\"%s\"'", deletedKeys[0])
+ for _, k := range deletedKeys[1:] {
+ clause += fmt.Sprintf(", '$.config.\"%s\"'", k)
+ }
+ clause += ")"
+ }
+ if len(keys) > 0 {
+ clause = fmt.Sprintf("json_set(%s, '$.config', json_object(), ", clause)
+ for i, k := range keys {
+ if i > 0 {
+ clause += ", "
+ }
+ clause += fmt.Sprintf("'$.config.\"%s\"', '%s'", k, strings.TrimSpace(config[k]))
+ }
+ clause += ")"
+ }
+ options = fmt.Sprintf(", options = %s", clause)
+ return options
+}
+
// UpdateVReplicationWorkflows operates in much the same way that
// UpdateVReplicationWorkflow does, but it allows you to update the
// metadata/flow control fields -- state, message, and stop_pos -- for
@@ -623,14 +672,16 @@ func (tm *TabletManager) buildUpdateVReplicationWorkflowsQuery(req *tabletmanage
if req.GetAllWorkflows() && (len(req.GetIncludeWorkflows()) > 0 || len(req.GetExcludeWorkflows()) > 0) {
return "", errAllWithIncludeExcludeWorkflows
}
- if textutil.ValueIsSimulatedNull(req.GetState()) && textutil.ValueIsSimulatedNull(req.GetMessage()) && textutil.ValueIsSimulatedNull(req.GetStopPosition()) {
+ if req.State == nil && req.Message == nil && req.StopPosition == nil {
return "", errNoFieldsToUpdate
}
sets := strings.Builder{}
predicates := strings.Builder{}
// First add the SET clauses.
- if !textutil.ValueIsSimulatedNull(req.GetState()) {
+ // We also need to check for a SimulatedNull here to support older clients and
+ // smooth upgrades. All non-slice simulated NULL checks can be removed in v22+.
+ if req.State != nil && *req.State != binlogdatapb.VReplicationWorkflowState(textutil.SimulatedNullInt) {
state, ok := binlogdatapb.VReplicationWorkflowState_name[int32(req.GetState())]
if !ok {
return "", vterrors.Errorf(vtrpcpb.Code_INVALID_ARGUMENT, "invalid state value: %v", req.GetState())
@@ -638,14 +689,18 @@ func (tm *TabletManager) buildUpdateVReplicationWorkflowsQuery(req *tabletmanage
sets.WriteString(" state = ")
sets.WriteString(sqltypes.EncodeStringSQL(state))
}
- if !textutil.ValueIsSimulatedNull(req.GetMessage()) {
+ // We also need to check for a SimulatedNull here to support older clients and
+ // smooth upgrades. All non-slice simulated NULL checks can be removed in v22+.
+ if req.Message != nil && *req.Message != sqltypes.Null.String() {
if sets.Len() > 0 {
sets.WriteByte(',')
}
sets.WriteString(" message = ")
sets.WriteString(sqltypes.EncodeStringSQL(req.GetMessage()))
}
- if !textutil.ValueIsSimulatedNull(req.GetStopPosition()) {
+ // We also need to check for a SimulatedNull here to support older clients and
+ // smooth upgrades. All non-slice simulated NULL checks can be removed in v22+.
+ if req.StopPosition != nil && *req.StopPosition != sqltypes.Null.String() {
if sets.Len() > 0 {
sets.WriteByte(',')
}
diff --git a/go/vt/vttablet/tabletmanager/rpc_vreplication_test.go b/go/vt/vttablet/tabletmanager/rpc_vreplication_test.go
index 7ab959c1e17..5bcfff7d4c4 100644
--- a/go/vt/vttablet/tabletmanager/rpc_vreplication_test.go
+++ b/go/vt/vttablet/tabletmanager/rpc_vreplication_test.go
@@ -30,11 +30,13 @@ import (
"github.com/stretchr/testify/require"
"vitess.io/vitess/go/constants/sidecar"
+ "vitess.io/vitess/go/ptr"
"vitess.io/vitess/go/sqlescape"
"vitess.io/vitess/go/sqltypes"
"vitess.io/vitess/go/textutil"
"vitess.io/vitess/go/vt/binlog/binlogplayer"
"vitess.io/vitess/go/vt/dbconfigs"
+ "vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/sqlparser"
"vitess.io/vitess/go/vt/topo"
"vitess.io/vitess/go/vt/topo/topoproto"
@@ -42,7 +44,7 @@ import (
"vitess.io/vitess/go/vt/vtctl/workflow"
"vitess.io/vitess/go/vt/vtenv"
"vitess.io/vitess/go/vt/vtgate/vindexes"
- "vitess.io/vitess/go/vt/vttablet"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
querypb "vitess.io/vitess/go/vt/proto/query"
@@ -94,8 +96,13 @@ var (
},
}
position = fmt.Sprintf("%s/%s", gtidFlavor, gtidPosition)
- setNetReadTimeout = fmt.Sprintf("set @@session.net_read_timeout = %v", vttablet.VReplicationNetReadTimeout)
- setNetWriteTimeout = fmt.Sprintf("set @@session.net_write_timeout = %v", vttablet.VReplicationNetWriteTimeout)
+ setNetReadTimeout = fmt.Sprintf("set @@session.net_read_timeout = %v", vttablet.GetVReplicationNetReadTimeout())
+ setNetWriteTimeout = fmt.Sprintf("set @@session.net_write_timeout = %v", vttablet.GetVReplicationNetWriteTimeout())
+ inOrder = tabletmanagerdatapb.TabletSelectionPreference_INORDER
+ running = binlogdatapb.VReplicationWorkflowState_Running
+ stopped = binlogdatapb.VReplicationWorkflowState_Stopped
+ exec = binlogdatapb.OnDDLAction_EXEC
+ execIgnore = binlogdatapb.OnDDLAction_EXEC_IGNORE
)
// TestCreateVReplicationWorkflow tests the query generated
@@ -289,12 +296,12 @@ func TestCreateVReplicationWorkflow(t *testing.T) {
}
}
-// TestMoveTables tests the query sequence originating from a
+// TestMoveTablesUnsharded tests the query sequence originating from a
// VtctldServer MoveTablesCreate request to ensure that the
// VReplication stream(s) are created correctly and expected
// results returned. Followed by ensuring that SwitchTraffic
// and ReverseTraffic also work as expected.
-func TestMoveTables(t *testing.T) {
+func TestMoveTablesUnsharded(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
sourceKs := "sourceks"
@@ -318,10 +325,8 @@ func TestMoveTables(t *testing.T) {
sourceTablet := tenv.addTablet(t, sourceTabletUID, sourceKs, sourceShard)
defer tenv.deleteTablet(sourceTablet.tablet)
- targetShards["-80"] = tenv.addTablet(t, 300, targetKs, "-80")
- defer tenv.deleteTablet(targetShards["-80"].tablet)
- targetShards["80-"] = tenv.addTablet(t, 310, targetKs, "80-")
- defer tenv.deleteTablet(targetShards["80-"].tablet)
+ targetShards["0"] = tenv.addTablet(t, 300, targetKs, "0")
+ defer tenv.deleteTablet(targetShards["0"].tablet)
globalTablet := tenv.addTablet(t, 500, globalKs, globalShard)
defer tenv.deleteTablet(globalTablet.tablet)
@@ -387,39 +392,39 @@ func TestMoveTables(t *testing.T) {
tenv.tmc.SetSchema(defaultSchema)
tenv.tmc.setVReplicationExecResults(sourceTablet.tablet, checkForJournal, &sqltypes.Result{})
-
for _, ftc := range targetShards {
+ log.Infof("Testing target shard %s", ftc.tablet.Alias)
addInvariants(ftc.vrdbClient, vreplID, sourceTabletUID, position, wf, tenv.cells[0])
getCopyStateQuery := fmt.Sprintf(sqlGetVReplicationCopyStatus, sidecar.GetIdentifier(), vreplID)
ftc.vrdbClient.AddInvariant(getCopyStateQuery, &sqltypes.Result{})
tenv.tmc.setVReplicationExecResults(ftc.tablet, getCopyState, &sqltypes.Result{})
ftc.vrdbClient.ExpectRequest(fmt.Sprintf(readAllWorkflows, tenv.dbName, ""), &sqltypes.Result{}, nil)
- insert := fmt.Sprintf(`%s values ('%s', 'keyspace:"%s" shard:"%s" filter:{rules:{match:"t1" filter:"select * from t1 where in_keyrange(id, \'%s.hash\', \'%s\')"}}', '', 0, 0, '%s', 'primary,replica,rdonly', now(), 0, 'Stopped', '%s', %d, 0, 0, '{}')`,
- insertVReplicationPrefix, wf, sourceKs, sourceShard, targetKs, ftc.tablet.Shard, tenv.cells[0], tenv.dbName, vreplID)
+ insert := fmt.Sprintf(`%s values ('%s', 'keyspace:"%s" shard:"%s" filter:{rules:{match:"t1" filter:"select * from t1"}}', '', 0, 0, '%s', 'primary,replica,rdonly', now(), 0, 'Stopped', '%s', %d, 0, 0, '{}')`,
+ insertVReplicationPrefix, wf, sourceKs, sourceShard, tenv.cells[0], tenv.dbName, vreplID)
ftc.vrdbClient.ExpectRequest(insert, &sqltypes.Result{InsertID: 1}, nil)
ftc.vrdbClient.ExpectRequest(getAutoIncrementStep, &sqltypes.Result{}, nil)
ftc.vrdbClient.ExpectRequest(fmt.Sprintf(getVReplicationRecord, vreplID),
sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
- "id|source",
- "int64|varchar",
+ "id|source|options",
+ "int64|varchar|varchar",
),
- fmt.Sprintf("%d|%s", vreplID, bls),
+ fmt.Sprintf("%d|%s|{}", vreplID, bls),
), nil)
- ftc.vrdbClient.ExpectRequest(fmt.Sprintf(readWorkflow, wf, tenv.dbName), sqltypes.MakeTestResult(
+ ftc.vrdbClient.AddInvariant(fmt.Sprintf(readWorkflow, wf, tenv.dbName), sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
- "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys",
- "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64",
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
),
- fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Stopped||%s|1||0|0|0||0|1", vreplID, bls, position, targetKs),
- ), nil)
- ftc.vrdbClient.ExpectRequest(fmt.Sprintf(readWorkflow, wf, tenv.dbName), sqltypes.MakeTestResult(
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Stopped||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
+ ftc.vrdbClient.AddInvariant(binlogplayer.TestGetWorkflowQueryId1, sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
- "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys",
- "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64",
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
),
- fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Stopped||%s|1||0|0|0||0|1", vreplID, bls, position, targetKs),
- ), nil)
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Stopped||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
ftc.vrdbClient.ExpectRequest(fmt.Sprintf(readWorkflowConfig, wf), sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
"id|source|cell|tablet_types|state|message",
@@ -432,31 +437,278 @@ func TestMoveTables(t *testing.T) {
ftc.vrdbClient.ExpectRequest(fmt.Sprintf(getVReplicationRecord, vreplID),
sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
- "id|source",
- "int64|varchar",
+ "id|source|options",
+ "int64|varchar|varchar",
),
- fmt.Sprintf("%d|%s", vreplID, bls),
+ fmt.Sprintf("%d|%s|{}", vreplID, bls),
), nil)
- ftc.vrdbClient.ExpectRequest(fmt.Sprintf(readWorkflow, wf, tenv.dbName), sqltypes.MakeTestResult(
+ ftc.vrdbClient.ExpectRequest(fmt.Sprintf(readWorkflowsLimited, tenv.dbName, wf), sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
- "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys",
- "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64",
+ "workflow|id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "workflow|int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
),
- fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1", vreplID, bls, position, targetKs),
+ fmt.Sprintf("%s|%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1|{}", wf, vreplID, bls, position, targetKs),
), nil)
- ftc.vrdbClient.ExpectRequest(fmt.Sprintf(readWorkflowsLimited, tenv.dbName, wf), sqltypes.MakeTestResult(
+ tenv.tmc.setVReplicationExecResults(ftc.tablet, fmt.Sprintf(getLatestCopyState, vreplID, vreplID), &sqltypes.Result{})
+ }
+
+ // We use the tablet's UID in the mocked results for the max value used on each target shard.
+ nextSeqVal := int(float64(targetShards["0"].tablet.Alias.Uid)) + 1
+ tenv.tmc.setVReplicationExecResults(globalTablet.tablet,
+ sqlparser.BuildParsedQuery(initSequenceTable, sqlescape.EscapeID(fmt.Sprintf("vt_%s", globalKs)), sqlescape.EscapeID("t1_seq"), nextSeqVal, nextSeqVal, nextSeqVal).Query,
+ &sqltypes.Result{RowsAffected: 0},
+ )
+
+ _, err = ws.MoveTablesCreate(ctx, &vtctldatapb.MoveTablesCreateRequest{
+ SourceKeyspace: sourceKs,
+ TargetKeyspace: targetKs,
+ Workflow: wf,
+ TabletTypes: tabletTypes,
+ Cells: tenv.cells,
+ AllTables: true,
+ AutoStart: true,
+ })
+ require.NoError(t, err)
+
+ for _, ftc := range targetShards {
+ ftc.vrdbClient.Reset()
+ ftc.vrdbClient.AddInvariant(binlogplayer.TestGetWorkflowQueryId1, sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
- "workflow|id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys",
- "workflow|int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64",
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
),
- fmt.Sprintf("%s|%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1", wf, vreplID, bls, position, targetKs),
- ), nil)
- ftc.vrdbClient.ExpectRequest(fmt.Sprintf(readWorkflow, wf, tenv.dbName), sqltypes.MakeTestResult(
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
+ ftc.vrdbClient.AddInvariant(fmt.Sprintf(readWorkflowsLimited, tenv.dbName, wf), sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "workflow|id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "workflow|int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
+ ),
+ fmt.Sprintf("%s|%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1|{}", wf, vreplID, bls, position, targetKs),
+ ))
+ ftc.vrdbClient.AddInvariant(fmt.Sprintf(readWorkflow, wf, tenv.dbName), sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
+ ),
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
+ ftc.vrdbClient.AddInvariant(binlogplayer.TestGetWorkflowQueryId1, sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
+ ),
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
+ }
+
+ _, err = ws.WorkflowSwitchTraffic(ctx, &vtctldatapb.WorkflowSwitchTrafficRequest{
+ Keyspace: targetKs,
+ Workflow: wf,
+ Cells: tenv.cells,
+ MaxReplicationLagAllowed: &vttimepb.Duration{Seconds: 922337203},
+ EnableReverseReplication: true,
+ InitializeTargetSequences: true,
+ Direction: int32(workflow.DirectionForward),
+ })
+ require.NoError(t, err)
+ for _, ftc := range targetShards {
+ ftc.vrdbClient.AddInvariant(fmt.Sprintf(readWorkflow, wf, tenv.dbName), sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
"id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys",
"int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64",
),
fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1", vreplID, bls, position, targetKs),
+ ))
+ }
+ addInvariants(sourceTablet.vrdbClient, vreplID, sourceTabletUID, position, workflow.ReverseWorkflowName(wf), tenv.cells[0])
+ sourceTablet.vrdbClient.AddInvariant(fmt.Sprintf(readWorkflow, workflow.ReverseWorkflowName(wf), tenv.dbName), sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64",
+ ),
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1", vreplID, bls, position, sourceKs),
+ ))
+ sourceTablet.vrdbClient.ExpectRequest(fmt.Sprintf(readWorkflowsLimited, tenv.dbName, workflow.ReverseWorkflowName(wf)), sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "workflow|id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys",
+ "workflow|int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64",
+ ),
+ fmt.Sprintf("%s|%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1", workflow.ReverseWorkflowName(wf), vreplID, bls, position, sourceKs),
+ ), nil)
+ sourceTablet.vrdbClient.AddInvariant(fmt.Sprintf(readWorkflow, wf, tenv.dbName), sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64",
+ ),
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1", vreplID, bls, position, sourceKs),
+ ))
+
+ _, err = ws.WorkflowSwitchTraffic(ctx, &vtctldatapb.WorkflowSwitchTrafficRequest{
+ Keyspace: targetKs,
+ Workflow: wf,
+ Cells: tenv.cells,
+ MaxReplicationLagAllowed: &vttimepb.Duration{Seconds: 922337203},
+ EnableReverseReplication: true,
+ Direction: int32(workflow.DirectionBackward),
+ })
+ require.NoError(t, err)
+}
+
+// TestMoveTablesSharded tests the query sequence originating from a
+// VtctldServer MoveTablesCreate request to ensure that the
+// VReplication stream(s) are created correctly and expected
+// results returned. Followed by ensuring that SwitchTraffic
+// and ReverseTraffic also work as expected.
+func TestMoveTablesSharded(t *testing.T) {
+ ctx, cancel := context.WithCancel(context.Background())
+ defer cancel()
+ sourceKs := "sourceks"
+ sourceTabletUID := 200
+ targetKs := "targetks"
+ targetShards := make(map[string]*fakeTabletConn)
+ sourceShard := "0"
+ globalKs := "global"
+ globalShard := "0"
+ wf := "testwf"
+ vreplID := 1
+ tabletTypes := []topodatapb.TabletType{
+ topodatapb.TabletType_PRIMARY,
+ topodatapb.TabletType_REPLICA,
+ topodatapb.TabletType_RDONLY,
+ }
+
+ tenv := newTestEnv(t, ctx, sourceKs, []string{sourceShard})
+ defer tenv.close()
+
+ sourceTablet := tenv.addTablet(t, sourceTabletUID, sourceKs, sourceShard)
+ defer tenv.deleteTablet(sourceTablet.tablet)
+
+ targetShards["-80"] = tenv.addTablet(t, 300, targetKs, "-80")
+ defer tenv.deleteTablet(targetShards["-80"].tablet)
+ targetShards["80-"] = tenv.addTablet(t, 310, targetKs, "80-")
+ defer tenv.deleteTablet(targetShards["80-"].tablet)
+
+ globalTablet := tenv.addTablet(t, 500, globalKs, globalShard)
+ defer tenv.deleteTablet(globalTablet.tablet)
+
+ err := tenv.ts.SaveVSchema(ctx, globalKs, &vschemapb.Keyspace{
+ Sharded: false,
+ Tables: map[string]*vschemapb.Table{
+ "t1_seq": {
+ Type: vindexes.TypeSequence,
+ },
+ },
+ })
+ require.NoError(t, err)
+ err = tenv.ts.SaveVSchema(ctx, targetKs, &vschemapb.Keyspace{
+ Sharded: true,
+ Vindexes: map[string]*vschemapb.Vindex{
+ "hash": {
+ Type: "hash",
+ },
+ },
+ Tables: map[string]*vschemapb.Table{
+ "t1": {
+ ColumnVindexes: []*vschemapb.ColumnVindex{{
+ Column: "id",
+ Name: "hash",
+ }},
+ AutoIncrement: &vschemapb.AutoIncrement{
+ Column: "id",
+ Sequence: "t1_seq",
+ },
+ },
+ },
+ })
+ require.NoError(t, err)
+
+ ws := workflow.NewServer(vtenv.NewTestEnv(), tenv.ts, tenv.tmc)
+
+ idQuery, err := sqlparser.ParseAndBind("select id from _vt.vreplication where id = %a",
+ sqltypes.Int64BindVariable(int64(vreplID)))
+ require.NoError(t, err)
+ idRes := sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id",
+ "int64",
+ ),
+ fmt.Sprintf("%d", vreplID),
+ )
+
+ tenv.mysqld.Schema = defaultSchema
+ tenv.mysqld.Schema.DatabaseSchema = tenv.dbName
+ tenv.mysqld.FetchSuperQueryMap = make(map[string]*sqltypes.Result)
+ tenv.mysqld.FetchSuperQueryMap[`select character_set_name, collation_name, column_name, data_type, column_type, extra from information_schema.columns where .*`] = sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "character_set_name|collation_name|column_name|data_type|column_type|extra",
+ "varchar|varchar|varchar|varchar|varchar|varchar",
+ ),
+ "NULL|NULL|id|bigint|bigint|",
+ "NULL|NULL|c2|bigint|bigint|",
+ )
+
+ bls := fmt.Sprintf("keyspace:\"%s\" shard:\"%s\" filter:{rules:{match:\"t1\" filter:\"select * from t1\"}}", sourceKs, sourceShard)
+
+ tenv.tmc.SetSchema(defaultSchema)
+
+ tenv.tmc.setVReplicationExecResults(sourceTablet.tablet, checkForJournal, &sqltypes.Result{})
+ for _, ftc := range targetShards {
+ log.Infof("Testing target shard %s", ftc.tablet.Alias)
+ addInvariants(ftc.vrdbClient, vreplID, sourceTabletUID, position, wf, tenv.cells[0])
+ getCopyStateQuery := fmt.Sprintf(sqlGetVReplicationCopyStatus, sidecar.GetIdentifier(), vreplID)
+ ftc.vrdbClient.AddInvariant(getCopyStateQuery, &sqltypes.Result{})
+ tenv.tmc.setVReplicationExecResults(ftc.tablet, getCopyState, &sqltypes.Result{})
+ ftc.vrdbClient.ExpectRequest(fmt.Sprintf(readAllWorkflows, tenv.dbName, ""), &sqltypes.Result{}, nil)
+ insert := fmt.Sprintf(`%s values ('%s', 'keyspace:"%s" shard:"%s" filter:{rules:{match:"t1" filter:"select * from t1 where in_keyrange(id, \'%s.hash\', \'%s\')"}}', '', 0, 0, '%s', 'primary,replica,rdonly', now(), 0, 'Stopped', '%s', %d, 0, 0, '{}')`,
+ insertVReplicationPrefix, wf, sourceKs, sourceShard, targetKs, ftc.tablet.Shard, tenv.cells[0], tenv.dbName, vreplID)
+ ftc.vrdbClient.ExpectRequest(insert, &sqltypes.Result{InsertID: 1}, nil)
+ ftc.vrdbClient.ExpectRequest(getAutoIncrementStep, &sqltypes.Result{}, nil)
+ ftc.vrdbClient.ExpectRequest(fmt.Sprintf(getVReplicationRecord, vreplID),
+ sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|options",
+ "int64|varchar|varchar",
+ ),
+ fmt.Sprintf("%d|%s|{}", vreplID, bls),
+ ), nil)
+ ftc.vrdbClient.AddInvariant(fmt.Sprintf(readWorkflow, wf, tenv.dbName), sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
+ ),
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Stopped||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
+ ftc.vrdbClient.AddInvariant(binlogplayer.TestGetWorkflowQueryId1, sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
+ ),
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Stopped||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
+ ftc.vrdbClient.ExpectRequest(fmt.Sprintf(readWorkflowConfig, wf), sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|cell|tablet_types|state|message",
+ "int64|blob|varchar|varchar|varchar|varchar",
+ ),
+ fmt.Sprintf("%d|%s|||Stopped|", vreplID, bls),
+ ), nil)
+ ftc.vrdbClient.ExpectRequest(idQuery, idRes, nil)
+ ftc.vrdbClient.ExpectRequest(fmt.Sprintf(updateWorkflow, binlogdatapb.VReplicationWorkflowState_Running.String(), bls, "", "", vreplID), &sqltypes.Result{}, nil)
+ ftc.vrdbClient.ExpectRequest(fmt.Sprintf(getVReplicationRecord, vreplID),
+ sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|options",
+ "int64|varchar|varchar",
+ ),
+ fmt.Sprintf("%d|%s|{}", vreplID, bls),
+ ), nil)
+ ftc.vrdbClient.ExpectRequest(fmt.Sprintf(readWorkflowsLimited, tenv.dbName, wf), sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "workflow|id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "workflow|int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
+ ),
+ fmt.Sprintf("%s|%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1|{}", wf, vreplID, bls, position, targetKs),
), nil)
tenv.tmc.setVReplicationExecResults(ftc.tablet, fmt.Sprintf(getLatestCopyState, vreplID, vreplID), &sqltypes.Result{})
}
@@ -480,20 +732,35 @@ func TestMoveTables(t *testing.T) {
require.NoError(t, err)
for _, ftc := range targetShards {
- ftc.vrdbClient.ExpectRequest(fmt.Sprintf(readWorkflowsLimited, tenv.dbName, wf), sqltypes.MakeTestResult(
+ ftc.vrdbClient.Reset()
+ ftc.vrdbClient.AddInvariant(binlogplayer.TestGetWorkflowQueryId1, sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
- "workflow|id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys",
- "workflow|int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64",
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
),
- fmt.Sprintf("%s|%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1", wf, vreplID, bls, position, targetKs),
- ), nil)
- ftc.vrdbClient.ExpectRequest(fmt.Sprintf(readWorkflow, wf, tenv.dbName), sqltypes.MakeTestResult(
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
+ ftc.vrdbClient.AddInvariant(fmt.Sprintf(readWorkflowsLimited, tenv.dbName, wf), sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
- "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys",
- "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64",
+ "workflow|id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "workflow|int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
),
- fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1", vreplID, bls, position, targetKs),
- ), nil)
+ fmt.Sprintf("%s|%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1|{}", wf, vreplID, bls, position, targetKs),
+ ))
+ ftc.vrdbClient.AddInvariant(fmt.Sprintf(readWorkflow, wf, tenv.dbName), sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
+ ),
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
+ ftc.vrdbClient.AddInvariant(binlogplayer.TestGetWorkflowQueryId1, sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
+ ),
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
}
_, err = ws.WorkflowSwitchTraffic(ctx, &vtctldatapb.WorkflowSwitchTrafficRequest{
@@ -506,7 +773,6 @@ func TestMoveTables(t *testing.T) {
Direction: int32(workflow.DirectionForward),
})
require.NoError(t, err)
-
for _, ftc := range targetShards {
ftc.vrdbClient.ExpectRequest(fmt.Sprintf(readWorkflow, wf, tenv.dbName), sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
@@ -544,6 +810,51 @@ func TestMoveTables(t *testing.T) {
require.NoError(t, err)
}
+func TestGetOptionSetString(t *testing.T) {
+ tests := []struct {
+ name string
+ config map[string]string
+ want string
+ }{
+ {
+ name: "nil config",
+ config: nil,
+ want: "",
+ },
+ {
+ name: "empty params",
+ config: map[string]string{},
+ want: "",
+ },
+ {
+ name: "valid params",
+ config: map[string]string{
+ "password": "secret",
+ "user": "admin",
+ },
+ want: ", options = json_set(options, '$.config', json_object(), '$.config.\"password\"', 'secret', '$.config.\"user\"', 'admin')",
+ },
+ {
+ name: "valid params, deleting two",
+ config: map[string]string{
+ "password": "secret",
+ "user": "admin",
+ "port": "",
+ "host": "",
+ },
+ want: ", options = json_set(json_remove(options, '$.config.\"host\"', '$.config.\"port\"'), '$.config', json_object(), '$.config.\"password\"', 'secret', '$.config.\"user\"', 'admin')",
+ },
+ // Additional tests for handling escaping errors or complex scenarios can be added here
+ }
+
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ got := getOptionSetString(tt.config)
+ require.Equal(t, tt.want, got)
+ })
+ }
+}
+
func TestUpdateVReplicationWorkflow(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
@@ -605,7 +916,6 @@ func TestUpdateVReplicationWorkflow(t *testing.T) {
name: "update cells",
request: &tabletmanagerdatapb.UpdateVReplicationWorkflowRequest{
Workflow: workflow,
- State: binlogdatapb.VReplicationWorkflowState(textutil.SimulatedNullInt),
Cells: []string{"zone2"},
// TabletTypes is an empty value, so the current value should be cleared
},
@@ -616,9 +926,8 @@ func TestUpdateVReplicationWorkflow(t *testing.T) {
name: "update cells, NULL tablet_types",
request: &tabletmanagerdatapb.UpdateVReplicationWorkflowRequest{
Workflow: workflow,
- State: binlogdatapb.VReplicationWorkflowState(textutil.SimulatedNullInt),
Cells: []string{"zone3"},
- TabletTypes: []topodatapb.TabletType{topodatapb.TabletType(textutil.SimulatedNullInt)}, // So keep the current value of replica
+ TabletTypes: textutil.SimulatedNullTabletTypeSlice, // So keep the current value of replica
},
query: fmt.Sprintf(`update _vt.vreplication set state = 'Running', source = 'keyspace:"%s" shard:"%s" filter:{rules:{match:"corder" filter:"select * from corder"} rules:{match:"customer" filter:"select * from customer"}}', cell = '%s', tablet_types = '%s' where id in (%d)`,
keyspace, shard, "zone3", tabletTypes[0], vreplID),
@@ -627,8 +936,7 @@ func TestUpdateVReplicationWorkflow(t *testing.T) {
name: "update tablet_types",
request: &tabletmanagerdatapb.UpdateVReplicationWorkflowRequest{
Workflow: workflow,
- State: binlogdatapb.VReplicationWorkflowState(textutil.SimulatedNullInt),
- TabletSelectionPreference: tabletmanagerdatapb.TabletSelectionPreference_INORDER,
+ TabletSelectionPreference: &inOrder,
TabletTypes: []topodatapb.TabletType{topodatapb.TabletType_RDONLY, topodatapb.TabletType_REPLICA},
},
query: fmt.Sprintf(`update _vt.vreplication set state = 'Running', source = 'keyspace:"%s" shard:"%s" filter:{rules:{match:"corder" filter:"select * from corder"} rules:{match:"customer" filter:"select * from customer"}}', cell = '', tablet_types = '%s' where id in (%d)`,
@@ -638,7 +946,6 @@ func TestUpdateVReplicationWorkflow(t *testing.T) {
name: "update tablet_types, NULL cells",
request: &tabletmanagerdatapb.UpdateVReplicationWorkflowRequest{
Workflow: workflow,
- State: binlogdatapb.VReplicationWorkflowState(textutil.SimulatedNullInt),
Cells: textutil.SimulatedNullStringSlice, // So keep the current value of zone1
TabletTypes: []topodatapb.TabletType{topodatapb.TabletType_RDONLY},
},
@@ -649,8 +956,7 @@ func TestUpdateVReplicationWorkflow(t *testing.T) {
name: "update on_ddl",
request: &tabletmanagerdatapb.UpdateVReplicationWorkflowRequest{
Workflow: workflow,
- State: binlogdatapb.VReplicationWorkflowState(textutil.SimulatedNullInt),
- OnDdl: binlogdatapb.OnDDLAction_EXEC,
+ OnDdl: &exec,
},
query: fmt.Sprintf(`update _vt.vreplication set state = 'Running', source = 'keyspace:"%s" shard:"%s" filter:{rules:{match:"corder" filter:"select * from corder"} rules:{match:"customer" filter:"select * from customer"}} on_ddl:%s', cell = '', tablet_types = '' where id in (%d)`,
keyspace, shard, binlogdatapb.OnDDLAction_EXEC.String(), vreplID),
@@ -659,10 +965,9 @@ func TestUpdateVReplicationWorkflow(t *testing.T) {
name: "update cell,tablet_types,on_ddl",
request: &tabletmanagerdatapb.UpdateVReplicationWorkflowRequest{
Workflow: workflow,
- State: binlogdatapb.VReplicationWorkflowState(textutil.SimulatedNullInt),
Cells: []string{"zone1", "zone2", "zone3"},
TabletTypes: []topodatapb.TabletType{topodatapb.TabletType_RDONLY, topodatapb.TabletType_REPLICA, topodatapb.TabletType_PRIMARY},
- OnDdl: binlogdatapb.OnDDLAction_EXEC_IGNORE,
+ OnDdl: &execIgnore,
},
query: fmt.Sprintf(`update _vt.vreplication set state = 'Running', source = 'keyspace:"%s" shard:"%s" filter:{rules:{match:"corder" filter:"select * from corder"} rules:{match:"customer" filter:"select * from customer"}} on_ddl:%s', cell = '%s', tablet_types = '%s' where id in (%d)`,
keyspace, shard, binlogdatapb.OnDDLAction_EXEC_IGNORE.String(), "zone1,zone2,zone3", "rdonly,replica,primary", vreplID),
@@ -671,10 +976,9 @@ func TestUpdateVReplicationWorkflow(t *testing.T) {
name: "update state",
request: &tabletmanagerdatapb.UpdateVReplicationWorkflowRequest{
Workflow: workflow,
- State: binlogdatapb.VReplicationWorkflowState_Stopped,
+ State: &stopped,
Cells: textutil.SimulatedNullStringSlice,
- TabletTypes: []topodatapb.TabletType{topodatapb.TabletType(textutil.SimulatedNullInt)},
- OnDdl: binlogdatapb.OnDDLAction(textutil.SimulatedNullInt),
+ TabletTypes: textutil.SimulatedNullTabletTypeSlice,
},
query: fmt.Sprintf(`update _vt.vreplication set state = '%s', source = 'keyspace:"%s" shard:"%s" filter:{rules:{match:"corder" filter:"select * from corder"} rules:{match:"customer" filter:"select * from customer"}}', cell = '%s', tablet_types = '%s' where id in (%d)`,
binlogdatapb.VReplicationWorkflowState_Stopped.String(), keyspace, shard, cells[0], tabletTypes[0], vreplID),
@@ -683,15 +987,27 @@ func TestUpdateVReplicationWorkflow(t *testing.T) {
name: "update to running while copying",
request: &tabletmanagerdatapb.UpdateVReplicationWorkflowRequest{
Workflow: workflow,
- State: binlogdatapb.VReplicationWorkflowState_Running,
+ State: &running,
Cells: textutil.SimulatedNullStringSlice,
- TabletTypes: []topodatapb.TabletType{topodatapb.TabletType(textutil.SimulatedNullInt)},
- OnDdl: binlogdatapb.OnDDLAction(textutil.SimulatedNullInt),
+ TabletTypes: textutil.SimulatedNullTabletTypeSlice,
},
isCopying: true,
query: fmt.Sprintf(`update _vt.vreplication set state = 'Copying', source = 'keyspace:"%s" shard:"%s" filter:{rules:{match:"corder" filter:"select * from corder"} rules:{match:"customer" filter:"select * from customer"}}', cell = '%s', tablet_types = '%s' where id in (%d)`,
keyspace, shard, cells[0], tabletTypes[0], vreplID),
},
+ {
+ name: "update cells and options",
+ request: &tabletmanagerdatapb.UpdateVReplicationWorkflowRequest{
+ Workflow: workflow,
+ Cells: []string{"zone2"},
+ ConfigOverrides: map[string]string{
+ "user": "admin",
+ "password": "secret",
+ },
+ },
+ query: fmt.Sprintf(`update _vt.vreplication set state = 'Running', source = 'keyspace:"%s" shard:"%s" filter:{rules:{match:"corder" filter:"select * from corder"} rules:{match:"customer" filter:"select * from customer"}}', cell = '%s', tablet_types = '', options = json_set(options, '$.config', json_object(), '$.config."password"', 'secret', '$.config."user"', 'admin') where id in (%d)`,
+ keyspace, shard, "zone2", vreplID),
+ },
}
for _, tt := range tests {
@@ -700,7 +1016,9 @@ func TestUpdateVReplicationWorkflow(t *testing.T) {
// which doesn't play well with subtests.
defer func() {
if err := recover(); err != nil {
- t.Errorf("Recovered from panic: %v", err)
+ log.Infof("Got panic in test: %v", err)
+ log.Flush()
+ t.Errorf("Recovered from panic: %v, stack: %s", err, debug.Stack())
}
}()
@@ -710,8 +1028,7 @@ func TestUpdateVReplicationWorkflow(t *testing.T) {
// These are the same for each RPC call.
tenv.tmc.tablets[tabletUID].vrdbClient.ExpectRequest(fmt.Sprintf("use %s", sidecar.GetIdentifier()), &sqltypes.Result{}, nil)
tenv.tmc.tablets[tabletUID].vrdbClient.ExpectRequest(selectQuery, selectRes, nil)
- if tt.request.State == binlogdatapb.VReplicationWorkflowState_Running ||
- tt.request.State == binlogdatapb.VReplicationWorkflowState(textutil.SimulatedNullInt) {
+ if tt.request.State == nil || *tt.request.State == binlogdatapb.VReplicationWorkflowState_Running {
tenv.tmc.tablets[tabletUID].vrdbClient.ExpectRequest(fmt.Sprintf("use %s", sidecar.GetIdentifier()), &sqltypes.Result{}, nil)
if tt.isCopying {
tenv.tmc.tablets[tabletUID].vrdbClient.ExpectRequest(getCopyStateQuery, copying, nil)
@@ -756,9 +1073,7 @@ func TestUpdateVReplicationWorkflows(t *testing.T) {
name: "update only state=running for all workflows",
request: &tabletmanagerdatapb.UpdateVReplicationWorkflowsRequest{
AllWorkflows: true,
- State: binlogdatapb.VReplicationWorkflowState_Running,
- Message: textutil.SimulatedNullString,
- StopPosition: textutil.SimulatedNullString,
+ State: &running,
},
query: fmt.Sprintf(`update /*vt+ ALLOW_UNSAFE_VREPLICATION_WRITE */ _vt.vreplication set state = 'Running' where id in (%s)`, strings.Join(vreplIDs, ", ")),
},
@@ -766,9 +1081,7 @@ func TestUpdateVReplicationWorkflows(t *testing.T) {
name: "update only state=running for all but reverse workflows",
request: &tabletmanagerdatapb.UpdateVReplicationWorkflowsRequest{
ExcludeWorkflows: []string{workflow.ReverseWorkflowName("testwf")},
- State: binlogdatapb.VReplicationWorkflowState_Running,
- Message: textutil.SimulatedNullString,
- StopPosition: textutil.SimulatedNullString,
+ State: &running,
},
query: fmt.Sprintf(`update /*vt+ ALLOW_UNSAFE_VREPLICATION_WRITE */ _vt.vreplication set state = 'Running' where id in (%s)`, strings.Join(vreplIDs, ", ")),
},
@@ -776,9 +1089,9 @@ func TestUpdateVReplicationWorkflows(t *testing.T) {
name: "update all vals for all workflows",
request: &tabletmanagerdatapb.UpdateVReplicationWorkflowsRequest{
AllWorkflows: true,
- State: binlogdatapb.VReplicationWorkflowState_Running,
- Message: "hi",
- StopPosition: position,
+ State: &running,
+ Message: ptr.Of("hi"),
+ StopPosition: &position,
},
query: fmt.Sprintf(`update /*vt+ ALLOW_UNSAFE_VREPLICATION_WRITE */ _vt.vreplication set state = 'Running', message = 'hi', stop_pos = '%s' where id in (%s)`, position, strings.Join(vreplIDs, ", ")),
},
@@ -786,9 +1099,7 @@ func TestUpdateVReplicationWorkflows(t *testing.T) {
name: "update state=stopped, messege=for vdiff for two workflows",
request: &tabletmanagerdatapb.UpdateVReplicationWorkflowsRequest{
IncludeWorkflows: []string{"testwf", "testwf2"},
- State: binlogdatapb.VReplicationWorkflowState_Running,
- Message: textutil.SimulatedNullString,
- StopPosition: textutil.SimulatedNullString,
+ State: &running,
},
query: fmt.Sprintf(`update /*vt+ ALLOW_UNSAFE_VREPLICATION_WRITE */ _vt.vreplication set state = 'Running' where id in (%s)`, strings.Join(vreplIDs, ", ")),
},
@@ -1046,10 +1357,10 @@ func TestSourceShardSelection(t *testing.T) {
fmt.Sprintf("select * from _vt.vreplication where id = %d", uint64(i+1)),
sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
- "id|source|state",
- "int64|varchar|varchar",
+ "id|source|state|options",
+ "int64|varchar|varchar|varchar",
),
- fmt.Sprintf("%d|%s|Stopped", uint64(i+1), fmt.Sprintf(`keyspace:"%s" shard:"%s" filter:{rules:{match:"t1" filter:"select * from t1 where in_keyrange(id, '%s.hash', '%s')"}}`, sourceKs, sourceShard, targetKs, tt.tablet.Shard)),
+ fmt.Sprintf("%d|%s|Stopped|{}", uint64(i+1), fmt.Sprintf(`keyspace:"%s" shard:"%s" filter:{rules:{match:"t1" filter:"select * from t1 where in_keyrange(id, '%s.hash', '%s')"}}`, sourceKs, sourceShard, targetKs, tt.tablet.Shard)),
),
nil,
)
@@ -1112,7 +1423,6 @@ func TestFailedMoveTablesCreateCleanup(t *testing.T) {
require.NoError(t, err, "failed to save routing rules")
addInvariants(targetTablet.vrdbClient, vreplID, sourceTabletUID, position, wf, tenv.cells[0])
-
tenv.tmc.tablets[targetTabletUID].vrdbClient.ExpectRequest(fmt.Sprintf(readAllWorkflows, tenv.dbName, ""), &sqltypes.Result{}, nil)
targetTablet.vrdbClient.ExpectRequest(
fmt.Sprintf("%s %s",
@@ -1130,22 +1440,28 @@ func TestFailedMoveTablesCreateCleanup(t *testing.T) {
targetTablet.vrdbClient.ExpectRequest(fmt.Sprintf(getVReplicationRecord, vreplID),
sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
- "id|source",
- "int64|varchar",
+ "id|source|options",
+ "int64|varchar|varchar",
),
- fmt.Sprintf("%d|%s", vreplID, bls),
+ fmt.Sprintf("%d|%s|{}", vreplID, bls),
),
nil,
)
+ targetTablet.vrdbClient.AddInvariant(fmt.Sprintf(readWorkflow, wf, tenv.dbName), sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
+ ),
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Stopped||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
- targetTablet.vrdbClient.ExpectRequest(fmt.Sprintf(readWorkflow, wf, tenv.dbName), sqltypes.MakeTestResult(
+ targetTablet.vrdbClient.AddInvariant(binlogplayer.TestGetWorkflowQueryId1, sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
- "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys",
- "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64",
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
),
- fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Stopped||%s|1||0|0|0||0|1", vreplID, bls, position, targetKs),
- ), nil)
- targetTablet.vrdbClient.ExpectRequest(fmt.Sprintf(insertStreamsCreatedLog, bls), &sqltypes.Result{}, nil)
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Stopped||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
tenv.tmc.setVReplicationExecResults(targetTablet.tablet,
fmt.Sprintf("select convert_tz('2006-01-02 15:04:05', '%s', 'UTC')", invalidTimeZone),
@@ -1172,7 +1488,6 @@ func TestFailedMoveTablesCreateCleanup(t *testing.T) {
// Save the current target vschema.
vs, err := tenv.ts.GetVSchema(ctx, targetKs)
require.NoError(t, err, "failed to get target vschema")
-
_, err = ws.MoveTablesCreate(ctx, &vtctldatapb.MoveTablesCreateRequest{
Workflow: wf,
SourceKeyspace: sourceKs,
@@ -1451,6 +1766,7 @@ func addInvariants(dbClient *binlogplayer.MockDBClient, vreplID, sourceTabletUID
"0",
))
dbClient.AddInvariant(fmt.Sprintf(updatePickedSourceTablet, cell, sourceTabletUID, vreplID), &sqltypes.Result{})
+
}
func addMaterializeSettingsTablesToSchema(ms *vtctldatapb.MaterializeSettings, tenv *testEnv, venv *vtenv.Environment) {
@@ -1560,22 +1876,22 @@ func TestExternalizeLookupVindex(t *testing.T) {
trxTS := fmt.Sprintf("%d", time.Now().Unix())
fields := sqltypes.MakeTestFields(
- "id|state|message|source|workflow_type|workflow_sub_type|max_tps|max_replication_lag|time_updated|time_heartbeat|time_throttled|transaction_timestamp|rows_copied",
- "int64|varbinary|varbinary|blob|int64|int64|int64|int64|int64|int64|int64|int64|int64",
+ "id|state|message|source|workflow_type|workflow_sub_type|max_tps|max_replication_lag|time_updated|time_heartbeat|time_throttled|transaction_timestamp|rows_copied|options",
+ "int64|varbinary|varbinary|blob|int64|int64|int64|int64|int64|int64|int64|int64|int64|varchar",
)
wftype := fmt.Sprintf("%d", binlogdatapb.VReplicationWorkflowType_CreateLookupIndex)
ownedSourceStopAfterCopy := fmt.Sprintf(`keyspace:"%s",shard:"0",filter:{rules:{match:"owned_lookup" filter:"select * from t1 where in_keyrange(col1, '%s.xxhash', '-80')"}} stop_after_copy:true`,
ms.SourceKeyspace, ms.SourceKeyspace)
ownedSourceKeepRunningAfterCopy := fmt.Sprintf(`keyspace:"%s",shard:"0",filter:{rules:{match:"owned_lookup" filter:"select * from t1 where in_keyrange(col1, '%s.xxhash', '-80')"}}`,
ms.SourceKeyspace, ms.SourceKeyspace)
- ownedRunning := sqltypes.MakeTestResult(fields, "1|Running|msg|"+ownedSourceKeepRunningAfterCopy+"|"+wftype+"|0|0|0|0|0|0|"+trxTS+"|5")
- ownedStopped := sqltypes.MakeTestResult(fields, "1|Stopped|Stopped after copy|"+ownedSourceStopAfterCopy+"|"+wftype+"|0|0|0|0|0|0|"+trxTS+"|5")
+ ownedRunning := sqltypes.MakeTestResult(fields, "1|Running|msg|"+ownedSourceKeepRunningAfterCopy+"|"+wftype+"|0|0|0|0|0|0|"+trxTS+"|5|{}")
+ ownedStopped := sqltypes.MakeTestResult(fields, "1|Stopped|Stopped after copy|"+ownedSourceStopAfterCopy+"|"+wftype+"|0|0|0|0|0|0|"+trxTS+"|5|{}")
unownedSourceStopAfterCopy := fmt.Sprintf(`keyspace:"%s",shard:"0",filter:{rules:{match:"unowned_lookup" filter:"select * from t1 where in_keyrange(col1, '%s.xxhash', '-80')"}} stop_after_copy:true`,
ms.SourceKeyspace, ms.SourceKeyspace)
unownedSourceKeepRunningAfterCopy := fmt.Sprintf(`keyspace:"%s",shard:"0",filter:{rules:{match:"unowned_lookup" filter:"select * from t1 where in_keyrange(col1, '%s.xxhash', '-80')"}}`,
ms.SourceKeyspace, ms.SourceKeyspace)
- unownedRunning := sqltypes.MakeTestResult(fields, "2|Running|msg|"+unownedSourceKeepRunningAfterCopy+"|"+wftype+"|0|0|0|0|0|0|"+trxTS+"|5")
- unownedStopped := sqltypes.MakeTestResult(fields, "2|Stopped|Stopped after copy|"+unownedSourceStopAfterCopy+"|"+wftype+"|0|0|0|0|0|0|"+trxTS+"|5")
+ unownedRunning := sqltypes.MakeTestResult(fields, "2|Running|msg|"+unownedSourceKeepRunningAfterCopy+"|"+wftype+"|0|0|0|0|0|0|"+trxTS+"|5|{}")
+ unownedStopped := sqltypes.MakeTestResult(fields, "2|Stopped|Stopped after copy|"+unownedSourceStopAfterCopy+"|"+wftype+"|0|0|0|0|0|0|"+trxTS+"|5|{}")
testcases := []struct {
request *vtctldatapb.LookupVindexExternalizeRequest
@@ -1861,6 +2177,13 @@ func TestMaterializerManyToOne(t *testing.T) {
fmt.Sprintf(` values ('%s', 'keyspace:"%s" shard:"%s" filter:{rules:{match:"t1" filter:"select * from t1"} rules:{match:"t2" filter:"select * from t3"}}', '', 0, 0, '%s', 'primary,rdonly', now(), 0, 'Stopped', '%s', 0, 0, 0, '{}')`,
wf, sourceKs, sourceShard, tenv.cells[0], tenv.dbName)
if vreplID == 1 {
+ targetTablet.vrdbClient.AddInvariant(binlogplayer.TestGetWorkflowQueryId1, sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
+ ),
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
targetTablet.vrdbClient.ExpectRequest(insert, &sqltypes.Result{InsertID: uint64(vreplID)}, nil)
targetTablet.vrdbClient.ExpectRequest(getAutoIncrementStep, &sqltypes.Result{}, nil)
targetTablet.vrdbClient.ExpectRequest(fmt.Sprintf(getVReplicationRecord, vreplID),
@@ -1956,6 +2279,13 @@ func TestMaterializerOneToMany(t *testing.T) {
insert := insertVReplicationPrefix +
fmt.Sprintf(` values ('%s', 'keyspace:"%s" shard:"%s" filter:{rules:{match:"t1" filter:"select * from t1 where in_keyrange(c1, \'%s.xxhash\', \'%s\')"}}', '', 0, 0, '%s', 'primary,rdonly', now(), 0, 'Stopped', '%s', 0, 0, 0, '{}')`,
wf, sourceKs, sourceShard, targetKs, targetShard, tenv.cells[0], tenv.dbName)
+ targetTablet.vrdbClient.AddInvariant(binlogplayer.TestGetWorkflowQueryId1, sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
+ ),
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
if targetShard == "-80" {
targetTablet.vrdbClient.ExpectRequest(insert, &sqltypes.Result{InsertID: uint64(vreplID)}, nil)
targetTablet.vrdbClient.ExpectRequest(getAutoIncrementStep, &sqltypes.Result{}, nil)
@@ -2053,9 +2383,17 @@ func TestMaterializerManyToMany(t *testing.T) {
addInvariants(targetTablet.vrdbClient, vreplID, sourceTabletUID+(i*10), position, wf, tenv.cells[0])
bls := fmt.Sprintf("keyspace:\"%s\" shard:\"%s\" filter:{rules:{match:\"t1\" filter:\"select * from t1 where in_keyrange(c1, '%s.xxhash', '%s')\"}}",
sourceKs, sourceShard, targetKs, targetShard)
+
insert := insertVReplicationPrefix +
fmt.Sprintf(` values ('%s', 'keyspace:"%s" shard:"%s" filter:{rules:{match:"t1" filter:"select * from t1 where in_keyrange(c1, \'%s.xxhash\', \'%s\')"}}', '', 0, 0, '%s', 'primary,rdonly', now(), 0, 'Stopped', '%s', 0, 0, 0, '{}')`,
wf, sourceKs, sourceShard, targetKs, targetShard, tenv.cells[0], tenv.dbName)
+ targetTablet.vrdbClient.AddInvariant(binlogplayer.TestGetWorkflowQueryId1, sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
+ ),
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
if targetShard == "80-" && sourceShard == "40-" { // Last insert
targetTablet.vrdbClient.ExpectRequest(insert, &sqltypes.Result{InsertID: uint64(vreplID)}, errShortCircuit)
} else { // Can't short circuit as we will do more inserts
@@ -2157,6 +2495,13 @@ func TestMaterializerMulticolumnVindex(t *testing.T) {
insert := insertVReplicationPrefix +
fmt.Sprintf(` values ('%s', 'keyspace:"%s" shard:"%s" filter:{rules:{match:"t1" filter:"select * from t1 where in_keyrange(c1, c2, \'%s.region\', \'%s\')"}}', '', 0, 0, '%s', 'primary,rdonly', now(), 0, 'Stopped', '%s', 0, 0, 0, '{}')`,
wf, sourceKs, sourceShard, targetKs, targetShard, tenv.cells[0], tenv.dbName)
+ targetTablet.vrdbClient.AddInvariant(binlogplayer.TestGetWorkflowQueryId1, sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
+ ),
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
if targetShard == "-80" {
targetTablet.vrdbClient.ExpectRequest(insert, &sqltypes.Result{InsertID: uint64(vreplID)}, nil)
targetTablet.vrdbClient.ExpectRequest(getAutoIncrementStep, &sqltypes.Result{}, nil)
@@ -2397,6 +2742,13 @@ func TestMaterializerExplicitColumns(t *testing.T) {
insert := insertVReplicationPrefix +
fmt.Sprintf(` values ('%s', 'keyspace:"%s" shard:"%s" filter:{rules:{match:"t1" filter:"select c1, c1 + c2, c2 from t1 where in_keyrange(c1, c2, \'%s.region\', \'%s\')"}}', '', 0, 0, '%s', 'primary,rdonly', now(), 0, 'Stopped', '%s', 0, 0, 0, '{}')`,
wf, sourceKs, sourceShard, targetKs, targetShard, tenv.cells[0], tenv.dbName)
+ targetTablet.vrdbClient.AddInvariant(binlogplayer.TestGetWorkflowQueryId1, sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
+ ),
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
if targetShard == "-80" {
targetTablet.vrdbClient.ExpectRequest(insert, &sqltypes.Result{InsertID: uint64(vreplID)}, nil)
targetTablet.vrdbClient.ExpectRequest(getAutoIncrementStep, &sqltypes.Result{}, nil)
@@ -2497,6 +2849,13 @@ func TestMaterializerRenamedColumns(t *testing.T) {
insert := insertVReplicationPrefix +
fmt.Sprintf(` values ('%s', 'keyspace:"%s" shard:"%s" filter:{rules:{match:"t1" filter:"select c3 as c1, c1 + c2, c4 as c2 from t1 where in_keyrange(c3, c4, \'%s.region\', \'%s\')"}}', '', 0, 0, '%s', 'primary,rdonly', now(), 0, 'Stopped', '%s', 0, 0, 0, '{}')`,
wf, sourceKs, sourceShard, targetKs, targetShard, tenv.cells[0], tenv.dbName)
+ targetTablet.vrdbClient.AddInvariant(binlogplayer.TestGetWorkflowQueryId1, sqltypes.MakeTestResult(
+ sqltypes.MakeTestFields(
+ "id|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|defer_secondary_keys|options",
+ "int64|varchar|blob|varchar|int64|int64|varchar|varchar|int64|int64|varchar|varchar|varchar|int64|varchar|int64|int64|int64|varchar|int64|int64|varchar",
+ ),
+ fmt.Sprintf("%d|%s|%s|NULL|0|0|||1686577659|0|Running||%s|1||0|0|0||0|1|{}", vreplID, bls, position, targetKs),
+ ))
if targetShard == "-80" {
targetTablet.vrdbClient.ExpectRequest(insert, &sqltypes.Result{InsertID: uint64(vreplID)}, nil)
targetTablet.vrdbClient.ExpectRequest(getAutoIncrementStep, &sqltypes.Result{}, nil)
@@ -3235,6 +3594,12 @@ func TestBuildUpdateVReplicationWorkflowsQuery(t *testing.T) {
DBName: "vt_testks",
},
}
+ forVdiff := "for vdiff"
+ forPos := "for until position"
+ forTest := "test message"
+ stopPos1 := "MySQL56/17b1039f-21b6-13ed-b365-1a43f95f28a3:1-20"
+ stopPos2 := "MySQL56/17b1039f-21b6-13ed-b365-1a43f95f28a3:1-9999"
+
tests := []struct {
name string
req *tabletmanagerdatapb.UpdateVReplicationWorkflowsRequest
@@ -3242,18 +3607,14 @@ func TestBuildUpdateVReplicationWorkflowsQuery(t *testing.T) {
wantErr string
}{
{
- name: "nothing to update",
- req: &tabletmanagerdatapb.UpdateVReplicationWorkflowsRequest{
- State: binlogdatapb.VReplicationWorkflowState(textutil.SimulatedNullInt),
- Message: textutil.SimulatedNullString,
- StopPosition: textutil.SimulatedNullString,
- },
+ name: "nothing to update",
+ req: &tabletmanagerdatapb.UpdateVReplicationWorkflowsRequest{},
wantErr: errNoFieldsToUpdate.Error(),
},
{
name: "mutually exclusive options",
req: &tabletmanagerdatapb.UpdateVReplicationWorkflowsRequest{
- State: binlogdatapb.VReplicationWorkflowState_Running,
+ State: &running,
AllWorkflows: true,
ExcludeWorkflows: []string{"wf1"},
},
@@ -3262,9 +3623,9 @@ func TestBuildUpdateVReplicationWorkflowsQuery(t *testing.T) {
{
name: "all values and options",
req: &tabletmanagerdatapb.UpdateVReplicationWorkflowsRequest{
- State: binlogdatapb.VReplicationWorkflowState_Running,
- Message: "test message",
- StopPosition: "MySQL56/17b1039f-21b6-13ed-b365-1a43f95f28a3:1-20",
+ State: &running,
+ Message: &forTest,
+ StopPosition: &stopPos1,
IncludeWorkflows: []string{"wf2", "wf3"},
ExcludeWorkflows: []string{"1wf"},
},
@@ -3273,9 +3634,7 @@ func TestBuildUpdateVReplicationWorkflowsQuery(t *testing.T) {
{
name: "state for all",
req: &tabletmanagerdatapb.UpdateVReplicationWorkflowsRequest{
- State: binlogdatapb.VReplicationWorkflowState_Running,
- Message: textutil.SimulatedNullString,
- StopPosition: textutil.SimulatedNullString,
+ State: &running,
AllWorkflows: true,
},
want: "update /*vt+ ALLOW_UNSAFE_VREPLICATION_WRITE */ _vt.vreplication set state = 'Running' where db_name = 'vt_testks'",
@@ -3283,9 +3642,8 @@ func TestBuildUpdateVReplicationWorkflowsQuery(t *testing.T) {
{
name: "stop all for vdiff",
req: &tabletmanagerdatapb.UpdateVReplicationWorkflowsRequest{
- State: binlogdatapb.VReplicationWorkflowState_Stopped,
- Message: "for vdiff",
- StopPosition: textutil.SimulatedNullString,
+ State: &stopped,
+ Message: &forVdiff,
AllWorkflows: true,
},
want: "update /*vt+ ALLOW_UNSAFE_VREPLICATION_WRITE */ _vt.vreplication set state = 'Stopped', message = 'for vdiff' where db_name = 'vt_testks'",
@@ -3293,9 +3651,9 @@ func TestBuildUpdateVReplicationWorkflowsQuery(t *testing.T) {
{
name: "start one until position",
req: &tabletmanagerdatapb.UpdateVReplicationWorkflowsRequest{
- State: binlogdatapb.VReplicationWorkflowState_Running,
- Message: "for until position",
- StopPosition: "MySQL56/17b1039f-21b6-13ed-b365-1a43f95f28a3:1-9999",
+ State: &running,
+ Message: &forPos,
+ StopPosition: &stopPos2,
IncludeWorkflows: []string{"wf1"},
},
want: "update /*vt+ ALLOW_UNSAFE_VREPLICATION_WRITE */ _vt.vreplication set state = 'Running', message = 'for until position', stop_pos = 'MySQL56/17b1039f-21b6-13ed-b365-1a43f95f28a3:1-9999' where db_name = 'vt_testks' and workflow in ('wf1')",
diff --git a/go/vt/vttablet/tabletmanager/vdiff/action_test.go b/go/vt/vttablet/tabletmanager/vdiff/action_test.go
index 2143f0a2369..6bdc7044878 100644
--- a/go/vt/vttablet/tabletmanager/vdiff/action_test.go
+++ b/go/vt/vttablet/tabletmanager/vdiff/action_test.go
@@ -26,6 +26,7 @@ import (
"github.com/google/uuid"
"github.com/stretchr/testify/require"
+ "vitess.io/vitess/go/ptr"
"vitess.io/vitess/go/sqltypes"
"vitess.io/vitess/go/vt/vterrors"
@@ -46,7 +47,6 @@ func TestPerformVDiffAction(t *testing.T) {
query string
result *sqltypes.Result // Optional if you need a non-empty result
}
- false := false
tests := []struct {
name string
@@ -103,7 +103,7 @@ func TestPerformVDiffAction(t *testing.T) {
Options: &tabletmanagerdatapb.VDiffOptions{
PickerOptions: &tabletmanagerdatapb.VDiffPickerOptions{},
CoreOptions: &tabletmanagerdatapb.VDiffCoreOptions{
- AutoStart: &false,
+ AutoStart: ptr.Of(false),
},
},
},
diff --git a/go/vt/vttablet/tabletmanager/vdiff/engine_test.go b/go/vt/vttablet/tabletmanager/vdiff/engine_test.go
index ef3c673cc8f..61d713a8e58 100644
--- a/go/vt/vttablet/tabletmanager/vdiff/engine_test.go
+++ b/go/vt/vttablet/tabletmanager/vdiff/engine_test.go
@@ -77,10 +77,10 @@ func TestEngineOpen(t *testing.T) {
fmt.Sprintf("1|%s|%s|%s|%s|%s|%s|%s|", UUID, vdiffenv.workflow, tstenv.KeyspaceName, tstenv.ShardName, vdiffDBName, tt.state, optionsJS),
), nil)
vdenv.dbClient.ExpectRequest(fmt.Sprintf("select * from _vt.vreplication where workflow = '%s' and db_name = '%s'", vdiffenv.workflow, vdiffDBName), sqltypes.MakeTestResult(sqltypes.MakeTestFields(
- "id|workflow|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type",
- "int64|varbinary|blob|varbinary|varbinary|int64|int64|varbinary|varbinary|int64|int64|varbinary|varbinary|varbinary|int64|varbinary|int64|int64|int64|varchar|int64",
+ "id|workflow|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|options",
+ "int64|varbinary|blob|varbinary|varbinary|int64|int64|varbinary|varbinary|int64|int64|varbinary|varbinary|varbinary|int64|varbinary|int64|int64|int64|varchar|int64|varchar",
),
- fmt.Sprintf("1|%s|%s|%s||9223372036854775807|9223372036854775807||PRIMARY,REPLICA|1669511347|0|Running||%s|200||1669511347|1|0||1", vdiffenv.workflow, vreplSource, vdiffSourceGtid, vdiffDBName),
+ fmt.Sprintf("1|%s|%s|%s||9223372036854775807|9223372036854775807||PRIMARY,REPLICA|1669511347|0|Running||%s|200||1669511347|1|0||1|{}", vdiffenv.workflow, vreplSource, vdiffSourceGtid, vdiffDBName),
), nil)
// Now let's short circuit the vdiff as we know that the open has worked as expected.
@@ -126,10 +126,10 @@ func TestVDiff(t *testing.T) {
vdenv.dbClient.ExpectRequest("select * from _vt.vdiff where id = 1", controllerQR, nil)
vdenv.dbClient.ExpectRequest(fmt.Sprintf("select * from _vt.vreplication where workflow = '%s' and db_name = '%s'", vdiffenv.workflow, vdiffDBName), sqltypes.MakeTestResult(sqltypes.MakeTestFields(
- "id|workflow|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type",
- "int64|varbinary|blob|varbinary|varbinary|int64|int64|varbinary|varbinary|int64|int64|varbinary|varbinary|varbinary|int64|varbinary|int64|int64|int64|varchar|int64",
+ "id|workflow|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|options",
+ "int64|varbinary|blob|varbinary|varbinary|int64|int64|varbinary|varbinary|int64|int64|varbinary|varbinary|varbinary|int64|varbinary|int64|int64|int64|varchar|int64|varchar",
),
- fmt.Sprintf("1|%s|%s|%s||9223372036854775807|9223372036854775807||PRIMARY,REPLICA|1669511347|0|Running||%s|200||1669511347|1|0||1", vdiffenv.workflow, vreplSource, vdiffSourceGtid, vdiffDBName),
+ fmt.Sprintf("1|%s|%s|%s||9223372036854775807|9223372036854775807||PRIMARY,REPLICA|1669511347|0|Running||%s|200||1669511347|1|0||1|{}", vdiffenv.workflow, vreplSource, vdiffSourceGtid, vdiffDBName),
), nil)
vdenv.dbClient.ExpectRequest("update _vt.vdiff set state = 'started', last_error = left('', 1024) , started_at = utc_timestamp() where id = 1", singleRowAffected, nil)
vdenv.dbClient.ExpectRequest("insert into _vt.vdiff_log(vdiff_id, message) values (1, 'State changed to: started')", singleRowAffected, nil)
@@ -263,10 +263,10 @@ func TestEngineRetryErroredVDiffs(t *testing.T) {
fmt.Sprintf("%s|%s|%s|%s|%s|%s|pending|%s|", id, UUID, vdiffenv.workflow, tstenv.KeyspaceName, tstenv.ShardName, vdiffDBName, optionsJS),
), nil)
vdiffenv.dbClient.ExpectRequest(fmt.Sprintf("select * from _vt.vreplication where workflow = '%s' and db_name = '%s'", vdiffenv.workflow, vdiffDBName), sqltypes.MakeTestResult(sqltypes.MakeTestFields(
- "id|workflow|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type",
- "int64|varbinary|blob|varbinary|varbinary|int64|int64|varbinary|varbinary|int64|int64|varbinary|varbinary|varbinary|int64|varbinary|int64|int64|int64|varchar|int64",
+ "id|workflow|source|pos|stop_pos|max_tps|max_replication_lag|cell|tablet_types|time_updated|transaction_timestamp|state|message|db_name|rows_copied|tags|time_heartbeat|workflow_type|time_throttled|component_throttled|workflow_sub_type|options",
+ "int64|varbinary|blob|varbinary|varbinary|int64|int64|varbinary|varbinary|int64|int64|varbinary|varbinary|varbinary|int64|varbinary|int64|int64|int64|varchar|int64|varchar",
),
- fmt.Sprintf("%s|%s|%s|%s||9223372036854775807|9223372036854775807||PRIMARY,REPLICA|1669511347|0|Running||%s|200||1669511347|1|0||1", id, vdiffenv.workflow, vreplSource, vdiffSourceGtid, vdiffDBName),
+ fmt.Sprintf("%s|%s|%s|%s||9223372036854775807|9223372036854775807||PRIMARY,REPLICA|1669511347|0|Running||%s|200||1669511347|1|0||1|{}", id, vdiffenv.workflow, vreplSource, vdiffSourceGtid, vdiffDBName),
), nil)
// At this point we know that we kicked off the expected retry so we can short circuit the vdiff.
diff --git a/go/vt/vttablet/tabletmanager/vdiff/framework_test.go b/go/vt/vttablet/tabletmanager/vdiff/framework_test.go
index ec42fab38a7..33a0da8e23f 100644
--- a/go/vt/vttablet/tabletmanager/vdiff/framework_test.go
+++ b/go/vt/vttablet/tabletmanager/vdiff/framework_test.go
@@ -30,6 +30,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
+ _flag "vitess.io/vitess/go/internal/flag"
"vitess.io/vitess/go/mysql"
"vitess.io/vitess/go/mysql/capabilities"
"vitess.io/vitess/go/sqltypes"
@@ -184,6 +185,7 @@ func init() {
}
func TestMain(m *testing.M) {
+ _flag.ParseFlagsForTest()
exitCode := func() int {
var err error
ctx, cancel := context.WithCancel(context.Background())
@@ -277,7 +279,7 @@ func (ftc *fakeTabletConn) VStreamRows(ctx context.Context, request *binlogdatap
vstreamRowsSendHook(ctx)
}
return send(rows)
- })
+ }, nil)
}
func (ftc *fakeTabletConn) Close(ctx context.Context) error {
diff --git a/go/vt/vttablet/tabletmanager/vdiff/table_plan.go b/go/vt/vttablet/tabletmanager/vdiff/table_plan.go
index becce6f90e6..836df8ffe94 100644
--- a/go/vt/vttablet/tabletmanager/vdiff/table_plan.go
+++ b/go/vt/vttablet/tabletmanager/vdiff/table_plan.go
@@ -30,6 +30,7 @@ import (
"vitess.io/vitess/go/vt/vterrors"
"vitess.io/vitess/go/vt/vtgate/engine"
"vitess.io/vitess/go/vt/vtgate/engine/opcode"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
querypb "vitess.io/vitess/go/vt/proto/query"
tabletmanagerdatapb "vitess.io/vitess/go/vt/proto/tabletmanagerdata"
@@ -54,17 +55,19 @@ type tablePlan struct {
pkCols []int
// selectPks is the list of pk columns as they appear in the select clause for the diff.
- selectPks []int
- dbName string
- table *tabletmanagerdatapb.TableDefinition
- orderBy sqlparser.OrderBy
- aggregates []*engine.AggregateParams
+ selectPks []int
+ dbName string
+ table *tabletmanagerdatapb.TableDefinition
+ orderBy sqlparser.OrderBy
+ aggregates []*engine.AggregateParams
+ WorkflowConfig **vttablet.VReplicationConfig
}
func (td *tableDiffer) buildTablePlan(dbClient binlogplayer.DBClient, dbName string, collationEnv *collations.Environment) (*tablePlan, error) {
tp := &tablePlan{
- table: td.table,
- dbName: dbName,
+ table: td.table,
+ dbName: dbName,
+ WorkflowConfig: td.wd.WorkflowConfig,
}
statement, err := td.wd.ct.vde.parser.Parse(td.sourceQuery)
if err != nil {
diff --git a/go/vt/vttablet/tabletmanager/vdiff/workflow_differ.go b/go/vt/vttablet/tabletmanager/vdiff/workflow_differ.go
index e891b693423..ef30d8f14b0 100644
--- a/go/vt/vttablet/tabletmanager/vdiff/workflow_differ.go
+++ b/go/vt/vttablet/tabletmanager/vdiff/workflow_differ.go
@@ -24,8 +24,6 @@ import (
"strings"
"time"
- "vitess.io/vitess/go/vt/schema"
-
"google.golang.org/protobuf/encoding/prototext"
"vitess.io/vitess/go/mysql/collations"
@@ -33,10 +31,12 @@ import (
"vitess.io/vitess/go/vt/binlog/binlogplayer"
"vitess.io/vitess/go/vt/key"
"vitess.io/vitess/go/vt/log"
+ "vitess.io/vitess/go/vt/schema"
"vitess.io/vitess/go/vt/sqlparser"
"vitess.io/vitess/go/vt/vtctl/schematools"
"vitess.io/vitess/go/vt/vterrors"
"vitess.io/vitess/go/vt/vtgate/vindexes"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
"vitess.io/vitess/go/vt/vttablet/tabletmanager/vreplication"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
@@ -53,15 +53,18 @@ type workflowDiffer struct {
tableDiffers map[string]*tableDiffer // key is table name
opts *tabletmanagerdatapb.VDiffOptions
- collationEnv *collations.Environment
+ collationEnv *collations.Environment
+ WorkflowConfig **vttablet.VReplicationConfig
}
func newWorkflowDiffer(ct *controller, opts *tabletmanagerdatapb.VDiffOptions, collationEnv *collations.Environment) (*workflowDiffer, error) {
+ vttablet.InitVReplicationConfigDefaults()
wd := &workflowDiffer{
- ct: ct,
- opts: opts,
- tableDiffers: make(map[string]*tableDiffer, 1),
- collationEnv: collationEnv,
+ ct: ct,
+ opts: opts,
+ tableDiffers: make(map[string]*tableDiffer, 1),
+ collationEnv: collationEnv,
+ WorkflowConfig: &vttablet.DefaultVReplicationConfig,
}
return wd, nil
}
diff --git a/go/vt/vttablet/tabletmanager/vdiff/workflow_differ_test.go b/go/vt/vttablet/tabletmanager/vdiff/workflow_differ_test.go
index 0054c37faf7..c51b6fdf281 100644
--- a/go/vt/vttablet/tabletmanager/vdiff/workflow_differ_test.go
+++ b/go/vt/vttablet/tabletmanager/vdiff/workflow_differ_test.go
@@ -574,6 +574,7 @@ func TestBuildPlanSuccess(t *testing.T) {
err = wd.buildPlan(dbc, filter, testSchema)
require.NoError(t, err, tcase.input)
require.Equal(t, 1, len(wd.tableDiffers), tcase.input)
+ wd.tableDiffers[tcase.table].tablePlan.WorkflowConfig = nil
assert.Equal(t, tcase.tablePlan, wd.tableDiffers[tcase.table].tablePlan, tcase.input)
// Confirm that the options are passed through.
diff --git a/go/vt/vttablet/tabletmanager/vreplication/controller.go b/go/vt/vttablet/tabletmanager/vreplication/controller.go
index 581244eebb3..575300a685c 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/controller.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/controller.go
@@ -18,6 +18,7 @@ package vreplication
import (
"context"
+ "encoding/json"
"fmt"
"strconv"
"strings"
@@ -31,12 +32,14 @@ import (
"vitess.io/vitess/go/vt/discovery"
"vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/mysqlctl"
+ "vitess.io/vitess/go/vt/proto/vtctldata"
"vitess.io/vitess/go/vt/topo"
"vitess.io/vitess/go/vt/vterrors"
- "vitess.io/vitess/go/vt/vttablet"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
topodatapb "vitess.io/vitess/go/vt/proto/topodata"
+ vtrpcpb "vitess.io/vitess/go/vt/proto/vtrpc"
)
const (
@@ -68,15 +71,36 @@ type controller struct {
sourceTablet atomic.Value
lastWorkflowError *vterrors.LastError
+ WorkflowConfig *vttablet.VReplicationConfig
+}
+
+func processWorkflowOptions(params map[string]string) (*vttablet.VReplicationConfig, error) {
+ options, ok := params["options"]
+ if !ok {
+ options = "{}"
+ }
+ var workflowOptions vtctldata.WorkflowOptions
+ if err := json.Unmarshal([]byte(options), &workflowOptions); err != nil {
+ return nil, fmt.Errorf("failed to parse options column: %v", err)
+ }
+ workflowConfig, err := vttablet.NewVReplicationConfig(workflowOptions.Config)
+ if err != nil {
+ return nil, fmt.Errorf("failed to process config options: %v", err)
+ }
+ return workflowConfig, nil
}
// newController creates a new controller. Unless a stream is explicitly 'Stopped',
// this function launches a goroutine to perform continuous vreplication.
-func newController(ctx context.Context, params map[string]string, dbClientFactory func() binlogplayer.DBClient, mysqld mysqlctl.MysqlDaemon, ts *topo.Server, cell, tabletTypesStr string, blpStats *binlogplayer.Stats, vre *Engine, tpo discovery.TabletPickerOptions) (*controller, error) {
+func newController(ctx context.Context, params map[string]string, dbClientFactory func() binlogplayer.DBClient, mysqld mysqlctl.MysqlDaemon, ts *topo.Server, cell string, blpStats *binlogplayer.Stats, vre *Engine, tpo discovery.TabletPickerOptions) (*controller, error) {
if blpStats == nil {
blpStats = binlogplayer.NewStats()
}
-
+ workflowConfig, err := processWorkflowOptions(params)
+ if err != nil {
+ return nil, err
+ }
+ tabletTypesStr := workflowConfig.TabletTypesStr
ct := &controller{
vre: vre,
dbClientFactory: dbClientFactory,
@@ -84,7 +108,9 @@ func newController(ctx context.Context, params map[string]string, dbClientFactor
blpStats: blpStats,
done: make(chan struct{}),
source: &binlogdatapb.BinlogSource{},
+ WorkflowConfig: workflowConfig,
}
+ blpStats.WorkflowConfig = workflowConfig.String()
ct.sourceTablet.Store(&topodatapb.TabletAlias{})
log.Infof("creating controller with cell: %v, tabletTypes: %v, and params: %v", cell, tabletTypesStr, params)
@@ -94,7 +120,7 @@ func newController(ctx context.Context, params map[string]string, dbClientFactor
}
ct.id = int32(id)
ct.workflow = params["workflow"]
- ct.lastWorkflowError = vterrors.NewLastError(fmt.Sprintf("VReplication controller %d for workflow %q", ct.id, ct.workflow), maxTimeToRetryError)
+ ct.lastWorkflowError = vterrors.NewLastError(fmt.Sprintf("VReplication controller %d for workflow %q", ct.id, ct.workflow), workflowConfig.MaxTimeToRetryError)
state := params["state"]
blpStats.State.Store(state)
@@ -164,8 +190,8 @@ func (ct *controller) run(ctx context.Context) {
}
ct.blpStats.ErrorCounts.Add([]string{"Stream Error"}, 1)
- binlogplayer.LogError(fmt.Sprintf("error in stream %v, will retry after %v", ct.id, retryDelay), err)
- timer := time.NewTimer(retryDelay)
+ binlogplayer.LogError(fmt.Sprintf("error in stream %v, will retry after %v", ct.id, ct.WorkflowConfig.RetryDelay), err)
+ timer := time.NewTimer(ct.WorkflowConfig.RetryDelay)
select {
case <-ctx.Done():
log.Warningf("context canceled: %s", err.Error())
@@ -176,6 +202,38 @@ func (ct *controller) run(ctx context.Context) {
}
}
+func setDBClientSettings(dbClient binlogplayer.DBClient, workflowConfig *vttablet.VReplicationConfig) error {
+ if workflowConfig == nil {
+ return vterrors.Errorf(vtrpcpb.Code_FAILED_PRECONDITION, "vreplication controller: workflowConfig is nil")
+ }
+ const maxRows = 10000
+ // Timestamp fields from binlogs are always sent as UTC.
+ // So, we should set the timezone to be UTC for those values to be correctly inserted.
+ if _, err := dbClient.ExecuteFetch("set @@session.time_zone = '+00:00'", maxRows); err != nil {
+ return err
+ }
+ // Tables may have varying character sets. To ship the bits without interpreting them
+ // we set the character set to be binary.
+ if _, err := dbClient.ExecuteFetch("set names 'binary'", maxRows); err != nil {
+ return err
+ }
+ if _, err := dbClient.ExecuteFetch(fmt.Sprintf("set @@session.net_read_timeout = %v",
+ workflowConfig.NetReadTimeout), maxRows); err != nil {
+ return err
+ }
+ if _, err := dbClient.ExecuteFetch(fmt.Sprintf("set @@session.net_write_timeout = %v",
+ workflowConfig.NetWriteTimeout), maxRows); err != nil {
+ return err
+ }
+ // We must apply AUTO_INCREMENT values precisely as we got them. This include the 0 value, which is
+ // not recommended in AUTO_INCREMENT, and yet is valid.
+ if _, err := dbClient.ExecuteFetch("set @@session.sql_mode = CONCAT(@@session.sql_mode, ',NO_AUTO_VALUE_ON_ZERO')",
+ maxRows); err != nil {
+ return err
+ }
+ return nil
+}
+
func (ct *controller) runBlp(ctx context.Context) (err error) {
defer func() {
ct.sourceTablet.Store(&topodatapb.TabletAlias{})
@@ -217,27 +275,9 @@ func (ct *controller) runBlp(ctx context.Context) (err error) {
player := binlogplayer.NewBinlogPlayerKeyRange(dbClient, tablet, ct.source.KeyRange, ct.id, ct.blpStats)
return player.ApplyBinlogEvents(ctx)
case ct.source.Filter != nil:
- // Timestamp fields from binlogs are always sent as UTC.
- // So, we should set the timezone to be UTC for those values to be correctly inserted.
- if _, err := dbClient.ExecuteFetch("set @@session.time_zone = '+00:00'", 10000); err != nil {
- return err
- }
- // Tables may have varying character sets. To ship the bits without interpreting them
- // we set the character set to be binary.
- if _, err := dbClient.ExecuteFetch("set names 'binary'", 10000); err != nil {
- return err
- }
- if _, err := dbClient.ExecuteFetch(fmt.Sprintf("set @@session.net_read_timeout = %v", vttablet.VReplicationNetReadTimeout), 10000); err != nil {
- return err
- }
- if _, err := dbClient.ExecuteFetch(fmt.Sprintf("set @@session.net_write_timeout = %v", vttablet.VReplicationNetWriteTimeout), 10000); err != nil {
- return err
- }
- // We must apply AUTO_INCREMENT values precisely as we got them. This include the 0 value, which is not recommended in AUTO_INCREMENT, and yet is valid.
- if _, err := dbClient.ExecuteFetch("set @@session.sql_mode = CONCAT(@@session.sql_mode, ',NO_AUTO_VALUE_ON_ZERO')", 10000); err != nil {
+ if err := setDBClientSettings(dbClient, ct.WorkflowConfig); err != nil {
return err
}
-
var vsClient VStreamerClient
var err error
if name := ct.source.GetExternalMysql(); name != "" {
@@ -253,7 +293,7 @@ func (ct *controller) runBlp(ctx context.Context) (err error) {
}
defer vsClient.Close(ctx)
- vr := newVReplicator(ct.id, ct.source, vsClient, ct.blpStats, dbClient, ct.mysqld, ct.vre)
+ vr := newVReplicator(ct.id, ct.source, vsClient, ct.blpStats, dbClient, ct.mysqld, ct.vre, ct.WorkflowConfig)
err = vr.Replicate(ctx)
ct.lastWorkflowError.Record(err)
diff --git a/go/vt/vttablet/tabletmanager/vreplication/controller_test.go b/go/vt/vttablet/tabletmanager/vreplication/controller_test.go
index 57cb60384c6..9a0b6ca833c 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/controller_test.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/controller_test.go
@@ -23,6 +23,8 @@ import (
"testing"
"time"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
+
"vitess.io/vitess/go/sqltypes"
"vitess.io/vitess/go/vt/binlog/binlogplayer"
"vitess.io/vitess/go/vt/discovery"
@@ -70,20 +72,29 @@ var (
defaultTabletPickerOptions = discovery.TabletPickerOptions{}
)
+func setTabletTypesStr(tabletTypesStr string) func() {
+ oldTabletTypesStr := vttablet.DefaultVReplicationConfig.TabletTypesStr
+ vttablet.DefaultVReplicationConfig.TabletTypesStr = tabletTypesStr
+ return func() {
+ vttablet.DefaultVReplicationConfig.TabletTypesStr = oldTabletTypesStr
+ }
+}
+
func TestControllerKeyRange(t *testing.T) {
resetBinlogClient()
wantTablet := addTablet(100)
defer deleteTablet(wantTablet)
params := map[string]string{
- "id": "1",
- "state": binlogdatapb.VReplicationWorkflowState_Running.String(),
- "source": fmt.Sprintf(`keyspace:"%s" shard:"0" key_range:{end:"\x80"}`, env.KeyspaceName),
+ "id": "1",
+ "state": binlogdatapb.VReplicationWorkflowState_Running.String(),
+ "source": fmt.Sprintf(`keyspace:"%s" shard:"0" key_range:{end:"\x80"}`, env.KeyspaceName),
+ "options": "{}",
}
dbClient := binlogplayer.NewMockDBClient(t)
dbClient.ExpectRequestRE("update _vt.vreplication set message='Picked source tablet.*", testDMLResponse, nil)
dbClient.ExpectRequest("update _vt.vreplication set state='Running', message='' where id=1", testDMLResponse, nil)
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", testSettingsResponse, nil)
+ dbClient.ExpectRequest(binlogplayer.TestGetWorkflowQueryId1, testSettingsResponse, nil)
dbClient.ExpectRequest("begin", nil, nil)
dbClient.ExpectRequest("insert into t values(1)", testDMLResponse, nil)
dbClient.ExpectRequestRE("update _vt.vreplication set pos='MariaDB/0-1-1235', time_updated=.*", testDMLResponse, nil)
@@ -94,7 +105,8 @@ func TestControllerKeyRange(t *testing.T) {
mysqld.MysqlPort.Store(3306)
vre := NewTestEngine(nil, wantTablet.GetAlias().Cell, mysqld, dbClientFactory, dbClientFactory, dbClient.DBName(), nil)
- ct, err := newController(context.Background(), params, dbClientFactory, mysqld, env.TopoServ, env.Cells[0], "replica", nil, vre, defaultTabletPickerOptions)
+ defer setTabletTypesStr("replica")()
+ ct, err := newController(context.Background(), params, dbClientFactory, mysqld, env.TopoServ, env.Cells[0], nil, vre, defaultTabletPickerOptions)
if err != nil {
t.Fatal(err)
}
@@ -113,15 +125,16 @@ func TestControllerTables(t *testing.T) {
resetBinlogClient()
params := map[string]string{
- "id": "1",
- "state": binlogdatapb.VReplicationWorkflowState_Running.String(),
- "source": fmt.Sprintf(`keyspace:"%s" shard:"0" tables:"table1" tables:"/funtables_/" `, env.KeyspaceName),
+ "id": "1",
+ "state": binlogdatapb.VReplicationWorkflowState_Running.String(),
+ "source": fmt.Sprintf(`keyspace:"%s" shard:"0" tables:"table1" tables:"/funtables_/" `, env.KeyspaceName),
+ "options": "{}",
}
dbClient := binlogplayer.NewMockDBClient(t)
dbClient.ExpectRequestRE("update _vt.vreplication set message='Picked source tablet.*", testDMLResponse, nil)
dbClient.ExpectRequest("update _vt.vreplication set state='Running', message='' where id=1", testDMLResponse, nil)
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", testSettingsResponse, nil)
+ dbClient.ExpectRequest(binlogplayer.TestGetWorkflowQueryId1, testSettingsResponse, nil)
dbClient.ExpectRequest("begin", nil, nil)
dbClient.ExpectRequest("insert into t values(1)", testDMLResponse, nil)
dbClient.ExpectRequestRE("update _vt.vreplication set pos='MariaDB/0-1-1235', time_updated=.*", testDMLResponse, nil)
@@ -155,8 +168,8 @@ func TestControllerTables(t *testing.T) {
}
mysqld.MysqlPort.Store(3306)
vre := NewTestEngine(nil, wantTablet.GetAlias().Cell, mysqld, dbClientFactory, dbClientFactory, dbClient.DBName(), nil)
-
- ct, err := newController(context.Background(), params, dbClientFactory, mysqld, env.TopoServ, env.Cells[0], "replica", nil, vre, defaultTabletPickerOptions)
+ defer setTabletTypesStr("replica")()
+ ct, err := newController(context.Background(), params, dbClientFactory, mysqld, env.TopoServ, env.Cells[0], nil, vre, defaultTabletPickerOptions)
if err != nil {
t.Fatal(err)
}
@@ -171,9 +184,10 @@ func TestControllerTables(t *testing.T) {
func TestControllerBadID(t *testing.T) {
params := map[string]string{
- "id": "bad",
+ "id": "bad",
+ "options": "{}",
}
- _, err := newController(context.Background(), params, nil, nil, nil, "", "", nil, nil, defaultTabletPickerOptions)
+ _, err := newController(context.Background(), params, nil, nil, nil, "", nil, nil, defaultTabletPickerOptions)
want := `strconv.ParseInt: parsing "bad": invalid syntax`
if err == nil || err.Error() != want {
t.Errorf("newController err: %v, want %v", err, want)
@@ -182,11 +196,12 @@ func TestControllerBadID(t *testing.T) {
func TestControllerStopped(t *testing.T) {
params := map[string]string{
- "id": "1",
- "state": binlogdatapb.VReplicationWorkflowState_Stopped.String(),
+ "id": "1",
+ "state": binlogdatapb.VReplicationWorkflowState_Stopped.String(),
+ "options": "{}",
}
- ct, err := newController(context.Background(), params, nil, nil, nil, "", "", nil, nil, defaultTabletPickerOptions)
+ ct, err := newController(context.Background(), params, nil, nil, nil, "", nil, nil, defaultTabletPickerOptions)
if err != nil {
t.Fatal(err)
}
@@ -210,12 +225,13 @@ func TestControllerOverrides(t *testing.T) {
"source": fmt.Sprintf(`keyspace:"%s" shard:"0" key_range:{end:"\x80"}`, env.KeyspaceName),
"cell": env.Cells[0],
"tablet_types": "replica",
+ "options": "{}",
}
dbClient := binlogplayer.NewMockDBClient(t)
dbClient.ExpectRequestRE("update _vt.vreplication set message='Picked source tablet.*", testDMLResponse, nil)
dbClient.ExpectRequest("update _vt.vreplication set state='Running', message='' where id=1", testDMLResponse, nil)
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", testSettingsResponse, nil)
+ dbClient.ExpectRequest(binlogplayer.TestGetWorkflowQueryId1, testSettingsResponse, nil)
dbClient.ExpectRequest("begin", nil, nil)
dbClient.ExpectRequest("insert into t values(1)", testDMLResponse, nil)
dbClient.ExpectRequestRE("update _vt.vreplication set pos='MariaDB/0-1-1235', time_updated=.*", testDMLResponse, nil)
@@ -226,7 +242,8 @@ func TestControllerOverrides(t *testing.T) {
mysqld.MysqlPort.Store(3306)
vre := NewTestEngine(nil, wantTablet.GetAlias().Cell, mysqld, dbClientFactory, dbClientFactory, dbClient.DBName(), nil)
- ct, err := newController(context.Background(), params, dbClientFactory, mysqld, env.TopoServ, env.Cells[0], "rdonly", nil, vre, defaultTabletPickerOptions)
+ defer setTabletTypesStr("rdonly")()
+ ct, err := newController(context.Background(), params, dbClientFactory, mysqld, env.TopoServ, env.Cells[0], nil, vre, defaultTabletPickerOptions)
if err != nil {
t.Fatal(err)
}
@@ -244,16 +261,17 @@ func TestControllerCanceledContext(t *testing.T) {
defer deleteTablet(wantTablet)
params := map[string]string{
- "id": "1",
- "state": binlogdatapb.VReplicationWorkflowState_Running.String(),
- "source": fmt.Sprintf(`keyspace:"%s" shard:"0" key_range:{end:"\x80"}`, env.KeyspaceName),
+ "id": "1",
+ "state": binlogdatapb.VReplicationWorkflowState_Running.String(),
+ "source": fmt.Sprintf(`keyspace:"%s" shard:"0" key_range:{end:"\x80"}`, env.KeyspaceName),
+ "options": "{}",
}
ctx, cancel := context.WithCancel(context.Background())
cancel()
vre := NewTestEngine(nil, wantTablet.GetAlias().Cell, nil, nil, nil, "", nil)
- ct, err := newController(ctx, params, nil, nil, env.TopoServ, env.Cells[0], "rdonly", nil, vre, defaultTabletPickerOptions)
+ ct, err := newController(ctx, params, nil, nil, env.TopoServ, env.Cells[0], nil, vre, defaultTabletPickerOptions)
if err != nil {
t.Fatal(err)
}
@@ -267,9 +285,9 @@ func TestControllerCanceledContext(t *testing.T) {
}
func TestControllerRetry(t *testing.T) {
- savedDelay := retryDelay
- defer func() { retryDelay = savedDelay }()
- retryDelay = 10 * time.Millisecond
+ savedDelay := vttablet.DefaultVReplicationConfig.RetryDelay
+ defer func() { vttablet.DefaultVReplicationConfig.RetryDelay = savedDelay }()
+ vttablet.DefaultVReplicationConfig.RetryDelay = 10 * time.Millisecond
resetBinlogClient()
defer deleteTablet(addTablet(100))
@@ -280,16 +298,17 @@ func TestControllerRetry(t *testing.T) {
"source": fmt.Sprintf(`keyspace:"%s" shard:"0" key_range:{end:"\x80"}`, env.KeyspaceName),
"cell": env.Cells[0],
"tablet_types": "replica",
+ "options": "{}",
}
dbClient := binlogplayer.NewMockDBClient(t)
dbClient.ExpectRequestRE("update _vt.vreplication set message='Picked source tablet.*", testDMLResponse, nil)
dbClient.ExpectRequest("update _vt.vreplication set state='Running', message='' where id=1", testDMLResponse, nil)
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", nil, errors.New("(expected error)"))
- dbClient.ExpectRequest("update _vt.vreplication set state='Error', message='error (expected error) in selecting vreplication settings select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1' where id=1", testDMLResponse, nil)
+ dbClient.ExpectRequest(binlogplayer.TestGetWorkflowQueryId1, nil, errors.New("(expected error)"))
+ dbClient.ExpectRequest("update _vt.vreplication set state='Error', message='error (expected error) in selecting vreplication settings select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys, options from _vt.vreplication where id=1' where id=1", testDMLResponse, nil)
dbClient.ExpectRequestRE("update _vt.vreplication set message='Picked source tablet.*", testDMLResponse, nil)
dbClient.ExpectRequest("update _vt.vreplication set state='Running', message='' where id=1", testDMLResponse, nil)
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", testSettingsResponse, nil)
+ dbClient.ExpectRequest(binlogplayer.TestGetWorkflowQueryId1, testSettingsResponse, nil)
dbClient.ExpectRequest("begin", nil, nil)
dbClient.ExpectRequest("insert into t values(1)", testDMLResponse, nil)
dbClient.ExpectRequestRE("update _vt.vreplication set pos='MariaDB/0-1-1235', time_updated=.*", testDMLResponse, nil)
@@ -299,7 +318,8 @@ func TestControllerRetry(t *testing.T) {
mysqld.MysqlPort.Store(3306)
vre := NewTestEngine(nil, env.Cells[0], mysqld, dbClientFactory, dbClientFactory, dbClient.DBName(), nil)
- ct, err := newController(context.Background(), params, dbClientFactory, mysqld, env.TopoServ, env.Cells[0], "rdonly", nil, vre, defaultTabletPickerOptions)
+ defer setTabletTypesStr("rdonly")()
+ ct, err := newController(context.Background(), params, dbClientFactory, mysqld, env.TopoServ, env.Cells[0], nil, vre, defaultTabletPickerOptions)
if err != nil {
t.Fatal(err)
}
@@ -314,9 +334,10 @@ func TestControllerStopPosition(t *testing.T) {
defer deleteTablet(wantTablet)
params := map[string]string{
- "id": "1",
- "state": binlogdatapb.VReplicationWorkflowState_Running.String(),
- "source": fmt.Sprintf(`keyspace:"%s" shard:"0" key_range:{end:"\x80"}`, env.KeyspaceName),
+ "id": "1",
+ "state": binlogdatapb.VReplicationWorkflowState_Running.String(),
+ "source": fmt.Sprintf(`keyspace:"%s" shard:"0" key_range:{end:"\x80"}`, env.KeyspaceName),
+ "options": "{}",
}
dbClient := binlogplayer.NewMockDBClient(t)
@@ -349,7 +370,7 @@ func TestControllerStopPosition(t *testing.T) {
},
},
}
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", withStop, nil)
+ dbClient.ExpectRequest(binlogplayer.TestGetWorkflowQueryId1, withStop, nil)
dbClient.ExpectRequest("begin", nil, nil)
dbClient.ExpectRequest("insert into t values(1)", testDMLResponse, nil)
dbClient.ExpectRequestRE("update _vt.vreplication set pos='MariaDB/0-1-1235', time_updated=.*", testDMLResponse, nil)
@@ -361,7 +382,7 @@ func TestControllerStopPosition(t *testing.T) {
mysqld.MysqlPort.Store(3306)
vre := NewTestEngine(nil, wantTablet.GetAlias().Cell, mysqld, dbClientFactory, dbClientFactory, dbClient.DBName(), nil)
- ct, err := newController(context.Background(), params, dbClientFactory, mysqld, env.TopoServ, env.Cells[0], "replica", nil, vre, defaultTabletPickerOptions)
+ ct, err := newController(context.Background(), params, dbClientFactory, mysqld, env.TopoServ, env.Cells[0], nil, vre, defaultTabletPickerOptions)
if err != nil {
t.Fatal(err)
}
diff --git a/go/vt/vttablet/tabletmanager/vreplication/engine.go b/go/vt/vttablet/tabletmanager/vreplication/engine.go
index d407bfe403b..c4832a59b6a 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/engine.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/engine.go
@@ -282,9 +282,9 @@ func (vre *Engine) retry(ctx context.Context, err error) {
func (vre *Engine) initControllers(rows []map[string]string) {
for _, row := range rows {
- ct, err := newController(vre.ctx, row, vre.dbClientFactoryFiltered, vre.mysqld, vre.ts, vre.cell, tabletTypesStr, nil, vre, discovery.TabletPickerOptions{})
+ ct, err := newController(vre.ctx, row, vre.dbClientFactoryFiltered, vre.mysqld, vre.ts, vre.cell, nil, vre, discovery.TabletPickerOptions{})
if err != nil {
- log.Errorf("Controller could not be initialized for stream: %v", row)
+ log.Errorf("Controller could not be initialized for stream: %v: %v", row, err)
continue
}
vre.controllers[ct.id] = ct
@@ -405,8 +405,6 @@ func (vre *Engine) exec(query string, runAsAdmin bool) (*sqltypes.Result, error)
return nil, fmt.Errorf("insert id %v out of range", qr.InsertID)
}
- vdbc := newVDBClient(dbClient, stats)
-
// If we are creating multiple streams, for example in a
// merge workflow going from 2 shards to 1 shard, we
// will be inserting multiple rows. To get the ids of
@@ -430,11 +428,12 @@ func (vre *Engine) exec(query string, runAsAdmin bool) (*sqltypes.Result, error)
if err != nil {
return nil, err
}
- ct, err := newController(vre.ctx, params, vre.dbClientFactoryFiltered, vre.mysqld, vre.ts, vre.cell, tabletTypesStr, nil, vre, plan.tabletPickerOptions)
+ ct, err := newController(vre.ctx, params, vre.dbClientFactoryFiltered, vre.mysqld, vre.ts, vre.cell, nil, vre, plan.tabletPickerOptions)
if err != nil {
return nil, err
}
vre.controllers[id] = ct
+ vdbc := newVDBClient(dbClient, stats, ct.WorkflowConfig.RelayLogMaxSize)
insertLogWithParams(vdbc, LogStreamCreate, id, params)
}
return qr, nil
@@ -462,7 +461,6 @@ func (vre *Engine) exec(query string, runAsAdmin bool) (*sqltypes.Result, error)
if err != nil {
return nil, err
}
- vdbc := newVDBClient(dbClient, stats)
for _, id := range ids {
params, err := readRow(dbClient, id)
if err != nil {
@@ -470,11 +468,12 @@ func (vre *Engine) exec(query string, runAsAdmin bool) (*sqltypes.Result, error)
}
// Create a new controller in place of the old one.
// For continuity, the new controller inherits the previous stats.
- ct, err := newController(vre.ctx, params, vre.dbClientFactoryFiltered, vre.mysqld, vre.ts, vre.cell, tabletTypesStr, blpStats[id], vre, plan.tabletPickerOptions)
+ ct, err := newController(vre.ctx, params, vre.dbClientFactoryFiltered, vre.mysqld, vre.ts, vre.cell, blpStats[id], vre, plan.tabletPickerOptions)
if err != nil {
return nil, err
}
vre.controllers[id] = ct
+ vdbc := newVDBClient(dbClient, stats, ct.WorkflowConfig.RelayLogMaxSize)
insertLog(vdbc, LogStateChange, id, params["state"], "")
}
return qr, nil
@@ -487,13 +486,13 @@ func (vre *Engine) exec(query string, runAsAdmin bool) (*sqltypes.Result, error)
return &sqltypes.Result{}, nil
}
// Stop and delete the current controllers.
- vdbc := newVDBClient(dbClient, stats)
for _, id := range ids {
if ct := vre.controllers[id]; ct != nil {
+ vdbc := newVDBClient(dbClient, stats, ct.WorkflowConfig.RelayLogMaxSize)
ct.Stop()
delete(vre.controllers, id)
+ insertLogWithParams(vdbc, LogStreamDelete, id, nil)
}
- insertLogWithParams(vdbc, LogStreamDelete, id, nil)
}
if err := dbClient.Begin(); err != nil {
return nil, err
@@ -640,7 +639,7 @@ func (vre *Engine) transitionJournal(je *journalEvent) {
log.Infof("Transitioning for journal:workload %v", je)
- //sort both participants and shardgtids
+ // sort both participants and shardgtids
participants := make([]string, 0)
for ks := range je.participants {
participants = append(participants, ks)
@@ -691,7 +690,7 @@ func (vre *Engine) transitionJournal(je *journalEvent) {
deferSecondaryKeys, _ := strconv.ParseBool(params["defer_secondary_keys"])
ig := NewInsertGenerator(binlogdatapb.VReplicationWorkflowState_Running, vre.dbName)
ig.AddRow(params["workflow"], bls, sgtid.Gtid, params["cell"], params["tablet_types"],
- binlogdatapb.VReplicationWorkflowType(workflowType), binlogdatapb.VReplicationWorkflowSubType(workflowSubType), deferSecondaryKeys)
+ binlogdatapb.VReplicationWorkflowType(workflowType), binlogdatapb.VReplicationWorkflowSubType(workflowSubType), deferSecondaryKeys, "")
qr, err := dbClient.ExecuteFetch(ig.String(), maxRows)
if err != nil {
log.Errorf("transitionJournal: %v", err)
@@ -730,7 +729,7 @@ func (vre *Engine) transitionJournal(je *journalEvent) {
log.Errorf("transitionJournal: %v", err)
return
}
- ct, err := newController(vre.ctx, params, vre.dbClientFactoryFiltered, vre.mysqld, vre.ts, vre.cell, tabletTypesStr, nil, vre, discovery.TabletPickerOptions{})
+ ct, err := newController(vre.ctx, params, vre.dbClientFactoryFiltered, vre.mysqld, vre.ts, vre.cell, nil, vre, discovery.TabletPickerOptions{})
if err != nil {
log.Errorf("transitionJournal: %v", err)
return
diff --git a/go/vt/vttablet/tabletmanager/vreplication/engine_test.go b/go/vt/vttablet/tabletmanager/vreplication/engine_test.go
index ea46e126895..af054932c89 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/engine_test.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/engine_test.go
@@ -50,14 +50,14 @@ func TestEngineOpen(t *testing.T) {
dbClient.ExpectRequest("select * from _vt.vreplication where db_name='db'", sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
- "id|state|source|tablet_types",
- "int64|varchar|varchar|varbinary",
+ "id|state|source|tablet_types|options",
+ "int64|varchar|varchar|varbinary|varchar",
),
- fmt.Sprintf(`1|Running|keyspace:"%s" shard:"0" key_range:{end:"\x80"}|PRIMARY,REPLICA`, env.KeyspaceName),
+ fmt.Sprintf(`1|Running|keyspace:"%s" shard:"0" key_range:{end:"\x80"}|PRIMARY,REPLICA|{}`, env.KeyspaceName),
), nil)
dbClient.ExpectRequestRE("update _vt.vreplication set message='Picked source tablet.*", testDMLResponse, nil)
dbClient.ExpectRequest("update _vt.vreplication set state='Running', message='' where id=1", testDMLResponse, nil)
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", testSettingsResponse, nil)
+ dbClient.ExpectRequest(binlogplayer.TestGetWorkflowQueryId1, testSettingsResponse, nil)
dbClient.ExpectRequest("begin", nil, nil)
dbClient.ExpectRequest("insert into t values(1)", testDMLResponse, nil)
dbClient.ExpectRequestRE("update _vt.vreplication set pos='MariaDB/0-1-1235', time_updated=.*", testDMLResponse, nil)
@@ -93,8 +93,8 @@ func TestEngineOpenRetry(t *testing.T) {
dbClient.ExpectRequest("select * from _vt.vreplication where db_name='db'", nil, errors.New("err"))
dbClient.ExpectRequest("select * from _vt.vreplication where db_name='db'", sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
- "id|state|source",
- "int64|varchar|varchar",
+ "id|state|source|options",
+ "int64|varchar|varchar|varchar",
),
), nil)
@@ -161,14 +161,14 @@ func TestEngineExec(t *testing.T) {
dbClient.ExpectRequest("select @@session.auto_increment_increment", &sqltypes.Result{}, nil)
dbClient.ExpectRequest("select * from _vt.vreplication where id = 1", sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
- "id|state|source|tablet_types",
- "int64|varchar|varchar|varbinary",
+ "id|state|source|tablet_types|options",
+ "int64|varchar|varchar|varbinary|varchar",
),
- fmt.Sprintf(`1|Running|keyspace:"%s" shard:"0" key_range:{end:"\x80"}|PRIMARY,REPLICA`, env.KeyspaceName),
+ fmt.Sprintf(`1|Running|keyspace:"%s" shard:"0" key_range:{end:"\x80"}|PRIMARY,REPLICA|{}`, env.KeyspaceName),
), nil)
dbClient.ExpectRequestRE("update _vt.vreplication set message='Picked source tablet.*", testDMLResponse, nil)
dbClient.ExpectRequest("update _vt.vreplication set state='Running', message='' where id=1", testDMLResponse, nil)
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", testSettingsResponse, nil)
+ dbClient.ExpectRequest(binlogplayer.TestGetWorkflowQueryId1, testSettingsResponse, nil)
dbClient.ExpectRequest("begin", nil, nil)
dbClient.ExpectRequest("insert into t values(1)", testDMLResponse, nil)
dbClient.ExpectRequestRE("update _vt.vreplication set pos='MariaDB/0-1-1235', time_updated=.*", testDMLResponse, nil)
@@ -187,6 +187,7 @@ func TestEngineExec(t *testing.T) {
ct := vre.controllers[1]
if ct == nil || ct.id != 1 {
t.Errorf("ct: %v, id should be 1", ct)
+ return
}
// Verify stats
@@ -203,14 +204,14 @@ func TestEngineExec(t *testing.T) {
dbClient.ExpectRequest("update _vt.vreplication set pos = 'MariaDB/0-1-1084', state = 'Running' where id in (1)", testDMLResponse, nil)
dbClient.ExpectRequest("select * from _vt.vreplication where id = 1", sqltypes.MakeTestResult(
sqltypes.MakeTestFields(
- "id|state|source",
- "int64|varchar|varchar",
+ "id|state|source|options",
+ "int64|varchar|varchar|varchar",
),
- fmt.Sprintf(`1|Running|keyspace:"%s" shard:"0" key_range:{end:"\x80"}`, env.KeyspaceName),
+ fmt.Sprintf(`1|Running|keyspace:"%s" shard:"0" key_range:{end:"\x80"}|{}`, env.KeyspaceName),
), nil)
dbClient.ExpectRequestRE("update _vt.vreplication set message='Picked source tablet.*", testDMLResponse, nil)
dbClient.ExpectRequest("update _vt.vreplication set state='Running', message='' where id=1", testDMLResponse, nil)
- dbClient.ExpectRequest("select pos, stop_pos, max_tps, max_replication_lag, state, workflow_type, workflow, workflow_sub_type, defer_secondary_keys from _vt.vreplication where id=1", testSettingsResponse, nil)
+ dbClient.ExpectRequest(binlogplayer.TestGetWorkflowQueryId1, testSettingsResponse, nil)
dbClient.ExpectRequest("begin", nil, nil)
dbClient.ExpectRequest("insert into t values(1)", testDMLResponse, nil)
dbClient.ExpectRequestRE("update _vt.vreplication set pos='MariaDB/0-1-1235', time_updated=.*", testDMLResponse, nil)
diff --git a/go/vt/vttablet/tabletmanager/vreplication/external_connector.go b/go/vt/vttablet/tabletmanager/vreplication/external_connector.go
index f98e7d73c79..c14d792da04 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/external_connector.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/external_connector.go
@@ -52,10 +52,12 @@ type VStreamerClient interface {
send func([]*binlogdatapb.VEvent) error, options *binlogdatapb.VStreamOptions) error
// VStreamRows streams rows of a table from the specified starting point.
- VStreamRows(ctx context.Context, query string, lastpk *querypb.QueryResult, send func(*binlogdatapb.VStreamRowsResponse) error) error
+ VStreamRows(ctx context.Context, query string, lastpk *querypb.QueryResult,
+ send func(*binlogdatapb.VStreamRowsResponse) error, options *binlogdatapb.VStreamOptions) error
// VStreamTables streams rows of a table from the specified starting point.
- VStreamTables(ctx context.Context, send func(*binlogdatapb.VStreamTablesResponse) error) error
+ VStreamTables(ctx context.Context,
+ send func(*binlogdatapb.VStreamTablesResponse) error, options *binlogdatapb.VStreamOptions) error
}
type externalConnector struct {
@@ -134,10 +136,11 @@ func (c *mysqlConnector) Close(ctx context.Context) error {
func (c *mysqlConnector) VStream(ctx context.Context, startPos string, tablePKs []*binlogdatapb.TableLastPK,
filter *binlogdatapb.Filter, send func([]*binlogdatapb.VEvent) error, options *binlogdatapb.VStreamOptions) error {
- return c.vstreamer.Stream(ctx, startPos, tablePKs, filter, throttlerapp.ExternalConnectorName, send, nil)
+ return c.vstreamer.Stream(ctx, startPos, tablePKs, filter, throttlerapp.ExternalConnectorName, send, options)
}
-func (c *mysqlConnector) VStreamRows(ctx context.Context, query string, lastpk *querypb.QueryResult, send func(*binlogdatapb.VStreamRowsResponse) error) error {
+func (c *mysqlConnector) VStreamRows(ctx context.Context, query string, lastpk *querypb.QueryResult,
+ send func(*binlogdatapb.VStreamRowsResponse) error, options *binlogdatapb.VStreamOptions) error {
var row []sqltypes.Value
if lastpk != nil {
r := sqltypes.Proto3ToResult(lastpk)
@@ -146,11 +149,12 @@ func (c *mysqlConnector) VStreamRows(ctx context.Context, query string, lastpk *
}
row = r.Rows[0]
}
- return c.vstreamer.StreamRows(ctx, query, row, send)
+ return c.vstreamer.StreamRows(ctx, query, row, send, options)
}
-func (c *mysqlConnector) VStreamTables(ctx context.Context, send func(response *binlogdatapb.VStreamTablesResponse) error) error {
- return c.vstreamer.StreamTables(ctx, send)
+func (c *mysqlConnector) VStreamTables(ctx context.Context,
+ send func(response *binlogdatapb.VStreamTablesResponse) error, options *binlogdatapb.VStreamOptions) error {
+ return c.vstreamer.StreamTables(ctx, send, options)
}
// -----------------------------------------------------------
@@ -188,12 +192,14 @@ func (tc *tabletConnector) VStream(ctx context.Context, startPos string, tablePK
return tc.qs.VStream(ctx, req, send)
}
-func (tc *tabletConnector) VStreamRows(ctx context.Context, query string, lastpk *querypb.QueryResult, send func(*binlogdatapb.VStreamRowsResponse) error) error {
- req := &binlogdatapb.VStreamRowsRequest{Target: tc.target, Query: query, Lastpk: lastpk}
+func (tc *tabletConnector) VStreamRows(ctx context.Context, query string, lastpk *querypb.QueryResult,
+ send func(*binlogdatapb.VStreamRowsResponse) error, options *binlogdatapb.VStreamOptions) error {
+ req := &binlogdatapb.VStreamRowsRequest{Target: tc.target, Query: query, Lastpk: lastpk, Options: options}
return tc.qs.VStreamRows(ctx, req, send)
}
-func (tc *tabletConnector) VStreamTables(ctx context.Context, send func(*binlogdatapb.VStreamTablesResponse) error) error {
- req := &binlogdatapb.VStreamTablesRequest{Target: tc.target}
+func (tc *tabletConnector) VStreamTables(ctx context.Context,
+ send func(*binlogdatapb.VStreamTablesResponse) error, options *binlogdatapb.VStreamOptions) error {
+ req := &binlogdatapb.VStreamTablesRequest{Target: tc.target, Options: options}
return tc.qs.VStreamTables(ctx, req, send)
}
diff --git a/go/vt/vttablet/tabletmanager/vreplication/flags.go b/go/vt/vttablet/tabletmanager/vreplication/flags.go
deleted file mode 100644
index e45158ab99a..00000000000
--- a/go/vt/vttablet/tabletmanager/vreplication/flags.go
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
-Copyright 2022 The Vitess Authors.
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-package vreplication
-
-import (
- "time"
-
- "github.com/spf13/pflag"
-
- "vitess.io/vitess/go/vt/servenv"
-)
-
-var (
- retryDelay = 5 * time.Second
- maxTimeToRetryError time.Duration // Default behavior is to keep retrying, for backward compatibility
-
- tabletTypesStr = "in_order:REPLICA,PRIMARY" // Default value
-
- relayLogMaxSize = 250000
- relayLogMaxItems = 5000
-
- replicaLagTolerance = 1 * time.Minute
-
- vreplicationHeartbeatUpdateInterval = 1
-
- vreplicationStoreCompressedGTID = false
- vreplicationParallelInsertWorkers = 1
-)
-
-func registerVReplicationFlags(fs *pflag.FlagSet) {
- fs.DurationVar(&retryDelay, "vreplication_retry_delay", retryDelay, "delay before retrying a failed workflow event in the replication phase")
- fs.DurationVar(&maxTimeToRetryError, "vreplication_max_time_to_retry_on_error", maxTimeToRetryError, "stop automatically retrying when we've had consecutive failures with the same error for this long after the first occurrence")
-
- fs.IntVar(&relayLogMaxSize, "relay_log_max_size", relayLogMaxSize, "Maximum buffer size (in bytes) for VReplication target buffering. If single rows are larger than this, a single row is buffered at a time.")
- fs.IntVar(&relayLogMaxItems, "relay_log_max_items", relayLogMaxItems, "Maximum number of rows for VReplication target buffering.")
-
- fs.DurationVar(&replicaLagTolerance, "vreplication_replica_lag_tolerance", replicaLagTolerance, "Replica lag threshold duration: once lag is below this we switch from copy phase to the replication (streaming) phase")
-
- // vreplicationHeartbeatUpdateInterval determines how often the time_updated column is updated if there are no real events on the source and the source
- // vstream is only sending heartbeats for this long. Keep this low if you expect high QPS and are monitoring this column to alert about potential
- // outages. Keep this high if
- // you have too many streams the extra write qps or cpu load due to these updates are unacceptable
- // you have too many streams and/or a large source field (lot of participating tables) which generates unacceptable increase in your binlog size
- fs.IntVar(&vreplicationHeartbeatUpdateInterval, "vreplication_heartbeat_update_interval", vreplicationHeartbeatUpdateInterval, "Frequency (in seconds, default 1, max 60) at which the time_updated column of a vreplication stream when idling")
- fs.BoolVar(&vreplicationStoreCompressedGTID, "vreplication_store_compressed_gtid", vreplicationStoreCompressedGTID, "Store compressed gtids in the pos column of the sidecar database's vreplication table")
-
- fs.IntVar(&vreplicationParallelInsertWorkers, "vreplication-parallel-insert-workers", vreplicationParallelInsertWorkers, "Number of parallel insertion workers to use during copy phase. Set <= 1 to disable parallelism, or > 1 to enable concurrent insertion during copy phase.")
-}
-
-func init() {
- servenv.OnParseFor("vtcombo", registerVReplicationFlags)
- servenv.OnParseFor("vttablet", registerVReplicationFlags)
-}
diff --git a/go/vt/vttablet/tabletmanager/vreplication/framework_test.go b/go/vt/vttablet/tabletmanager/vreplication/framework_test.go
index 8b5dd6d9416..12d20e3a867 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/framework_test.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/framework_test.go
@@ -47,7 +47,7 @@ import (
"vitess.io/vitess/go/vt/sidecardb"
"vitess.io/vitess/go/vt/sqlparser"
"vitess.io/vitess/go/vt/topo"
- "vitess.io/vitess/go/vt/vttablet"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
"vitess.io/vitess/go/vt/vttablet/queryservice"
"vitess.io/vitess/go/vt/vttablet/queryservice/fakes"
"vitess.io/vitess/go/vt/vttablet/tabletconn"
@@ -140,7 +140,8 @@ func setup(ctx context.Context) (func(), int) {
globalDBQueries = make(chan string, 1000)
resetBinlogClient()
- vttablet.VReplicationExperimentalFlags = 0
+ vttablet.InitVReplicationConfigDefaults()
+ vttablet.DefaultVReplicationConfig.ExperimentalFlags = 0
// Engines cannot be initialized in testenv because it introduces circular dependencies.
streamerEngine = vstreamer.NewEngine(env.TabletEnv, env.SrvTopo, env.SchemaEngine, nil, env.Cells[0])
@@ -341,12 +342,15 @@ func (ftc *fakeTabletConn) VStreamRows(ctx context.Context, request *binlogdatap
}
row = r.Rows[0]
}
+ vstreamOptions := &binlogdatapb.VStreamOptions{
+ ConfigOverrides: vttablet.GetVReplicationConfigDefaults(false).Map(),
+ }
return streamerEngine.StreamRows(ctx, request.Query, row, func(rows *binlogdatapb.VStreamRowsResponse) error {
if vstreamRowsSendHook != nil {
vstreamRowsSendHook(ctx)
}
return send(rows)
- })
+ }, vstreamOptions)
}
// --------------------------------------
@@ -684,7 +688,7 @@ func expectNontxQueries(t *testing.T, expectations qh.ExpectationSequence, recvT
}
result := validator.AcceptQuery(got)
-
+ require.NotNil(t, result)
require.True(t, result.Accepted, fmt.Sprintf(
"query:%q\nmessage:%s\nexpectation:%s\nmatched:%t\nerror:%v\nhistory:%s",
got, result.Message, result.Expectation, result.Matched, result.Error, validator.History(),
diff --git a/go/vt/vttablet/tabletmanager/vreplication/insert_generator.go b/go/vt/vttablet/tabletmanager/vreplication/insert_generator.go
index 6a127b084b5..a43278d783c 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/insert_generator.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/insert_generator.go
@@ -51,7 +51,10 @@ func NewInsertGenerator(state binlogdatapb.VReplicationWorkflowState, dbname str
// AddRow adds a row to the insert statement.
func (ig *InsertGenerator) AddRow(workflow string, bls *binlogdatapb.BinlogSource, pos, cell, tabletTypes string,
- workflowType binlogdatapb.VReplicationWorkflowType, workflowSubType binlogdatapb.VReplicationWorkflowSubType, deferSecondaryKeys bool) {
+ workflowType binlogdatapb.VReplicationWorkflowType, workflowSubType binlogdatapb.VReplicationWorkflowSubType, deferSecondaryKeys bool, options string) {
+ if options == "" {
+ options = "'{}'"
+ }
protoutil.SortBinlogSourceTables(bls)
fmt.Fprintf(ig.buf, "%s(%v, %v, %v, %v, %v, %v, %v, %v, 0, '%v', %v, %d, %d, %v, %v)",
ig.prefix,
@@ -68,7 +71,7 @@ func (ig *InsertGenerator) AddRow(workflow string, bls *binlogdatapb.BinlogSourc
workflowType,
workflowSubType,
deferSecondaryKeys,
- "'{}'",
+ options,
)
ig.prefix = ", "
}
diff --git a/go/vt/vttablet/tabletmanager/vreplication/insert_generator_test.go b/go/vt/vttablet/tabletmanager/vreplication/insert_generator_test.go
index 92100429963..30c626ec02e 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/insert_generator_test.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/insert_generator_test.go
@@ -27,12 +27,12 @@ import (
func TestInsertGenerator(t *testing.T) {
ig := NewInsertGenerator(binlogdatapb.VReplicationWorkflowState_Stopped, "a")
ig.now = 111
- ig.AddRow("b", &binlogdatapb.BinlogSource{Keyspace: "c"}, "d", "e", "f", binlogdatapb.VReplicationWorkflowType_Materialize, binlogdatapb.VReplicationWorkflowSubType_None, false)
+ ig.AddRow("b", &binlogdatapb.BinlogSource{Keyspace: "c"}, "d", "e", "f", binlogdatapb.VReplicationWorkflowType_Materialize, binlogdatapb.VReplicationWorkflowSubType_None, false, "")
want := `insert into _vt.vreplication(workflow, source, pos, max_tps, max_replication_lag, cell, tablet_types, time_updated, transaction_timestamp, state, db_name, workflow_type, workflow_sub_type, defer_secondary_keys, options) values ` +
`('b', 'keyspace:"c"', 'd', 9223372036854775807, 9223372036854775807, 'e', 'f', 111, 0, 'Stopped', 'a', 0, 0, false, '{}')`
assert.Equal(t, ig.String(), want)
- ig.AddRow("g", &binlogdatapb.BinlogSource{Keyspace: "h"}, "i", "j", "k", binlogdatapb.VReplicationWorkflowType_Reshard, binlogdatapb.VReplicationWorkflowSubType_Partial, true)
+ ig.AddRow("g", &binlogdatapb.BinlogSource{Keyspace: "h"}, "i", "j", "k", binlogdatapb.VReplicationWorkflowType_Reshard, binlogdatapb.VReplicationWorkflowSubType_Partial, true, "")
want += `, ('g', 'keyspace:"h"', 'i', 9223372036854775807, 9223372036854775807, 'j', 'k', 111, 0, 'Stopped', 'a', 4, 1, true, '{}')`
assert.Equal(t, ig.String(), want)
}
diff --git a/go/vt/vttablet/tabletmanager/vreplication/queryhistory/verifier.go b/go/vt/vttablet/tabletmanager/vreplication/queryhistory/verifier.go
index ebe145461d7..aeddf5344d5 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/queryhistory/verifier.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/queryhistory/verifier.go
@@ -72,7 +72,7 @@ func (v *Verifier) AcceptQuery(query string) *Result {
break
}
}
-
+ result.Message += fmt.Sprintf(" (query: %q) (pending: %q)", query, v.Pending())
return result
}
diff --git a/go/vt/vttablet/tabletmanager/vreplication/replicator_plan.go b/go/vt/vttablet/tabletmanager/vreplication/replicator_plan.go
index bd41fd76419..aee7f5c8909 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/replicator_plan.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/replicator_plan.go
@@ -33,7 +33,7 @@ import (
"vitess.io/vitess/go/vt/sqlparser"
"vitess.io/vitess/go/vt/vterrors"
"vitess.io/vitess/go/vt/vtgate/evalengine"
- "vitess.io/vitess/go/vt/vttablet"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
querypb "vitess.io/vitess/go/vt/proto/query"
@@ -54,13 +54,14 @@ import (
// of the members, leaving the original plan unchanged.
// The constructor is buildReplicatorPlan in table_plan_builder.go
type ReplicatorPlan struct {
- VStreamFilter *binlogdatapb.Filter
- TargetTables map[string]*TablePlan
- TablePlans map[string]*TablePlan
- ColInfoMap map[string][]*ColumnInfo
- stats *binlogplayer.Stats
- Source *binlogdatapb.BinlogSource
- collationEnv *collations.Environment
+ VStreamFilter *binlogdatapb.Filter
+ TargetTables map[string]*TablePlan
+ TablePlans map[string]*TablePlan
+ ColInfoMap map[string][]*ColumnInfo
+ stats *binlogplayer.Stats
+ Source *binlogdatapb.BinlogSource
+ collationEnv *collations.Environment
+ workflowConfig *vttablet.VReplicationConfig
}
// buildExecution plan uses the field info as input and the partially built
@@ -100,12 +101,13 @@ func (rp *ReplicatorPlan) buildExecutionPlan(fieldEvent *binlogdatapb.FieldEvent
// requires us to wait for the field info sent by the source.
func (rp *ReplicatorPlan) buildFromFields(tableName string, lastpk *sqltypes.Result, fields []*querypb.Field) (*TablePlan, error) {
tpb := &tablePlanBuilder{
- name: sqlparser.NewIdentifierCS(tableName),
- lastpk: lastpk,
- colInfos: rp.ColInfoMap[tableName],
- stats: rp.stats,
- source: rp.Source,
- collationEnv: rp.collationEnv,
+ name: sqlparser.NewIdentifierCS(tableName),
+ lastpk: lastpk,
+ colInfos: rp.ColInfoMap[tableName],
+ stats: rp.stats,
+ source: rp.Source,
+ collationEnv: rp.collationEnv,
+ workflowConfig: rp.workflowConfig,
}
for _, field := range fields {
colName := sqlparser.NewIdentifierCI(field.Name)
@@ -220,7 +222,8 @@ type TablePlan struct {
// PartialUpdates are same as PartialInserts, but for update statements
PartialUpdates map[string]*sqlparser.ParsedQuery
- CollationEnv *collations.Environment
+ CollationEnv *collations.Environment
+ WorkflowConfig *vttablet.VReplicationConfig
}
// MarshalJSON performs a custom JSON Marshalling.
@@ -286,7 +289,7 @@ func (tp *TablePlan) applyBulkInsert(sqlbuffer *bytes2.Buffer, rows []*querypb.R
// now and punt on the others.
func (tp *TablePlan) isOutsidePKRange(bindvars map[string]*querypb.BindVariable, before, after bool, stmtType string) bool {
// added empty comments below, otherwise gofmt removes the spaces between the bitwise & and obfuscates this check!
- if vttablet.VReplicationExperimentalFlags /**/ & /**/ vttablet.VReplicationExperimentalFlagOptimizeInserts == 0 {
+ if tp.WorkflowConfig.ExperimentalFlags /**/ & /**/ vttablet.VReplicationExperimentalFlagOptimizeInserts == 0 {
return false
}
// Ensure there is one and only one value in lastpk and pkrefs.
diff --git a/go/vt/vttablet/tabletmanager/vreplication/replicator_plan_test.go b/go/vt/vttablet/tabletmanager/vreplication/replicator_plan_test.go
index d3971c3a397..644b4585914 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/replicator_plan_test.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/replicator_plan_test.go
@@ -21,6 +21,8 @@ import (
"strings"
"testing"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
+
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
@@ -735,8 +737,12 @@ func TestBuildPlayerPlan(t *testing.T) {
),
}
+ vttablet.InitVReplicationConfigDefaults()
for _, tcase := range testcases {
- plan, err := buildReplicatorPlan(getSource(tcase.input), PrimaryKeyInfos, nil, binlogplayer.NewStats(), collations.MySQL8(), sqlparser.NewTestParser())
+ vr := &vreplicator{
+ workflowConfig: vttablet.DefaultVReplicationConfig,
+ }
+ plan, err := vr.buildReplicatorPlan(getSource(tcase.input), PrimaryKeyInfos, nil, binlogplayer.NewStats(), collations.MySQL8(), sqlparser.NewTestParser())
gotErr := ""
if err != nil {
gotErr = err.Error()
@@ -745,8 +751,7 @@ func TestBuildPlayerPlan(t *testing.T) {
gotPlan, _ := json.Marshal(plan)
wantPlan, _ := json.Marshal(tcase.plan)
require.Equal(t, string(wantPlan), string(gotPlan), "Filter(%v):\n%s, want\n%s", tcase.input, gotPlan, wantPlan)
-
- plan, err = buildReplicatorPlan(getSource(tcase.input), PrimaryKeyInfos, copyState, binlogplayer.NewStats(), collations.MySQL8(), sqlparser.NewTestParser())
+ plan, err = vr.buildReplicatorPlan(getSource(tcase.input), PrimaryKeyInfos, copyState, binlogplayer.NewStats(), collations.MySQL8(), sqlparser.NewTestParser())
if err != nil {
continue
}
@@ -774,7 +779,10 @@ func TestBuildPlayerPlanNoDup(t *testing.T) {
Filter: "select * from t",
}},
}
- _, err := buildReplicatorPlan(getSource(input), PrimaryKeyInfos, nil, binlogplayer.NewStats(), collations.MySQL8(), sqlparser.NewTestParser())
+ vr := &vreplicator{
+ workflowConfig: vttablet.DefaultVReplicationConfig,
+ }
+ _, err := vr.buildReplicatorPlan(getSource(input), PrimaryKeyInfos, nil, binlogplayer.NewStats(), collations.MySQL8(), sqlparser.NewTestParser())
want := "more than one target for source table t"
if err == nil || !strings.Contains(err.Error(), want) {
t.Errorf("buildReplicatorPlan err: %v, must contain: %v", err, want)
@@ -795,7 +803,10 @@ func TestBuildPlayerPlanExclude(t *testing.T) {
Filter: "",
}},
}
- plan, err := buildReplicatorPlan(getSource(input), PrimaryKeyInfos, nil, binlogplayer.NewStats(), collations.MySQL8(), sqlparser.NewTestParser())
+ vr := &vreplicator{
+ workflowConfig: vttablet.DefaultVReplicationConfig,
+ }
+ plan, err := vr.buildReplicatorPlan(getSource(input), PrimaryKeyInfos, nil, binlogplayer.NewStats(), collations.MySQL8(), sqlparser.NewTestParser())
assert.NoError(t, err)
want := &TestReplicatorPlan{
diff --git a/go/vt/vttablet/tabletmanager/vreplication/stats.go b/go/vt/vttablet/tabletmanager/vreplication/stats.go
index 11f458d9541..1aaae3b84ec 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/stats.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/stats.go
@@ -543,6 +543,15 @@ func (st *vrStats) register() {
}
return result
})
+ stats.Publish("VReplicationConfig", stats.StringMapFunc(func() map[string]string {
+ st.mu.Lock()
+ defer st.mu.Unlock()
+ result := make(map[string]string, len(st.controllers))
+ for _, ct := range st.controllers {
+ result[fmt.Sprintf("%s.%d", ct.workflow, ct.id)] = ct.WorkflowConfig.String()
+ }
+ return result
+ }))
}
func (st *vrStats) numControllers() int64 {
diff --git a/go/vt/vttablet/tabletmanager/vreplication/table_plan_builder.go b/go/vt/vttablet/tabletmanager/vreplication/table_plan_builder.go
index db774af1861..12afc3fec28 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/table_plan_builder.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/table_plan_builder.go
@@ -29,11 +29,11 @@ import (
"vitess.io/vitess/go/vt/key"
"vitess.io/vitess/go/vt/sqlparser"
"vitess.io/vitess/go/vt/vterrors"
- "vitess.io/vitess/go/vt/vttablet"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
querypb "vitess.io/vitess/go/vt/proto/query"
vtrpcpb "vitess.io/vitess/go/vt/proto/vtrpc"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
)
// This file contains just the builders for ReplicatorPlan and TablePlan.
@@ -61,7 +61,8 @@ type tablePlanBuilder struct {
source *binlogdatapb.BinlogSource
pkIndices []bool
- collationEnv *collations.Environment
+ collationEnv *collations.Environment
+ workflowConfig *vttablet.VReplicationConfig
}
// colExpr describes the processing to be performed to
@@ -131,16 +132,17 @@ const (
// The TablePlan built is a partial plan. The full plan for a table is built
// when we receive field information from events or rows sent by the source.
// buildExecutionPlan is the function that builds the full plan.
-func buildReplicatorPlan(source *binlogdatapb.BinlogSource, colInfoMap map[string][]*ColumnInfo, copyState map[string]*sqltypes.Result, stats *binlogplayer.Stats, collationEnv *collations.Environment, parser *sqlparser.Parser) (*ReplicatorPlan, error) {
+func (vr *vreplicator) buildReplicatorPlan(source *binlogdatapb.BinlogSource, colInfoMap map[string][]*ColumnInfo, copyState map[string]*sqltypes.Result, stats *binlogplayer.Stats, collationEnv *collations.Environment, parser *sqlparser.Parser) (*ReplicatorPlan, error) {
filter := source.Filter
plan := &ReplicatorPlan{
- VStreamFilter: &binlogdatapb.Filter{FieldEventMode: filter.FieldEventMode},
- TargetTables: make(map[string]*TablePlan),
- TablePlans: make(map[string]*TablePlan),
- ColInfoMap: colInfoMap,
- stats: stats,
- Source: source,
- collationEnv: collationEnv,
+ VStreamFilter: &binlogdatapb.Filter{FieldEventMode: filter.FieldEventMode},
+ TargetTables: make(map[string]*TablePlan),
+ TablePlans: make(map[string]*TablePlan),
+ ColInfoMap: colInfoMap,
+ stats: stats,
+ Source: source,
+ collationEnv: collationEnv,
+ workflowConfig: vr.workflowConfig,
}
for tableName := range colInfoMap {
lastpk, ok := copyState[tableName]
@@ -159,7 +161,7 @@ func buildReplicatorPlan(source *binlogdatapb.BinlogSource, colInfoMap map[strin
if !ok {
return nil, fmt.Errorf("table %s not found in schema", tableName)
}
- tablePlan, err := buildTablePlan(tableName, rule, colInfos, lastpk, stats, source, collationEnv, parser)
+ tablePlan, err := buildTablePlan(tableName, rule, colInfos, lastpk, stats, source, collationEnv, parser, vr.workflowConfig)
if err != nil {
return nil, vterrors.Wrapf(err, "failed to build table replication plan for %s table", tableName)
}
@@ -199,7 +201,8 @@ func MatchTable(tableName string, filter *binlogdatapb.Filter) (*binlogdatapb.Ru
}
func buildTablePlan(tableName string, rule *binlogdatapb.Rule, colInfos []*ColumnInfo, lastpk *sqltypes.Result,
- stats *binlogplayer.Stats, source *binlogdatapb.BinlogSource, collationEnv *collations.Environment, parser *sqlparser.Parser) (*TablePlan, error) {
+ stats *binlogplayer.Stats, source *binlogdatapb.BinlogSource, collationEnv *collations.Environment,
+ parser *sqlparser.Parser, workflowConfig *vttablet.VReplicationConfig) (*TablePlan, error) {
planError := func(err error, query string) error {
// Use the error string here to ensure things are uniform across
@@ -248,6 +251,7 @@ func buildTablePlan(tableName string, rule *binlogdatapb.Rule, colInfos []*Colum
ConvertCharset: rule.ConvertCharset,
ConvertIntToEnum: rule.ConvertIntToEnum,
CollationEnv: collationEnv,
+ WorkflowConfig: workflowConfig,
}
return tablePlan, nil
@@ -259,11 +263,12 @@ func buildTablePlan(tableName string, rule *binlogdatapb.Rule, colInfos []*Colum
From: sel.From,
Where: sel.Where,
},
- lastpk: lastpk,
- colInfos: colInfos,
- stats: stats,
- source: source,
- collationEnv: collationEnv,
+ lastpk: lastpk,
+ colInfos: colInfos,
+ stats: stats,
+ source: source,
+ collationEnv: collationEnv,
+ workflowConfig: workflowConfig,
}
if err := tpb.analyzeExprs(sel.SelectExprs); err != nil {
@@ -358,7 +363,6 @@ func (tpb *tablePlanBuilder) generate() *TablePlan {
fieldsToSkip[colInfo.Name] = true
}
}
-
return &TablePlan{
TargetName: tpb.name.String(),
Lastpk: tpb.lastpk,
@@ -378,6 +382,7 @@ func (tpb *tablePlanBuilder) generate() *TablePlan {
PartialInserts: make(map[string]*sqlparser.ParsedQuery, 0),
PartialUpdates: make(map[string]*sqlparser.ParsedQuery, 0),
CollationEnv: tpb.collationEnv,
+ WorkflowConfig: tpb.workflowConfig,
}
}
@@ -880,7 +885,7 @@ func (tpb *tablePlanBuilder) generateDeleteStatement() *sqlparser.ParsedQuery {
}
func (tpb *tablePlanBuilder) generateMultiDeleteStatement() *sqlparser.ParsedQuery {
- if vttablet.VReplicationExperimentalFlags&vttablet.VReplicationExperimentalFlagVPlayerBatching == 0 ||
+ if tpb.workflowConfig.ExperimentalFlags&vttablet.VReplicationExperimentalFlagVPlayerBatching == 0 ||
(len(tpb.pkCols)+len(tpb.extraSourcePkCols)) != 1 {
return nil
}
diff --git a/go/vt/vttablet/tabletmanager/vreplication/table_plan_partial.go b/go/vt/vttablet/tabletmanager/vreplication/table_plan_partial.go
index c6ccb898996..cb8ac6dc515 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/table_plan_partial.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/table_plan_partial.go
@@ -26,7 +26,7 @@ import (
"vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/sqlparser"
"vitess.io/vitess/go/vt/vterrors"
- "vitess.io/vitess/go/vt/vttablet"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
)
// isBitSet returns true if the bit at index is set
@@ -37,7 +37,7 @@ func isBitSet(data []byte, index int) bool {
}
func (tp *TablePlan) isPartial(rowChange *binlogdatapb.RowChange) bool {
- if (vttablet.VReplicationExperimentalFlags /**/ & /**/ vttablet.VReplicationExperimentalFlagAllowNoBlobBinlogRowImage) == 0 ||
+ if (tp.WorkflowConfig.ExperimentalFlags /**/ & /**/ vttablet.VReplicationExperimentalFlagAllowNoBlobBinlogRowImage) == 0 ||
rowChange.DataColumns == nil ||
rowChange.DataColumns.Count == 0 {
diff --git a/go/vt/vttablet/tabletmanager/vreplication/utils_test.go b/go/vt/vttablet/tabletmanager/vreplication/utils_test.go
index eb2b128f90e..69a57c34341 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/utils_test.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/utils_test.go
@@ -22,6 +22,8 @@ import (
"strings"
"testing"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
+
"github.com/stretchr/testify/require"
"vitess.io/vitess/go/mysql/sqlerror"
@@ -40,7 +42,7 @@ func TestInsertLogTruncation(t *testing.T) {
dbClient.RemoveInvariant("insert into _vt.vreplication_log") // Otherwise the insert will be ignored
stats := binlogplayer.NewStats()
defer stats.Stop()
- vdbClient := newVDBClient(dbClient, stats)
+ vdbClient := newVDBClient(dbClient, stats, vttablet.DefaultVReplicationConfig.RelayLogMaxItems)
defer vdbClient.Close()
vrID := int32(1)
typ := "Testing"
diff --git a/go/vt/vttablet/tabletmanager/vreplication/vcopier.go b/go/vt/vttablet/tabletmanager/vreplication/vcopier.go
index 47e3798acd0..e3a12258691 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/vcopier.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/vcopier.go
@@ -37,7 +37,6 @@ import (
"vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/sqlparser"
"vitess.io/vitess/go/vt/vterrors"
- "vitess.io/vitess/go/vt/vttablet"
"vitess.io/vitess/go/vt/vttablet/tabletserver/throttle/throttlerapp"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
@@ -221,7 +220,7 @@ func newVCopierCopyWorker(
func (vc *vcopier) initTablesForCopy(ctx context.Context) error {
defer vc.vr.dbClient.Rollback()
- plan, err := buildReplicatorPlan(vc.vr.source, vc.vr.colInfoMap, nil, vc.vr.stats, vc.vr.vre.env.CollationEnv(), vc.vr.vre.env.Parser())
+ plan, err := vc.vr.buildReplicatorPlan(vc.vr.source, vc.vr.colInfoMap, nil, vc.vr.stats, vc.vr.vre.env.CollationEnv(), vc.vr.vre.env.Parser())
if err != nil {
return err
}
@@ -348,7 +347,7 @@ func (vc *vcopier) catchup(ctx context.Context, copyState map[string]*sqltypes.R
// Wait for catchup.
tkr := time.NewTicker(waitRetryTime)
defer tkr.Stop()
- seconds := int64(replicaLagTolerance / time.Second)
+ seconds := int64(vc.vr.workflowConfig.ReplicaLagTolerance / time.Second)
for {
sbm := vc.vr.stats.ReplicationLagSeconds.Load()
if sbm < seconds {
@@ -382,7 +381,7 @@ func (vc *vcopier) copyTable(ctx context.Context, tableName string, copyState ma
log.Infof("Copying table %s, lastpk: %v", tableName, copyState[tableName])
- plan, err := buildReplicatorPlan(vc.vr.source, vc.vr.colInfoMap, nil, vc.vr.stats, vc.vr.vre.env.CollationEnv(), vc.vr.vre.env.Parser())
+ plan, err := vc.vr.buildReplicatorPlan(vc.vr.source, vc.vr.colInfoMap, nil, vc.vr.stats, vc.vr.vre.env.CollationEnv(), vc.vr.vre.env.Parser())
if err != nil {
return err
}
@@ -392,7 +391,7 @@ func (vc *vcopier) copyTable(ctx context.Context, tableName string, copyState ma
return fmt.Errorf("plan not found for table: %s, current plans are: %#v", tableName, plan.TargetTables)
}
- ctx, cancel := context.WithTimeout(ctx, vttablet.CopyPhaseDuration)
+ ctx, cancel := context.WithTimeout(ctx, vc.vr.workflowConfig.CopyPhaseDuration)
defer cancel()
var lastpkpb *querypb.QueryResult
@@ -405,7 +404,7 @@ func (vc *vcopier) copyTable(ctx context.Context, tableName string, copyState ma
copyStateGCTicker := time.NewTicker(copyStateGCInterval)
defer copyStateGCTicker.Stop()
- parallelism := getInsertParallelism()
+ parallelism := int(math.Max(1, float64(vc.vr.workflowConfig.ParallelInsertWorkers)))
copyWorkerFactory := vc.newCopyWorkerFactory(parallelism)
copyWorkQueue := vc.newCopyWorkQueue(parallelism, copyWorkerFactory)
defer copyWorkQueue.close()
@@ -420,6 +419,9 @@ func (vc *vcopier) copyTable(ctx context.Context, tableName string, copyState ma
// Use this for task sequencing.
var prevCh <-chan *vcopierCopyTaskResult
+ vstreamOptions := &binlogdatapb.VStreamOptions{
+ ConfigOverrides: vc.vr.workflowConfig.Overrides,
+ }
serr := vc.vr.sourceVStreamer.VStreamRows(ctx, initialPlan.SendRule.Filter, lastpkpb, func(rows *binlogdatapb.VStreamRowsResponse) error {
for {
select {
@@ -593,7 +595,7 @@ func (vc *vcopier) copyTable(ctx context.Context, tableName string, copyState ma
}
return nil
- })
+ }, vstreamOptions)
// Close the work queue. This will prevent new tasks from being enqueued,
// and will wait until all workers are returned to the worker pool.
@@ -683,7 +685,7 @@ func (vc *vcopier) updatePos(ctx context.Context, gtid string) error {
if err != nil {
return err
}
- update := binlogplayer.GenerateUpdatePos(vc.vr.id, pos, time.Now().Unix(), 0, vc.vr.stats.CopyRowCount.Get(), vreplicationStoreCompressedGTID)
+ update := binlogplayer.GenerateUpdatePos(vc.vr.id, pos, time.Now().Unix(), 0, vc.vr.stats.CopyRowCount.Get(), vc.vr.workflowConfig.StoreCompressedGTID)
_, err = vc.vr.dbClient.Execute(update)
return err
}
@@ -699,7 +701,7 @@ func (vc *vcopier) fastForward(ctx context.Context, copyState map[string]*sqltyp
return err
}
if settings.StartPos.IsZero() {
- update := binlogplayer.GenerateUpdatePos(vc.vr.id, pos, time.Now().Unix(), 0, vc.vr.stats.CopyRowCount.Get(), vreplicationStoreCompressedGTID)
+ update := binlogplayer.GenerateUpdatePos(vc.vr.id, pos, time.Now().Unix(), 0, vc.vr.stats.CopyRowCount.Get(), vc.vr.workflowConfig.StoreCompressedGTID)
_, err := vc.vr.dbClient.Execute(update)
return err
}
@@ -1201,9 +1203,3 @@ func vcopierCopyTaskGetNextState(vts vcopierCopyTaskState) vcopierCopyTaskState
}
return vts
}
-
-// getInsertParallelism returns the number of parallel workers to use for inserting batches during the copy phase.
-func getInsertParallelism() int {
- parallelism := int(math.Max(1, float64(vreplicationParallelInsertWorkers)))
- return parallelism
-}
diff --git a/go/vt/vttablet/tabletmanager/vreplication/vcopier_atomic.go b/go/vt/vttablet/tabletmanager/vreplication/vcopier_atomic.go
index 02e1188cdb7..3a0996e0c39 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/vcopier_atomic.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/vcopier_atomic.go
@@ -20,21 +20,19 @@ import (
"context"
"fmt"
"io"
+ "math"
"strconv"
"time"
- "vitess.io/vitess/go/vt/vttablet"
-
"google.golang.org/protobuf/encoding/prototext"
"vitess.io/vitess/go/sqltypes"
"vitess.io/vitess/go/vt/binlog/binlogplayer"
"vitess.io/vitess/go/vt/log"
- "vitess.io/vitess/go/vt/sqlparser"
- "vitess.io/vitess/go/vt/vterrors"
-
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
querypb "vitess.io/vitess/go/vt/proto/query"
+ "vitess.io/vitess/go/vt/sqlparser"
+ "vitess.io/vitess/go/vt/vterrors"
)
/*
@@ -54,7 +52,7 @@ func newCopyAllState(vc *vcopier) (*copyAllState, error) {
state := ©AllState{
vc: vc,
}
- plan, err := buildReplicatorPlan(vc.vr.source, vc.vr.colInfoMap, nil, vc.vr.stats, vc.vr.vre.env.CollationEnv(), vc.vr.vre.env.Parser())
+ plan, err := vc.vr.buildReplicatorPlan(vc.vr.source, vc.vr.colInfoMap, nil, vc.vr.stats, vc.vr.vre.env.CollationEnv(), vc.vr.vre.env.Parser())
if err != nil {
return nil, err
}
@@ -79,13 +77,13 @@ func (vc *vcopier) copyAll(ctx context.Context, settings binlogplayer.VRSettings
return err
}
- ctx, cancel := context.WithTimeout(ctx, vttablet.CopyPhaseDuration)
+ ctx, cancel := context.WithTimeout(ctx, vc.vr.workflowConfig.CopyPhaseDuration)
defer cancel()
rowsCopiedTicker := time.NewTicker(rowsCopiedUpdateInterval)
defer rowsCopiedTicker.Stop()
- parallelism := getInsertParallelism()
+ parallelism := int(math.Max(1, float64(vc.vr.workflowConfig.ParallelInsertWorkers)))
copyWorkerFactory := vc.newCopyWorkerFactory(parallelism)
var copyWorkQueue *vcopierCopyWorkQueue
@@ -102,6 +100,9 @@ func (vc *vcopier) copyAll(ctx context.Context, settings binlogplayer.VRSettings
var prevCh <-chan *vcopierCopyTaskResult
var gtid string
+ vstreamOptions := &binlogdatapb.VStreamOptions{
+ ConfigOverrides: vc.vr.workflowConfig.Overrides,
+ }
serr := vc.vr.sourceVStreamer.VStreamTables(ctx, func(resp *binlogdatapb.VStreamTablesResponse) error {
defer vc.vr.stats.PhaseTimings.Record("copy", time.Now())
defer vc.vr.stats.CopyLoopCount.Add(1)
@@ -274,7 +275,7 @@ func (vc *vcopier) copyAll(ctx context.Context, settings binlogplayer.VRSettings
default:
}
return nil
- })
+ }, vstreamOptions)
if serr != nil {
log.Infof("VStreamTables failed: %v", serr)
return serr
diff --git a/go/vt/vttablet/tabletmanager/vreplication/vcopier_test.go b/go/vt/vttablet/tabletmanager/vreplication/vcopier_test.go
index fda9012c1b5..ab91d480535 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/vcopier_test.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/vcopier_test.go
@@ -25,10 +25,9 @@ import (
"testing"
"time"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
"vitess.io/vitess/go/vt/vttablet/tabletserver/vstreamer/testenv"
- "vitess.io/vitess/go/vt/vttablet"
-
"vitess.io/vitess/go/vt/log"
"github.com/stretchr/testify/require"
@@ -49,30 +48,30 @@ func commonVcopierTestCases() []vcopierTestCase {
return []vcopierTestCase{
// Default experimental flags.
{
- vreplicationExperimentalFlags: vttablet.VReplicationExperimentalFlags,
+ vreplicationExperimentalFlags: vttablet.DefaultVReplicationConfig.ExperimentalFlags,
},
// Parallel bulk inserts enabled with 4 workers.
{
- vreplicationExperimentalFlags: vttablet.VReplicationExperimentalFlags,
+ vreplicationExperimentalFlags: vttablet.DefaultVReplicationConfig.ExperimentalFlags,
vreplicationParallelInsertWorkers: 4,
},
}
}
func testVcopierTestCases(t *testing.T, test func(*testing.T), cases []vcopierTestCase) {
- oldVreplicationExperimentalFlags := vttablet.VReplicationExperimentalFlags
- oldVreplicationParallelInsertWorkers := vreplicationParallelInsertWorkers
+ oldVreplicationExperimentalFlags := vttablet.DefaultVReplicationConfig.ExperimentalFlags
+ oldVreplicationParallelInsertWorkers := vttablet.DefaultVReplicationConfig.ParallelInsertWorkers
// Extra reset at the end in case we return prematurely.
defer func() {
- vttablet.VReplicationExperimentalFlags = oldVreplicationExperimentalFlags
- vreplicationParallelInsertWorkers = oldVreplicationParallelInsertWorkers
+ vttablet.DefaultVReplicationConfig.ExperimentalFlags = oldVreplicationExperimentalFlags
+ vttablet.DefaultVReplicationConfig.ParallelInsertWorkers = oldVreplicationParallelInsertWorkers
}()
for _, tc := range cases {
tc := tc // Avoid export loop bugs.
// Set test flags.
- vttablet.VReplicationExperimentalFlags = tc.vreplicationExperimentalFlags
- vreplicationParallelInsertWorkers = tc.vreplicationParallelInsertWorkers
+ vttablet.DefaultVReplicationConfig.ExperimentalFlags = tc.vreplicationExperimentalFlags
+ vttablet.DefaultVReplicationConfig.ParallelInsertWorkers = tc.vreplicationParallelInsertWorkers
// Run test case.
t.Run(
fmt.Sprintf(
@@ -82,8 +81,8 @@ func testVcopierTestCases(t *testing.T, test func(*testing.T), cases []vcopierTe
test,
)
// Reset.
- vttablet.VReplicationExperimentalFlags = oldVreplicationExperimentalFlags
- vreplicationParallelInsertWorkers = oldVreplicationParallelInsertWorkers
+ vttablet.DefaultVReplicationConfig.ExperimentalFlags = oldVreplicationExperimentalFlags
+ vttablet.DefaultVReplicationConfig.ParallelInsertWorkers = oldVreplicationParallelInsertWorkers
}
}
@@ -97,10 +96,10 @@ func testPlayerCopyCharPK(t *testing.T) {
reset := vstreamer.AdjustPacketSize(1)
defer reset()
- savedCopyPhaseDuration := vttablet.CopyPhaseDuration
+ savedCopyPhaseDuration := vttablet.DefaultVReplicationConfig.CopyPhaseDuration
// copyPhaseDuration should be low enough to have time to send one row.
- vttablet.CopyPhaseDuration = 500 * time.Millisecond
- defer func() { vttablet.CopyPhaseDuration = savedCopyPhaseDuration }()
+ vttablet.DefaultVReplicationConfig.CopyPhaseDuration = 500 * time.Millisecond
+ defer func() { vttablet.DefaultVReplicationConfig.CopyPhaseDuration = savedCopyPhaseDuration }()
savedWaitRetryTime := waitRetryTime
// waitRetry time should be very low to cause the wait loop to execute multiple times.
@@ -203,10 +202,10 @@ func testPlayerCopyVarcharPKCaseInsensitive(t *testing.T) {
reset := vstreamer.AdjustPacketSize(1)
defer reset()
- savedCopyPhaseDuration := vttablet.CopyPhaseDuration
+ savedCopyPhaseDuration := vttablet.DefaultVReplicationConfig.CopyPhaseDuration
// copyPhaseDuration should be low enough to have time to send one row.
- vttablet.CopyPhaseDuration = 500 * time.Millisecond
- defer func() { vttablet.CopyPhaseDuration = savedCopyPhaseDuration }()
+ vttablet.DefaultVReplicationConfig.CopyPhaseDuration = 500 * time.Millisecond
+ defer func() { vttablet.DefaultVReplicationConfig.CopyPhaseDuration = savedCopyPhaseDuration }()
savedWaitRetryTime := waitRetryTime
// waitRetry time should be very low to cause the wait loop to execute multiple times.
@@ -290,7 +289,7 @@ func testPlayerCopyVarcharPKCaseInsensitive(t *testing.T) {
// Back to copy mode.
// Inserts can happen out of order.
// Updates must happen in order.
- //upd1 := expect.
+ // upd1 := expect.
upd1 := expect.Then(qh.Eventually(
"insert into dst(idc,val) values ('B',3)",
`/insert into _vt.copy_state \(lastpk, vrepl_id, table_name\) values \('fields:{name:"idc" type:VARCHAR charset:33 flags:20483} rows:{lengths:1 values:"B"}'.*`,
@@ -325,10 +324,10 @@ func testPlayerCopyVarcharCompositePKCaseSensitiveCollation(t *testing.T) {
reset := vstreamer.AdjustPacketSize(1)
defer reset()
- savedCopyPhaseDuration := vttablet.CopyPhaseDuration
+ savedCopyPhaseDuration := vttablet.DefaultVReplicationConfig.CopyPhaseDuration
// copyPhaseDuration should be low enough to have time to send one row.
- vttablet.CopyPhaseDuration = 500 * time.Millisecond
- defer func() { vttablet.CopyPhaseDuration = savedCopyPhaseDuration }()
+ vttablet.DefaultVReplicationConfig.CopyPhaseDuration = 500 * time.Millisecond
+ defer func() { vttablet.DefaultVReplicationConfig.CopyPhaseDuration = savedCopyPhaseDuration }()
savedWaitRetryTime := waitRetryTime
// waitRetry time should be very low to cause the wait loop to execute multiple times.
@@ -486,7 +485,7 @@ func testPlayerCopyTablesWithFK(t *testing.T) {
"/update _vt.vreplication set pos=",
).Then(func(expect qh.ExpectationSequencer) qh.ExpectationSequencer {
// With parallel inserts, new db client connects are created on-the-fly.
- if vreplicationParallelInsertWorkers > 1 {
+ if vttablet.DefaultVReplicationConfig.ParallelInsertWorkers > 1 {
return expect.Then(qh.Eventually("set @@session.foreign_key_checks=0"))
}
return expect
@@ -508,7 +507,7 @@ func testPlayerCopyTablesWithFK(t *testing.T) {
"commit",
)).Then(func(expect qh.ExpectationSequencer) qh.ExpectationSequencer {
// With parallel inserts, new db client connects are created on-the-fly.
- if vreplicationParallelInsertWorkers > 1 {
+ if vttablet.DefaultVReplicationConfig.ParallelInsertWorkers > 1 {
return expect.Then(qh.Eventually("set @@session.foreign_key_checks=0"))
}
return expect
@@ -685,10 +684,10 @@ func testPlayerCopyBigTable(t *testing.T) {
reset := vstreamer.AdjustPacketSize(1)
defer reset()
- savedCopyPhaseDuration := vttablet.CopyPhaseDuration
+ savedCopyPhaseDuration := vttablet.DefaultVReplicationConfig.CopyPhaseDuration
// copyPhaseDuration should be low enough to have time to send one row.
- vttablet.CopyPhaseDuration = 500 * time.Millisecond
- defer func() { vttablet.CopyPhaseDuration = savedCopyPhaseDuration }()
+ vttablet.DefaultVReplicationConfig.CopyPhaseDuration = 500 * time.Millisecond
+ defer func() { vttablet.DefaultVReplicationConfig.CopyPhaseDuration = savedCopyPhaseDuration }()
savedWaitRetryTime := waitRetryTime
// waitRetry time should be very low to cause the wait loop to execute multiple times.
@@ -815,10 +814,10 @@ func testPlayerCopyWildcardRule(t *testing.T) {
reset := vstreamer.AdjustPacketSize(1)
defer reset()
- savedCopyPhaseDuration := vttablet.CopyPhaseDuration
+ savedCopyPhaseDuration := vttablet.DefaultVReplicationConfig.CopyPhaseDuration
// copyPhaseDuration should be low enough to have time to send one row.
- vttablet.CopyPhaseDuration = 500 * time.Millisecond
- defer func() { vttablet.CopyPhaseDuration = savedCopyPhaseDuration }()
+ vttablet.DefaultVReplicationConfig.CopyPhaseDuration = 500 * time.Millisecond
+ defer func() { vttablet.DefaultVReplicationConfig.CopyPhaseDuration = savedCopyPhaseDuration }()
savedWaitRetryTime := waitRetryTime
// waitRetry time should be very low to cause the wait loop to execute multiple times.
@@ -1173,7 +1172,7 @@ func testPlayerCopyWildcardTableContinuation(t *testing.T) {
expectDeleteQueries(t)
}()
- optimizeInsertsEnabled := vttablet.VReplicationExperimentalFlags /**/ & /**/ vttablet.VReplicationExperimentalFlagOptimizeInserts != 0
+ optimizeInsertsEnabled := vttablet.DefaultVReplicationConfig.ExperimentalFlags /**/ & /**/ vttablet.VReplicationExperimentalFlagOptimizeInserts != 0
expectNontxQueries(t, qh.Expect(
"/insert into _vt.vreplication",
@@ -1203,14 +1202,18 @@ func testPlayerCopyWildcardTableContinuation(t *testing.T) {
}
}
+func setExperimentalFlags(flags int64) func() {
+ oldVreplicationExperimentalFlags := vttablet.DefaultVReplicationConfig.ExperimentalFlags
+ vttablet.DefaultVReplicationConfig.ExperimentalFlags = flags
+ return func() {
+ vttablet.DefaultVReplicationConfig.ExperimentalFlags = oldVreplicationExperimentalFlags
+ }
+}
+
// TestPlayerCopyWildcardTableContinuationWithOptimizeInserts tests the copy workflow where tables have been partially copied
// enabling the optimize inserts functionality
func TestPlayerCopyWildcardTableContinuationWithOptimizeInserts(t *testing.T) {
- oldVreplicationExperimentalFlags := vttablet.VReplicationExperimentalFlags
- vttablet.VReplicationExperimentalFlags = vttablet.VReplicationExperimentalFlagOptimizeInserts
- defer func() {
- vttablet.VReplicationExperimentalFlags = oldVreplicationExperimentalFlags
- }()
+ defer setExperimentalFlags(vttablet.VReplicationExperimentalFlagOptimizeInserts)()
defer deleteTablet(addTablet(100))
@@ -1525,14 +1528,16 @@ func testPlayerCopyTableCancel(t *testing.T) {
fmt.Sprintf("drop table %s.dst1", vrepldb),
})
- saveTimeout := vttablet.CopyPhaseDuration
- vttablet.CopyPhaseDuration = 1 * time.Millisecond
- defer func() { vttablet.CopyPhaseDuration = saveTimeout }()
+ saveTimeout := vttablet.DefaultVReplicationConfig.CopyPhaseDuration
+ vttablet.DefaultVReplicationConfig.CopyPhaseDuration = 1 * time.Millisecond
+ defer func() { vttablet.DefaultVReplicationConfig.CopyPhaseDuration = saveTimeout }()
// Set a hook to reset the copy timeout after first call.
vstreamRowsHook = func(ctx context.Context) {
<-ctx.Done()
- vttablet.CopyPhaseDuration = saveTimeout
+ for _, ct := range playerEngine.controllers {
+ ct.WorkflowConfig.CopyPhaseDuration = saveTimeout
+ }
vstreamRowsHook = nil
}
diff --git a/go/vt/vttablet/tabletmanager/vreplication/vdbclient.go b/go/vt/vttablet/tabletmanager/vreplication/vdbclient.go
index 39a8229efc6..b8339cdf874 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/vdbclient.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/vdbclient.go
@@ -34,19 +34,21 @@ import (
// It allows us to retry a failed transactions on lock errors.
type vdbClient struct {
binlogplayer.DBClient
- stats *binlogplayer.Stats
- InTransaction bool
- startTime time.Time
- queries []string
- queriesPos int64
- batchSize int64
- maxBatchSize int64
+ stats *binlogplayer.Stats
+ InTransaction bool
+ startTime time.Time
+ queries []string
+ queriesPos int64
+ batchSize int64
+ maxBatchSize int64
+ relayLogMaxItems int
}
-func newVDBClient(dbclient binlogplayer.DBClient, stats *binlogplayer.Stats) *vdbClient {
+func newVDBClient(dbclient binlogplayer.DBClient, stats *binlogplayer.Stats, relayLogMaxItems int) *vdbClient {
return &vdbClient{
- DBClient: dbclient,
- stats: stats,
+ DBClient: dbclient,
+ stats: stats,
+ relayLogMaxItems: relayLogMaxItems,
}
}
@@ -163,7 +165,7 @@ func (vc *vdbClient) ExecuteTrxQueryBatch() ([]*sqltypes.Result, error) {
// Execute is ExecuteFetch without the maxrows.
func (vc *vdbClient) Execute(query string) (*sqltypes.Result, error) {
// Number of rows should never exceed relayLogMaxItems.
- return vc.ExecuteFetch(query, relayLogMaxItems)
+ return vc.ExecuteFetch(query, vc.relayLogMaxItems)
}
func (vc *vdbClient) ExecuteWithRetry(ctx context.Context, query string) (*sqltypes.Result, error) {
@@ -199,7 +201,7 @@ func (vc *vdbClient) Retry() (*sqltypes.Result, error) {
continue
}
// Number of rows should never exceed relayLogMaxItems.
- result, err := vc.DBClient.ExecuteFetch(q, relayLogMaxItems)
+ result, err := vc.DBClient.ExecuteFetch(q, vc.relayLogMaxItems)
if err != nil {
return nil, err
}
diff --git a/go/vt/vttablet/tabletmanager/vreplication/vplayer.go b/go/vt/vttablet/tabletmanager/vreplication/vplayer.go
index 31558102a5e..db2f3f341ac 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/vplayer.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/vplayer.go
@@ -31,7 +31,7 @@ import (
"vitess.io/vitess/go/vt/binlog/binlogplayer"
"vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/vterrors"
- "vitess.io/vitess/go/vt/vttablet"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
"vitess.io/vitess/go/vt/vttablet/tabletserver/throttle/throttlerapp"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
@@ -133,20 +133,20 @@ func newVPlayer(vr *vreplicator, settings binlogplayer.VRSettings, copyState map
return vr.dbClient.Commit()
}
batchMode := false
- if vttablet.VReplicationExperimentalFlags&vttablet.VReplicationExperimentalFlagVPlayerBatching != 0 {
+ if vr.workflowConfig.ExperimentalFlags&vttablet.VReplicationExperimentalFlagVPlayerBatching != 0 {
batchMode = true
}
if batchMode {
// relayLogMaxSize is effectively the limit used when not batching.
- maxAllowedPacket := int64(relayLogMaxSize)
+ maxAllowedPacket := int64(vr.workflowConfig.RelayLogMaxSize)
// We explicitly do NOT want to batch this, we want to send it down the wire
// immediately so we use ExecuteFetch directly.
res, err := vr.dbClient.ExecuteFetch("select @@session.max_allowed_packet as max_allowed_packet", 1)
if err != nil {
- log.Errorf("Error getting max_allowed_packet, will use the relay_log_max_size value of %d bytes: %v", relayLogMaxSize, err)
+ log.Errorf("Error getting max_allowed_packet, will use the relay_log_max_size value of %d bytes: %v", vr.workflowConfig.RelayLogMaxSize, err)
} else {
if maxAllowedPacket, err = res.Rows[0][0].ToInt64(); err != nil {
- log.Errorf("Error getting max_allowed_packet, will use the relay_log_max_size value of %d bytes: %v", relayLogMaxSize, err)
+ log.Errorf("Error getting max_allowed_packet, will use the relay_log_max_size value of %d bytes: %v", vr.workflowConfig.RelayLogMaxSize, err)
}
}
// Leave 64 bytes of room for the commit to be sure that we have a more than
@@ -193,7 +193,7 @@ func (vp *vplayer) play(ctx context.Context) error {
return nil
}
- plan, err := buildReplicatorPlan(vp.vr.source, vp.vr.colInfoMap, vp.copyState, vp.vr.stats, vp.vr.vre.env.CollationEnv(), vp.vr.vre.env.Parser())
+ plan, err := vp.vr.buildReplicatorPlan(vp.vr.source, vp.vr.colInfoMap, vp.copyState, vp.vr.stats, vp.vr.vre.env.CollationEnv(), vp.vr.vre.env.Parser())
if err != nil {
vp.vr.stats.ErrorCounts.Add([]string{"Plan"}, 1)
return err
@@ -269,14 +269,17 @@ func (vp *vplayer) fetchAndApply(ctx context.Context) (err error) {
ctx, cancel := context.WithCancel(ctx)
defer cancel()
- relay := newRelayLog(ctx, relayLogMaxItems, relayLogMaxSize)
+ relay := newRelayLog(ctx, vp.vr.workflowConfig.RelayLogMaxItems, vp.vr.workflowConfig.RelayLogMaxSize)
streamErr := make(chan error, 1)
go func() {
+ vstreamOptions := &binlogdatapb.VStreamOptions{
+ ConfigOverrides: vp.vr.workflowConfig.Overrides,
+ }
streamErr <- vp.vr.sourceVStreamer.VStream(ctx, replication.EncodePosition(vp.startPos), nil,
vp.replicatorPlan.VStreamFilter, func(events []*binlogdatapb.VEvent) error {
return relay.Send(events)
- }, nil)
+ }, vstreamOptions)
}()
applyErr := make(chan error, 1)
@@ -383,7 +386,7 @@ func (vp *vplayer) applyRowEvent(ctx context.Context, rowEvent *binlogdatapb.Row
// updatePos should get called at a minimum of vreplicationMinimumHeartbeatUpdateInterval.
func (vp *vplayer) updatePos(ctx context.Context, ts int64) (posReached bool, err error) {
- update := binlogplayer.GenerateUpdatePos(vp.vr.id, vp.pos, time.Now().Unix(), ts, vp.vr.stats.CopyRowCount.Get(), vreplicationStoreCompressedGTID)
+ update := binlogplayer.GenerateUpdatePos(vp.vr.id, vp.pos, time.Now().Unix(), ts, vp.vr.stats.CopyRowCount.Get(), vp.vr.workflowConfig.StoreCompressedGTID)
if _, err := vp.query(ctx, update); err != nil {
return false, fmt.Errorf("error %v updating position", err)
}
@@ -404,7 +407,7 @@ func (vp *vplayer) updatePos(ctx context.Context, ts int64) (posReached bool, er
}
func (vp *vplayer) mustUpdateHeartbeat() bool {
- return vp.numAccumulatedHeartbeats >= vreplicationHeartbeatUpdateInterval ||
+ return vp.numAccumulatedHeartbeats >= vp.vr.workflowConfig.HeartbeatUpdateInterval ||
vp.numAccumulatedHeartbeats >= vreplicationMinimumHeartbeatUpdateInterval
}
diff --git a/go/vt/vttablet/tabletmanager/vreplication/vplayer_flaky_test.go b/go/vt/vttablet/tabletmanager/vreplication/vplayer_flaky_test.go
index 0641a111199..420134ab7e3 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/vplayer_flaky_test.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/vplayer_flaky_test.go
@@ -36,7 +36,7 @@ import (
"vitess.io/vitess/go/vt/binlog/binlogplayer"
"vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/logutil"
- "vitess.io/vitess/go/vt/vttablet"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
"vitess.io/vitess/go/vt/vttablet/tabletserver/vstreamer/testenv"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
@@ -193,14 +193,18 @@ func TestPlayerInvisibleColumns(t *testing.T) {
}
func TestHeartbeatFrequencyFlag(t *testing.T) {
- origVReplicationHeartbeatUpdateInterval := vreplicationHeartbeatUpdateInterval
+ origVReplicationHeartbeatUpdateInterval := vttablet.DefaultVReplicationConfig.HeartbeatUpdateInterval
defer func() {
- vreplicationHeartbeatUpdateInterval = origVReplicationHeartbeatUpdateInterval
+ vttablet.DefaultVReplicationConfig.HeartbeatUpdateInterval = origVReplicationHeartbeatUpdateInterval
}()
stats := binlogplayer.NewStats()
defer stats.Stop()
- vp := &vplayer{vr: &vreplicator{dbClient: newVDBClient(realDBClientFactory(), stats), stats: stats}}
+ vp := &vplayer{vr: &vreplicator{
+ dbClient: newVDBClient(realDBClientFactory(), stats, vttablet.DefaultVReplicationConfig.RelayLogMaxItems),
+ stats: stats,
+ workflowConfig: vttablet.DefaultVReplicationConfig,
+ }}
type testcount struct {
count int
@@ -218,7 +222,7 @@ func TestHeartbeatFrequencyFlag(t *testing.T) {
}
for _, tcase := range testcases {
t.Run(tcase.name, func(t *testing.T) {
- vreplicationHeartbeatUpdateInterval = tcase.interval
+ vttablet.DefaultVReplicationConfig.HeartbeatUpdateInterval = tcase.interval
for _, tcount := range tcase.counts {
vp.numAccumulatedHeartbeats = tcount.count
require.Equal(t, tcount.mustUpdate, vp.mustUpdateHeartbeat())
@@ -334,7 +338,7 @@ func TestCharPK(t *testing.T) {
output string
table string
data [][]string
- }{{ //binary(2)
+ }{{ // binary(2)
input: "insert into t1 values(1, 'a')",
output: "insert into t1(id,val) values (1,'a\\0')",
table: "t1",
@@ -348,7 +352,7 @@ func TestCharPK(t *testing.T) {
data: [][]string{
{"2", "a\000"},
},
- }, { //char(2)
+ }, { // char(2)
input: "insert into t2 values(1, 'a')",
output: "insert into t2(id,val) values (1,'a')",
table: "t2",
@@ -362,7 +366,7 @@ func TestCharPK(t *testing.T) {
data: [][]string{
{"2", "a"},
},
- }, { //varbinary(2)
+ }, { // varbinary(2)
input: "insert into t3 values(1, 'a')",
output: "insert into t3(id,val) values (1,'a')",
table: "t3",
@@ -376,7 +380,7 @@ func TestCharPK(t *testing.T) {
data: [][]string{
{"2", "a"},
},
- }, { //varchar(2)
+ }, { // varchar(2)
input: "insert into t4 values(1, 'a')",
output: "insert into t4(id,val) values (1,'a')",
table: "t4",
@@ -1728,7 +1732,7 @@ func TestPlayerDDL(t *testing.T) {
OnDdl: binlogdatapb.OnDDLAction_STOP,
}
cancel, id := startVReplication(t, bls, "")
- pos0 := primaryPosition(t) //For debugging only
+ pos0 := primaryPosition(t) // For debugging only
execStatements(t, []string{"alter table t1 add column val varchar(128)"})
pos1 := primaryPosition(t)
// The stop position must be the GTID of the first DDL
@@ -1742,7 +1746,7 @@ func TestPlayerDDL(t *testing.T) {
execStatements(t, []string{"alter table t1 drop column val"})
pos2 := primaryPosition(t)
log.Errorf("Expected log:: TestPlayerDDL Positions are: before first alter %v, after first alter %v, before second alter %v, after second alter %v",
- pos0, pos1, pos2b, pos2) //For debugging only: to check what are the positions when test works and if/when it fails
+ pos0, pos1, pos2b, pos2) // For debugging only: to check what are the positions when test works and if/when it fails
// Restart vreplication
if _, err := playerEngine.Exec(fmt.Sprintf(`update _vt.vreplication set state = 'Running', message='' where id=%d`, id)); err != nil {
t.Fatal(err)
@@ -1865,9 +1869,9 @@ func TestGTIDCompress(t *testing.T) {
func TestPlayerStopPos(t *testing.T) {
defer deleteTablet(addTablet(100))
- vreplicationStoreCompressedGTID = true
+ vttablet.DefaultVReplicationConfig.StoreCompressedGTID = true
defer func() {
- vreplicationStoreCompressedGTID = false
+ vttablet.DefaultVReplicationConfig.StoreCompressedGTID = false
}()
execStatements(t, []string{
"create table yes(id int, val varbinary(128), primary key(id))",
@@ -2427,13 +2431,13 @@ func TestPlayerRelayLogMaxSize(t *testing.T) {
func() {
switch i {
case 0:
- savedSize := relayLogMaxSize
- defer func() { relayLogMaxSize = savedSize }()
- relayLogMaxSize = 10
+ savedSize := vttablet.DefaultVReplicationConfig.RelayLogMaxSize
+ defer func() { vttablet.DefaultVReplicationConfig.RelayLogMaxSize = savedSize }()
+ vttablet.DefaultVReplicationConfig.RelayLogMaxSize = 10
case 1:
- savedLen := relayLogMaxItems
- defer func() { relayLogMaxItems = savedLen }()
- relayLogMaxItems = 2
+ savedLen := vttablet.DefaultVReplicationConfig.RelayLogMaxItems
+ defer func() { vttablet.DefaultVReplicationConfig.RelayLogMaxItems = savedLen }()
+ vttablet.DefaultVReplicationConfig.RelayLogMaxItems = 2
}
execStatements(t, []string{
@@ -2526,9 +2530,9 @@ func TestPlayerRelayLogMaxSize(t *testing.T) {
func TestRestartOnVStreamEnd(t *testing.T) {
defer deleteTablet(addTablet(100))
- savedDelay := retryDelay
- defer func() { retryDelay = savedDelay }()
- retryDelay = 1 * time.Millisecond
+ savedDelay := vttablet.DefaultVReplicationConfig.RetryDelay
+ defer func() { vttablet.DefaultVReplicationConfig.RetryDelay = savedDelay }()
+ vttablet.DefaultVReplicationConfig.RetryDelay = 1 * time.Millisecond
execStatements(t, []string{
"create table t1(id int, val varbinary(128), primary key(id))",
@@ -2774,7 +2778,7 @@ func TestVReplicationLogs(t *testing.T) {
err := dbClient.Connect()
require.NoError(t, err)
defer dbClient.Close()
- vdbc := newVDBClient(dbClient, binlogplayer.NewStats())
+ vdbc := newVDBClient(dbClient, binlogplayer.NewStats(), vttablet.DefaultVReplicationConfig.RelayLogMaxItems)
query := "select vrepl_id, state, message, count from _vt.vreplication_log order by id desc limit 1"
expected := []string{
@@ -2950,10 +2954,10 @@ func TestPlayerNoBlob(t *testing.T) {
if !runNoBlobTest {
t.Skip()
}
- oldVreplicationExperimentalFlags := vttablet.VReplicationExperimentalFlags
- vttablet.VReplicationExperimentalFlags = vttablet.VReplicationExperimentalFlagAllowNoBlobBinlogRowImage
+ oldVreplicationExperimentalFlags := vttablet.DefaultVReplicationConfig.ExperimentalFlags
+ vttablet.DefaultVReplicationConfig.ExperimentalFlags = vttablet.VReplicationExperimentalFlagAllowNoBlobBinlogRowImage
defer func() {
- vttablet.VReplicationExperimentalFlags = oldVreplicationExperimentalFlags
+ vttablet.DefaultVReplicationConfig.ExperimentalFlags = oldVreplicationExperimentalFlags
}()
defer deleteTablet(addTablet(100))
@@ -3090,10 +3094,10 @@ func TestPlayerNoBlob(t *testing.T) {
func TestPlayerBatchMode(t *testing.T) {
// To test trx batch splitting at 1024-64 bytes.
maxAllowedPacket := 1024
- oldVreplicationExperimentalFlags := vttablet.VReplicationExperimentalFlags
- vttablet.VReplicationExperimentalFlags = vttablet.VReplicationExperimentalFlagVPlayerBatching
+ oldVreplicationExperimentalFlags := vttablet.DefaultVReplicationConfig.ExperimentalFlags
+ vttablet.DefaultVReplicationConfig.ExperimentalFlags = vttablet.VReplicationExperimentalFlagVPlayerBatching
defer func() {
- vttablet.VReplicationExperimentalFlags = oldVreplicationExperimentalFlags
+ vttablet.DefaultVReplicationConfig.ExperimentalFlags = oldVreplicationExperimentalFlags
}()
defer deleteTablet(addTablet(100))
@@ -3348,16 +3352,16 @@ func TestPlayerStalls(t *testing.T) {
logger := logutil.NewMemoryLogger()
log.Errorf = logger.Errorf
- ovmhu := vreplicationMinimumHeartbeatUpdateInterval
- ogvpt := vplayerProgressDeadline
- orlmi := relayLogMaxItems
- ord := retryDelay
+ oldMinimumHeartbeatUpdateInterval := vreplicationMinimumHeartbeatUpdateInterval
+ oldProgressDeadline := vplayerProgressDeadline
+ oldRelayLogMaxItems := vttablet.DefaultVReplicationConfig.RelayLogMaxItems
+ oldRetryDelay := vttablet.DefaultVReplicationConfig.RetryDelay
defer func() {
log.Errorf = ole
- vreplicationMinimumHeartbeatUpdateInterval = ovmhu
- vplayerProgressDeadline = ogvpt
- relayLogMaxItems = orlmi
- retryDelay = ord
+ vreplicationMinimumHeartbeatUpdateInterval = oldMinimumHeartbeatUpdateInterval
+ vplayerProgressDeadline = oldProgressDeadline
+ vttablet.DefaultVReplicationConfig.RelayLogMaxItems = oldRelayLogMaxItems
+ vttablet.DefaultVReplicationConfig.RetryDelay = oldRetryDelay
}()
// Shorten the deadline for the test.
@@ -3365,11 +3369,11 @@ func TestPlayerStalls(t *testing.T) {
// Shorten the time for a required heartbeat recording for the test.
vreplicationMinimumHeartbeatUpdateInterval = 5
// So each relay log batch will be a single statement transaction.
- relayLogMaxItems = 1
+ vttablet.DefaultVReplicationConfig.RelayLogMaxItems = 1
// Don't retry the workflow if it goes into the error state.
- retryDelay = 10 * time.Minute
- maxTimeToRetryError = 1 * time.Second
+ vttablet.DefaultVReplicationConfig.RetryDelay = 10 * time.Minute
+ vttablet.DefaultVReplicationConfig.MaxTimeToRetryError = 1 * time.Second
// A channel to communicate across goroutines.
done := make(chan struct{})
diff --git a/go/vt/vttablet/tabletmanager/vreplication/vreplicator.go b/go/vt/vttablet/tabletmanager/vreplication/vreplicator.go
index 2a4d598c960..0c5c0b5b334 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/vreplicator.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/vreplicator.go
@@ -37,6 +37,7 @@ import (
"vitess.io/vitess/go/vt/schema"
"vitess.io/vitess/go/vt/sqlparser"
"vitess.io/vitess/go/vt/vterrors"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
"vitess.io/vitess/go/vt/vttablet/tabletserver/throttle/throttlerapp"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
@@ -113,6 +114,7 @@ type vreplicator struct {
WorkflowName string
throttleUpdatesRateLimiter *timer.RateLimiter
+ workflowConfig *vttablet.VReplicationConfig
}
// newVReplicator creates a new vreplicator. The valid fields from the source are:
@@ -137,19 +139,25 @@ type vreplicator struct {
// alias like "a+b as targetcol" must be used.
// More advanced constructs can be used. Please see the table plan builder
// documentation for more info.
-func newVReplicator(id int32, source *binlogdatapb.BinlogSource, sourceVStreamer VStreamerClient, stats *binlogplayer.Stats, dbClient binlogplayer.DBClient, mysqld mysqlctl.MysqlDaemon, vre *Engine) *vreplicator {
- if vreplicationHeartbeatUpdateInterval > vreplicationMinimumHeartbeatUpdateInterval {
+func newVReplicator(id int32, source *binlogdatapb.BinlogSource, sourceVStreamer VStreamerClient, stats *binlogplayer.Stats,
+ dbClient binlogplayer.DBClient, mysqld mysqlctl.MysqlDaemon, vre *Engine, workflowConfig *vttablet.VReplicationConfig) *vreplicator {
+ if workflowConfig == nil {
+ workflowConfig = vttablet.DefaultVReplicationConfig
+ }
+ if workflowConfig.HeartbeatUpdateInterval > vreplicationMinimumHeartbeatUpdateInterval {
log.Warningf("The supplied value for vreplication_heartbeat_update_interval:%d seconds is larger than the maximum allowed:%d seconds, vreplication will fallback to %d",
- vreplicationHeartbeatUpdateInterval, vreplicationMinimumHeartbeatUpdateInterval, vreplicationMinimumHeartbeatUpdateInterval)
+ workflowConfig.HeartbeatUpdateInterval, vreplicationMinimumHeartbeatUpdateInterval, vreplicationMinimumHeartbeatUpdateInterval)
}
+ vttablet.InitVReplicationConfigDefaults()
vr := &vreplicator{
vre: vre,
id: id,
source: source,
sourceVStreamer: sourceVStreamer,
stats: stats,
- dbClient: newVDBClient(dbClient, stats),
+ dbClient: newVDBClient(dbClient, stats, workflowConfig.RelayLogMaxItems),
mysqld: mysqld,
+ workflowConfig: workflowConfig,
}
vr.setExistingRowsCopied()
return vr
@@ -239,7 +247,7 @@ func (vr *vreplicator) replicate(ctx context.Context) error {
if err := vr.getSettingFKCheck(); err != nil {
return err
}
- //defensive guard, should be a no-op since it should happen after copy is done
+ // defensive guard, should be a no-op since it should happen after copy is done
defer vr.resetFKCheckAfterCopy(vr.dbClient)
if err := vr.getSettingFKRestrict(); err != nil {
return err
@@ -1105,7 +1113,7 @@ func (vr *vreplicator) newClientConnection(ctx context.Context) (*vdbClient, err
if err := dbc.Connect(); err != nil {
return nil, vterrors.Wrap(err, "can't connect to database")
}
- dbClient := newVDBClient(dbc, vr.stats)
+ dbClient := newVDBClient(dbc, vr.stats, vr.workflowConfig.RelayLogMaxItems)
if _, err := vr.setSQLMode(ctx, dbClient); err != nil {
return nil, vterrors.Wrap(err, "failed to set sql_mode")
}
diff --git a/go/vt/vttablet/tabletmanager/vreplication/vreplicator_test.go b/go/vt/vttablet/tabletmanager/vreplication/vreplicator_test.go
index 20a5450741d..b4e3ba4e366 100644
--- a/go/vt/vttablet/tabletmanager/vreplication/vreplicator_test.go
+++ b/go/vt/vttablet/tabletmanager/vreplication/vreplicator_test.go
@@ -36,6 +36,7 @@ import (
"vitess.io/vitess/go/vt/dbconfigs"
"vitess.io/vitess/go/vt/mysqlctl"
"vitess.io/vitess/go/vt/schemadiff"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
tabletmanagerdatapb "vitess.io/vitess/go/vt/proto/tabletmanagerdata"
@@ -232,7 +233,7 @@ func TestDeferSecondaryKeys(t *testing.T) {
_, err = dbClient.ExecuteFetch(fmt.Sprintf("delete from _vt.vreplication where id = %d", id), 1)
require.NoError(t, err)
}()
- vr := newVReplicator(id, bls, vsclient, stats, dbClient, env.Mysqld, playerEngine)
+ vr := newVReplicator(id, bls, vsclient, stats, dbClient, env.Mysqld, playerEngine, vttablet.DefaultVReplicationConfig)
getActionsSQLf := "select action from _vt.post_copy_action where table_name='%s'"
getCurrentDDL := func(tableName string) string {
req := &tabletmanagerdatapb.GetSchemaRequest{Tables: []string{tableName}}
@@ -386,7 +387,7 @@ func TestDeferSecondaryKeys(t *testing.T) {
if err != nil {
return err
}
- myvr := newVReplicator(myid, bls, vsclient, stats, dbClient, env.Mysqld, playerEngine)
+ myvr := newVReplicator(myid, bls, vsclient, stats, dbClient, env.Mysqld, playerEngine, vttablet.DefaultVReplicationConfig)
myvr.WorkflowType = int32(binlogdatapb.VReplicationWorkflowType_Reshard)
// Insert second post copy action record to simulate a shard merge where you
// have N controllers/replicators running for the same table on the tablet.
@@ -630,7 +631,7 @@ func TestCancelledDeferSecondaryKeys(t *testing.T) {
_, err = dbClient.ExecuteFetch(fmt.Sprintf("delete from _vt.vreplication where id = %d", id), 1)
require.NoError(t, err)
}()
- vr := newVReplicator(id, bls, vsclient, stats, dbClient, env.Mysqld, playerEngine)
+ vr := newVReplicator(id, bls, vsclient, stats, dbClient, env.Mysqld, playerEngine, vttablet.DefaultVReplicationConfig)
vr.WorkflowType = int32(binlogdatapb.VReplicationWorkflowType_MoveTables)
getCurrentDDL := func(tableName string) string {
req := &tabletmanagerdatapb.GetSchemaRequest{Tables: []string{tableName}}
@@ -692,7 +693,7 @@ func TestCancelledDeferSecondaryKeys(t *testing.T) {
assert.NoError(t, err)
assert.Equal(t, 1, len(res.Rows))
// TODO: figure out why the KILL never shows up...
- //require.Equal(t, "1", res.Rows[0][0].ToString())
+ // require.Equal(t, "1", res.Rows[0][0].ToString())
// Confirm that the post copy action record still exists
// so it will later be retried.
@@ -749,7 +750,7 @@ func TestResumingFromPreviousWorkflowKeepingRowsCopied(t *testing.T) {
_, err = dbClient.ExecuteFetch(fmt.Sprintf("delete from _vt.vreplication where id = %d", id), 1)
require.NoError(t, err)
}()
- vr := newVReplicator(id, bls, vsclient, stats, dbClient, env.Mysqld, playerEngine)
+ vr := newVReplicator(id, bls, vsclient, stats, dbClient, env.Mysqld, playerEngine, vttablet.DefaultVReplicationConfig)
assert.Equal(t, rowsCopied, vr.stats.CopyRowCount.Get())
}
@@ -850,8 +851,8 @@ func TestThrottlerAppNames(t *testing.T) {
_, err = dbClient.ExecuteFetch(fmt.Sprintf("delete from _vt.vreplication where id = %d", id), 1)
require.NoError(t, err)
}()
- vr := newVReplicator(id, bls, vsclient, stats, dbClient, env.Mysqld, playerEngine)
- settings, _, err := vr.loadSettings(ctx, newVDBClient(dbClient, stats))
+ vr := newVReplicator(id, bls, vsclient, stats, dbClient, env.Mysqld, playerEngine, vttablet.DefaultVReplicationConfig)
+ settings, _, err := vr.loadSettings(ctx, newVDBClient(dbClient, stats, vttablet.DefaultVReplicationConfig.RelayLogMaxItems))
require.NoError(t, err)
throttlerAppName := vr.throttlerAppName()
diff --git a/go/vt/vttablet/tabletserver/controller.go b/go/vt/vttablet/tabletserver/controller.go
index 9b799171c60..5586c1c3662 100644
--- a/go/vt/vttablet/tabletserver/controller.go
+++ b/go/vt/vttablet/tabletserver/controller.go
@@ -94,12 +94,20 @@ type Controller interface {
CheckThrottler(ctx context.Context, appName string, flags *throttle.CheckFlags) *throttle.CheckResult
GetThrottlerStatus(ctx context.Context) *throttle.ThrottlerStatus
+ // RedoPreparedTransactions recreates the transactions with stored prepared transaction log.
RedoPreparedTransactions()
// SetTwoPCAllowed sets whether TwoPC is allowed or not.
SetTwoPCAllowed(bool)
+ // UnresolvedTransactions returns all unresolved transactions list
UnresolvedTransactions(ctx context.Context, target *querypb.Target) ([]*querypb.TransactionMetadata, error)
+
+ // ConcludeTransaction deletes the distributed transaction metadata
+ ConcludeTransaction(ctx context.Context, target *querypb.Target, dtid string) error
+
+ // RollbackPrepared rolls back the prepared transaction and removes the transaction log.
+ RollbackPrepared(ctx context.Context, target *querypb.Target, dtid string, originalID int64) error
}
// Ensure TabletServer satisfies Controller interface.
diff --git a/go/vt/vttablet/tabletserver/tabletserver.go b/go/vt/vttablet/tabletserver/tabletserver.go
index e42a872f3a8..a28d9800d57 100644
--- a/go/vt/vttablet/tabletserver/tabletserver.go
+++ b/go/vt/vttablet/tabletserver/tabletserver.go
@@ -1197,7 +1197,7 @@ func (tsv *TabletServer) VStreamRows(ctx context.Context, request *binlogdatapb.
}
row = r.Rows[0]
}
- return tsv.vstreamer.StreamRows(ctx, request.Query, row, send)
+ return tsv.vstreamer.StreamRows(ctx, request.Query, row, send, request.Options)
}
// VStreamTables streams all tables.
@@ -1205,7 +1205,7 @@ func (tsv *TabletServer) VStreamTables(ctx context.Context, request *binlogdatap
if err := tsv.sm.VerifyTarget(ctx, request.Target); err != nil {
return err
}
- return tsv.vstreamer.StreamTables(ctx, send)
+ return tsv.vstreamer.StreamTables(ctx, send, request.Options)
}
// VStreamResults streams rows from the specified starting point.
diff --git a/go/vt/vttablet/tabletserver/vstreamer/copy.go b/go/vt/vttablet/tabletserver/vstreamer/copy.go
index 31a2f2efc6c..1e1d432956d 100644
--- a/go/vt/vttablet/tabletserver/vstreamer/copy.go
+++ b/go/vt/vttablet/tabletserver/vstreamer/copy.go
@@ -306,7 +306,7 @@ func (uvs *uvstreamer) copyTable(ctx context.Context, tableName string) error {
uvs.setCopyState(tableName, qrLastPK)
log.V(2).Infof("NewLastPK: %v", qrLastPK)
return nil
- })
+ }, nil)
if err != nil {
uvs.vse.errorCounts.Add("StreamRows", 1)
return err
diff --git a/go/vt/vttablet/tabletserver/vstreamer/engine.go b/go/vt/vttablet/tabletserver/vstreamer/engine.go
index b391f5bac3d..eba6e736a21 100644
--- a/go/vt/vttablet/tabletserver/vstreamer/engine.go
+++ b/go/vt/vttablet/tabletserver/vstreamer/engine.go
@@ -39,6 +39,7 @@ import (
"vitess.io/vitess/go/vt/topo"
"vitess.io/vitess/go/vt/vterrors"
"vitess.io/vitess/go/vt/vtgate/vindexes"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
"vitess.io/vitess/go/vt/vttablet/tabletserver/schema"
"vitess.io/vitess/go/vt/vttablet/tabletserver/tabletenv"
"vitess.io/vitess/go/vt/vttablet/tabletserver/throttle"
@@ -281,7 +282,8 @@ func (vse *Engine) Stream(ctx context.Context, startPos string, tablePKs []*binl
// StreamRows streams rows.
// This streams the table data rows (so we can copy the table data snapshot)
-func (vse *Engine) StreamRows(ctx context.Context, query string, lastpk []sqltypes.Value, send func(*binlogdatapb.VStreamRowsResponse) error) error {
+func (vse *Engine) StreamRows(ctx context.Context, query string, lastpk []sqltypes.Value,
+ send func(*binlogdatapb.VStreamRowsResponse) error, options *binlogdatapb.VStreamOptions) error {
// Ensure vschema is initialized and the watcher is started.
// Starting of the watcher has to be delayed till the first call to Stream
// because this overhead should be incurred only if someone uses this feature.
@@ -296,7 +298,8 @@ func (vse *Engine) StreamRows(ctx context.Context, query string, lastpk []sqltyp
vse.mu.Lock()
defer vse.mu.Unlock()
- rowStreamer := newRowStreamer(ctx, vse.env.Config().DB.FilteredWithDB(), vse.se, query, lastpk, vse.lvschema, send, vse, RowStreamerModeSingleTable, nil)
+ rowStreamer := newRowStreamer(ctx, vse.env.Config().DB.FilteredWithDB(), vse.se, query, lastpk, vse.lvschema,
+ send, vse, RowStreamerModeSingleTable, nil, options)
idx := vse.streamIdx
vse.rowStreamers[idx] = rowStreamer
vse.streamIdx++
@@ -322,7 +325,9 @@ func (vse *Engine) StreamRows(ctx context.Context, query string, lastpk []sqltyp
}
// StreamTables streams all tables.
-func (vse *Engine) StreamTables(ctx context.Context, send func(*binlogdatapb.VStreamTablesResponse) error) error {
+func (vse *Engine) StreamTables(ctx context.Context,
+ send func(*binlogdatapb.VStreamTablesResponse) error, options *binlogdatapb.VStreamOptions) error {
+
// Ensure vschema is initialized and the watcher is started.
// Starting of the watcher is delayed till the first call to StreamTables
// so that this overhead is incurred only if someone uses this feature.
@@ -337,7 +342,7 @@ func (vse *Engine) StreamTables(ctx context.Context, send func(*binlogdatapb.VSt
vse.mu.Lock()
defer vse.mu.Unlock()
- tableStreamer := newTableStreamer(ctx, vse.env.Config().DB.FilteredWithDB(), vse.se, vse.lvschema, send, vse)
+ tableStreamer := newTableStreamer(ctx, vse.env.Config().DB.FilteredWithDB(), vse.se, vse.lvschema, send, vse, options)
idx := vse.streamIdx
vse.tableStreamers[idx] = tableStreamer
vse.streamIdx++
@@ -363,7 +368,9 @@ func (vse *Engine) StreamTables(ctx context.Context, send func(*binlogdatapb.VSt
}
// StreamResults streams results of the query with the gtid.
-func (vse *Engine) StreamResults(ctx context.Context, query string, send func(*binlogdatapb.VStreamResultsResponse) error) error {
+func (vse *Engine) StreamResults(ctx context.Context, query string,
+ send func(*binlogdatapb.VStreamResultsResponse) error) error {
+
// Create stream and add it to the map.
resultStreamer, idx, err := func() (*resultStreamer, int, error) {
if atomic.LoadInt32(&vse.isOpen) == 0 {
@@ -469,7 +476,7 @@ func (vse *Engine) setWatch() {
}
func getPacketSize() int64 {
- return int64(defaultPacketSize)
+ return int64(vttablet.VStreamerDefaultPacketSize)
}
// waitForMySQL ensures that the source is able to stay within defined bounds for
diff --git a/go/vt/vttablet/tabletserver/vstreamer/main_test.go b/go/vt/vttablet/tabletserver/vstreamer/main_test.go
index 7140f8140d9..18b5e1f1b3b 100644
--- a/go/vt/vttablet/tabletserver/vstreamer/main_test.go
+++ b/go/vt/vttablet/tabletserver/vstreamer/main_test.go
@@ -22,11 +22,14 @@ import (
"io"
"os"
"slices"
+ "strconv"
"strings"
"sync"
"testing"
"time"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
+
"github.com/stretchr/testify/require"
_flag "vitess.io/vitess/go/internal/flag"
@@ -309,6 +312,14 @@ func vstream(ctx context.Context, t *testing.T, pos string, tablePKs []*binlogda
}},
}
}
+
+ // Some unit tests currently change the packet size options for the scope of those tests. We want to pass those
+ // values to the VStreamer for the duration of this test.
+ var options binlogdatapb.VStreamOptions
+ options.ConfigOverrides = make(map[string]string)
+ options.ConfigOverrides["vstream_dynamic_packet_size"] = strconv.FormatBool(vttablet.VStreamerUseDynamicPacketSize)
+ options.ConfigOverrides["vstream_packet_size"] = strconv.Itoa(vttablet.VStreamerDefaultPacketSize)
+
return engine.Stream(ctx, pos, tablePKs, filter, throttlerapp.VStreamerName, func(evs []*binlogdatapb.VEvent) error {
timer := time.NewTimer(2 * time.Second)
defer timer.Stop()
@@ -323,7 +334,7 @@ func vstream(ctx context.Context, t *testing.T, pos string, tablePKs []*binlogda
return io.EOF
}
return nil
- }, nil)
+ }, &options)
}
func execStatement(t *testing.T, query string) {
diff --git a/go/vt/vttablet/tabletserver/vstreamer/packet_size.go b/go/vt/vttablet/tabletserver/vstreamer/packet_size.go
index 50bc1e57cd2..7ce430d1811 100644
--- a/go/vt/vttablet/tabletserver/vstreamer/packet_size.go
+++ b/go/vt/vttablet/tabletserver/vstreamer/packet_size.go
@@ -21,14 +21,9 @@ import (
"github.com/spf13/pflag"
- "vitess.io/vitess/go/vt/servenv"
-
"vitess.io/vitess/go/mathstats"
-)
-
-var (
- defaultPacketSize = 250000
- useDynamicPacketSize = true
+ "vitess.io/vitess/go/vt/servenv"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
)
func init() {
@@ -38,9 +33,9 @@ func init() {
func registerPacketSizeFlags(fs *pflag.FlagSet) {
// defaultPacketSize is the suggested packet size for VReplication streamer.
- fs.IntVar(&defaultPacketSize, "vstream_packet_size", defaultPacketSize, "Suggested packet size for VReplication streamer. This is used only as a recommendation. The actual packet size may be more or less than this amount.")
+ fs.IntVar(&vttablet.VStreamerDefaultPacketSize, "vstream_packet_size", vttablet.VStreamerDefaultPacketSize, "Suggested packet size for VReplication streamer. This is used only as a recommendation. The actual packet size may be more or less than this amount.")
// useDynamicPacketSize controls whether to use dynamic packet size adjustments to increase performance while streaming
- fs.BoolVar(&useDynamicPacketSize, "vstream_dynamic_packet_size", useDynamicPacketSize, "Enable dynamic packet sizing for VReplication. This will adjust the packet size during replication to improve performance.")
+ fs.BoolVar(&vttablet.VStreamerUseDynamicPacketSize, "vstream_dynamic_packet_size", vttablet.VStreamerUseDynamicPacketSize, "Enable dynamic packet sizing for VReplication. This will adjust the packet size during replication to improve performance.")
}
// PacketSizer is a controller that adjusts the size of the packets being sent by the vstreamer at runtime
@@ -50,28 +45,29 @@ type PacketSizer interface {
Limit() int
}
-// DefaultPacketSizer creates a new PacketSizer using the default settings.
+// DefaultPacketSizer creates a new PacketSizer based on the provided values.
// If dynamic packet sizing is enabled, this will return a dynamicPacketSizer.
-func DefaultPacketSizer() PacketSizer {
+// Otherwise it will return a fixedPacketSize of packetSize.
+func DefaultPacketSizer(useDynamicPacketSize bool, packetSize int) PacketSizer {
if useDynamicPacketSize {
- return newDynamicPacketSizer(defaultPacketSize)
+ return newDynamicPacketSizer(packetSize)
}
- return newFixedPacketSize(defaultPacketSize)
+ return newFixedPacketSize(packetSize)
}
// AdjustPacketSize temporarily adjusts the default packet sizes to the given value.
// Calling the returned cleanup function resets them to their original value.
// This function is only used for testing.
func AdjustPacketSize(size int) func() {
- originalSize := defaultPacketSize
- originalDyn := useDynamicPacketSize
+ originalSize := vttablet.VStreamerDefaultPacketSize
+ originalDyn := vttablet.VStreamerUseDynamicPacketSize
- defaultPacketSize = size
- useDynamicPacketSize = false
+ vttablet.VStreamerDefaultPacketSize = size
+ vttablet.VStreamerUseDynamicPacketSize = false
return func() {
- defaultPacketSize = originalSize
- useDynamicPacketSize = originalDyn
+ vttablet.VStreamerDefaultPacketSize = originalSize
+ vttablet.VStreamerUseDynamicPacketSize = originalDyn
}
}
diff --git a/go/vt/vttablet/tabletserver/vstreamer/resultstreamer.go b/go/vt/vttablet/tabletserver/vstreamer/resultstreamer.go
index b6294cd1939..ca3929979c3 100644
--- a/go/vt/vttablet/tabletserver/vstreamer/resultstreamer.go
+++ b/go/vt/vttablet/tabletserver/vstreamer/resultstreamer.go
@@ -25,6 +25,7 @@ import (
"vitess.io/vitess/go/vt/dbconfigs"
"vitess.io/vitess/go/vt/logutil"
"vitess.io/vitess/go/vt/sqlparser"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
"vitess.io/vitess/go/vt/vttablet/tabletserver/throttle/throttlerapp"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
@@ -55,7 +56,7 @@ func newResultStreamer(ctx context.Context, cp dbconfigs.Connector, query string
query: query,
send: send,
vse: vse,
- pktsize: DefaultPacketSizer(),
+ pktsize: DefaultPacketSizer(vttablet.VStreamerUseDynamicPacketSize, vttablet.VStreamerDefaultPacketSize),
}
}
diff --git a/go/vt/vttablet/tabletserver/vstreamer/rowstreamer.go b/go/vt/vttablet/tabletserver/vstreamer/rowstreamer.go
index 6015590dad7..31c47674233 100644
--- a/go/vt/vttablet/tabletserver/vstreamer/rowstreamer.go
+++ b/go/vt/vttablet/tabletserver/vstreamer/rowstreamer.go
@@ -33,7 +33,7 @@ import (
"vitess.io/vitess/go/vt/logutil"
"vitess.io/vitess/go/vt/sqlparser"
"vitess.io/vitess/go/vt/vterrors"
- "vitess.io/vitess/go/vt/vttablet"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
"vitess.io/vitess/go/vt/vttablet/tabletserver/schema"
"vitess.io/vitess/go/vt/vttablet/tabletserver/throttle/throttlerapp"
@@ -79,14 +79,20 @@ type rowStreamer struct {
vse *Engine
pktsize PacketSizer
- mode RowStreamerMode
- conn *snapshotConn
+ mode RowStreamerMode
+ conn *snapshotConn
+ options *binlogdatapb.VStreamOptions
+ config *vttablet.VReplicationConfig
}
func newRowStreamer(ctx context.Context, cp dbconfigs.Connector, se *schema.Engine, query string,
lastpk []sqltypes.Value, vschema *localVSchema, send func(*binlogdatapb.VStreamRowsResponse) error, vse *Engine,
- mode RowStreamerMode, conn *snapshotConn) *rowStreamer {
+ mode RowStreamerMode, conn *snapshotConn, options *binlogdatapb.VStreamOptions) *rowStreamer {
+ config, err := GetVReplicationConfig(options)
+ if err != nil {
+ return nil
+ }
ctx, cancel := context.WithCancel(ctx)
return &rowStreamer{
ctx: ctx,
@@ -98,9 +104,11 @@ func newRowStreamer(ctx context.Context, cp dbconfigs.Connector, se *schema.Engi
send: send,
vschema: vschema,
vse: vse,
- pktsize: DefaultPacketSizer(),
+ pktsize: DefaultPacketSizer(config.VStreamDynamicPacketSize, config.VStreamPacketSize),
mode: mode,
conn: conn,
+ options: options,
+ config: config,
}
}
@@ -128,10 +136,10 @@ func (rs *rowStreamer) Stream() error {
if _, err := rs.conn.ExecuteFetch("set names 'binary'", 1, false); err != nil {
return err
}
- if _, err := conn.ExecuteFetch(fmt.Sprintf("set @@session.net_read_timeout = %v", vttablet.VReplicationNetReadTimeout), 1, false); err != nil {
+ if _, err := conn.ExecuteFetch(fmt.Sprintf("set @@session.net_read_timeout = %v", rs.config.NetReadTimeout), 1, false); err != nil {
return err
}
- if _, err := conn.ExecuteFetch(fmt.Sprintf("set @@session.net_write_timeout = %v", vttablet.VReplicationNetWriteTimeout), 1, false); err != nil {
+ if _, err := conn.ExecuteFetch(fmt.Sprintf("set @@session.net_write_timeout = %v", rs.config.NetReadTimeout), 1, false); err != nil {
return err
}
}
@@ -240,7 +248,7 @@ func (rs *rowStreamer) buildPKColumns(st *binlogdatapb.MinimalTable) ([]int, err
func (rs *rowStreamer) buildSelect(st *binlogdatapb.MinimalTable) (string, error) {
buf := sqlparser.NewTrackedBuffer(nil)
// We could have used select *, but being explicit is more predictable.
- buf.Myprintf("select %s", GetVReplicationMaxExecutionTimeQueryHint())
+ buf.Myprintf("select %s", GetVReplicationMaxExecutionTimeQueryHint(rs.config.CopyPhaseDuration))
prefix := ""
for _, col := range rs.plan.Table.Fields {
if rs.plan.isConvertColumnUsingUTF8(col.Name) {
@@ -455,6 +463,6 @@ func (rs *rowStreamer) streamQuery(send func(*binlogdatapb.VStreamRowsResponse)
return nil
}
-func GetVReplicationMaxExecutionTimeQueryHint() string {
- return fmt.Sprintf("/*+ MAX_EXECUTION_TIME(%v) */ ", vttablet.CopyPhaseDuration.Milliseconds())
+func GetVReplicationMaxExecutionTimeQueryHint(copyPhaseDuration time.Duration) string {
+ return fmt.Sprintf("/*+ MAX_EXECUTION_TIME(%v) */ ", copyPhaseDuration.Milliseconds())
}
diff --git a/go/vt/vttablet/tabletserver/vstreamer/rowstreamer_test.go b/go/vt/vttablet/tabletserver/vstreamer/rowstreamer_test.go
index 48d11d9e856..2c75c4a73b0 100644
--- a/go/vt/vttablet/tabletserver/vstreamer/rowstreamer_test.go
+++ b/go/vt/vttablet/tabletserver/vstreamer/rowstreamer_test.go
@@ -20,8 +20,11 @@ import (
"context"
"fmt"
"regexp"
+ "strconv"
"testing"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
+
"github.com/stretchr/testify/require"
"vitess.io/vitess/go/mysql"
@@ -79,7 +82,7 @@ func TestRowStreamerQuery(t *testing.T) {
})
}
return nil
- })
+ }, nil)
require.NoError(t, err)
}
@@ -285,7 +288,7 @@ func TestStreamRowsUnicode(t *testing.T) {
t.Errorf("rows.Rows[0].Values: %s, want %s", got, want)
}
return nil
- })
+ }, nil)
require.NoError(t, err)
}
@@ -423,10 +426,14 @@ func TestStreamRowsCancel(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
+ var options binlogdatapb.VStreamOptions
+ options.ConfigOverrides = make(map[string]string)
+ options.ConfigOverrides["vstream_dynamic_packet_size"] = "false"
+ options.ConfigOverrides["vstream_packet_size"] = "10"
err := engine.StreamRows(ctx, "select * from t1", nil, func(rows *binlogdatapb.VStreamRowsResponse) error {
cancel()
return nil
- })
+ }, &options)
if got, want := err.Error(), "stream ended: context canceled"; got != want {
t.Errorf("err: %v, want %s", err, want)
}
@@ -442,6 +449,10 @@ func checkStream(t *testing.T, query string, lastpk []sqltypes.Value, wantQuery
go func() {
first := true
defer close(ch)
+ var options binlogdatapb.VStreamOptions
+ options.ConfigOverrides = make(map[string]string)
+ options.ConfigOverrides["vstream_dynamic_packet_size"] = strconv.FormatBool(vttablet.VStreamerUseDynamicPacketSize)
+ options.ConfigOverrides["vstream_packet_size"] = strconv.Itoa(vttablet.VStreamerDefaultPacketSize)
err := engine.StreamRows(context.Background(), query, lastpk, func(rows *binlogdatapb.VStreamRowsResponse) error {
if first {
if rows.Gtid == "" {
@@ -469,7 +480,7 @@ func checkStream(t *testing.T, query string, lastpk []sqltypes.Value, wantQuery
}
i++
return nil
- })
+ }, &options)
if err != nil {
ch <- err
}
@@ -486,7 +497,7 @@ func expectStreamError(t *testing.T, query string, want string) {
defer close(ch)
err := engine.StreamRows(context.Background(), query, nil, func(rows *binlogdatapb.VStreamRowsResponse) error {
return nil
- })
+ }, nil)
require.EqualError(t, err, want, "Got incorrect error")
}()
}
diff --git a/go/vt/vttablet/tabletserver/vstreamer/snapshot_conn.go b/go/vt/vttablet/tabletserver/vstreamer/snapshot_conn.go
index f3eda83bd45..ec326cc4159 100644
--- a/go/vt/vttablet/tabletserver/vstreamer/snapshot_conn.go
+++ b/go/vt/vttablet/tabletserver/vstreamer/snapshot_conn.go
@@ -25,23 +25,17 @@ import (
"github.com/spf13/pflag"
+ "vitess.io/vitess/go/mysql"
"vitess.io/vitess/go/mysql/replication"
"vitess.io/vitess/go/mysql/sqlerror"
-
- "vitess.io/vitess/go/mysql"
"vitess.io/vitess/go/vt/dbconfigs"
"vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/servenv"
"vitess.io/vitess/go/vt/sqlparser"
"vitess.io/vitess/go/vt/vterrors"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
)
-// If the current binary log is greater than this byte size, we
-// will attempt to rotate it before starting a GTID snapshot
-// based stream.
-// Default is 64MiB.
-var binlogRotationThreshold = int64(64 * 1024 * 1024) // 64MiB
-
// snapshotConn is wrapper on mysql.Conn capable of
// reading a table along with a GTID snapshot.
type snapshotConn struct {
@@ -55,7 +49,7 @@ func init() {
}
func registerSnapshotConnFlags(fs *pflag.FlagSet) {
- fs.Int64Var(&binlogRotationThreshold, "vstream-binlog-rotation-threshold", binlogRotationThreshold, "Byte size at which a VStreamer will attempt to rotate the source's open binary log before starting a GTID snapshot based stream (e.g. a ResultStreamer or RowStreamer)")
+ fs.Int64Var(&vttablet.VStreamerBinlogRotationThreshold, "vstream-binlog-rotation-threshold", vttablet.VStreamerBinlogRotationThreshold, "Byte size at which a VStreamer will attempt to rotate the source's open binary log before starting a GTID snapshot based stream (e.g. a ResultStreamer or RowStreamer)")
}
func snapshotConnect(ctx context.Context, cp dbconfigs.Connector) (*snapshotConn, error) {
@@ -189,7 +183,7 @@ func (conn *snapshotConn) limitOpenBinlogSize() (bool, error) {
if err != nil {
return rotatedLog, err
}
- if curLogSize > atomic.LoadInt64(&binlogRotationThreshold) {
+ if curLogSize > atomic.LoadInt64(&vttablet.VStreamerBinlogRotationThreshold) {
if _, err = conn.ExecuteFetch("FLUSH BINARY LOGS", 0, false); err != nil {
return rotatedLog, err
}
@@ -202,14 +196,14 @@ func (conn *snapshotConn) limitOpenBinlogSize() (bool, error) {
// will attempt to rotate the binary log before starting a GTID snapshot based
// stream (e.g. a ResultStreamer or RowStreamer).
func GetBinlogRotationThreshold() int64 {
- return atomic.LoadInt64(&binlogRotationThreshold)
+ return atomic.LoadInt64(&vttablet.VStreamerBinlogRotationThreshold)
}
// SetBinlogRotationThreshold sets the byte size at which a VStreamer will
// attempt to rotate the binary log before starting a GTID snapshot based
// stream (e.g. a ResultStreamer or RowStreamer).
func SetBinlogRotationThreshold(threshold int64) {
- atomic.StoreInt64(&binlogRotationThreshold, threshold)
+ atomic.StoreInt64(&vttablet.VStreamerBinlogRotationThreshold, threshold)
}
// startSnapshotAllTables starts a streaming query with a snapshot view of all tables, returning the
diff --git a/go/vt/vttablet/tabletserver/vstreamer/tablestreamer.go b/go/vt/vttablet/tabletserver/vstreamer/tablestreamer.go
index d3bbd136f12..6ed291387e1 100644
--- a/go/vt/vttablet/tabletserver/vstreamer/tablestreamer.go
+++ b/go/vt/vttablet/tabletserver/vstreamer/tablestreamer.go
@@ -28,7 +28,7 @@ import (
"vitess.io/vitess/go/vt/dbconfigs"
"vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/mysqlctl/tmutils"
- "vitess.io/vitess/go/vt/vttablet"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
"vitess.io/vitess/go/vt/vttablet/tabletserver/schema"
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
@@ -60,10 +60,17 @@ type tableStreamer struct {
snapshotConn *snapshotConn
tables []string
gtid string
+ options *binlogdatapb.VStreamOptions
+ config *vttablet.VReplicationConfig
}
func newTableStreamer(ctx context.Context, cp dbconfigs.Connector, se *schema.Engine, vschema *localVSchema,
- send func(response *binlogdatapb.VStreamTablesResponse) error, vse *Engine) *tableStreamer {
+ send func(response *binlogdatapb.VStreamTablesResponse) error, vse *Engine, options *binlogdatapb.VStreamOptions) *tableStreamer {
+
+ config, err := GetVReplicationConfig(options)
+ if err != nil {
+ return nil
+ }
ctx, cancel := context.WithCancel(ctx)
return &tableStreamer{
ctx: ctx,
@@ -73,6 +80,8 @@ func newTableStreamer(ctx context.Context, cp dbconfigs.Connector, se *schema.En
send: send,
vschema: vschema,
vse: vse,
+ options: options,
+ config: config,
}
}
@@ -103,10 +112,10 @@ func (ts *tableStreamer) Stream() error {
if _, err := conn.ExecuteFetch("set names 'binary'", 1, false); err != nil {
return err
}
- if _, err := conn.ExecuteFetch(fmt.Sprintf("set @@session.net_read_timeout = %v", vttablet.VReplicationNetReadTimeout), 1, false); err != nil {
+ if _, err := conn.ExecuteFetch(fmt.Sprintf("set @@session.net_read_timeout = %v", ts.config.NetReadTimeout), 1, false); err != nil {
return err
}
- if _, err := conn.ExecuteFetch(fmt.Sprintf("set @@session.net_write_timeout = %v", vttablet.VReplicationNetWriteTimeout), 1, false); err != nil {
+ if _, err := conn.ExecuteFetch(fmt.Sprintf("set @@session.net_write_timeout = %v", ts.config.NetWriteTimeout), 1, false); err != nil {
return err
}
@@ -149,7 +158,7 @@ func (ts *tableStreamer) newRowStreamer(ctx context.Context, query string, lastp
defer vse.mu.Unlock()
rowStreamer := newRowStreamer(ctx, vse.env.Config().DB.FilteredWithDB(), vse.se, query, lastpk, vse.lvschema,
- send, vse, RowStreamerModeAllTables, ts.snapshotConn)
+ send, vse, RowStreamerModeAllTables, ts.snapshotConn, ts.options)
idx := vse.streamIdx
vse.rowStreamers[idx] = rowStreamer
diff --git a/go/vt/vttablet/tabletserver/vstreamer/tablestreamer_test.go b/go/vt/vttablet/tabletserver/vstreamer/tablestreamer_test.go
index 9be3940c01d..8fe3849b8a4 100644
--- a/go/vt/vttablet/tabletserver/vstreamer/tablestreamer_test.go
+++ b/go/vt/vttablet/tabletserver/vstreamer/tablestreamer_test.go
@@ -69,7 +69,7 @@ func TestTableStreamer(t *testing.T) {
}
gotStream = append(gotStream, fmt.Sprintf("%v", response))
return nil
- })
+ }, nil)
require.NoError(t, err)
require.EqualValues(t, wantStream, gotStream)
require.Equal(t, int64(4), engine.tableStreamerNumTables.Get())
diff --git a/go/vt/vttablet/tabletserver/vstreamer/utils.go b/go/vt/vttablet/tabletserver/vstreamer/utils.go
new file mode 100644
index 00000000000..9597f80c07c
--- /dev/null
+++ b/go/vt/vttablet/tabletserver/vstreamer/utils.go
@@ -0,0 +1,37 @@
+/*
+Copyright 2024 The Vitess Authors.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+package vstreamer
+
+import (
+ "vitess.io/vitess/go/vt/log"
+ "vitess.io/vitess/go/vt/vterrors"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
+
+ binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
+)
+
+func GetVReplicationConfig(options *binlogdatapb.VStreamOptions) (*vttablet.VReplicationConfig, error) {
+ if options == nil {
+ return vttablet.InitVReplicationConfigDefaults(), nil
+ }
+ config, err := vttablet.NewVReplicationConfig(options.ConfigOverrides)
+ if err != nil {
+ log.Errorf("Error parsing VReplicationConfig: %v", err)
+ return nil, vterrors.Wrapf(err, "failed to parse VReplicationConfig")
+ }
+ return config, nil
+}
diff --git a/go/vt/vttablet/tabletserver/vstreamer/vstreamer.go b/go/vt/vttablet/tabletserver/vstreamer/vstreamer.go
index 00560a2526a..e7453b2b70f 100644
--- a/go/vt/vttablet/tabletserver/vstreamer/vstreamer.go
+++ b/go/vt/vttablet/tabletserver/vstreamer/vstreamer.go
@@ -38,7 +38,7 @@ import (
vtschema "vitess.io/vitess/go/vt/schema"
"vitess.io/vitess/go/vt/sqlparser"
"vitess.io/vitess/go/vt/vterrors"
- "vitess.io/vitess/go/vt/vttablet"
+ vttablet "vitess.io/vitess/go/vt/vttablet/common"
"vitess.io/vitess/go/vt/vttablet/tabletserver/schema"
"vitess.io/vitess/go/vt/vttablet/tabletserver/throttle/throttlerapp"
@@ -86,6 +86,7 @@ type vstreamer struct {
phase string
vse *Engine
options *binlogdatapb.VStreamOptions
+ config *vttablet.VReplicationConfig
}
// streamerPlan extends the original plan to also include
@@ -106,7 +107,7 @@ type streamerPlan struct {
// filter: the list of filtering rules. If a rule has a select expression for its filter,
//
// the select list can only reference direct columns. No other expressions are allowed.
-// The select expression is allowed to contain the special 'keyspace_id()' function which
+// The select expression is allowed to contain the special 'in_keyrange()' function which
// will return the keyspace id of the row. Examples:
// "select * from t", same as an empty Filter,
// "select * from t where in_keyrange('-80')", same as "-80",
@@ -121,6 +122,11 @@ type streamerPlan struct {
func newVStreamer(ctx context.Context, cp dbconfigs.Connector, se *schema.Engine, startPos string, stopPos string,
filter *binlogdatapb.Filter, vschema *localVSchema, throttlerApp throttlerapp.Name,
send func([]*binlogdatapb.VEvent) error, phase string, vse *Engine, options *binlogdatapb.VStreamOptions) *vstreamer {
+
+ config, err := GetVReplicationConfig(options)
+ if err != nil {
+ return nil
+ }
ctx, cancel := context.WithCancel(ctx)
return &vstreamer{
ctx: ctx,
@@ -138,6 +144,7 @@ func newVStreamer(ctx context.Context, cp dbconfigs.Connector, se *schema.Engine
phase: phase,
vse: vse,
options: options,
+ config: config,
}
}
@@ -249,7 +256,7 @@ func (vs *vstreamer) parseEvents(ctx context.Context, events <-chan mysql.Binlog
return vs.send(vevents)
case binlogdatapb.VEventType_INSERT, binlogdatapb.VEventType_DELETE, binlogdatapb.VEventType_UPDATE, binlogdatapb.VEventType_REPLACE:
newSize := len(vevent.GetDml())
- if curSize+newSize > defaultPacketSize {
+ if curSize+newSize > vs.config.VStreamPacketSize {
vs.vse.vstreamerNumPackets.Add(1)
vevents := bufferedEvents
bufferedEvents = []*binlogdatapb.VEvent{vevent}
@@ -270,7 +277,7 @@ func (vs *vstreamer) parseEvents(ctx context.Context, events <-chan mysql.Binlog
newSize += len(rowChange.After.Values)
}
}
- if curSize+newSize > defaultPacketSize {
+ if curSize+newSize > vs.config.VStreamPacketSize {
vs.vse.vstreamerNumPackets.Add(1)
vevents := bufferedEvents
bufferedEvents = []*binlogdatapb.VEvent{vevent}
@@ -996,7 +1003,7 @@ func (vs *vstreamer) processRowEvent(vevents []*binlogdatapb.VEvent, plan *strea
}
if afterOK {
rowChange.After = sqltypes.RowToProto3(afterValues)
- if (vttablet.VReplicationExperimentalFlags /**/ & /**/ vttablet.VReplicationExperimentalFlagAllowNoBlobBinlogRowImage != 0) &&
+ if (vs.config.ExperimentalFlags /**/ & /**/ vttablet.VReplicationExperimentalFlagAllowNoBlobBinlogRowImage != 0) &&
partial {
rowChange.DataColumns = &binlogdatapb.RowChange_Bitmap{
@@ -1060,7 +1067,7 @@ func (vs *vstreamer) extractRowAndFilter(plan *streamerPlan, data []byte, dataCo
partial := false
for colNum := 0; colNum < dataColumns.Count(); colNum++ {
if !dataColumns.Bit(colNum) {
- if vttablet.VReplicationExperimentalFlags /**/ & /**/ vttablet.VReplicationExperimentalFlagAllowNoBlobBinlogRowImage == 0 {
+ if vs.config.ExperimentalFlags /**/ & /**/ vttablet.VReplicationExperimentalFlagAllowNoBlobBinlogRowImage == 0 {
return false, nil, false, fmt.Errorf("partial row image encountered: ensure binlog_row_image is set to 'full'")
} else {
partial = true
diff --git a/go/vt/vttablet/tabletservermock/controller.go b/go/vt/vttablet/tabletservermock/controller.go
index d9b04b580dc..093778a44a8 100644
--- a/go/vt/vttablet/tabletservermock/controller.go
+++ b/go/vt/vttablet/tabletservermock/controller.go
@@ -91,6 +91,8 @@ type Controller struct {
// queryRulesMap has the latest query rules.
queryRulesMap map[string]*rules.Rules
+
+ MethodCalled map[string]bool
}
// NewController returns a mock of tabletserver.Controller
@@ -101,6 +103,7 @@ func NewController() *Controller {
BroadcastData: make(chan *BroadcastData, 10),
StateChanges: make(chan *StateChange, 10),
queryRulesMap: make(map[string]*rules.Rules),
+ MethodCalled: make(map[string]bool),
}
}
@@ -235,9 +238,22 @@ func (tqsc *Controller) SetTwoPCAllowed(bool) {
// UnresolvedTransactions is part of the tabletserver.Controller interface
func (tqsc *Controller) UnresolvedTransactions(context.Context, *querypb.Target) ([]*querypb.TransactionMetadata, error) {
+ tqsc.MethodCalled["UnresolvedTransactions"] = true
return nil, nil
}
+// ConcludeTransaction is part of the tabletserver.Controller interface
+func (tqsc *Controller) ConcludeTransaction(context.Context, *querypb.Target, string) error {
+ tqsc.MethodCalled["ConcludeTransaction"] = true
+ return nil
+}
+
+// RollbackPrepared is part of the tabletserver.Controller interface
+func (tqsc *Controller) RollbackPrepared(context.Context, *querypb.Target, string, int64) error {
+ tqsc.MethodCalled["RollbackPrepared"] = true
+ return nil
+}
+
// EnterLameduck implements tabletserver.Controller.
func (tqsc *Controller) EnterLameduck() {
tqsc.mu.Lock()
diff --git a/go/vt/vttablet/tmclient/rpc_client_api.go b/go/vt/vttablet/tmclient/rpc_client_api.go
index e84d1f4ca6c..033beff2264 100644
--- a/go/vt/vttablet/tmclient/rpc_client_api.go
+++ b/go/vt/vttablet/tmclient/rpc_client_api.go
@@ -149,6 +149,9 @@ type TabletManagerClient interface {
// GetUnresolvedTransactions returns the list of unresolved transactions for the tablet.
GetUnresolvedTransactions(ctx context.Context, tablet *topodatapb.Tablet) ([]*querypb.TransactionMetadata, error)
+ // ConcludeTransaction conclude the transaction on the tablet.
+ ConcludeTransaction(ctx context.Context, tablet *topodatapb.Tablet, dtid string, mm bool) error
+
//
// Replication related methods
//
diff --git a/go/vt/vttablet/tmrpctest/test_tm_rpc.go b/go/vt/vttablet/tmrpctest/test_tm_rpc.go
index eb22a9303d4..fad784a3d7f 100644
--- a/go/vt/vttablet/tmrpctest/test_tm_rpc.go
+++ b/go/vt/vttablet/tmrpctest/test_tm_rpc.go
@@ -744,6 +744,13 @@ func (fra *fakeRPCTM) GetUnresolvedTransactions(ctx context.Context) ([]*querypb
return nil, nil
}
+func (fra *fakeRPCTM) ConcludeTransaction(ctx context.Context, req *tabletmanagerdatapb.ConcludeTransactionRequest) error {
+ if fra.panics {
+ panic(fmt.Errorf("test-triggered panic"))
+ }
+ return nil
+}
+
func tmRPCTestExecuteFetch(ctx context.Context, t *testing.T, client tmclient.TabletManagerClient, tablet *topodatapb.Tablet) {
// using pool
qr, err := client.ExecuteFetchAsDba(ctx, tablet, true, &tabletmanagerdatapb.ExecuteFetchAsDbaRequest{
diff --git a/go/vt/wrangler/materializer.go b/go/vt/wrangler/materializer.go
index cc7ba3f1603..f777ddae2e8 100644
--- a/go/vt/wrangler/materializer.go
+++ b/go/vt/wrangler/materializer.go
@@ -1443,7 +1443,7 @@ func (mz *materializer) generateInserts(ctx context.Context, sourceShards []*top
ig.AddRow(mz.ms.Workflow, bls, "", mz.ms.Cell, tabletTypeStr,
workflowType,
workflowSubType,
- mz.ms.DeferSecondaryKeys,
+ mz.ms.DeferSecondaryKeys, "",
)
}
return ig.String(), nil
diff --git a/go/vt/wrangler/resharder.go b/go/vt/wrangler/resharder.go
index 536f4c643cc..b041ce32041 100644
--- a/go/vt/wrangler/resharder.go
+++ b/go/vt/wrangler/resharder.go
@@ -341,7 +341,7 @@ func (rs *resharder) createStreams(ctx context.Context) error {
ig.AddRow(rs.workflow, bls, "", rs.cell, rs.tabletTypes,
binlogdatapb.VReplicationWorkflowType_Reshard,
binlogdatapb.VReplicationWorkflowSubType_None,
- rs.deferSecondaryKeys)
+ rs.deferSecondaryKeys, "")
}
for _, rstream := range rs.refStreams {
@@ -349,7 +349,7 @@ func (rs *resharder) createStreams(ctx context.Context) error {
//todo: fix based on original stream
binlogdatapb.VReplicationWorkflowType_Reshard,
binlogdatapb.VReplicationWorkflowSubType_None,
- rs.deferSecondaryKeys)
+ rs.deferSecondaryKeys, "")
}
query := ig.String()
if _, err := rs.wr.tmc.VReplicationExec(ctx, targetPrimary.Tablet, query); err != nil {
diff --git a/go/vt/wrangler/vexec.go b/go/vt/wrangler/vexec.go
index 2c279c5c6cf..41f02ef9e63 100644
--- a/go/vt/wrangler/vexec.go
+++ b/go/vt/wrangler/vexec.go
@@ -445,9 +445,9 @@ func (wr *Wrangler) execWorkflowAction(ctx context.Context, workflow, keyspace,
changes = true
dryRunChanges.WriteString(fmt.Sprintf(" tablet_types=%q\n", topoproto.MakeStringTypeCSV(rpcReq.TabletTypes)))
}
- if !textutil.ValueIsSimulatedNull(rpcReq.OnDdl) {
+ if rpcReq.OnDdl != nil {
changes = true
- dryRunChanges.WriteString(fmt.Sprintf(" on_ddl=%q\n", binlogdatapb.OnDDLAction_name[int32(rpcReq.OnDdl)]))
+ dryRunChanges.WriteString(fmt.Sprintf(" on_ddl=%q\n", binlogdatapb.OnDDLAction_name[int32(*rpcReq.OnDdl)]))
}
if !changes {
return nil, fmt.Errorf("no updates were provided; use --cells, --tablet-types, or --on-ddl to specify new values")
diff --git a/go/vt/wrangler/vexec_test.go b/go/vt/wrangler/vexec_test.go
index 80cd2aef565..223e338b303 100644
--- a/go/vt/wrangler/vexec_test.go
+++ b/go/vt/wrangler/vexec_test.go
@@ -29,13 +29,15 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
+ "vitess.io/vitess/go/ptr"
"vitess.io/vitess/go/sqltypes"
"vitess.io/vitess/go/textutil"
"vitess.io/vitess/go/vt/logutil"
+ "vitess.io/vitess/go/vt/vtenv"
+
binlogdatapb "vitess.io/vitess/go/vt/proto/binlogdata"
tabletmanagerdatapb "vitess.io/vitess/go/vt/proto/tabletmanagerdata"
topodatapb "vitess.io/vitess/go/vt/proto/topodata"
- "vitess.io/vitess/go/vt/vtenv"
)
var (
@@ -397,49 +399,45 @@ func TestWorkflowUpdate(t *testing.T) {
defer env.close()
logger := logutil.NewMemoryLogger()
wr := New(vtenv.NewTestEnv(), logger, env.topoServ, env.tmc)
- nullSlice := textutil.SimulatedNullStringSlice // Used to represent a non-provided value
- nullOnDDL := binlogdatapb.OnDDLAction(textutil.SimulatedNullInt) // Used to represent a non-provided value
+
tests := []struct {
name string
cells []string
tabletTypes []topodatapb.TabletType
- onDDL binlogdatapb.OnDDLAction
+ onDDL *binlogdatapb.OnDDLAction
output string
wantErr string
}{
{
name: "no flags",
- cells: nullSlice,
- tabletTypes: []topodatapb.TabletType{topodatapb.TabletType(textutil.SimulatedNullInt)},
- onDDL: nullOnDDL,
+ cells: textutil.SimulatedNullStringSlice,
+ tabletTypes: textutil.SimulatedNullTabletTypeSlice,
wantErr: "no updates were provided; use --cells, --tablet-types, or --on-ddl to specify new values",
},
{
name: "only cells",
cells: []string{"zone1"},
- tabletTypes: []topodatapb.TabletType{topodatapb.TabletType(textutil.SimulatedNullInt)},
- onDDL: nullOnDDL,
+ tabletTypes: textutil.SimulatedNullTabletTypeSlice,
output: "The following workflow fields will be updated:\n cells=\"zone1\"\nOn the following tablets in the target keyspace for workflow wrWorkflow:\n zone1-0000000200 (target/-80)\n zone1-0000000210 (target/80-)\n",
},
{
name: "only tablet types",
- cells: nullSlice,
+ cells: textutil.SimulatedNullStringSlice,
tabletTypes: []topodatapb.TabletType{topodatapb.TabletType_PRIMARY, topodatapb.TabletType_REPLICA},
- onDDL: nullOnDDL,
output: "The following workflow fields will be updated:\n tablet_types=\"primary,replica\"\nOn the following tablets in the target keyspace for workflow wrWorkflow:\n zone1-0000000200 (target/-80)\n zone1-0000000210 (target/80-)\n",
},
{
name: "only on-ddl",
- cells: nullSlice,
- tabletTypes: []topodatapb.TabletType{topodatapb.TabletType(textutil.SimulatedNullInt)},
- onDDL: binlogdatapb.OnDDLAction_EXEC_IGNORE,
+ cells: textutil.SimulatedNullStringSlice,
+ tabletTypes: textutil.SimulatedNullTabletTypeSlice,
+ onDDL: ptr.Of(binlogdatapb.OnDDLAction_EXEC_IGNORE),
output: "The following workflow fields will be updated:\n on_ddl=\"EXEC_IGNORE\"\nOn the following tablets in the target keyspace for workflow wrWorkflow:\n zone1-0000000200 (target/-80)\n zone1-0000000210 (target/80-)\n",
},
{
name: "all flags",
cells: []string{"zone1", "zone2"},
tabletTypes: []topodatapb.TabletType{topodatapb.TabletType_RDONLY, topodatapb.TabletType_SPARE},
- onDDL: binlogdatapb.OnDDLAction_EXEC,
+ onDDL: ptr.Of(binlogdatapb.OnDDLAction_EXEC),
output: "The following workflow fields will be updated:\n cells=\"zone1,zone2\"\n tablet_types=\"rdonly,spare\"\n on_ddl=\"EXEC\"\nOn the following tablets in the target keyspace for workflow wrWorkflow:\n zone1-0000000200 (target/-80)\n zone1-0000000210 (target/80-)\n",
},
}
diff --git a/proto/binlogdata.proto b/proto/binlogdata.proto
index 559bf8f847f..595760dcd52 100644
--- a/proto/binlogdata.proto
+++ b/proto/binlogdata.proto
@@ -480,6 +480,7 @@ message MinimalSchema {
message VStreamOptions {
repeated string internal_tables = 1;
+ map config_overrides = 2;
}
// VStreamRequest is the payload for VStreamer
@@ -508,6 +509,7 @@ message VStreamRowsRequest {
string query = 4;
query.QueryResult lastpk = 5;
+ VStreamOptions options = 6;
}
// VStreamRowsResponse is the response from VStreamRows
@@ -531,6 +533,7 @@ message VStreamTablesRequest {
vtrpc.CallerID effective_caller_id = 1;
query.VTGateCallerID immediate_caller_id = 2;
query.Target target = 3;
+ VStreamOptions options = 4;
}
// VStreamTablesResponse is the response from VStreamTables
diff --git a/proto/tabletmanagerdata.proto b/proto/tabletmanagerdata.proto
index eb7c3485156..9d115627b7c 100644
--- a/proto/tabletmanagerdata.proto
+++ b/proto/tabletmanagerdata.proto
@@ -316,6 +316,14 @@ message GetUnresolvedTransactionsResponse {
repeated query.TransactionMetadata transactions = 1;
}
+message ConcludeTransactionRequest {
+ string dtid = 1;
+ bool mm = 2;
+}
+
+message ConcludeTransactionResponse {
+}
+
message ReplicationStatusRequest {
}
@@ -634,6 +642,7 @@ message ReadVReplicationWorkflowResponse {
}
repeated Stream streams = 11;
string options = 12;
+ map config_overrides = 13;
}
message VDiffRequest {
@@ -686,6 +695,7 @@ message VDiffOptions {
VDiffReportOptions report_options = 3;
}
+
// UpdateVReplicationWorkflowRequest is used to update an existing VReplication
// workflow. Note that the following fields MUST have an explicit value provided
// if you do NOT wish to update the existing value to the given type's ZeroValue:
@@ -696,10 +706,11 @@ message UpdateVReplicationWorkflowRequest {
string workflow = 1;
repeated string cells = 2;
repeated topodata.TabletType tablet_types = 3;
- TabletSelectionPreference tablet_selection_preference = 4;
- binlogdata.OnDDLAction on_ddl = 5;
- binlogdata.VReplicationWorkflowState state = 6;
+ optional TabletSelectionPreference tablet_selection_preference = 4;
+ optional binlogdata.OnDDLAction on_ddl = 5;
+ optional binlogdata.VReplicationWorkflowState state = 6;
reserved 7; // unused, was: repeated string shards
+ map config_overrides = 8;
}
message UpdateVReplicationWorkflowResponse {
@@ -716,9 +727,9 @@ message UpdateVReplicationWorkflowsRequest {
bool all_workflows = 1;
repeated string include_workflows = 2;
repeated string exclude_workflows = 3;
- binlogdata.VReplicationWorkflowState state = 4;
- string message = 5;
- string stop_position = 6;
+ optional binlogdata.VReplicationWorkflowState state = 4;
+ optional string message = 5;
+ optional string stop_position = 6;
}
message UpdateVReplicationWorkflowsResponse {
diff --git a/proto/tabletmanagerservice.proto b/proto/tabletmanagerservice.proto
index 509c0c53838..e6cd7884b65 100644
--- a/proto/tabletmanagerservice.proto
+++ b/proto/tabletmanagerservice.proto
@@ -88,6 +88,8 @@ service TabletManager {
rpc GetUnresolvedTransactions(tabletmanagerdata.GetUnresolvedTransactionsRequest) returns (tabletmanagerdata.GetUnresolvedTransactionsResponse) {};
+ rpc ConcludeTransaction(tabletmanagerdata.ConcludeTransactionRequest) returns (tabletmanagerdata.ConcludeTransactionResponse) {};
+
//
// Replication related methods
//
diff --git a/proto/vtctldata.proto b/proto/vtctldata.proto
index f3230fa6c6e..27e0fc70bba 100644
--- a/proto/vtctldata.proto
+++ b/proto/vtctldata.proto
@@ -214,6 +214,8 @@ message WorkflowOptions {
// Shards on which vreplication streams in the target keyspace are created for this workflow and to which the data
// from the source will be vreplicated.
repeated string shards = 3;
+ map config = 4;
+
}
// TODO: comment the hell out of this.
@@ -1109,6 +1111,14 @@ message GetUnresolvedTransactionsResponse {
repeated query.TransactionMetadata transactions = 1;
}
+message ConcludeTransactionRequest {
+ string dtid = 1;
+ repeated query.Target participants = 2;
+}
+
+message ConcludeTransactionResponse {
+}
+
message GetVSchemaRequest {
string keyspace = 1;
}
@@ -1533,6 +1543,8 @@ message ReshardCreateRequest {
bool defer_secondary_keys = 11;
// Start the workflow after creating it.
bool auto_start = 12;
+ WorkflowOptions workflow_options = 13;
+
}
message RestoreFromBackupRequest {
@@ -1984,6 +1996,7 @@ message WorkflowSwitchTrafficRequest {
bool dry_run = 9;
bool initialize_target_sequences = 10;
repeated string shards = 11;
+ bool force = 12;
}
message WorkflowSwitchTrafficResponse {
diff --git a/proto/vtctlservice.proto b/proto/vtctlservice.proto
index 4f86d666d13..23f00c2a376 100644
--- a/proto/vtctlservice.proto
+++ b/proto/vtctlservice.proto
@@ -70,6 +70,8 @@ service Vtctld {
rpc CleanupSchemaMigration(vtctldata.CleanupSchemaMigrationRequest) returns (vtctldata.CleanupSchemaMigrationResponse) {};
// CompleteSchemaMigration completes one or all migrations executed with --postpone-completion.
rpc CompleteSchemaMigration(vtctldata.CompleteSchemaMigrationRequest) returns (vtctldata.CompleteSchemaMigrationResponse) {};
+ // CompleteSchemaMigration completes one or all migrations executed with --postpone-completion.
+ rpc ConcludeTransaction(vtctldata.ConcludeTransactionRequest) returns (vtctldata.ConcludeTransactionResponse) {};
// CreateKeyspace creates the specified keyspace in the topology. For a
// SNAPSHOT keyspace, the request must specify the name of a base keyspace,
// as well as a snapshot time.
diff --git a/proto/vtgate.proto b/proto/vtgate.proto
index 02268b9d7e8..5b080178218 100644
--- a/proto/vtgate.proto
+++ b/proto/vtgate.proto
@@ -304,6 +304,8 @@ message VStreamFlags {
string tablet_order = 6;
// When set, all new row events from the `heartbeat` table, for all shards, in the sidecardb will be streamed.
bool stream_keyspace_heartbeats = 7;
+ // Include reshard journal events in the stream.
+ bool include_reshard_journal_events = 8;
}
// VStreamRequest is the payload for VStream.
diff --git a/web/vtadmin/package-lock.json b/web/vtadmin/package-lock.json
index c46f0c6f480..0c169be4517 100644
--- a/web/vtadmin/package-lock.json
+++ b/web/vtadmin/package-lock.json
@@ -21,6 +21,7 @@
"highcharts-react-official": "^3.1.0",
"history": "^5.3.0",
"lodash-es": "^4.17.21",
+ "path-to-regexp": "^8.1.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^8.0.1",
"query-string": "^7.1.3",
@@ -14133,7 +14134,6 @@
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.1.0.tgz",
"integrity": "sha512-Bqn3vc8CMHty6zuD+tG23s6v2kwxslHEhTj4eYaVKGIEB+YX/2wd0/rgXLFD9G9id9KCtbVy/3ZgmvZjpa0UdQ==",
- "dev": true,
"engines": {
"node": ">=16"
}
@@ -16208,7 +16208,7 @@
"mime-types": "2.1.18",
"minimatch": "3.1.2",
"path-is-inside": "1.0.2",
- "path-to-regexp": "^8.0.0",
+ "path-to-regexp": "^3.3.0",
"range-parser": "1.2.0"
}
},
@@ -16233,6 +16233,12 @@
"node": ">= 0.6"
}
},
+ "node_modules/serve-handler/node_modules/path-to-regexp": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.3.0.tgz",
+ "integrity": "sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==",
+ "dev": true
+ },
"node_modules/serve/node_modules/ajv": {
"version": "8.12.0",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
diff --git a/web/vtadmin/package.json b/web/vtadmin/package.json
index 52029ddd9e4..78d14ea9e9c 100644
--- a/web/vtadmin/package.json
+++ b/web/vtadmin/package.json
@@ -20,6 +20,7 @@
"highcharts-react-official": "^3.1.0",
"history": "^5.3.0",
"lodash-es": "^4.17.21",
+ "path-to-regexp": "^8.1.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^8.0.1",
"query-string": "^7.1.3",
diff --git a/web/vtadmin/src/proto/vtadmin.d.ts b/web/vtadmin/src/proto/vtadmin.d.ts
index ab35975069c..f621e6b0996 100644
--- a/web/vtadmin/src/proto/vtadmin.d.ts
+++ b/web/vtadmin/src/proto/vtadmin.d.ts
@@ -23419,6 +23419,200 @@ export namespace tabletmanagerdata {
public static getTypeUrl(typeUrlPrefix?: string): string;
}
+ /** Properties of a ConcludeTransactionRequest. */
+ interface IConcludeTransactionRequest {
+
+ /** ConcludeTransactionRequest dtid */
+ dtid?: (string|null);
+
+ /** ConcludeTransactionRequest mm */
+ mm?: (boolean|null);
+ }
+
+ /** Represents a ConcludeTransactionRequest. */
+ class ConcludeTransactionRequest implements IConcludeTransactionRequest {
+
+ /**
+ * Constructs a new ConcludeTransactionRequest.
+ * @param [properties] Properties to set
+ */
+ constructor(properties?: tabletmanagerdata.IConcludeTransactionRequest);
+
+ /** ConcludeTransactionRequest dtid. */
+ public dtid: string;
+
+ /** ConcludeTransactionRequest mm. */
+ public mm: boolean;
+
+ /**
+ * Creates a new ConcludeTransactionRequest instance using the specified properties.
+ * @param [properties] Properties to set
+ * @returns ConcludeTransactionRequest instance
+ */
+ public static create(properties?: tabletmanagerdata.IConcludeTransactionRequest): tabletmanagerdata.ConcludeTransactionRequest;
+
+ /**
+ * Encodes the specified ConcludeTransactionRequest message. Does not implicitly {@link tabletmanagerdata.ConcludeTransactionRequest.verify|verify} messages.
+ * @param message ConcludeTransactionRequest message or plain object to encode
+ * @param [writer] Writer to encode to
+ * @returns Writer
+ */
+ public static encode(message: tabletmanagerdata.IConcludeTransactionRequest, writer?: $protobuf.Writer): $protobuf.Writer;
+
+ /**
+ * Encodes the specified ConcludeTransactionRequest message, length delimited. Does not implicitly {@link tabletmanagerdata.ConcludeTransactionRequest.verify|verify} messages.
+ * @param message ConcludeTransactionRequest message or plain object to encode
+ * @param [writer] Writer to encode to
+ * @returns Writer
+ */
+ public static encodeDelimited(message: tabletmanagerdata.IConcludeTransactionRequest, writer?: $protobuf.Writer): $protobuf.Writer;
+
+ /**
+ * Decodes a ConcludeTransactionRequest message from the specified reader or buffer.
+ * @param reader Reader or buffer to decode from
+ * @param [length] Message length if known beforehand
+ * @returns ConcludeTransactionRequest
+ * @throws {Error} If the payload is not a reader or valid buffer
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
+ */
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): tabletmanagerdata.ConcludeTransactionRequest;
+
+ /**
+ * Decodes a ConcludeTransactionRequest message from the specified reader or buffer, length delimited.
+ * @param reader Reader or buffer to decode from
+ * @returns ConcludeTransactionRequest
+ * @throws {Error} If the payload is not a reader or valid buffer
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
+ */
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): tabletmanagerdata.ConcludeTransactionRequest;
+
+ /**
+ * Verifies a ConcludeTransactionRequest message.
+ * @param message Plain object to verify
+ * @returns `null` if valid, otherwise the reason why it is not
+ */
+ public static verify(message: { [k: string]: any }): (string|null);
+
+ /**
+ * Creates a ConcludeTransactionRequest message from a plain object. Also converts values to their respective internal types.
+ * @param object Plain object
+ * @returns ConcludeTransactionRequest
+ */
+ public static fromObject(object: { [k: string]: any }): tabletmanagerdata.ConcludeTransactionRequest;
+
+ /**
+ * Creates a plain object from a ConcludeTransactionRequest message. Also converts values to other types if specified.
+ * @param message ConcludeTransactionRequest
+ * @param [options] Conversion options
+ * @returns Plain object
+ */
+ public static toObject(message: tabletmanagerdata.ConcludeTransactionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
+
+ /**
+ * Converts this ConcludeTransactionRequest to JSON.
+ * @returns JSON object
+ */
+ public toJSON(): { [k: string]: any };
+
+ /**
+ * Gets the default type url for ConcludeTransactionRequest
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
+ * @returns The default type url
+ */
+ public static getTypeUrl(typeUrlPrefix?: string): string;
+ }
+
+ /** Properties of a ConcludeTransactionResponse. */
+ interface IConcludeTransactionResponse {
+ }
+
+ /** Represents a ConcludeTransactionResponse. */
+ class ConcludeTransactionResponse implements IConcludeTransactionResponse {
+
+ /**
+ * Constructs a new ConcludeTransactionResponse.
+ * @param [properties] Properties to set
+ */
+ constructor(properties?: tabletmanagerdata.IConcludeTransactionResponse);
+
+ /**
+ * Creates a new ConcludeTransactionResponse instance using the specified properties.
+ * @param [properties] Properties to set
+ * @returns ConcludeTransactionResponse instance
+ */
+ public static create(properties?: tabletmanagerdata.IConcludeTransactionResponse): tabletmanagerdata.ConcludeTransactionResponse;
+
+ /**
+ * Encodes the specified ConcludeTransactionResponse message. Does not implicitly {@link tabletmanagerdata.ConcludeTransactionResponse.verify|verify} messages.
+ * @param message ConcludeTransactionResponse message or plain object to encode
+ * @param [writer] Writer to encode to
+ * @returns Writer
+ */
+ public static encode(message: tabletmanagerdata.IConcludeTransactionResponse, writer?: $protobuf.Writer): $protobuf.Writer;
+
+ /**
+ * Encodes the specified ConcludeTransactionResponse message, length delimited. Does not implicitly {@link tabletmanagerdata.ConcludeTransactionResponse.verify|verify} messages.
+ * @param message ConcludeTransactionResponse message or plain object to encode
+ * @param [writer] Writer to encode to
+ * @returns Writer
+ */
+ public static encodeDelimited(message: tabletmanagerdata.IConcludeTransactionResponse, writer?: $protobuf.Writer): $protobuf.Writer;
+
+ /**
+ * Decodes a ConcludeTransactionResponse message from the specified reader or buffer.
+ * @param reader Reader or buffer to decode from
+ * @param [length] Message length if known beforehand
+ * @returns ConcludeTransactionResponse
+ * @throws {Error} If the payload is not a reader or valid buffer
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
+ */
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): tabletmanagerdata.ConcludeTransactionResponse;
+
+ /**
+ * Decodes a ConcludeTransactionResponse message from the specified reader or buffer, length delimited.
+ * @param reader Reader or buffer to decode from
+ * @returns ConcludeTransactionResponse
+ * @throws {Error} If the payload is not a reader or valid buffer
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
+ */
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): tabletmanagerdata.ConcludeTransactionResponse;
+
+ /**
+ * Verifies a ConcludeTransactionResponse message.
+ * @param message Plain object to verify
+ * @returns `null` if valid, otherwise the reason why it is not
+ */
+ public static verify(message: { [k: string]: any }): (string|null);
+
+ /**
+ * Creates a ConcludeTransactionResponse message from a plain object. Also converts values to their respective internal types.
+ * @param object Plain object
+ * @returns ConcludeTransactionResponse
+ */
+ public static fromObject(object: { [k: string]: any }): tabletmanagerdata.ConcludeTransactionResponse;
+
+ /**
+ * Creates a plain object from a ConcludeTransactionResponse message. Also converts values to other types if specified.
+ * @param message ConcludeTransactionResponse
+ * @param [options] Conversion options
+ * @returns Plain object
+ */
+ public static toObject(message: tabletmanagerdata.ConcludeTransactionResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
+
+ /**
+ * Converts this ConcludeTransactionResponse to JSON.
+ * @returns JSON object
+ */
+ public toJSON(): { [k: string]: any };
+
+ /**
+ * Gets the default type url for ConcludeTransactionResponse
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
+ * @returns The default type url
+ */
+ public static getTypeUrl(typeUrlPrefix?: string): string;
+ }
+
/** Properties of a ReplicationStatusRequest. */
interface IReplicationStatusRequest {
}
@@ -29437,6 +29631,9 @@ export namespace tabletmanagerdata {
/** ReadVReplicationWorkflowResponse options */
options?: (string|null);
+
+ /** ReadVReplicationWorkflowResponse config_overrides */
+ config_overrides?: ({ [k: string]: string }|null);
}
/** Represents a ReadVReplicationWorkflowResponse. */
@@ -29481,6 +29678,9 @@ export namespace tabletmanagerdata {
/** ReadVReplicationWorkflowResponse options. */
public options: string;
+ /** ReadVReplicationWorkflowResponse config_overrides. */
+ public config_overrides: { [k: string]: string };
+
/**
* Creates a new ReadVReplicationWorkflowResponse instance using the specified properties.
* @param [properties] Properties to set
@@ -30486,6 +30686,9 @@ export namespace tabletmanagerdata {
/** UpdateVReplicationWorkflowRequest state */
state?: (binlogdata.VReplicationWorkflowState|null);
+
+ /** UpdateVReplicationWorkflowRequest config_overrides */
+ config_overrides?: ({ [k: string]: string }|null);
}
/** Represents an UpdateVReplicationWorkflowRequest. */
@@ -30507,13 +30710,25 @@ export namespace tabletmanagerdata {
public tablet_types: topodata.TabletType[];
/** UpdateVReplicationWorkflowRequest tablet_selection_preference. */
- public tablet_selection_preference: tabletmanagerdata.TabletSelectionPreference;
+ public tablet_selection_preference?: (tabletmanagerdata.TabletSelectionPreference|null);
/** UpdateVReplicationWorkflowRequest on_ddl. */
- public on_ddl: binlogdata.OnDDLAction;
+ public on_ddl?: (binlogdata.OnDDLAction|null);
/** UpdateVReplicationWorkflowRequest state. */
- public state: binlogdata.VReplicationWorkflowState;
+ public state?: (binlogdata.VReplicationWorkflowState|null);
+
+ /** UpdateVReplicationWorkflowRequest config_overrides. */
+ public config_overrides: { [k: string]: string };
+
+ /** UpdateVReplicationWorkflowRequest _tablet_selection_preference. */
+ public _tablet_selection_preference?: "tablet_selection_preference";
+
+ /** UpdateVReplicationWorkflowRequest _on_ddl. */
+ public _on_ddl?: "on_ddl";
+
+ /** UpdateVReplicationWorkflowRequest _state. */
+ public _state?: "state";
/**
* Creates a new UpdateVReplicationWorkflowRequest instance using the specified properties.
@@ -30731,13 +30946,22 @@ export namespace tabletmanagerdata {
public exclude_workflows: string[];
/** UpdateVReplicationWorkflowsRequest state. */
- public state: binlogdata.VReplicationWorkflowState;
+ public state?: (binlogdata.VReplicationWorkflowState|null);
/** UpdateVReplicationWorkflowsRequest message. */
- public message: string;
+ public message?: (string|null);
/** UpdateVReplicationWorkflowsRequest stop_position. */
- public stop_position: string;
+ public stop_position?: (string|null);
+
+ /** UpdateVReplicationWorkflowsRequest _state. */
+ public _state?: "state";
+
+ /** UpdateVReplicationWorkflowsRequest _message. */
+ public _message?: "message";
+
+ /** UpdateVReplicationWorkflowsRequest _stop_position. */
+ public _stop_position?: "stop_position";
/**
* Creates a new UpdateVReplicationWorkflowsRequest instance using the specified properties.
@@ -34808,6 +35032,9 @@ export namespace binlogdata {
/** VStreamOptions internal_tables */
internal_tables?: (string[]|null);
+
+ /** VStreamOptions config_overrides */
+ config_overrides?: ({ [k: string]: string }|null);
}
/** Represents a VStreamOptions. */
@@ -34822,6 +35049,9 @@ export namespace binlogdata {
/** VStreamOptions internal_tables. */
public internal_tables: string[];
+ /** VStreamOptions config_overrides. */
+ public config_overrides: { [k: string]: string };
+
/**
* Creates a new VStreamOptions instance using the specified properties.
* @param [properties] Properties to set
@@ -35147,6 +35377,9 @@ export namespace binlogdata {
/** VStreamRowsRequest lastpk */
lastpk?: (query.IQueryResult|null);
+
+ /** VStreamRowsRequest options */
+ options?: (binlogdata.IVStreamOptions|null);
}
/** Represents a VStreamRowsRequest. */
@@ -35173,6 +35406,9 @@ export namespace binlogdata {
/** VStreamRowsRequest lastpk. */
public lastpk?: (query.IQueryResult|null);
+ /** VStreamRowsRequest options. */
+ public options?: (binlogdata.IVStreamOptions|null);
+
/**
* Creates a new VStreamRowsRequest instance using the specified properties.
* @param [properties] Properties to set
@@ -35401,6 +35637,9 @@ export namespace binlogdata {
/** VStreamTablesRequest target */
target?: (query.ITarget|null);
+
+ /** VStreamTablesRequest options */
+ options?: (binlogdata.IVStreamOptions|null);
}
/** Represents a VStreamTablesRequest. */
@@ -35421,6 +35660,9 @@ export namespace binlogdata {
/** VStreamTablesRequest target. */
public target?: (query.ITarget|null);
+ /** VStreamTablesRequest options. */
+ public options?: (binlogdata.IVStreamOptions|null);
+
/**
* Creates a new VStreamTablesRequest instance using the specified properties.
* @param [properties] Properties to set
@@ -47903,6 +48145,9 @@ export namespace vtctldata {
/** WorkflowOptions shards */
shards?: (string[]|null);
+
+ /** WorkflowOptions config */
+ config?: ({ [k: string]: string }|null);
}
/** Represents a WorkflowOptions. */
@@ -47923,6 +48168,9 @@ export namespace vtctldata {
/** WorkflowOptions shards. */
public shards: string[];
+ /** WorkflowOptions config. */
+ public config: { [k: string]: string };
+
/**
* Creates a new WorkflowOptions instance using the specified properties.
* @param [properties] Properties to set
@@ -60292,6 +60540,200 @@ export namespace vtctldata {
public static getTypeUrl(typeUrlPrefix?: string): string;
}
+ /** Properties of a ConcludeTransactionRequest. */
+ interface IConcludeTransactionRequest {
+
+ /** ConcludeTransactionRequest dtid */
+ dtid?: (string|null);
+
+ /** ConcludeTransactionRequest participants */
+ participants?: (query.ITarget[]|null);
+ }
+
+ /** Represents a ConcludeTransactionRequest. */
+ class ConcludeTransactionRequest implements IConcludeTransactionRequest {
+
+ /**
+ * Constructs a new ConcludeTransactionRequest.
+ * @param [properties] Properties to set
+ */
+ constructor(properties?: vtctldata.IConcludeTransactionRequest);
+
+ /** ConcludeTransactionRequest dtid. */
+ public dtid: string;
+
+ /** ConcludeTransactionRequest participants. */
+ public participants: query.ITarget[];
+
+ /**
+ * Creates a new ConcludeTransactionRequest instance using the specified properties.
+ * @param [properties] Properties to set
+ * @returns ConcludeTransactionRequest instance
+ */
+ public static create(properties?: vtctldata.IConcludeTransactionRequest): vtctldata.ConcludeTransactionRequest;
+
+ /**
+ * Encodes the specified ConcludeTransactionRequest message. Does not implicitly {@link vtctldata.ConcludeTransactionRequest.verify|verify} messages.
+ * @param message ConcludeTransactionRequest message or plain object to encode
+ * @param [writer] Writer to encode to
+ * @returns Writer
+ */
+ public static encode(message: vtctldata.IConcludeTransactionRequest, writer?: $protobuf.Writer): $protobuf.Writer;
+
+ /**
+ * Encodes the specified ConcludeTransactionRequest message, length delimited. Does not implicitly {@link vtctldata.ConcludeTransactionRequest.verify|verify} messages.
+ * @param message ConcludeTransactionRequest message or plain object to encode
+ * @param [writer] Writer to encode to
+ * @returns Writer
+ */
+ public static encodeDelimited(message: vtctldata.IConcludeTransactionRequest, writer?: $protobuf.Writer): $protobuf.Writer;
+
+ /**
+ * Decodes a ConcludeTransactionRequest message from the specified reader or buffer.
+ * @param reader Reader or buffer to decode from
+ * @param [length] Message length if known beforehand
+ * @returns ConcludeTransactionRequest
+ * @throws {Error} If the payload is not a reader or valid buffer
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
+ */
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): vtctldata.ConcludeTransactionRequest;
+
+ /**
+ * Decodes a ConcludeTransactionRequest message from the specified reader or buffer, length delimited.
+ * @param reader Reader or buffer to decode from
+ * @returns ConcludeTransactionRequest
+ * @throws {Error} If the payload is not a reader or valid buffer
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
+ */
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): vtctldata.ConcludeTransactionRequest;
+
+ /**
+ * Verifies a ConcludeTransactionRequest message.
+ * @param message Plain object to verify
+ * @returns `null` if valid, otherwise the reason why it is not
+ */
+ public static verify(message: { [k: string]: any }): (string|null);
+
+ /**
+ * Creates a ConcludeTransactionRequest message from a plain object. Also converts values to their respective internal types.
+ * @param object Plain object
+ * @returns ConcludeTransactionRequest
+ */
+ public static fromObject(object: { [k: string]: any }): vtctldata.ConcludeTransactionRequest;
+
+ /**
+ * Creates a plain object from a ConcludeTransactionRequest message. Also converts values to other types if specified.
+ * @param message ConcludeTransactionRequest
+ * @param [options] Conversion options
+ * @returns Plain object
+ */
+ public static toObject(message: vtctldata.ConcludeTransactionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
+
+ /**
+ * Converts this ConcludeTransactionRequest to JSON.
+ * @returns JSON object
+ */
+ public toJSON(): { [k: string]: any };
+
+ /**
+ * Gets the default type url for ConcludeTransactionRequest
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
+ * @returns The default type url
+ */
+ public static getTypeUrl(typeUrlPrefix?: string): string;
+ }
+
+ /** Properties of a ConcludeTransactionResponse. */
+ interface IConcludeTransactionResponse {
+ }
+
+ /** Represents a ConcludeTransactionResponse. */
+ class ConcludeTransactionResponse implements IConcludeTransactionResponse {
+
+ /**
+ * Constructs a new ConcludeTransactionResponse.
+ * @param [properties] Properties to set
+ */
+ constructor(properties?: vtctldata.IConcludeTransactionResponse);
+
+ /**
+ * Creates a new ConcludeTransactionResponse instance using the specified properties.
+ * @param [properties] Properties to set
+ * @returns ConcludeTransactionResponse instance
+ */
+ public static create(properties?: vtctldata.IConcludeTransactionResponse): vtctldata.ConcludeTransactionResponse;
+
+ /**
+ * Encodes the specified ConcludeTransactionResponse message. Does not implicitly {@link vtctldata.ConcludeTransactionResponse.verify|verify} messages.
+ * @param message ConcludeTransactionResponse message or plain object to encode
+ * @param [writer] Writer to encode to
+ * @returns Writer
+ */
+ public static encode(message: vtctldata.IConcludeTransactionResponse, writer?: $protobuf.Writer): $protobuf.Writer;
+
+ /**
+ * Encodes the specified ConcludeTransactionResponse message, length delimited. Does not implicitly {@link vtctldata.ConcludeTransactionResponse.verify|verify} messages.
+ * @param message ConcludeTransactionResponse message or plain object to encode
+ * @param [writer] Writer to encode to
+ * @returns Writer
+ */
+ public static encodeDelimited(message: vtctldata.IConcludeTransactionResponse, writer?: $protobuf.Writer): $protobuf.Writer;
+
+ /**
+ * Decodes a ConcludeTransactionResponse message from the specified reader or buffer.
+ * @param reader Reader or buffer to decode from
+ * @param [length] Message length if known beforehand
+ * @returns ConcludeTransactionResponse
+ * @throws {Error} If the payload is not a reader or valid buffer
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
+ */
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): vtctldata.ConcludeTransactionResponse;
+
+ /**
+ * Decodes a ConcludeTransactionResponse message from the specified reader or buffer, length delimited.
+ * @param reader Reader or buffer to decode from
+ * @returns ConcludeTransactionResponse
+ * @throws {Error} If the payload is not a reader or valid buffer
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
+ */
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): vtctldata.ConcludeTransactionResponse;
+
+ /**
+ * Verifies a ConcludeTransactionResponse message.
+ * @param message Plain object to verify
+ * @returns `null` if valid, otherwise the reason why it is not
+ */
+ public static verify(message: { [k: string]: any }): (string|null);
+
+ /**
+ * Creates a ConcludeTransactionResponse message from a plain object. Also converts values to their respective internal types.
+ * @param object Plain object
+ * @returns ConcludeTransactionResponse
+ */
+ public static fromObject(object: { [k: string]: any }): vtctldata.ConcludeTransactionResponse;
+
+ /**
+ * Creates a plain object from a ConcludeTransactionResponse message. Also converts values to other types if specified.
+ * @param message ConcludeTransactionResponse
+ * @param [options] Conversion options
+ * @returns Plain object
+ */
+ public static toObject(message: vtctldata.ConcludeTransactionResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
+
+ /**
+ * Converts this ConcludeTransactionResponse to JSON.
+ * @returns JSON object
+ */
+ public toJSON(): { [k: string]: any };
+
+ /**
+ * Gets the default type url for ConcludeTransactionResponse
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
+ * @returns The default type url
+ */
+ public static getTypeUrl(typeUrlPrefix?: string): string;
+ }
+
/** Properties of a GetVSchemaRequest. */
interface IGetVSchemaRequest {
@@ -66517,6 +66959,9 @@ export namespace vtctldata {
/** ReshardCreateRequest auto_start */
auto_start?: (boolean|null);
+
+ /** ReshardCreateRequest workflow_options */
+ workflow_options?: (vtctldata.IWorkflowOptions|null);
}
/** Represents a ReshardCreateRequest. */
@@ -66564,6 +67009,9 @@ export namespace vtctldata {
/** ReshardCreateRequest auto_start. */
public auto_start: boolean;
+ /** ReshardCreateRequest workflow_options. */
+ public workflow_options?: (vtctldata.IWorkflowOptions|null);
+
/**
* Creates a new ReshardCreateRequest instance using the specified properties.
* @param [properties] Properties to set
@@ -74270,6 +74718,9 @@ export namespace vtctldata {
/** WorkflowSwitchTrafficRequest shards */
shards?: (string[]|null);
+
+ /** WorkflowSwitchTrafficRequest force */
+ force?: (boolean|null);
}
/** Represents a WorkflowSwitchTrafficRequest. */
@@ -74314,6 +74765,9 @@ export namespace vtctldata {
/** WorkflowSwitchTrafficRequest shards. */
public shards: string[];
+ /** WorkflowSwitchTrafficRequest force. */
+ public force: boolean;
+
/**
* Creates a new WorkflowSwitchTrafficRequest instance using the specified properties.
* @param [properties] Properties to set
diff --git a/web/vtadmin/src/proto/vtadmin.js b/web/vtadmin/src/proto/vtadmin.js
index dcbcac92955..1d789b297c7 100644
--- a/web/vtadmin/src/proto/vtadmin.js
+++ b/web/vtadmin/src/proto/vtadmin.js
@@ -54255,6 +54255,408 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
return GetUnresolvedTransactionsResponse;
})();
+ tabletmanagerdata.ConcludeTransactionRequest = (function() {
+
+ /**
+ * Properties of a ConcludeTransactionRequest.
+ * @memberof tabletmanagerdata
+ * @interface IConcludeTransactionRequest
+ * @property {string|null} [dtid] ConcludeTransactionRequest dtid
+ * @property {boolean|null} [mm] ConcludeTransactionRequest mm
+ */
+
+ /**
+ * Constructs a new ConcludeTransactionRequest.
+ * @memberof tabletmanagerdata
+ * @classdesc Represents a ConcludeTransactionRequest.
+ * @implements IConcludeTransactionRequest
+ * @constructor
+ * @param {tabletmanagerdata.IConcludeTransactionRequest=} [properties] Properties to set
+ */
+ function ConcludeTransactionRequest(properties) {
+ if (properties)
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
+ if (properties[keys[i]] != null)
+ this[keys[i]] = properties[keys[i]];
+ }
+
+ /**
+ * ConcludeTransactionRequest dtid.
+ * @member {string} dtid
+ * @memberof tabletmanagerdata.ConcludeTransactionRequest
+ * @instance
+ */
+ ConcludeTransactionRequest.prototype.dtid = "";
+
+ /**
+ * ConcludeTransactionRequest mm.
+ * @member {boolean} mm
+ * @memberof tabletmanagerdata.ConcludeTransactionRequest
+ * @instance
+ */
+ ConcludeTransactionRequest.prototype.mm = false;
+
+ /**
+ * Creates a new ConcludeTransactionRequest instance using the specified properties.
+ * @function create
+ * @memberof tabletmanagerdata.ConcludeTransactionRequest
+ * @static
+ * @param {tabletmanagerdata.IConcludeTransactionRequest=} [properties] Properties to set
+ * @returns {tabletmanagerdata.ConcludeTransactionRequest} ConcludeTransactionRequest instance
+ */
+ ConcludeTransactionRequest.create = function create(properties) {
+ return new ConcludeTransactionRequest(properties);
+ };
+
+ /**
+ * Encodes the specified ConcludeTransactionRequest message. Does not implicitly {@link tabletmanagerdata.ConcludeTransactionRequest.verify|verify} messages.
+ * @function encode
+ * @memberof tabletmanagerdata.ConcludeTransactionRequest
+ * @static
+ * @param {tabletmanagerdata.IConcludeTransactionRequest} message ConcludeTransactionRequest message or plain object to encode
+ * @param {$protobuf.Writer} [writer] Writer to encode to
+ * @returns {$protobuf.Writer} Writer
+ */
+ ConcludeTransactionRequest.encode = function encode(message, writer) {
+ if (!writer)
+ writer = $Writer.create();
+ if (message.dtid != null && Object.hasOwnProperty.call(message, "dtid"))
+ writer.uint32(/* id 1, wireType 2 =*/10).string(message.dtid);
+ if (message.mm != null && Object.hasOwnProperty.call(message, "mm"))
+ writer.uint32(/* id 2, wireType 0 =*/16).bool(message.mm);
+ return writer;
+ };
+
+ /**
+ * Encodes the specified ConcludeTransactionRequest message, length delimited. Does not implicitly {@link tabletmanagerdata.ConcludeTransactionRequest.verify|verify} messages.
+ * @function encodeDelimited
+ * @memberof tabletmanagerdata.ConcludeTransactionRequest
+ * @static
+ * @param {tabletmanagerdata.IConcludeTransactionRequest} message ConcludeTransactionRequest message or plain object to encode
+ * @param {$protobuf.Writer} [writer] Writer to encode to
+ * @returns {$protobuf.Writer} Writer
+ */
+ ConcludeTransactionRequest.encodeDelimited = function encodeDelimited(message, writer) {
+ return this.encode(message, writer).ldelim();
+ };
+
+ /**
+ * Decodes a ConcludeTransactionRequest message from the specified reader or buffer.
+ * @function decode
+ * @memberof tabletmanagerdata.ConcludeTransactionRequest
+ * @static
+ * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
+ * @param {number} [length] Message length if known beforehand
+ * @returns {tabletmanagerdata.ConcludeTransactionRequest} ConcludeTransactionRequest
+ * @throws {Error} If the payload is not a reader or valid buffer
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
+ */
+ ConcludeTransactionRequest.decode = function decode(reader, length) {
+ if (!(reader instanceof $Reader))
+ reader = $Reader.create(reader);
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.tabletmanagerdata.ConcludeTransactionRequest();
+ while (reader.pos < end) {
+ let tag = reader.uint32();
+ switch (tag >>> 3) {
+ case 1: {
+ message.dtid = reader.string();
+ break;
+ }
+ case 2: {
+ message.mm = reader.bool();
+ break;
+ }
+ default:
+ reader.skipType(tag & 7);
+ break;
+ }
+ }
+ return message;
+ };
+
+ /**
+ * Decodes a ConcludeTransactionRequest message from the specified reader or buffer, length delimited.
+ * @function decodeDelimited
+ * @memberof tabletmanagerdata.ConcludeTransactionRequest
+ * @static
+ * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
+ * @returns {tabletmanagerdata.ConcludeTransactionRequest} ConcludeTransactionRequest
+ * @throws {Error} If the payload is not a reader or valid buffer
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
+ */
+ ConcludeTransactionRequest.decodeDelimited = function decodeDelimited(reader) {
+ if (!(reader instanceof $Reader))
+ reader = new $Reader(reader);
+ return this.decode(reader, reader.uint32());
+ };
+
+ /**
+ * Verifies a ConcludeTransactionRequest message.
+ * @function verify
+ * @memberof tabletmanagerdata.ConcludeTransactionRequest
+ * @static
+ * @param {Object.} message Plain object to verify
+ * @returns {string|null} `null` if valid, otherwise the reason why it is not
+ */
+ ConcludeTransactionRequest.verify = function verify(message) {
+ if (typeof message !== "object" || message === null)
+ return "object expected";
+ if (message.dtid != null && message.hasOwnProperty("dtid"))
+ if (!$util.isString(message.dtid))
+ return "dtid: string expected";
+ if (message.mm != null && message.hasOwnProperty("mm"))
+ if (typeof message.mm !== "boolean")
+ return "mm: boolean expected";
+ return null;
+ };
+
+ /**
+ * Creates a ConcludeTransactionRequest message from a plain object. Also converts values to their respective internal types.
+ * @function fromObject
+ * @memberof tabletmanagerdata.ConcludeTransactionRequest
+ * @static
+ * @param {Object.} object Plain object
+ * @returns {tabletmanagerdata.ConcludeTransactionRequest} ConcludeTransactionRequest
+ */
+ ConcludeTransactionRequest.fromObject = function fromObject(object) {
+ if (object instanceof $root.tabletmanagerdata.ConcludeTransactionRequest)
+ return object;
+ let message = new $root.tabletmanagerdata.ConcludeTransactionRequest();
+ if (object.dtid != null)
+ message.dtid = String(object.dtid);
+ if (object.mm != null)
+ message.mm = Boolean(object.mm);
+ return message;
+ };
+
+ /**
+ * Creates a plain object from a ConcludeTransactionRequest message. Also converts values to other types if specified.
+ * @function toObject
+ * @memberof tabletmanagerdata.ConcludeTransactionRequest
+ * @static
+ * @param {tabletmanagerdata.ConcludeTransactionRequest} message ConcludeTransactionRequest
+ * @param {$protobuf.IConversionOptions} [options] Conversion options
+ * @returns {Object.} Plain object
+ */
+ ConcludeTransactionRequest.toObject = function toObject(message, options) {
+ if (!options)
+ options = {};
+ let object = {};
+ if (options.defaults) {
+ object.dtid = "";
+ object.mm = false;
+ }
+ if (message.dtid != null && message.hasOwnProperty("dtid"))
+ object.dtid = message.dtid;
+ if (message.mm != null && message.hasOwnProperty("mm"))
+ object.mm = message.mm;
+ return object;
+ };
+
+ /**
+ * Converts this ConcludeTransactionRequest to JSON.
+ * @function toJSON
+ * @memberof tabletmanagerdata.ConcludeTransactionRequest
+ * @instance
+ * @returns {Object.} JSON object
+ */
+ ConcludeTransactionRequest.prototype.toJSON = function toJSON() {
+ return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
+ };
+
+ /**
+ * Gets the default type url for ConcludeTransactionRequest
+ * @function getTypeUrl
+ * @memberof tabletmanagerdata.ConcludeTransactionRequest
+ * @static
+ * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
+ * @returns {string} The default type url
+ */
+ ConcludeTransactionRequest.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
+ if (typeUrlPrefix === undefined) {
+ typeUrlPrefix = "type.googleapis.com";
+ }
+ return typeUrlPrefix + "/tabletmanagerdata.ConcludeTransactionRequest";
+ };
+
+ return ConcludeTransactionRequest;
+ })();
+
+ tabletmanagerdata.ConcludeTransactionResponse = (function() {
+
+ /**
+ * Properties of a ConcludeTransactionResponse.
+ * @memberof tabletmanagerdata
+ * @interface IConcludeTransactionResponse
+ */
+
+ /**
+ * Constructs a new ConcludeTransactionResponse.
+ * @memberof tabletmanagerdata
+ * @classdesc Represents a ConcludeTransactionResponse.
+ * @implements IConcludeTransactionResponse
+ * @constructor
+ * @param {tabletmanagerdata.IConcludeTransactionResponse=} [properties] Properties to set
+ */
+ function ConcludeTransactionResponse(properties) {
+ if (properties)
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
+ if (properties[keys[i]] != null)
+ this[keys[i]] = properties[keys[i]];
+ }
+
+ /**
+ * Creates a new ConcludeTransactionResponse instance using the specified properties.
+ * @function create
+ * @memberof tabletmanagerdata.ConcludeTransactionResponse
+ * @static
+ * @param {tabletmanagerdata.IConcludeTransactionResponse=} [properties] Properties to set
+ * @returns {tabletmanagerdata.ConcludeTransactionResponse} ConcludeTransactionResponse instance
+ */
+ ConcludeTransactionResponse.create = function create(properties) {
+ return new ConcludeTransactionResponse(properties);
+ };
+
+ /**
+ * Encodes the specified ConcludeTransactionResponse message. Does not implicitly {@link tabletmanagerdata.ConcludeTransactionResponse.verify|verify} messages.
+ * @function encode
+ * @memberof tabletmanagerdata.ConcludeTransactionResponse
+ * @static
+ * @param {tabletmanagerdata.IConcludeTransactionResponse} message ConcludeTransactionResponse message or plain object to encode
+ * @param {$protobuf.Writer} [writer] Writer to encode to
+ * @returns {$protobuf.Writer} Writer
+ */
+ ConcludeTransactionResponse.encode = function encode(message, writer) {
+ if (!writer)
+ writer = $Writer.create();
+ return writer;
+ };
+
+ /**
+ * Encodes the specified ConcludeTransactionResponse message, length delimited. Does not implicitly {@link tabletmanagerdata.ConcludeTransactionResponse.verify|verify} messages.
+ * @function encodeDelimited
+ * @memberof tabletmanagerdata.ConcludeTransactionResponse
+ * @static
+ * @param {tabletmanagerdata.IConcludeTransactionResponse} message ConcludeTransactionResponse message or plain object to encode
+ * @param {$protobuf.Writer} [writer] Writer to encode to
+ * @returns {$protobuf.Writer} Writer
+ */
+ ConcludeTransactionResponse.encodeDelimited = function encodeDelimited(message, writer) {
+ return this.encode(message, writer).ldelim();
+ };
+
+ /**
+ * Decodes a ConcludeTransactionResponse message from the specified reader or buffer.
+ * @function decode
+ * @memberof tabletmanagerdata.ConcludeTransactionResponse
+ * @static
+ * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
+ * @param {number} [length] Message length if known beforehand
+ * @returns {tabletmanagerdata.ConcludeTransactionResponse} ConcludeTransactionResponse
+ * @throws {Error} If the payload is not a reader or valid buffer
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
+ */
+ ConcludeTransactionResponse.decode = function decode(reader, length) {
+ if (!(reader instanceof $Reader))
+ reader = $Reader.create(reader);
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.tabletmanagerdata.ConcludeTransactionResponse();
+ while (reader.pos < end) {
+ let tag = reader.uint32();
+ switch (tag >>> 3) {
+ default:
+ reader.skipType(tag & 7);
+ break;
+ }
+ }
+ return message;
+ };
+
+ /**
+ * Decodes a ConcludeTransactionResponse message from the specified reader or buffer, length delimited.
+ * @function decodeDelimited
+ * @memberof tabletmanagerdata.ConcludeTransactionResponse
+ * @static
+ * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
+ * @returns {tabletmanagerdata.ConcludeTransactionResponse} ConcludeTransactionResponse
+ * @throws {Error} If the payload is not a reader or valid buffer
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
+ */
+ ConcludeTransactionResponse.decodeDelimited = function decodeDelimited(reader) {
+ if (!(reader instanceof $Reader))
+ reader = new $Reader(reader);
+ return this.decode(reader, reader.uint32());
+ };
+
+ /**
+ * Verifies a ConcludeTransactionResponse message.
+ * @function verify
+ * @memberof tabletmanagerdata.ConcludeTransactionResponse
+ * @static
+ * @param {Object.} message Plain object to verify
+ * @returns {string|null} `null` if valid, otherwise the reason why it is not
+ */
+ ConcludeTransactionResponse.verify = function verify(message) {
+ if (typeof message !== "object" || message === null)
+ return "object expected";
+ return null;
+ };
+
+ /**
+ * Creates a ConcludeTransactionResponse message from a plain object. Also converts values to their respective internal types.
+ * @function fromObject
+ * @memberof tabletmanagerdata.ConcludeTransactionResponse
+ * @static
+ * @param {Object.} object Plain object
+ * @returns {tabletmanagerdata.ConcludeTransactionResponse} ConcludeTransactionResponse
+ */
+ ConcludeTransactionResponse.fromObject = function fromObject(object) {
+ if (object instanceof $root.tabletmanagerdata.ConcludeTransactionResponse)
+ return object;
+ return new $root.tabletmanagerdata.ConcludeTransactionResponse();
+ };
+
+ /**
+ * Creates a plain object from a ConcludeTransactionResponse message. Also converts values to other types if specified.
+ * @function toObject
+ * @memberof tabletmanagerdata.ConcludeTransactionResponse
+ * @static
+ * @param {tabletmanagerdata.ConcludeTransactionResponse} message ConcludeTransactionResponse
+ * @param {$protobuf.IConversionOptions} [options] Conversion options
+ * @returns {Object.} Plain object
+ */
+ ConcludeTransactionResponse.toObject = function toObject() {
+ return {};
+ };
+
+ /**
+ * Converts this ConcludeTransactionResponse to JSON.
+ * @function toJSON
+ * @memberof tabletmanagerdata.ConcludeTransactionResponse
+ * @instance
+ * @returns {Object.} JSON object
+ */
+ ConcludeTransactionResponse.prototype.toJSON = function toJSON() {
+ return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
+ };
+
+ /**
+ * Gets the default type url for ConcludeTransactionResponse
+ * @function getTypeUrl
+ * @memberof tabletmanagerdata.ConcludeTransactionResponse
+ * @static
+ * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
+ * @returns {string} The default type url
+ */
+ ConcludeTransactionResponse.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
+ if (typeUrlPrefix === undefined) {
+ typeUrlPrefix = "type.googleapis.com";
+ }
+ return typeUrlPrefix + "/tabletmanagerdata.ConcludeTransactionResponse";
+ };
+
+ return ConcludeTransactionResponse;
+ })();
+
tabletmanagerdata.ReplicationStatusRequest = (function() {
/**
@@ -67411,6 +67813,7 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
* @property {boolean|null} [defer_secondary_keys] ReadVReplicationWorkflowResponse defer_secondary_keys
* @property {Array.|null} [streams] ReadVReplicationWorkflowResponse streams
* @property {string|null} [options] ReadVReplicationWorkflowResponse options
+ * @property {Object.|null} [config_overrides] ReadVReplicationWorkflowResponse config_overrides
*/
/**
@@ -67424,6 +67827,7 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
function ReadVReplicationWorkflowResponse(properties) {
this.tablet_types = [];
this.streams = [];
+ this.config_overrides = {};
if (properties)
for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
@@ -67518,6 +67922,14 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
*/
ReadVReplicationWorkflowResponse.prototype.options = "";
+ /**
+ * ReadVReplicationWorkflowResponse config_overrides.
+ * @member {Object.} config_overrides
+ * @memberof tabletmanagerdata.ReadVReplicationWorkflowResponse
+ * @instance
+ */
+ ReadVReplicationWorkflowResponse.prototype.config_overrides = $util.emptyObject;
+
/**
* Creates a new ReadVReplicationWorkflowResponse instance using the specified properties.
* @function create
@@ -67569,6 +67981,9 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
$root.tabletmanagerdata.ReadVReplicationWorkflowResponse.Stream.encode(message.streams[i], writer.uint32(/* id 11, wireType 2 =*/90).fork()).ldelim();
if (message.options != null && Object.hasOwnProperty.call(message, "options"))
writer.uint32(/* id 12, wireType 2 =*/98).string(message.options);
+ if (message.config_overrides != null && Object.hasOwnProperty.call(message, "config_overrides"))
+ for (let keys = Object.keys(message.config_overrides), i = 0; i < keys.length; ++i)
+ writer.uint32(/* id 13, wireType 2 =*/106).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.config_overrides[keys[i]]).ldelim();
return writer;
};
@@ -67599,7 +68014,7 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
ReadVReplicationWorkflowResponse.decode = function decode(reader, length) {
if (!(reader instanceof $Reader))
reader = $Reader.create(reader);
- let end = length === undefined ? reader.len : reader.pos + length, message = new $root.tabletmanagerdata.ReadVReplicationWorkflowResponse();
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.tabletmanagerdata.ReadVReplicationWorkflowResponse(), key, value;
while (reader.pos < end) {
let tag = reader.uint32();
switch (tag >>> 3) {
@@ -67656,6 +68071,29 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
message.options = reader.string();
break;
}
+ case 13: {
+ if (message.config_overrides === $util.emptyObject)
+ message.config_overrides = {};
+ let end2 = reader.uint32() + reader.pos;
+ key = "";
+ value = "";
+ while (reader.pos < end2) {
+ let tag2 = reader.uint32();
+ switch (tag2 >>> 3) {
+ case 1:
+ key = reader.string();
+ break;
+ case 2:
+ value = reader.string();
+ break;
+ default:
+ reader.skipType(tag2 & 7);
+ break;
+ }
+ }
+ message.config_overrides[key] = value;
+ break;
+ }
default:
reader.skipType(tag & 7);
break;
@@ -67769,6 +68207,14 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
if (message.options != null && message.hasOwnProperty("options"))
if (!$util.isString(message.options))
return "options: string expected";
+ if (message.config_overrides != null && message.hasOwnProperty("config_overrides")) {
+ if (!$util.isObject(message.config_overrides))
+ return "config_overrides: object expected";
+ let key = Object.keys(message.config_overrides);
+ for (let i = 0; i < key.length; ++i)
+ if (!$util.isString(message.config_overrides[key[i]]))
+ return "config_overrides: string{k:string} expected";
+ }
return null;
};
@@ -67935,6 +68381,13 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
}
if (object.options != null)
message.options = String(object.options);
+ if (object.config_overrides) {
+ if (typeof object.config_overrides !== "object")
+ throw TypeError(".tabletmanagerdata.ReadVReplicationWorkflowResponse.config_overrides: object expected");
+ message.config_overrides = {};
+ for (let keys = Object.keys(object.config_overrides), i = 0; i < keys.length; ++i)
+ message.config_overrides[keys[i]] = String(object.config_overrides[keys[i]]);
+ }
return message;
};
@@ -67955,6 +68408,8 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
object.tablet_types = [];
object.streams = [];
}
+ if (options.objects || options.defaults)
+ object.config_overrides = {};
if (options.defaults) {
object.workflow = "";
object.cells = "";
@@ -67994,6 +68449,12 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
}
if (message.options != null && message.hasOwnProperty("options"))
object.options = message.options;
+ let keys2;
+ if (message.config_overrides && (keys2 = Object.keys(message.config_overrides)).length) {
+ object.config_overrides = {};
+ for (let j = 0; j < keys2.length; ++j)
+ object.config_overrides[keys2[j]] = message.config_overrides[keys2[j]];
+ }
return object;
};
@@ -70584,6 +71045,7 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
* @property {tabletmanagerdata.TabletSelectionPreference|null} [tablet_selection_preference] UpdateVReplicationWorkflowRequest tablet_selection_preference
* @property {binlogdata.OnDDLAction|null} [on_ddl] UpdateVReplicationWorkflowRequest on_ddl
* @property {binlogdata.VReplicationWorkflowState|null} [state] UpdateVReplicationWorkflowRequest state
+ * @property {Object.|null} [config_overrides] UpdateVReplicationWorkflowRequest config_overrides
*/
/**
@@ -70597,6 +71059,7 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
function UpdateVReplicationWorkflowRequest(properties) {
this.cells = [];
this.tablet_types = [];
+ this.config_overrides = {};
if (properties)
for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
@@ -70629,27 +71092,71 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
/**
* UpdateVReplicationWorkflowRequest tablet_selection_preference.
- * @member {tabletmanagerdata.TabletSelectionPreference} tablet_selection_preference
+ * @member {tabletmanagerdata.TabletSelectionPreference|null|undefined} tablet_selection_preference
* @memberof tabletmanagerdata.UpdateVReplicationWorkflowRequest
* @instance
*/
- UpdateVReplicationWorkflowRequest.prototype.tablet_selection_preference = 0;
+ UpdateVReplicationWorkflowRequest.prototype.tablet_selection_preference = null;
/**
* UpdateVReplicationWorkflowRequest on_ddl.
- * @member {binlogdata.OnDDLAction} on_ddl
+ * @member {binlogdata.OnDDLAction|null|undefined} on_ddl
* @memberof tabletmanagerdata.UpdateVReplicationWorkflowRequest
* @instance
*/
- UpdateVReplicationWorkflowRequest.prototype.on_ddl = 0;
+ UpdateVReplicationWorkflowRequest.prototype.on_ddl = null;
/**
* UpdateVReplicationWorkflowRequest state.
- * @member {binlogdata.VReplicationWorkflowState} state
+ * @member {binlogdata.VReplicationWorkflowState|null|undefined} state
+ * @memberof tabletmanagerdata.UpdateVReplicationWorkflowRequest
+ * @instance
+ */
+ UpdateVReplicationWorkflowRequest.prototype.state = null;
+
+ /**
+ * UpdateVReplicationWorkflowRequest config_overrides.
+ * @member {Object.} config_overrides
+ * @memberof tabletmanagerdata.UpdateVReplicationWorkflowRequest
+ * @instance
+ */
+ UpdateVReplicationWorkflowRequest.prototype.config_overrides = $util.emptyObject;
+
+ // OneOf field names bound to virtual getters and setters
+ let $oneOfFields;
+
+ /**
+ * UpdateVReplicationWorkflowRequest _tablet_selection_preference.
+ * @member {"tablet_selection_preference"|undefined} _tablet_selection_preference
+ * @memberof tabletmanagerdata.UpdateVReplicationWorkflowRequest
+ * @instance
+ */
+ Object.defineProperty(UpdateVReplicationWorkflowRequest.prototype, "_tablet_selection_preference", {
+ get: $util.oneOfGetter($oneOfFields = ["tablet_selection_preference"]),
+ set: $util.oneOfSetter($oneOfFields)
+ });
+
+ /**
+ * UpdateVReplicationWorkflowRequest _on_ddl.
+ * @member {"on_ddl"|undefined} _on_ddl
+ * @memberof tabletmanagerdata.UpdateVReplicationWorkflowRequest
+ * @instance
+ */
+ Object.defineProperty(UpdateVReplicationWorkflowRequest.prototype, "_on_ddl", {
+ get: $util.oneOfGetter($oneOfFields = ["on_ddl"]),
+ set: $util.oneOfSetter($oneOfFields)
+ });
+
+ /**
+ * UpdateVReplicationWorkflowRequest _state.
+ * @member {"state"|undefined} _state
* @memberof tabletmanagerdata.UpdateVReplicationWorkflowRequest
* @instance
*/
- UpdateVReplicationWorkflowRequest.prototype.state = 0;
+ Object.defineProperty(UpdateVReplicationWorkflowRequest.prototype, "_state", {
+ get: $util.oneOfGetter($oneOfFields = ["state"]),
+ set: $util.oneOfSetter($oneOfFields)
+ });
/**
* Creates a new UpdateVReplicationWorkflowRequest instance using the specified properties.
@@ -70692,6 +71199,9 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
writer.uint32(/* id 5, wireType 0 =*/40).int32(message.on_ddl);
if (message.state != null && Object.hasOwnProperty.call(message, "state"))
writer.uint32(/* id 6, wireType 0 =*/48).int32(message.state);
+ if (message.config_overrides != null && Object.hasOwnProperty.call(message, "config_overrides"))
+ for (let keys = Object.keys(message.config_overrides), i = 0; i < keys.length; ++i)
+ writer.uint32(/* id 8, wireType 2 =*/66).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.config_overrides[keys[i]]).ldelim();
return writer;
};
@@ -70722,7 +71232,7 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
UpdateVReplicationWorkflowRequest.decode = function decode(reader, length) {
if (!(reader instanceof $Reader))
reader = $Reader.create(reader);
- let end = length === undefined ? reader.len : reader.pos + length, message = new $root.tabletmanagerdata.UpdateVReplicationWorkflowRequest();
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.tabletmanagerdata.UpdateVReplicationWorkflowRequest(), key, value;
while (reader.pos < end) {
let tag = reader.uint32();
switch (tag >>> 3) {
@@ -70759,6 +71269,29 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
message.state = reader.int32();
break;
}
+ case 8: {
+ if (message.config_overrides === $util.emptyObject)
+ message.config_overrides = {};
+ let end2 = reader.uint32() + reader.pos;
+ key = "";
+ value = "";
+ while (reader.pos < end2) {
+ let tag2 = reader.uint32();
+ switch (tag2 >>> 3) {
+ case 1:
+ key = reader.string();
+ break;
+ case 2:
+ value = reader.string();
+ break;
+ default:
+ reader.skipType(tag2 & 7);
+ break;
+ }
+ }
+ message.config_overrides[key] = value;
+ break;
+ }
default:
reader.skipType(tag & 7);
break;
@@ -70794,6 +71327,7 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
UpdateVReplicationWorkflowRequest.verify = function verify(message) {
if (typeof message !== "object" || message === null)
return "object expected";
+ let properties = {};
if (message.workflow != null && message.hasOwnProperty("workflow"))
if (!$util.isString(message.workflow))
return "workflow: string expected";
@@ -70825,7 +71359,8 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
break;
}
}
- if (message.tablet_selection_preference != null && message.hasOwnProperty("tablet_selection_preference"))
+ if (message.tablet_selection_preference != null && message.hasOwnProperty("tablet_selection_preference")) {
+ properties._tablet_selection_preference = 1;
switch (message.tablet_selection_preference) {
default:
return "tablet_selection_preference: enum value expected";
@@ -70834,7 +71369,9 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
case 3:
break;
}
- if (message.on_ddl != null && message.hasOwnProperty("on_ddl"))
+ }
+ if (message.on_ddl != null && message.hasOwnProperty("on_ddl")) {
+ properties._on_ddl = 1;
switch (message.on_ddl) {
default:
return "on_ddl: enum value expected";
@@ -70844,7 +71381,9 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
case 3:
break;
}
- if (message.state != null && message.hasOwnProperty("state"))
+ }
+ if (message.state != null && message.hasOwnProperty("state")) {
+ properties._state = 1;
switch (message.state) {
default:
return "state: enum value expected";
@@ -70857,6 +71396,15 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
case 6:
break;
}
+ }
+ if (message.config_overrides != null && message.hasOwnProperty("config_overrides")) {
+ if (!$util.isObject(message.config_overrides))
+ return "config_overrides: object expected";
+ let key = Object.keys(message.config_overrides);
+ for (let i = 0; i < key.length; ++i)
+ if (!$util.isString(message.config_overrides[key[i]]))
+ return "config_overrides: string{k:string} expected";
+ }
return null;
};
@@ -71018,6 +71566,13 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
message.state = 6;
break;
}
+ if (object.config_overrides) {
+ if (typeof object.config_overrides !== "object")
+ throw TypeError(".tabletmanagerdata.UpdateVReplicationWorkflowRequest.config_overrides: object expected");
+ message.config_overrides = {};
+ for (let keys = Object.keys(object.config_overrides), i = 0; i < keys.length; ++i)
+ message.config_overrides[keys[i]] = String(object.config_overrides[keys[i]]);
+ }
return message;
};
@@ -71038,12 +71593,10 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
object.cells = [];
object.tablet_types = [];
}
- if (options.defaults) {
+ if (options.objects || options.defaults)
+ object.config_overrides = {};
+ if (options.defaults)
object.workflow = "";
- object.tablet_selection_preference = options.enums === String ? "ANY" : 0;
- object.on_ddl = options.enums === String ? "IGNORE" : 0;
- object.state = options.enums === String ? "Unknown" : 0;
- }
if (message.workflow != null && message.hasOwnProperty("workflow"))
object.workflow = message.workflow;
if (message.cells && message.cells.length) {
@@ -71056,12 +71609,27 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
for (let j = 0; j < message.tablet_types.length; ++j)
object.tablet_types[j] = options.enums === String ? $root.topodata.TabletType[message.tablet_types[j]] === undefined ? message.tablet_types[j] : $root.topodata.TabletType[message.tablet_types[j]] : message.tablet_types[j];
}
- if (message.tablet_selection_preference != null && message.hasOwnProperty("tablet_selection_preference"))
+ if (message.tablet_selection_preference != null && message.hasOwnProperty("tablet_selection_preference")) {
object.tablet_selection_preference = options.enums === String ? $root.tabletmanagerdata.TabletSelectionPreference[message.tablet_selection_preference] === undefined ? message.tablet_selection_preference : $root.tabletmanagerdata.TabletSelectionPreference[message.tablet_selection_preference] : message.tablet_selection_preference;
- if (message.on_ddl != null && message.hasOwnProperty("on_ddl"))
+ if (options.oneofs)
+ object._tablet_selection_preference = "tablet_selection_preference";
+ }
+ if (message.on_ddl != null && message.hasOwnProperty("on_ddl")) {
object.on_ddl = options.enums === String ? $root.binlogdata.OnDDLAction[message.on_ddl] === undefined ? message.on_ddl : $root.binlogdata.OnDDLAction[message.on_ddl] : message.on_ddl;
- if (message.state != null && message.hasOwnProperty("state"))
+ if (options.oneofs)
+ object._on_ddl = "on_ddl";
+ }
+ if (message.state != null && message.hasOwnProperty("state")) {
object.state = options.enums === String ? $root.binlogdata.VReplicationWorkflowState[message.state] === undefined ? message.state : $root.binlogdata.VReplicationWorkflowState[message.state] : message.state;
+ if (options.oneofs)
+ object._state = "state";
+ }
+ let keys2;
+ if (message.config_overrides && (keys2 = Object.keys(message.config_overrides)).length) {
+ object.config_overrides = {};
+ for (let j = 0; j < keys2.length; ++j)
+ object.config_overrides[keys2[j]] = message.config_overrides[keys2[j]];
+ }
return object;
};
@@ -71359,27 +71927,63 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
/**
* UpdateVReplicationWorkflowsRequest state.
- * @member {binlogdata.VReplicationWorkflowState} state
+ * @member {binlogdata.VReplicationWorkflowState|null|undefined} state
* @memberof tabletmanagerdata.UpdateVReplicationWorkflowsRequest
* @instance
*/
- UpdateVReplicationWorkflowsRequest.prototype.state = 0;
+ UpdateVReplicationWorkflowsRequest.prototype.state = null;
/**
* UpdateVReplicationWorkflowsRequest message.
- * @member {string} message
+ * @member {string|null|undefined} message
* @memberof tabletmanagerdata.UpdateVReplicationWorkflowsRequest
* @instance
*/
- UpdateVReplicationWorkflowsRequest.prototype.message = "";
+ UpdateVReplicationWorkflowsRequest.prototype.message = null;
/**
* UpdateVReplicationWorkflowsRequest stop_position.
- * @member {string} stop_position
+ * @member {string|null|undefined} stop_position
+ * @memberof tabletmanagerdata.UpdateVReplicationWorkflowsRequest
+ * @instance
+ */
+ UpdateVReplicationWorkflowsRequest.prototype.stop_position = null;
+
+ // OneOf field names bound to virtual getters and setters
+ let $oneOfFields;
+
+ /**
+ * UpdateVReplicationWorkflowsRequest _state.
+ * @member {"state"|undefined} _state
+ * @memberof tabletmanagerdata.UpdateVReplicationWorkflowsRequest
+ * @instance
+ */
+ Object.defineProperty(UpdateVReplicationWorkflowsRequest.prototype, "_state", {
+ get: $util.oneOfGetter($oneOfFields = ["state"]),
+ set: $util.oneOfSetter($oneOfFields)
+ });
+
+ /**
+ * UpdateVReplicationWorkflowsRequest _message.
+ * @member {"message"|undefined} _message
* @memberof tabletmanagerdata.UpdateVReplicationWorkflowsRequest
* @instance
*/
- UpdateVReplicationWorkflowsRequest.prototype.stop_position = "";
+ Object.defineProperty(UpdateVReplicationWorkflowsRequest.prototype, "_message", {
+ get: $util.oneOfGetter($oneOfFields = ["message"]),
+ set: $util.oneOfSetter($oneOfFields)
+ });
+
+ /**
+ * UpdateVReplicationWorkflowsRequest _stop_position.
+ * @member {"stop_position"|undefined} _stop_position
+ * @memberof tabletmanagerdata.UpdateVReplicationWorkflowsRequest
+ * @instance
+ */
+ Object.defineProperty(UpdateVReplicationWorkflowsRequest.prototype, "_stop_position", {
+ get: $util.oneOfGetter($oneOfFields = ["stop_position"]),
+ set: $util.oneOfSetter($oneOfFields)
+ });
/**
* Creates a new UpdateVReplicationWorkflowsRequest instance using the specified properties.
@@ -71516,6 +72120,7 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
UpdateVReplicationWorkflowsRequest.verify = function verify(message) {
if (typeof message !== "object" || message === null)
return "object expected";
+ let properties = {};
if (message.all_workflows != null && message.hasOwnProperty("all_workflows"))
if (typeof message.all_workflows !== "boolean")
return "all_workflows: boolean expected";
@@ -71533,7 +72138,8 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
if (!$util.isString(message.exclude_workflows[i]))
return "exclude_workflows: string[] expected";
}
- if (message.state != null && message.hasOwnProperty("state"))
+ if (message.state != null && message.hasOwnProperty("state")) {
+ properties._state = 1;
switch (message.state) {
default:
return "state: enum value expected";
@@ -71546,12 +72152,17 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
case 6:
break;
}
- if (message.message != null && message.hasOwnProperty("message"))
+ }
+ if (message.message != null && message.hasOwnProperty("message")) {
+ properties._message = 1;
if (!$util.isString(message.message))
return "message: string expected";
- if (message.stop_position != null && message.hasOwnProperty("stop_position"))
+ }
+ if (message.stop_position != null && message.hasOwnProperty("stop_position")) {
+ properties._stop_position = 1;
if (!$util.isString(message.stop_position))
return "stop_position: string expected";
+ }
return null;
};
@@ -71643,12 +72254,8 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
object.include_workflows = [];
object.exclude_workflows = [];
}
- if (options.defaults) {
+ if (options.defaults)
object.all_workflows = false;
- object.state = options.enums === String ? "Unknown" : 0;
- object.message = "";
- object.stop_position = "";
- }
if (message.all_workflows != null && message.hasOwnProperty("all_workflows"))
object.all_workflows = message.all_workflows;
if (message.include_workflows && message.include_workflows.length) {
@@ -71661,12 +72268,21 @@ export const tabletmanagerdata = $root.tabletmanagerdata = (() => {
for (let j = 0; j < message.exclude_workflows.length; ++j)
object.exclude_workflows[j] = message.exclude_workflows[j];
}
- if (message.state != null && message.hasOwnProperty("state"))
+ if (message.state != null && message.hasOwnProperty("state")) {
object.state = options.enums === String ? $root.binlogdata.VReplicationWorkflowState[message.state] === undefined ? message.state : $root.binlogdata.VReplicationWorkflowState[message.state] : message.state;
- if (message.message != null && message.hasOwnProperty("message"))
+ if (options.oneofs)
+ object._state = "state";
+ }
+ if (message.message != null && message.hasOwnProperty("message")) {
object.message = message.message;
- if (message.stop_position != null && message.hasOwnProperty("stop_position"))
+ if (options.oneofs)
+ object._message = "message";
+ }
+ if (message.stop_position != null && message.hasOwnProperty("stop_position")) {
object.stop_position = message.stop_position;
+ if (options.oneofs)
+ object._stop_position = "stop_position";
+ }
return object;
};
@@ -82544,6 +83160,7 @@ export const binlogdata = $root.binlogdata = (() => {
* @memberof binlogdata
* @interface IVStreamOptions
* @property {Array.|null} [internal_tables] VStreamOptions internal_tables
+ * @property {Object.|null} [config_overrides] VStreamOptions config_overrides
*/
/**
@@ -82556,6 +83173,7 @@ export const binlogdata = $root.binlogdata = (() => {
*/
function VStreamOptions(properties) {
this.internal_tables = [];
+ this.config_overrides = {};
if (properties)
for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
@@ -82570,6 +83188,14 @@ export const binlogdata = $root.binlogdata = (() => {
*/
VStreamOptions.prototype.internal_tables = $util.emptyArray;
+ /**
+ * VStreamOptions config_overrides.
+ * @member {Object.} config_overrides
+ * @memberof binlogdata.VStreamOptions
+ * @instance
+ */
+ VStreamOptions.prototype.config_overrides = $util.emptyObject;
+
/**
* Creates a new VStreamOptions instance using the specified properties.
* @function create
@@ -82597,6 +83223,9 @@ export const binlogdata = $root.binlogdata = (() => {
if (message.internal_tables != null && message.internal_tables.length)
for (let i = 0; i < message.internal_tables.length; ++i)
writer.uint32(/* id 1, wireType 2 =*/10).string(message.internal_tables[i]);
+ if (message.config_overrides != null && Object.hasOwnProperty.call(message, "config_overrides"))
+ for (let keys = Object.keys(message.config_overrides), i = 0; i < keys.length; ++i)
+ writer.uint32(/* id 2, wireType 2 =*/18).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.config_overrides[keys[i]]).ldelim();
return writer;
};
@@ -82627,7 +83256,7 @@ export const binlogdata = $root.binlogdata = (() => {
VStreamOptions.decode = function decode(reader, length) {
if (!(reader instanceof $Reader))
reader = $Reader.create(reader);
- let end = length === undefined ? reader.len : reader.pos + length, message = new $root.binlogdata.VStreamOptions();
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.binlogdata.VStreamOptions(), key, value;
while (reader.pos < end) {
let tag = reader.uint32();
switch (tag >>> 3) {
@@ -82637,6 +83266,29 @@ export const binlogdata = $root.binlogdata = (() => {
message.internal_tables.push(reader.string());
break;
}
+ case 2: {
+ if (message.config_overrides === $util.emptyObject)
+ message.config_overrides = {};
+ let end2 = reader.uint32() + reader.pos;
+ key = "";
+ value = "";
+ while (reader.pos < end2) {
+ let tag2 = reader.uint32();
+ switch (tag2 >>> 3) {
+ case 1:
+ key = reader.string();
+ break;
+ case 2:
+ value = reader.string();
+ break;
+ default:
+ reader.skipType(tag2 & 7);
+ break;
+ }
+ }
+ message.config_overrides[key] = value;
+ break;
+ }
default:
reader.skipType(tag & 7);
break;
@@ -82679,6 +83331,14 @@ export const binlogdata = $root.binlogdata = (() => {
if (!$util.isString(message.internal_tables[i]))
return "internal_tables: string[] expected";
}
+ if (message.config_overrides != null && message.hasOwnProperty("config_overrides")) {
+ if (!$util.isObject(message.config_overrides))
+ return "config_overrides: object expected";
+ let key = Object.keys(message.config_overrides);
+ for (let i = 0; i < key.length; ++i)
+ if (!$util.isString(message.config_overrides[key[i]]))
+ return "config_overrides: string{k:string} expected";
+ }
return null;
};
@@ -82701,6 +83361,13 @@ export const binlogdata = $root.binlogdata = (() => {
for (let i = 0; i < object.internal_tables.length; ++i)
message.internal_tables[i] = String(object.internal_tables[i]);
}
+ if (object.config_overrides) {
+ if (typeof object.config_overrides !== "object")
+ throw TypeError(".binlogdata.VStreamOptions.config_overrides: object expected");
+ message.config_overrides = {};
+ for (let keys = Object.keys(object.config_overrides), i = 0; i < keys.length; ++i)
+ message.config_overrides[keys[i]] = String(object.config_overrides[keys[i]]);
+ }
return message;
};
@@ -82719,11 +83386,19 @@ export const binlogdata = $root.binlogdata = (() => {
let object = {};
if (options.arrays || options.defaults)
object.internal_tables = [];
+ if (options.objects || options.defaults)
+ object.config_overrides = {};
if (message.internal_tables && message.internal_tables.length) {
object.internal_tables = [];
for (let j = 0; j < message.internal_tables.length; ++j)
object.internal_tables[j] = message.internal_tables[j];
}
+ let keys2;
+ if (message.config_overrides && (keys2 = Object.keys(message.config_overrides)).length) {
+ object.config_overrides = {};
+ for (let j = 0; j < keys2.length; ++j)
+ object.config_overrides[keys2[j]] = message.config_overrides[keys2[j]];
+ }
return object;
};
@@ -83380,6 +84055,7 @@ export const binlogdata = $root.binlogdata = (() => {
* @property {query.ITarget|null} [target] VStreamRowsRequest target
* @property {string|null} [query] VStreamRowsRequest query
* @property {query.IQueryResult|null} [lastpk] VStreamRowsRequest lastpk
+ * @property {binlogdata.IVStreamOptions|null} [options] VStreamRowsRequest options
*/
/**
@@ -83437,6 +84113,14 @@ export const binlogdata = $root.binlogdata = (() => {
*/
VStreamRowsRequest.prototype.lastpk = null;
+ /**
+ * VStreamRowsRequest options.
+ * @member {binlogdata.IVStreamOptions|null|undefined} options
+ * @memberof binlogdata.VStreamRowsRequest
+ * @instance
+ */
+ VStreamRowsRequest.prototype.options = null;
+
/**
* Creates a new VStreamRowsRequest instance using the specified properties.
* @function create
@@ -83471,6 +84155,8 @@ export const binlogdata = $root.binlogdata = (() => {
writer.uint32(/* id 4, wireType 2 =*/34).string(message.query);
if (message.lastpk != null && Object.hasOwnProperty.call(message, "lastpk"))
$root.query.QueryResult.encode(message.lastpk, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim();
+ if (message.options != null && Object.hasOwnProperty.call(message, "options"))
+ $root.binlogdata.VStreamOptions.encode(message.options, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim();
return writer;
};
@@ -83525,6 +84211,10 @@ export const binlogdata = $root.binlogdata = (() => {
message.lastpk = $root.query.QueryResult.decode(reader, reader.uint32());
break;
}
+ case 6: {
+ message.options = $root.binlogdata.VStreamOptions.decode(reader, reader.uint32());
+ break;
+ }
default:
reader.skipType(tag & 7);
break;
@@ -83583,6 +84273,11 @@ export const binlogdata = $root.binlogdata = (() => {
if (error)
return "lastpk." + error;
}
+ if (message.options != null && message.hasOwnProperty("options")) {
+ let error = $root.binlogdata.VStreamOptions.verify(message.options);
+ if (error)
+ return "options." + error;
+ }
return null;
};
@@ -83620,6 +84315,11 @@ export const binlogdata = $root.binlogdata = (() => {
throw TypeError(".binlogdata.VStreamRowsRequest.lastpk: object expected");
message.lastpk = $root.query.QueryResult.fromObject(object.lastpk);
}
+ if (object.options != null) {
+ if (typeof object.options !== "object")
+ throw TypeError(".binlogdata.VStreamRowsRequest.options: object expected");
+ message.options = $root.binlogdata.VStreamOptions.fromObject(object.options);
+ }
return message;
};
@@ -83642,6 +84342,7 @@ export const binlogdata = $root.binlogdata = (() => {
object.target = null;
object.query = "";
object.lastpk = null;
+ object.options = null;
}
if (message.effective_caller_id != null && message.hasOwnProperty("effective_caller_id"))
object.effective_caller_id = $root.vtrpc.CallerID.toObject(message.effective_caller_id, options);
@@ -83653,6 +84354,8 @@ export const binlogdata = $root.binlogdata = (() => {
object.query = message.query;
if (message.lastpk != null && message.hasOwnProperty("lastpk"))
object.lastpk = $root.query.QueryResult.toObject(message.lastpk, options);
+ if (message.options != null && message.hasOwnProperty("options"))
+ object.options = $root.binlogdata.VStreamOptions.toObject(message.options, options);
return object;
};
@@ -84129,6 +84832,7 @@ export const binlogdata = $root.binlogdata = (() => {
* @property {vtrpc.ICallerID|null} [effective_caller_id] VStreamTablesRequest effective_caller_id
* @property {query.IVTGateCallerID|null} [immediate_caller_id] VStreamTablesRequest immediate_caller_id
* @property {query.ITarget|null} [target] VStreamTablesRequest target
+ * @property {binlogdata.IVStreamOptions|null} [options] VStreamTablesRequest options
*/
/**
@@ -84170,6 +84874,14 @@ export const binlogdata = $root.binlogdata = (() => {
*/
VStreamTablesRequest.prototype.target = null;
+ /**
+ * VStreamTablesRequest options.
+ * @member {binlogdata.IVStreamOptions|null|undefined} options
+ * @memberof binlogdata.VStreamTablesRequest
+ * @instance
+ */
+ VStreamTablesRequest.prototype.options = null;
+
/**
* Creates a new VStreamTablesRequest instance using the specified properties.
* @function create
@@ -84200,6 +84912,8 @@ export const binlogdata = $root.binlogdata = (() => {
$root.query.VTGateCallerID.encode(message.immediate_caller_id, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim();
if (message.target != null && Object.hasOwnProperty.call(message, "target"))
$root.query.Target.encode(message.target, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim();
+ if (message.options != null && Object.hasOwnProperty.call(message, "options"))
+ $root.binlogdata.VStreamOptions.encode(message.options, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim();
return writer;
};
@@ -84246,6 +84960,10 @@ export const binlogdata = $root.binlogdata = (() => {
message.target = $root.query.Target.decode(reader, reader.uint32());
break;
}
+ case 4: {
+ message.options = $root.binlogdata.VStreamOptions.decode(reader, reader.uint32());
+ break;
+ }
default:
reader.skipType(tag & 7);
break;
@@ -84296,6 +85014,11 @@ export const binlogdata = $root.binlogdata = (() => {
if (error)
return "target." + error;
}
+ if (message.options != null && message.hasOwnProperty("options")) {
+ let error = $root.binlogdata.VStreamOptions.verify(message.options);
+ if (error)
+ return "options." + error;
+ }
return null;
};
@@ -84326,6 +85049,11 @@ export const binlogdata = $root.binlogdata = (() => {
throw TypeError(".binlogdata.VStreamTablesRequest.target: object expected");
message.target = $root.query.Target.fromObject(object.target);
}
+ if (object.options != null) {
+ if (typeof object.options !== "object")
+ throw TypeError(".binlogdata.VStreamTablesRequest.options: object expected");
+ message.options = $root.binlogdata.VStreamOptions.fromObject(object.options);
+ }
return message;
};
@@ -84346,6 +85074,7 @@ export const binlogdata = $root.binlogdata = (() => {
object.effective_caller_id = null;
object.immediate_caller_id = null;
object.target = null;
+ object.options = null;
}
if (message.effective_caller_id != null && message.hasOwnProperty("effective_caller_id"))
object.effective_caller_id = $root.vtrpc.CallerID.toObject(message.effective_caller_id, options);
@@ -84353,6 +85082,8 @@ export const binlogdata = $root.binlogdata = (() => {
object.immediate_caller_id = $root.query.VTGateCallerID.toObject(message.immediate_caller_id, options);
if (message.target != null && message.hasOwnProperty("target"))
object.target = $root.query.Target.toObject(message.target, options);
+ if (message.options != null && message.hasOwnProperty("options"))
+ object.options = $root.binlogdata.VStreamOptions.toObject(message.options, options);
return object;
};
@@ -118366,6 +119097,7 @@ export const vtctldata = $root.vtctldata = (() => {
* @property {string|null} [tenant_id] WorkflowOptions tenant_id
* @property {boolean|null} [strip_sharded_auto_increment] WorkflowOptions strip_sharded_auto_increment
* @property {Array.|null} [shards] WorkflowOptions shards
+ * @property {Object.|null} [config] WorkflowOptions config
*/
/**
@@ -118378,6 +119110,7 @@ export const vtctldata = $root.vtctldata = (() => {
*/
function WorkflowOptions(properties) {
this.shards = [];
+ this.config = {};
if (properties)
for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
@@ -118408,6 +119141,14 @@ export const vtctldata = $root.vtctldata = (() => {
*/
WorkflowOptions.prototype.shards = $util.emptyArray;
+ /**
+ * WorkflowOptions config.
+ * @member {Object.} config
+ * @memberof vtctldata.WorkflowOptions
+ * @instance
+ */
+ WorkflowOptions.prototype.config = $util.emptyObject;
+
/**
* Creates a new WorkflowOptions instance using the specified properties.
* @function create
@@ -118439,6 +119180,9 @@ export const vtctldata = $root.vtctldata = (() => {
if (message.shards != null && message.shards.length)
for (let i = 0; i < message.shards.length; ++i)
writer.uint32(/* id 3, wireType 2 =*/26).string(message.shards[i]);
+ if (message.config != null && Object.hasOwnProperty.call(message, "config"))
+ for (let keys = Object.keys(message.config), i = 0; i < keys.length; ++i)
+ writer.uint32(/* id 4, wireType 2 =*/34).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.config[keys[i]]).ldelim();
return writer;
};
@@ -118469,7 +119213,7 @@ export const vtctldata = $root.vtctldata = (() => {
WorkflowOptions.decode = function decode(reader, length) {
if (!(reader instanceof $Reader))
reader = $Reader.create(reader);
- let end = length === undefined ? reader.len : reader.pos + length, message = new $root.vtctldata.WorkflowOptions();
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.vtctldata.WorkflowOptions(), key, value;
while (reader.pos < end) {
let tag = reader.uint32();
switch (tag >>> 3) {
@@ -118487,6 +119231,29 @@ export const vtctldata = $root.vtctldata = (() => {
message.shards.push(reader.string());
break;
}
+ case 4: {
+ if (message.config === $util.emptyObject)
+ message.config = {};
+ let end2 = reader.uint32() + reader.pos;
+ key = "";
+ value = "";
+ while (reader.pos < end2) {
+ let tag2 = reader.uint32();
+ switch (tag2 >>> 3) {
+ case 1:
+ key = reader.string();
+ break;
+ case 2:
+ value = reader.string();
+ break;
+ default:
+ reader.skipType(tag2 & 7);
+ break;
+ }
+ }
+ message.config[key] = value;
+ break;
+ }
default:
reader.skipType(tag & 7);
break;
@@ -118535,6 +119302,14 @@ export const vtctldata = $root.vtctldata = (() => {
if (!$util.isString(message.shards[i]))
return "shards: string[] expected";
}
+ if (message.config != null && message.hasOwnProperty("config")) {
+ if (!$util.isObject(message.config))
+ return "config: object expected";
+ let key = Object.keys(message.config);
+ for (let i = 0; i < key.length; ++i)
+ if (!$util.isString(message.config[key[i]]))
+ return "config: string{k:string} expected";
+ }
return null;
};
@@ -118561,6 +119336,13 @@ export const vtctldata = $root.vtctldata = (() => {
for (let i = 0; i < object.shards.length; ++i)
message.shards[i] = String(object.shards[i]);
}
+ if (object.config) {
+ if (typeof object.config !== "object")
+ throw TypeError(".vtctldata.WorkflowOptions.config: object expected");
+ message.config = {};
+ for (let keys = Object.keys(object.config), i = 0; i < keys.length; ++i)
+ message.config[keys[i]] = String(object.config[keys[i]]);
+ }
return message;
};
@@ -118579,6 +119361,8 @@ export const vtctldata = $root.vtctldata = (() => {
let object = {};
if (options.arrays || options.defaults)
object.shards = [];
+ if (options.objects || options.defaults)
+ object.config = {};
if (options.defaults) {
object.tenant_id = "";
object.strip_sharded_auto_increment = false;
@@ -118592,6 +119376,12 @@ export const vtctldata = $root.vtctldata = (() => {
for (let j = 0; j < message.shards.length; ++j)
object.shards[j] = message.shards[j];
}
+ let keys2;
+ if (message.config && (keys2 = Object.keys(message.config)).length) {
+ object.config = {};
+ for (let j = 0; j < keys2.length; ++j)
+ object.config[keys2[j]] = message.config[keys2[j]];
+ }
return object;
};
@@ -148045,6 +148835,429 @@ export const vtctldata = $root.vtctldata = (() => {
return GetUnresolvedTransactionsResponse;
})();
+ vtctldata.ConcludeTransactionRequest = (function() {
+
+ /**
+ * Properties of a ConcludeTransactionRequest.
+ * @memberof vtctldata
+ * @interface IConcludeTransactionRequest
+ * @property {string|null} [dtid] ConcludeTransactionRequest dtid
+ * @property {Array.|null} [participants] ConcludeTransactionRequest participants
+ */
+
+ /**
+ * Constructs a new ConcludeTransactionRequest.
+ * @memberof vtctldata
+ * @classdesc Represents a ConcludeTransactionRequest.
+ * @implements IConcludeTransactionRequest
+ * @constructor
+ * @param {vtctldata.IConcludeTransactionRequest=} [properties] Properties to set
+ */
+ function ConcludeTransactionRequest(properties) {
+ this.participants = [];
+ if (properties)
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
+ if (properties[keys[i]] != null)
+ this[keys[i]] = properties[keys[i]];
+ }
+
+ /**
+ * ConcludeTransactionRequest dtid.
+ * @member {string} dtid
+ * @memberof vtctldata.ConcludeTransactionRequest
+ * @instance
+ */
+ ConcludeTransactionRequest.prototype.dtid = "";
+
+ /**
+ * ConcludeTransactionRequest participants.
+ * @member {Array.} participants
+ * @memberof vtctldata.ConcludeTransactionRequest
+ * @instance
+ */
+ ConcludeTransactionRequest.prototype.participants = $util.emptyArray;
+
+ /**
+ * Creates a new ConcludeTransactionRequest instance using the specified properties.
+ * @function create
+ * @memberof vtctldata.ConcludeTransactionRequest
+ * @static
+ * @param {vtctldata.IConcludeTransactionRequest=} [properties] Properties to set
+ * @returns {vtctldata.ConcludeTransactionRequest} ConcludeTransactionRequest instance
+ */
+ ConcludeTransactionRequest.create = function create(properties) {
+ return new ConcludeTransactionRequest(properties);
+ };
+
+ /**
+ * Encodes the specified ConcludeTransactionRequest message. Does not implicitly {@link vtctldata.ConcludeTransactionRequest.verify|verify} messages.
+ * @function encode
+ * @memberof vtctldata.ConcludeTransactionRequest
+ * @static
+ * @param {vtctldata.IConcludeTransactionRequest} message ConcludeTransactionRequest message or plain object to encode
+ * @param {$protobuf.Writer} [writer] Writer to encode to
+ * @returns {$protobuf.Writer} Writer
+ */
+ ConcludeTransactionRequest.encode = function encode(message, writer) {
+ if (!writer)
+ writer = $Writer.create();
+ if (message.dtid != null && Object.hasOwnProperty.call(message, "dtid"))
+ writer.uint32(/* id 1, wireType 2 =*/10).string(message.dtid);
+ if (message.participants != null && message.participants.length)
+ for (let i = 0; i < message.participants.length; ++i)
+ $root.query.Target.encode(message.participants[i], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim();
+ return writer;
+ };
+
+ /**
+ * Encodes the specified ConcludeTransactionRequest message, length delimited. Does not implicitly {@link vtctldata.ConcludeTransactionRequest.verify|verify} messages.
+ * @function encodeDelimited
+ * @memberof vtctldata.ConcludeTransactionRequest
+ * @static
+ * @param {vtctldata.IConcludeTransactionRequest} message ConcludeTransactionRequest message or plain object to encode
+ * @param {$protobuf.Writer} [writer] Writer to encode to
+ * @returns {$protobuf.Writer} Writer
+ */
+ ConcludeTransactionRequest.encodeDelimited = function encodeDelimited(message, writer) {
+ return this.encode(message, writer).ldelim();
+ };
+
+ /**
+ * Decodes a ConcludeTransactionRequest message from the specified reader or buffer.
+ * @function decode
+ * @memberof vtctldata.ConcludeTransactionRequest
+ * @static
+ * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
+ * @param {number} [length] Message length if known beforehand
+ * @returns {vtctldata.ConcludeTransactionRequest} ConcludeTransactionRequest
+ * @throws {Error} If the payload is not a reader or valid buffer
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
+ */
+ ConcludeTransactionRequest.decode = function decode(reader, length) {
+ if (!(reader instanceof $Reader))
+ reader = $Reader.create(reader);
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.vtctldata.ConcludeTransactionRequest();
+ while (reader.pos < end) {
+ let tag = reader.uint32();
+ switch (tag >>> 3) {
+ case 1: {
+ message.dtid = reader.string();
+ break;
+ }
+ case 2: {
+ if (!(message.participants && message.participants.length))
+ message.participants = [];
+ message.participants.push($root.query.Target.decode(reader, reader.uint32()));
+ break;
+ }
+ default:
+ reader.skipType(tag & 7);
+ break;
+ }
+ }
+ return message;
+ };
+
+ /**
+ * Decodes a ConcludeTransactionRequest message from the specified reader or buffer, length delimited.
+ * @function decodeDelimited
+ * @memberof vtctldata.ConcludeTransactionRequest
+ * @static
+ * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
+ * @returns {vtctldata.ConcludeTransactionRequest} ConcludeTransactionRequest
+ * @throws {Error} If the payload is not a reader or valid buffer
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
+ */
+ ConcludeTransactionRequest.decodeDelimited = function decodeDelimited(reader) {
+ if (!(reader instanceof $Reader))
+ reader = new $Reader(reader);
+ return this.decode(reader, reader.uint32());
+ };
+
+ /**
+ * Verifies a ConcludeTransactionRequest message.
+ * @function verify
+ * @memberof vtctldata.ConcludeTransactionRequest
+ * @static
+ * @param {Object.} message Plain object to verify
+ * @returns {string|null} `null` if valid, otherwise the reason why it is not
+ */
+ ConcludeTransactionRequest.verify = function verify(message) {
+ if (typeof message !== "object" || message === null)
+ return "object expected";
+ if (message.dtid != null && message.hasOwnProperty("dtid"))
+ if (!$util.isString(message.dtid))
+ return "dtid: string expected";
+ if (message.participants != null && message.hasOwnProperty("participants")) {
+ if (!Array.isArray(message.participants))
+ return "participants: array expected";
+ for (let i = 0; i < message.participants.length; ++i) {
+ let error = $root.query.Target.verify(message.participants[i]);
+ if (error)
+ return "participants." + error;
+ }
+ }
+ return null;
+ };
+
+ /**
+ * Creates a ConcludeTransactionRequest message from a plain object. Also converts values to their respective internal types.
+ * @function fromObject
+ * @memberof vtctldata.ConcludeTransactionRequest
+ * @static
+ * @param {Object.} object Plain object
+ * @returns {vtctldata.ConcludeTransactionRequest} ConcludeTransactionRequest
+ */
+ ConcludeTransactionRequest.fromObject = function fromObject(object) {
+ if (object instanceof $root.vtctldata.ConcludeTransactionRequest)
+ return object;
+ let message = new $root.vtctldata.ConcludeTransactionRequest();
+ if (object.dtid != null)
+ message.dtid = String(object.dtid);
+ if (object.participants) {
+ if (!Array.isArray(object.participants))
+ throw TypeError(".vtctldata.ConcludeTransactionRequest.participants: array expected");
+ message.participants = [];
+ for (let i = 0; i < object.participants.length; ++i) {
+ if (typeof object.participants[i] !== "object")
+ throw TypeError(".vtctldata.ConcludeTransactionRequest.participants: object expected");
+ message.participants[i] = $root.query.Target.fromObject(object.participants[i]);
+ }
+ }
+ return message;
+ };
+
+ /**
+ * Creates a plain object from a ConcludeTransactionRequest message. Also converts values to other types if specified.
+ * @function toObject
+ * @memberof vtctldata.ConcludeTransactionRequest
+ * @static
+ * @param {vtctldata.ConcludeTransactionRequest} message ConcludeTransactionRequest
+ * @param {$protobuf.IConversionOptions} [options] Conversion options
+ * @returns {Object.} Plain object
+ */
+ ConcludeTransactionRequest.toObject = function toObject(message, options) {
+ if (!options)
+ options = {};
+ let object = {};
+ if (options.arrays || options.defaults)
+ object.participants = [];
+ if (options.defaults)
+ object.dtid = "";
+ if (message.dtid != null && message.hasOwnProperty("dtid"))
+ object.dtid = message.dtid;
+ if (message.participants && message.participants.length) {
+ object.participants = [];
+ for (let j = 0; j < message.participants.length; ++j)
+ object.participants[j] = $root.query.Target.toObject(message.participants[j], options);
+ }
+ return object;
+ };
+
+ /**
+ * Converts this ConcludeTransactionRequest to JSON.
+ * @function toJSON
+ * @memberof vtctldata.ConcludeTransactionRequest
+ * @instance
+ * @returns {Object.} JSON object
+ */
+ ConcludeTransactionRequest.prototype.toJSON = function toJSON() {
+ return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
+ };
+
+ /**
+ * Gets the default type url for ConcludeTransactionRequest
+ * @function getTypeUrl
+ * @memberof vtctldata.ConcludeTransactionRequest
+ * @static
+ * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
+ * @returns {string} The default type url
+ */
+ ConcludeTransactionRequest.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
+ if (typeUrlPrefix === undefined) {
+ typeUrlPrefix = "type.googleapis.com";
+ }
+ return typeUrlPrefix + "/vtctldata.ConcludeTransactionRequest";
+ };
+
+ return ConcludeTransactionRequest;
+ })();
+
+ vtctldata.ConcludeTransactionResponse = (function() {
+
+ /**
+ * Properties of a ConcludeTransactionResponse.
+ * @memberof vtctldata
+ * @interface IConcludeTransactionResponse
+ */
+
+ /**
+ * Constructs a new ConcludeTransactionResponse.
+ * @memberof vtctldata
+ * @classdesc Represents a ConcludeTransactionResponse.
+ * @implements IConcludeTransactionResponse
+ * @constructor
+ * @param {vtctldata.IConcludeTransactionResponse=} [properties] Properties to set
+ */
+ function ConcludeTransactionResponse(properties) {
+ if (properties)
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
+ if (properties[keys[i]] != null)
+ this[keys[i]] = properties[keys[i]];
+ }
+
+ /**
+ * Creates a new ConcludeTransactionResponse instance using the specified properties.
+ * @function create
+ * @memberof vtctldata.ConcludeTransactionResponse
+ * @static
+ * @param {vtctldata.IConcludeTransactionResponse=} [properties] Properties to set
+ * @returns {vtctldata.ConcludeTransactionResponse} ConcludeTransactionResponse instance
+ */
+ ConcludeTransactionResponse.create = function create(properties) {
+ return new ConcludeTransactionResponse(properties);
+ };
+
+ /**
+ * Encodes the specified ConcludeTransactionResponse message. Does not implicitly {@link vtctldata.ConcludeTransactionResponse.verify|verify} messages.
+ * @function encode
+ * @memberof vtctldata.ConcludeTransactionResponse
+ * @static
+ * @param {vtctldata.IConcludeTransactionResponse} message ConcludeTransactionResponse message or plain object to encode
+ * @param {$protobuf.Writer} [writer] Writer to encode to
+ * @returns {$protobuf.Writer} Writer
+ */
+ ConcludeTransactionResponse.encode = function encode(message, writer) {
+ if (!writer)
+ writer = $Writer.create();
+ return writer;
+ };
+
+ /**
+ * Encodes the specified ConcludeTransactionResponse message, length delimited. Does not implicitly {@link vtctldata.ConcludeTransactionResponse.verify|verify} messages.
+ * @function encodeDelimited
+ * @memberof vtctldata.ConcludeTransactionResponse
+ * @static
+ * @param {vtctldata.IConcludeTransactionResponse} message ConcludeTransactionResponse message or plain object to encode
+ * @param {$protobuf.Writer} [writer] Writer to encode to
+ * @returns {$protobuf.Writer} Writer
+ */
+ ConcludeTransactionResponse.encodeDelimited = function encodeDelimited(message, writer) {
+ return this.encode(message, writer).ldelim();
+ };
+
+ /**
+ * Decodes a ConcludeTransactionResponse message from the specified reader or buffer.
+ * @function decode
+ * @memberof vtctldata.ConcludeTransactionResponse
+ * @static
+ * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
+ * @param {number} [length] Message length if known beforehand
+ * @returns {vtctldata.ConcludeTransactionResponse} ConcludeTransactionResponse
+ * @throws {Error} If the payload is not a reader or valid buffer
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
+ */
+ ConcludeTransactionResponse.decode = function decode(reader, length) {
+ if (!(reader instanceof $Reader))
+ reader = $Reader.create(reader);
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.vtctldata.ConcludeTransactionResponse();
+ while (reader.pos < end) {
+ let tag = reader.uint32();
+ switch (tag >>> 3) {
+ default:
+ reader.skipType(tag & 7);
+ break;
+ }
+ }
+ return message;
+ };
+
+ /**
+ * Decodes a ConcludeTransactionResponse message from the specified reader or buffer, length delimited.
+ * @function decodeDelimited
+ * @memberof vtctldata.ConcludeTransactionResponse
+ * @static
+ * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
+ * @returns {vtctldata.ConcludeTransactionResponse} ConcludeTransactionResponse
+ * @throws {Error} If the payload is not a reader or valid buffer
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
+ */
+ ConcludeTransactionResponse.decodeDelimited = function decodeDelimited(reader) {
+ if (!(reader instanceof $Reader))
+ reader = new $Reader(reader);
+ return this.decode(reader, reader.uint32());
+ };
+
+ /**
+ * Verifies a ConcludeTransactionResponse message.
+ * @function verify
+ * @memberof vtctldata.ConcludeTransactionResponse
+ * @static
+ * @param {Object.} message Plain object to verify
+ * @returns {string|null} `null` if valid, otherwise the reason why it is not
+ */
+ ConcludeTransactionResponse.verify = function verify(message) {
+ if (typeof message !== "object" || message === null)
+ return "object expected";
+ return null;
+ };
+
+ /**
+ * Creates a ConcludeTransactionResponse message from a plain object. Also converts values to their respective internal types.
+ * @function fromObject
+ * @memberof vtctldata.ConcludeTransactionResponse
+ * @static
+ * @param {Object.} object Plain object
+ * @returns {vtctldata.ConcludeTransactionResponse} ConcludeTransactionResponse
+ */
+ ConcludeTransactionResponse.fromObject = function fromObject(object) {
+ if (object instanceof $root.vtctldata.ConcludeTransactionResponse)
+ return object;
+ return new $root.vtctldata.ConcludeTransactionResponse();
+ };
+
+ /**
+ * Creates a plain object from a ConcludeTransactionResponse message. Also converts values to other types if specified.
+ * @function toObject
+ * @memberof vtctldata.ConcludeTransactionResponse
+ * @static
+ * @param {vtctldata.ConcludeTransactionResponse} message ConcludeTransactionResponse
+ * @param {$protobuf.IConversionOptions} [options] Conversion options
+ * @returns {Object.} Plain object
+ */
+ ConcludeTransactionResponse.toObject = function toObject() {
+ return {};
+ };
+
+ /**
+ * Converts this ConcludeTransactionResponse to JSON.
+ * @function toJSON
+ * @memberof vtctldata.ConcludeTransactionResponse
+ * @instance
+ * @returns {Object.} JSON object
+ */
+ ConcludeTransactionResponse.prototype.toJSON = function toJSON() {
+ return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
+ };
+
+ /**
+ * Gets the default type url for ConcludeTransactionResponse
+ * @function getTypeUrl
+ * @memberof vtctldata.ConcludeTransactionResponse
+ * @static
+ * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
+ * @returns {string} The default type url
+ */
+ ConcludeTransactionResponse.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
+ if (typeUrlPrefix === undefined) {
+ typeUrlPrefix = "type.googleapis.com";
+ }
+ return typeUrlPrefix + "/vtctldata.ConcludeTransactionResponse";
+ };
+
+ return ConcludeTransactionResponse;
+ })();
+
vtctldata.GetVSchemaRequest = (function() {
/**
@@ -162801,6 +164014,7 @@ export const vtctldata = $root.vtctldata = (() => {
* @property {boolean|null} [stop_after_copy] ReshardCreateRequest stop_after_copy
* @property {boolean|null} [defer_secondary_keys] ReshardCreateRequest defer_secondary_keys
* @property {boolean|null} [auto_start] ReshardCreateRequest auto_start
+ * @property {vtctldata.IWorkflowOptions|null} [workflow_options] ReshardCreateRequest workflow_options
*/
/**
@@ -162918,6 +164132,14 @@ export const vtctldata = $root.vtctldata = (() => {
*/
ReshardCreateRequest.prototype.auto_start = false;
+ /**
+ * ReshardCreateRequest workflow_options.
+ * @member {vtctldata.IWorkflowOptions|null|undefined} workflow_options
+ * @memberof vtctldata.ReshardCreateRequest
+ * @instance
+ */
+ ReshardCreateRequest.prototype.workflow_options = null;
+
/**
* Creates a new ReshardCreateRequest instance using the specified properties.
* @function create
@@ -162973,6 +164195,8 @@ export const vtctldata = $root.vtctldata = (() => {
writer.uint32(/* id 11, wireType 0 =*/88).bool(message.defer_secondary_keys);
if (message.auto_start != null && Object.hasOwnProperty.call(message, "auto_start"))
writer.uint32(/* id 12, wireType 0 =*/96).bool(message.auto_start);
+ if (message.workflow_options != null && Object.hasOwnProperty.call(message, "workflow_options"))
+ $root.vtctldata.WorkflowOptions.encode(message.workflow_options, writer.uint32(/* id 13, wireType 2 =*/106).fork()).ldelim();
return writer;
};
@@ -163068,6 +164292,10 @@ export const vtctldata = $root.vtctldata = (() => {
message.auto_start = reader.bool();
break;
}
+ case 13: {
+ message.workflow_options = $root.vtctldata.WorkflowOptions.decode(reader, reader.uint32());
+ break;
+ }
default:
reader.skipType(tag & 7);
break;
@@ -163175,6 +164403,11 @@ export const vtctldata = $root.vtctldata = (() => {
if (message.auto_start != null && message.hasOwnProperty("auto_start"))
if (typeof message.auto_start !== "boolean")
return "auto_start: boolean expected";
+ if (message.workflow_options != null && message.hasOwnProperty("workflow_options")) {
+ let error = $root.vtctldata.WorkflowOptions.verify(message.workflow_options);
+ if (error)
+ return "workflow_options." + error;
+ }
return null;
};
@@ -163302,6 +164535,11 @@ export const vtctldata = $root.vtctldata = (() => {
message.defer_secondary_keys = Boolean(object.defer_secondary_keys);
if (object.auto_start != null)
message.auto_start = Boolean(object.auto_start);
+ if (object.workflow_options != null) {
+ if (typeof object.workflow_options !== "object")
+ throw TypeError(".vtctldata.ReshardCreateRequest.workflow_options: object expected");
+ message.workflow_options = $root.vtctldata.WorkflowOptions.fromObject(object.workflow_options);
+ }
return message;
};
@@ -163333,6 +164571,7 @@ export const vtctldata = $root.vtctldata = (() => {
object.stop_after_copy = false;
object.defer_secondary_keys = false;
object.auto_start = false;
+ object.workflow_options = null;
}
if (message.workflow != null && message.hasOwnProperty("workflow"))
object.workflow = message.workflow;
@@ -163370,6 +164609,8 @@ export const vtctldata = $root.vtctldata = (() => {
object.defer_secondary_keys = message.defer_secondary_keys;
if (message.auto_start != null && message.hasOwnProperty("auto_start"))
object.auto_start = message.auto_start;
+ if (message.workflow_options != null && message.hasOwnProperty("workflow_options"))
+ object.workflow_options = $root.vtctldata.WorkflowOptions.toObject(message.workflow_options, options);
return object;
};
@@ -181638,6 +182879,7 @@ export const vtctldata = $root.vtctldata = (() => {
* @property {boolean|null} [dry_run] WorkflowSwitchTrafficRequest dry_run
* @property {boolean|null} [initialize_target_sequences] WorkflowSwitchTrafficRequest initialize_target_sequences
* @property {Array.|null} [shards] WorkflowSwitchTrafficRequest shards
+ * @property {boolean|null} [force] WorkflowSwitchTrafficRequest force
*/
/**
@@ -181746,6 +182988,14 @@ export const vtctldata = $root.vtctldata = (() => {
*/
WorkflowSwitchTrafficRequest.prototype.shards = $util.emptyArray;
+ /**
+ * WorkflowSwitchTrafficRequest force.
+ * @member {boolean} force
+ * @memberof vtctldata.WorkflowSwitchTrafficRequest
+ * @instance
+ */
+ WorkflowSwitchTrafficRequest.prototype.force = false;
+
/**
* Creates a new WorkflowSwitchTrafficRequest instance using the specified properties.
* @function create
@@ -181798,6 +183048,8 @@ export const vtctldata = $root.vtctldata = (() => {
if (message.shards != null && message.shards.length)
for (let i = 0; i < message.shards.length; ++i)
writer.uint32(/* id 11, wireType 2 =*/90).string(message.shards[i]);
+ if (message.force != null && Object.hasOwnProperty.call(message, "force"))
+ writer.uint32(/* id 12, wireType 0 =*/96).bool(message.force);
return writer;
};
@@ -181887,6 +183139,10 @@ export const vtctldata = $root.vtctldata = (() => {
message.shards.push(reader.string());
break;
}
+ case 12: {
+ message.force = reader.bool();
+ break;
+ }
default:
reader.skipType(tag & 7);
break;
@@ -181985,6 +183241,9 @@ export const vtctldata = $root.vtctldata = (() => {
if (!$util.isString(message.shards[i]))
return "shards: string[] expected";
}
+ if (message.force != null && message.hasOwnProperty("force"))
+ if (typeof message.force !== "boolean")
+ return "force: boolean expected";
return null;
};
@@ -182093,6 +183352,8 @@ export const vtctldata = $root.vtctldata = (() => {
for (let i = 0; i < object.shards.length; ++i)
message.shards[i] = String(object.shards[i]);
}
+ if (object.force != null)
+ message.force = Boolean(object.force);
return message;
};
@@ -182123,6 +183384,7 @@ export const vtctldata = $root.vtctldata = (() => {
object.timeout = null;
object.dry_run = false;
object.initialize_target_sequences = false;
+ object.force = false;
}
if (message.keyspace != null && message.hasOwnProperty("keyspace"))
object.keyspace = message.keyspace;
@@ -182155,6 +183417,8 @@ export const vtctldata = $root.vtctldata = (() => {
for (let j = 0; j < message.shards.length; ++j)
object.shards[j] = message.shards[j];
}
+ if (message.force != null && message.hasOwnProperty("force"))
+ object.force = message.force;
return object;
};