From 53ebbb3d8e2a6a5d252057269274c14792e584b2 Mon Sep 17 00:00:00 2001 From: Mike Hwa Date: Sun, 22 Sep 2024 13:16:46 -0700 Subject: [PATCH] Updates to support scheduled charging https://github.com/teslamotors/vehicle-command/pull/305 --- .gitignore | 1 + cmd/tesla-control/commands.go | 391 ++- pkg/cli/config.go | 62 +- pkg/protocol/domains.go | 1 + pkg/protocol/protobuf/car_server.proto | 32 +- .../protobuf/carserver/car_server.pb.go | 2602 ++++++++++------- pkg/protocol/protobuf/carserver/common.pb.go | 318 +- pkg/protocol/protobuf/common.proto | 25 + .../protobuf/signatures/signatures.pb.go | 226 +- .../universalmessage/universal_message.pb.go | 56 +- pkg/protocol/protobuf/vcsec/vcsec.pb.go | 1543 +++++++--- pkg/proxy/command.go | 197 +- pkg/vehicle/actions.go | 15 + pkg/vehicle/charge.go | 82 + pkg/vehicle/infotainment.go | 11 + pkg/vehicle/security.go | 71 +- pkg/vehicle/vcsec.go | 40 +- 17 files changed, 3929 insertions(+), 1744 deletions(-) diff --git a/.gitignore b/.gitignore index 948320d..934dbf6 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ examples/ble/ble *.DS_Store *.key vendor +*.log \ No newline at end of file diff --git a/cmd/tesla-control/commands.go b/cmd/tesla-control/commands.go index 7123fa5..345ca38 100644 --- a/cmd/tesla-control/commands.go +++ b/cmd/tesla-control/commands.go @@ -13,11 +13,34 @@ import ( "github.com/teslamotors/vehicle-command/pkg/account" "github.com/teslamotors/vehicle-command/pkg/cli" "github.com/teslamotors/vehicle-command/pkg/protocol" + "github.com/teslamotors/vehicle-command/pkg/protocol/protobuf/keys" "github.com/teslamotors/vehicle-command/pkg/protocol/protobuf/vcsec" "github.com/teslamotors/vehicle-command/pkg/vehicle" + "google.golang.org/protobuf/encoding/protojson" ) -var ErrCommandLineArgs = errors.New("invalid command line arguments") +var ( + ErrCommandLineArgs = errors.New("invalid command line arguments") + ErrInvalidTime = errors.New("invalid time") + dayNamesBitMask = map[string]int32{ + "SUN": 1, + "SUNDAY": 1, + "MON": 2, + "MONDAY": 2, + "TUES": 4, + "TUESDAY": 4, + "WED": 8, + "WEDNESDAY": 8, + "THURS": 16, + "THURSDAY": 16, + "FRI": 32, + "FRIDAY": 32, + "SAT": 64, + "SATURDAY": 64, + "ALL": 127, + "WEEKDAYS": 62, + } +) type Argument struct { name string @@ -33,6 +56,50 @@ type Command struct { args []Argument optional []Argument handler Handler + domain protocol.Domain +} + +func GetDegree(degStr string) (float32, error) { + deg, err := strconv.ParseFloat(degStr, 32) + if err != nil { + return 0.0, err + } + if deg < -180 || deg > 180 { + return 0.0, errors.New("latitude and longitude must both be in the range [-180, 180]") + } + return float32(deg), nil +} + +func GetDays(days string) (int32, error) { + var mask int32 + for _, d := range strings.Split(days, ",") { + if v, ok := dayNamesBitMask[strings.TrimSpace(strings.ToUpper(d))]; ok { + mask |= v + } else { + return 0, fmt.Errorf("unrecognized day name: %v", d) + } + } + return mask, nil +} + +func MinutesAfterMidnight(hoursAndMinutes string) (int32, error) { + components := strings.Split(hoursAndMinutes, ":") + if len(components) != 2 { + return 0, fmt.Errorf("%w: expected HH:MM", ErrInvalidTime) + } + hours, err := strconv.Atoi(components[0]) + if err != nil { + return 0, fmt.Errorf("%w: %s", ErrInvalidTime, err) + } + minutes, err := strconv.Atoi(components[1]) + if err != nil { + return 0, fmt.Errorf("%w: %s", ErrInvalidTime, err) + } + + if hours > 23 || hours < 0 || minutes > 59 || minutes < 0 { + return 0, fmt.Errorf("%w: hours or minutes outside valid range", ErrInvalidTime) + } + return int32(60*hours + minutes), nil } // configureAndVerifyFlags verifies that c contains all the information required to execute a command. @@ -42,9 +109,23 @@ func configureFlags(c *cli.Config, commandName string, forceBLE bool) error { return ErrUnknownCommand } c.Flags = cli.FlagBLE - if info.requiresAuth { + if info.domain != protocol.DomainNone { + c.Domains = cli.DomainList{info.domain} + } + bleWake := forceBLE && commandName == "wake" + if bleWake || info.requiresAuth { + // Wake commands are special. When sending a wake command over the Internet, infotainment + // cannot authenticate the command because it's asleep. When sending the command over BLE, + // VCSEC _does_ authenticate the command before poking infotainment. c.Flags |= cli.FlagPrivateKey | cli.FlagVIN } + if bleWake { + // Normally, clients send out two handshake messages in parallel in order to reduce latency. + // One handshake with VCSEC, one handshake with infotainment. However, if we're sending a + // BLE wake command, then infotainment is (presumably) asleep, and so we should only try to + // handshake with VCSEC. + c.Domains = cli.DomainList{protocol.DomainVCSEC} + } if !info.requiresFleetAPI { c.Flags |= cli.FlagVIN } @@ -216,7 +297,7 @@ var commands = map[string]*Command{ return fmt.Errorf("failed to parse temperature: format as 22C or 72F") } if unit == "F" || unit == "f" { - degrees = (5.0 * degrees / 9.0) + 32.0 + degrees = (degrees - 32.0) * 5.0 / 9.0 } else if unit != "C" && unit != "c" { return fmt.Errorf("temperature units must be C or F") } @@ -229,12 +310,12 @@ var commands = map[string]*Command{ requiresFleetAPI: false, args: []Argument{ Argument{name: "PUBLIC_KEY", help: "file containing public key (or corresponding private key)"}, - Argument{name: "ROLE", help: "One of: owner, driver"}, + Argument{name: "ROLE", help: "One of: owner, driver, fm (fleet manager), vehicle_monitor, charging_manager"}, Argument{name: "FORM_FACTOR", help: "One of: nfc_card, ios_device, android_device, cloud_key"}, }, handler: func(ctx context.Context, acct *account.Account, car *vehicle.Vehicle, args map[string]string) error { - role := strings.ToUpper(args["ROLE"]) - if role != "OWNER" && role != "DRIVER" { + role, ok := keys.Role_value["ROLE_"+strings.ToUpper(args["ROLE"])] + if !ok { return fmt.Errorf("%w: invalid ROLE", ErrCommandLineArgs) } formFactor, ok := vcsec.KeyFormFactor_value["KEY_FORM_FACTOR_"+strings.ToUpper(args["FORM_FACTOR"])] @@ -245,7 +326,7 @@ var commands = map[string]*Command{ if err != nil { return fmt.Errorf("invalid public key: %s", err) } - return car.AddKey(ctx, publicKey, role == "OWNER", vcsec.KeyFormFactor(formFactor)) + return car.AddKeyWithRole(ctx, publicKey, keys.Role(role), vcsec.KeyFormFactor(formFactor)) }, }, "add-key-request": &Command{ @@ -254,12 +335,12 @@ var commands = map[string]*Command{ requiresFleetAPI: false, args: []Argument{ Argument{name: "PUBLIC_KEY", help: "file containing public key (or corresponding private key)"}, - Argument{name: "ROLE", help: "One of: owner, driver"}, + Argument{name: "ROLE", help: "One of: owner, driver, fm (fleet manager), vehicle_monitor, charging_manager"}, Argument{name: "FORM_FACTOR", help: "One of: nfc_card, ios_device, android_device, cloud_key"}, }, handler: func(ctx context.Context, acct *account.Account, car *vehicle.Vehicle, args map[string]string) error { - role := strings.ToUpper(args["ROLE"]) - if role != "OWNER" && role != "DRIVER" { + role, ok := keys.Role_value["ROLE_"+strings.ToUpper(args["ROLE"])] + if !ok { return fmt.Errorf("%w: invalid ROLE", ErrCommandLineArgs) } formFactor, ok := vcsec.KeyFormFactor_value["KEY_FORM_FACTOR_"+strings.ToUpper(args["FORM_FACTOR"])] @@ -270,7 +351,7 @@ var commands = map[string]*Command{ if err != nil { return fmt.Errorf("invalid public key: %s", err) } - if err := car.SendAddKeyRequest(ctx, publicKey, role == "OWNER", vcsec.KeyFormFactor(formFactor)); err != nil { + if err := car.SendAddKeyRequestWithRole(ctx, publicKey, keys.Role(role), vcsec.KeyFormFactor(formFactor)); err != nil { return err } fmt.Printf("Sent add-key request to %s. Confirm by tapping NFC card on center console.\n", car.VIN()) @@ -494,6 +575,15 @@ var commands = map[string]*Command{ return car.SetVolume(ctx, float32(volume)) }, }, + "media-toggle-playback": &Command{ + help: "Toggle between play/pause", + requiresAuth: true, + requiresFleetAPI: false, + args: []Argument{}, + handler: func(ctx context.Context, acct *account.Account, car *vehicle.Vehicle, args map[string]string) error { + return car.ToggleMediaPlayback(ctx) + }, + }, "software-update-start": &Command{ help: "Start software update after DELAY", requiresAuth: true, @@ -549,6 +639,30 @@ var commands = map[string]*Command{ return car.Wakeup(ctx) }, }, + "tonneau-open": &Command{ + help: "Open Cybertruck tonneau.", + requiresAuth: true, + requiresFleetAPI: false, + handler: func(ctx context.Context, acct *account.Account, car *vehicle.Vehicle, args map[string]string) error { + return car.OpenTonneau(ctx) + }, + }, + "tonneau-close": &Command{ + help: "Close Cybertruck tonneau.", + requiresAuth: true, + requiresFleetAPI: false, + handler: func(ctx context.Context, acct *account.Account, car *vehicle.Vehicle, args map[string]string) error { + return car.CloseTonneau(ctx) + }, + }, + "tonneau-stop": &Command{ + help: "Stop moving Cybertruck tonneau.", + requiresAuth: true, + requiresFleetAPI: false, + handler: func(ctx context.Context, acct *account.Account, car *vehicle.Vehicle, args map[string]string) error { + return car.StopTonneau(ctx) + }, + }, "trunk-open": &Command{ help: "Open vehicle trunk. Note that trunk-close only works on certain vehicle types.", requiresAuth: true, @@ -605,7 +719,7 @@ var commands = map[string]*Command{ }, "session-info": &Command{ help: "Retrieve session info for PUBLIC_KEY from DOMAIN", - requiresAuth: true, + requiresAuth: false, requiresFleetAPI: false, args: []Argument{ Argument{name: "PUBLIC_KEY", help: "file containing public key (or corresponding private key)"}, @@ -733,4 +847,257 @@ var commands = map[string]*Command{ return car.AutoSeatAndClimate(ctx, positions, enabled) }, }, + "windows-vent": &Command{ + help: "Vent all windows", + requiresAuth: true, + requiresFleetAPI: false, + handler: func(ctx context.Context, acct *account.Account, car *vehicle.Vehicle, args map[string]string) error { + return car.VentWindows(ctx) + }, + }, + "windows-close": &Command{ + help: "Close all windows", + requiresAuth: true, + requiresFleetAPI: false, + handler: func(ctx context.Context, acct *account.Account, car *vehicle.Vehicle, args map[string]string) error { + return car.CloseWindows(ctx) + }, + }, + "body-controller-state": &Command{ + help: "Fetch limited vehicle state information. Works over BLE when infotainment is asleep.", + domain: protocol.DomainVCSEC, + requiresAuth: false, + requiresFleetAPI: false, + handler: func(ctx context.Context, acct *account.Account, car *vehicle.Vehicle, args map[string]string) error { + info, err := car.BodyControllerState(ctx) + if err != nil { + return err + } + options := protojson.MarshalOptions{ + Indent: "\t", + UseEnumNumbers: false, + EmitUnpopulated: false, + EmitDefaultValues: true, + } + fmt.Println(options.Format(info)) + return nil + }, + }, + "erase-guest-data": &Command{ + help: "Erase Guest Mode user data", + requiresAuth: true, + requiresFleetAPI: false, + handler: func(ctx context.Context, acct *account.Account, car *vehicle.Vehicle, args map[string]string) error { + return car.EraseGuestData(ctx) + }, + }, + "charging-schedule-add": &Command{ + help: "Schedule charge for DAYS START_TIME-END_TIME at LATITUDE LONGITUDE. The END_TIME may be on the following day.", + requiresAuth: true, + requiresFleetAPI: false, + args: []Argument{ + Argument{name: "DAYS", help: "Comma-separated list of any of Sun, Mon, Tues, Wed, Thurs, Fri, Sat OR all OR weekdays"}, + Argument{name: "TIME", help: "Time interval to charge (24-hour clock). Examples: '22:00-6:00', '-6:00', '20:32-"}, + Argument{name: "LATITUDE", help: "Latitude of charging site"}, + Argument{name: "LONGITUDE", help: "Longitude of charging site"}, + }, + optional: []Argument{ + Argument{name: "REPEAT", help: "Set to 'once' or omit to repeat weekly"}, + Argument{name: "ID", help: "The ID of the charge schedule to modify. Not required for new schedules."}, + Argument{name: "ENABLED", help: "Whether the charge schedule is enabled. Expects 'true' or 'false'. Defaults to true."}, + }, + handler: func(ctx context.Context, acct *account.Account, car *vehicle.Vehicle, args map[string]string) error { + var err error + schedule := vehicle.ChargeSchedule{ + Id: uint64(time.Now().Unix()), + Enabled: true, + } + + if enabledStr, ok := args["ENABLED"]; ok { + schedule.Enabled = enabledStr == "true" + } + + schedule.DaysOfWeek, err = GetDays(args["DAYS"]) + if err != nil { + return err + } + + r := strings.Split(args["TIME"], "-") + if len(r) != 2 { + return errors.New("invalid time range") + } + + if r[0] != "" { + schedule.StartTime, err = MinutesAfterMidnight(r[0]) + schedule.StartEnabled = true + if err != nil { + return err + } + } + + if r[1] != "" { + schedule.EndTime, err = MinutesAfterMidnight(r[1]) + schedule.EndEnabled = true + if err != nil { + return err + } + } + + schedule.Latitude, err = GetDegree(args["LATITUDE"]) + if err != nil { + return err + } + + schedule.Longitude, err = GetDegree(args["LONGITUDE"]) + if err != nil { + return err + } + + if repeatPolicy, ok := args["REPEAT"]; ok && repeatPolicy == "once" { + schedule.OneTime = true + } + + if err := car.AddChargeSchedule(ctx, &schedule); err != nil { + return err + } + fmt.Printf("%d\n", schedule.Id) + return nil + }, + }, + "charging-schedule-remove": { + help: "Removes charging schedule of TYPE [ID]", + requiresAuth: true, + requiresFleetAPI: false, + args: []Argument{ + Argument{name: "TYPE", help: "home|work|other|id"}, + }, + optional: []Argument{ + Argument{name: "ID", help: "numeric ID of schedule to remove when TYPE set to id"}, + }, + handler: func(ctx context.Context, acct *account.Account, car *vehicle.Vehicle, args map[string]string) error { + var home, work, other bool + switch strings.ToUpper(args["TYPE"]) { + case "ID": + if idStr, ok := args["ID"]; ok { + id, err := strconv.ParseUint(idStr, 10, 64) + if err != nil { + return errors.New("expected numeric ID") + } + return car.RemoveChargeSchedule(ctx, id) + } else { + return errors.New("missing schedule ID") + } + case "HOME": + home = true + case "WORK": + work = true + case "OTHER": + other = true + default: + return errors.New("TYPE must be home|work|other|id") + } + return car.BatchRemoveChargeSchedules(ctx, home, work, other) + }, + }, + "precondition-schedule-add": &Command{ + help: "Schedule precondition for DAYS TIME at LATITUDE LONGITUDE.", + requiresAuth: true, + requiresFleetAPI: false, + args: []Argument{ + Argument{name: "DAYS", help: "Comma-separated list of any of Sun, Mon, Tues, Wed, Thurs, Fri, Sat OR all OR weekdays"}, + Argument{name: "TIME", help: "Time to precondition by. Example: '22:00'"}, + Argument{name: "LATITUDE", help: "Latitude of location to precondition at."}, + Argument{name: "LONGITUDE", help: "Longitude of location to precondition at."}, + }, + optional: []Argument{ + Argument{name: "REPEAT", help: "Set to 'once' or omit to repeat weekly"}, + Argument{name: "ID", help: "The ID of the precondition schedule to modify. Not required for new schedules."}, + Argument{name: "ENABLED", help: "Whether the precondition schedule is enabled. Expects 'true' or 'false'. Defaults to true."}, + }, + handler: func(ctx context.Context, acct *account.Account, car *vehicle.Vehicle, args map[string]string) error { + var err error + schedule := vehicle.PreconditionSchedule{ + Id: uint64(time.Now().Unix()), + Enabled: true, + } + + if enabledStr, ok := args["ENABLED"]; ok { + schedule.Enabled = enabledStr == "true" + } + + if idStr, ok := args["ID"]; ok { + id, err := strconv.ParseUint(idStr, 10, 64) + if err != nil { + return errors.New("expected numeric ID") + } + schedule.Id = id + } + + schedule.DaysOfWeek, err = GetDays(args["DAYS"]) + if err != nil { + return err + } + + if timeStr, ok := args["TIME"]; ok { + schedule.PreconditionTime, err = MinutesAfterMidnight(timeStr) + } else { + return errors.New("expected TIME") + } + + schedule.Latitude, err = GetDegree(args["LATITUDE"]) + if err != nil { + return err + } + + schedule.Longitude, err = GetDegree(args["LONGITUDE"]) + if err != nil { + return err + } + + if repeatPolicy, ok := args["REPEAT"]; ok && repeatPolicy == "once" { + schedule.OneTime = true + } + + if err := car.AddPreconditionSchedule(ctx, &schedule); err != nil { + return err + } + fmt.Printf("%d\n", schedule.Id) + return nil + }, + }, + "precondition-schedule-remove": { + help: "Removes precondition schedule of TYPE [ID]", + requiresAuth: true, + requiresFleetAPI: false, + args: []Argument{ + Argument{name: "TYPE", help: "home|work|other|id"}, + }, + optional: []Argument{ + Argument{name: "ID", help: "numeric ID of schedule to remove when TYPE set to id"}, + }, + handler: func(ctx context.Context, acct *account.Account, car *vehicle.Vehicle, args map[string]string) error { + var home, work, other bool + switch strings.ToUpper(args["TYPE"]) { + case "ID": + if idStr, ok := args["ID"]; ok { + id, err := strconv.ParseUint(idStr, 10, 64) + if err != nil { + return errors.New("expected numeric ID") + } + return car.RemoveChargeSchedule(ctx, id) + } else { + return errors.New("missing schedule ID") + } + case "HOME": + home = true + case "WORK": + work = true + case "OTHER": + other = true + default: + return errors.New("TYPE must be home|work|other|id") + } + return car.BatchRemovePreconditionSchedules(ctx, home, work, other) + }, + }, } diff --git a/pkg/cli/config.go b/pkg/cli/config.go index 856677e..0a64ea0 100644 --- a/pkg/cli/config.go +++ b/pkg/cli/config.go @@ -67,34 +67,39 @@ import ( "github.com/99designs/keyring" ) -// domainNames is used to translate domains provided at the command line into native protocol.Domain -// values. -type domainNames []string +var DomainsByName = map[string]protocol.Domain{ + "VCSEC": protocol.DomainVCSEC, + "INFOTAINMENT": protocol.DomainInfotainment, +} -func (d *domainNames) Set(value string) error { - *d = append(*d, value) - return nil +var DomainNames = map[protocol.Domain]string{ + protocol.DomainVCSEC: "VCSEC", + protocol.DomainInfotainment: "INFOTAINMENT", } -func (d *domainNames) String() string { - return strings.Join(*d, ",") +// DomainList is used to translate domains provided at the command line into native protocol.Domain +// values. +type DomainList []protocol.Domain + +// Set updates a DomainList from a command-line argument. +func (d *DomainList) Set(value string) error { + canonicalName := strings.ToUpper(value) + if domain, ok := DomainsByName[canonicalName]; ok { + *d = append(*d, domain) + } else { + return fmt.Errorf("unknown domain '%s'", value) + } + return nil } -func (d *domainNames) ToDomains() ([]protocol.Domain, error) { - mapping := map[string]protocol.Domain{ - "VCSEC": protocol.DomainVCSEC, - "INFOTAINMENT": protocol.DomainInfotainment, - } - var domains []protocol.Domain - for _, name := range *d { - canonicalName := strings.ToUpper(name) - if domain, ok := mapping[canonicalName]; ok { - domains = append(domains, domain) - } else { - return nil, fmt.Errorf("unknown domain '%s'", name) +func (d *DomainList) String() string { + var names []string + for _, domain := range *d { + if name, ok := DomainNames[domain]; ok { + names = append(names, name) } } - return domains, nil + return strings.Join(names, ",") } // Environment variable names used are used by [Config.ReadFromEnvironment] to set common parameters. @@ -145,9 +150,9 @@ type Config struct { BackendType backendType Debug bool // Enable keyring debug messages - // DomainNames can limit a vehicle connection to relevant subsystems, which can reduce + // Domains can limit a vehicle connection to relevant subsystems, which can reduce // connection latency and avoid waking up the infotainment system unnecessarily. - DomainNames domainNames + Domains DomainList password *string sessions *cache.SessionCache @@ -183,7 +188,7 @@ func (c *Config) RegisterCommandLineFlags() { flag.StringVar(&c.CacheFilename, "session-cache", "", "Load session info cache from `file`. Defaults to $TESLA_CACHE_FILE.") flag.StringVar(&c.KeyringKeyName, "key-name", "", "System keyring `name` for private key. Defaults to $TESLA_KEY_NAME.") flag.StringVar(&c.KeyFilename, "key-file", "", "A `file` containing private key. Defaults to $TESLA_KEY_FILE.") - flag.Var(&c.DomainNames, "domain", "Domains to connect to (can be repeated; omit for all)") + flag.Var(&c.Domains, "domain", "Domains to connect to (can be repeated; omit for all)") } if c.Flags.isSet(FlagOAuth) { flag.StringVar(&c.KeyringTokenName, "token-name", "", "System keyring `name` for OAuth token. Defaults to $TESLA_TOKEN_NAME.") @@ -365,13 +370,8 @@ func (c *Config) Connect(ctx context.Context) (acct *account.Account, car *vehic return nil, nil, err } if skey != nil { - log.Info("Securing connction...") - domains, err := c.DomainNames.ToDomains() - if err != nil { - return nil, nil, err - } - - if err := car.StartSession(ctx, domains); err != nil { + log.Info("Securing connection...") + if err := car.StartSession(ctx, c.Domains); err != nil { return nil, nil, err } } diff --git a/pkg/protocol/domains.go b/pkg/protocol/domains.go index 88598e6..aff5b86 100644 --- a/pkg/protocol/domains.go +++ b/pkg/protocol/domains.go @@ -9,6 +9,7 @@ import ( type Domain = universal.Domain const ( + DomainNone = universal.Domain_DOMAIN_BROADCAST // DomainVCSEC handles (un)lock, remote start drive, keychain management commands. DomainVCSEC = universal.Domain_DOMAIN_VEHICLE_SECURITY // DomainInfotainment handles commands that terminate on the vehicle's infotainment system. diff --git a/pkg/protocol/protobuf/car_server.proto b/pkg/protocol/protobuf/car_server.proto index b640a46..aae3686 100644 --- a/pkg/protocol/protobuf/car_server.proto +++ b/pkg/protocol/protobuf/car_server.proto @@ -31,6 +31,7 @@ message VehicleAction { HvacSetPreconditioningMaxAction hvacSetPreconditioningMaxAction = 12; HvacSteeringWheelHeaterAction hvacSteeringWheelHeaterAction = 13; HvacTemperatureAdjustmentAction hvacTemperatureAdjustmentAction = 14; + MediaPlayAction mediaPlayAction = 15; MediaUpdateVolume mediaUpdateVolume = 16; MediaNextFavorite mediaNextFavorite = 17; MediaPreviousFavorite mediaPreviousFavorite = 18; @@ -65,6 +66,12 @@ message VehicleAction { EraseUserDataAction eraseUserDataAction = 72; VehicleControlSetPinToDriveAction vehicleControlSetPinToDriveAction = 77; VehicleControlResetPinToDriveAction vehicleControlResetPinToDriveAction = 78; + ChargeSchedule addChargeScheduleAction = 97; + RemoveChargeScheduleAction removeChargeScheduleAction = 98; + PreconditionSchedule addPreconditionScheduleAction = 99; + RemovePreconditionScheduleAction removePreconditionScheduleAction = 100; + BatchRemovePreconditionSchedulesAction batchRemovePreconditionSchedulesAction = 107; + BatchRemoveChargeSchedulesAction batchRemoveChargeSchedulesAction = 108; } } @@ -258,6 +265,9 @@ message Superchargers { string out_of_order_stalls_names = 20; } +message MediaPlayAction { +} + message MediaUpdateVolume{ reserved 2; oneof media_volume { @@ -322,7 +332,7 @@ message VehicleControlTriggerHomelinkAction { } message VehicleControlWindowAction { - LatLong location = 1; + reserved 1; // Location not required for vehicles that support this protocol. oneof action { Void unknown = 2; Void vent = 3; @@ -385,6 +395,26 @@ message SetChargingAmpsAction { int32 charging_amps = 1; } +message RemoveChargeScheduleAction { + uint64 id = 1; // datetime in epoch time +} + +message BatchRemoveChargeSchedulesAction { + bool home = 1; + bool work = 2; + bool other = 3; // Delete non-home and non-work charge schedules +} + +message BatchRemovePreconditionSchedulesAction { + bool home = 1; + bool work = 2; + bool other = 3; // Delete non-home and non-work precondition schedules +} + +message RemovePreconditionScheduleAction { + uint64 id = 1; // datetime in epoch time +} + message SetCabinOverheatProtectionAction { bool on = 1; bool fan_only = 2; diff --git a/pkg/protocol/protobuf/carserver/car_server.pb.go b/pkg/protocol/protobuf/carserver/car_server.pb.go index 589b848..86cc95a 100644 --- a/pkg/protocol/protobuf/carserver/car_server.pb.go +++ b/pkg/protocol/protobuf/carserver/car_server.pb.go @@ -267,7 +267,7 @@ func (x AutoSeatClimateAction_AutoSeatPosition_E) Number() protoreflect.EnumNumb // Deprecated: Use AutoSeatClimateAction_AutoSeatPosition_E.Descriptor instead. func (AutoSeatClimateAction_AutoSeatPosition_E) EnumDescriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{37, 0} + return file_car_server_proto_rawDescGZIP(), []int{38, 0} } type HvacClimateKeeperAction_ClimateKeeperAction_E int32 @@ -319,7 +319,7 @@ func (x HvacClimateKeeperAction_ClimateKeeperAction_E) Number() protoreflect.Enu // Deprecated: Use HvacClimateKeeperAction_ClimateKeeperAction_E.Descriptor instead. func (HvacClimateKeeperAction_ClimateKeeperAction_E) EnumDescriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{41, 0} + return file_car_server_proto_rawDescGZIP(), []int{42, 0} } type Action struct { @@ -328,6 +328,7 @@ type Action struct { unknownFields protoimpl.UnknownFields // Types that are assignable to ActionMsg: + // // *Action_VehicleAction ActionMsg isAction_ActionMsg `protobuf_oneof:"action_msg"` } @@ -394,6 +395,7 @@ type VehicleAction struct { unknownFields protoimpl.UnknownFields // Types that are assignable to VehicleActionMsg: + // // *VehicleAction_ChargingSetLimitAction // *VehicleAction_ChargingStartStopAction // *VehicleAction_DrivingClearSpeedLimitPinAction @@ -403,6 +405,7 @@ type VehicleAction struct { // *VehicleAction_HvacSetPreconditioningMaxAction // *VehicleAction_HvacSteeringWheelHeaterAction // *VehicleAction_HvacTemperatureAdjustmentAction + // *VehicleAction_MediaPlayAction // *VehicleAction_MediaUpdateVolume // *VehicleAction_MediaNextFavorite // *VehicleAction_MediaPreviousFavorite @@ -437,6 +440,12 @@ type VehicleAction struct { // *VehicleAction_EraseUserDataAction // *VehicleAction_VehicleControlSetPinToDriveAction // *VehicleAction_VehicleControlResetPinToDriveAction + // *VehicleAction_AddChargeScheduleAction + // *VehicleAction_RemoveChargeScheduleAction + // *VehicleAction_AddPreconditionScheduleAction + // *VehicleAction_RemovePreconditionScheduleAction + // *VehicleAction_BatchRemovePreconditionSchedulesAction + // *VehicleAction_BatchRemoveChargeSchedulesAction VehicleActionMsg isVehicleAction_VehicleActionMsg `protobuf_oneof:"vehicle_action_msg"` } @@ -542,6 +551,13 @@ func (x *VehicleAction) GetHvacTemperatureAdjustmentAction() *HvacTemperatureAdj return nil } +func (x *VehicleAction) GetMediaPlayAction() *MediaPlayAction { + if x, ok := x.GetVehicleActionMsg().(*VehicleAction_MediaPlayAction); ok { + return x.MediaPlayAction + } + return nil +} + func (x *VehicleAction) GetMediaUpdateVolume() *MediaUpdateVolume { if x, ok := x.GetVehicleActionMsg().(*VehicleAction_MediaUpdateVolume); ok { return x.MediaUpdateVolume @@ -780,6 +796,48 @@ func (x *VehicleAction) GetVehicleControlResetPinToDriveAction() *VehicleControl return nil } +func (x *VehicleAction) GetAddChargeScheduleAction() *ChargeSchedule { + if x, ok := x.GetVehicleActionMsg().(*VehicleAction_AddChargeScheduleAction); ok { + return x.AddChargeScheduleAction + } + return nil +} + +func (x *VehicleAction) GetRemoveChargeScheduleAction() *RemoveChargeScheduleAction { + if x, ok := x.GetVehicleActionMsg().(*VehicleAction_RemoveChargeScheduleAction); ok { + return x.RemoveChargeScheduleAction + } + return nil +} + +func (x *VehicleAction) GetAddPreconditionScheduleAction() *PreconditionSchedule { + if x, ok := x.GetVehicleActionMsg().(*VehicleAction_AddPreconditionScheduleAction); ok { + return x.AddPreconditionScheduleAction + } + return nil +} + +func (x *VehicleAction) GetRemovePreconditionScheduleAction() *RemovePreconditionScheduleAction { + if x, ok := x.GetVehicleActionMsg().(*VehicleAction_RemovePreconditionScheduleAction); ok { + return x.RemovePreconditionScheduleAction + } + return nil +} + +func (x *VehicleAction) GetBatchRemovePreconditionSchedulesAction() *BatchRemovePreconditionSchedulesAction { + if x, ok := x.GetVehicleActionMsg().(*VehicleAction_BatchRemovePreconditionSchedulesAction); ok { + return x.BatchRemovePreconditionSchedulesAction + } + return nil +} + +func (x *VehicleAction) GetBatchRemoveChargeSchedulesAction() *BatchRemoveChargeSchedulesAction { + if x, ok := x.GetVehicleActionMsg().(*VehicleAction_BatchRemoveChargeSchedulesAction); ok { + return x.BatchRemoveChargeSchedulesAction + } + return nil +} + type isVehicleAction_VehicleActionMsg interface { isVehicleAction_VehicleActionMsg() } @@ -820,6 +878,10 @@ type VehicleAction_HvacTemperatureAdjustmentAction struct { HvacTemperatureAdjustmentAction *HvacTemperatureAdjustmentAction `protobuf:"bytes,14,opt,name=hvacTemperatureAdjustmentAction,proto3,oneof"` } +type VehicleAction_MediaPlayAction struct { + MediaPlayAction *MediaPlayAction `protobuf:"bytes,15,opt,name=mediaPlayAction,proto3,oneof"` +} + type VehicleAction_MediaUpdateVolume struct { MediaUpdateVolume *MediaUpdateVolume `protobuf:"bytes,16,opt,name=mediaUpdateVolume,proto3,oneof"` } @@ -956,6 +1018,30 @@ type VehicleAction_VehicleControlResetPinToDriveAction struct { VehicleControlResetPinToDriveAction *VehicleControlResetPinToDriveAction `protobuf:"bytes,78,opt,name=vehicleControlResetPinToDriveAction,proto3,oneof"` } +type VehicleAction_AddChargeScheduleAction struct { + AddChargeScheduleAction *ChargeSchedule `protobuf:"bytes,97,opt,name=addChargeScheduleAction,proto3,oneof"` +} + +type VehicleAction_RemoveChargeScheduleAction struct { + RemoveChargeScheduleAction *RemoveChargeScheduleAction `protobuf:"bytes,98,opt,name=removeChargeScheduleAction,proto3,oneof"` +} + +type VehicleAction_AddPreconditionScheduleAction struct { + AddPreconditionScheduleAction *PreconditionSchedule `protobuf:"bytes,99,opt,name=addPreconditionScheduleAction,proto3,oneof"` +} + +type VehicleAction_RemovePreconditionScheduleAction struct { + RemovePreconditionScheduleAction *RemovePreconditionScheduleAction `protobuf:"bytes,100,opt,name=removePreconditionScheduleAction,proto3,oneof"` +} + +type VehicleAction_BatchRemovePreconditionSchedulesAction struct { + BatchRemovePreconditionSchedulesAction *BatchRemovePreconditionSchedulesAction `protobuf:"bytes,107,opt,name=batchRemovePreconditionSchedulesAction,proto3,oneof"` +} + +type VehicleAction_BatchRemoveChargeSchedulesAction struct { + BatchRemoveChargeSchedulesAction *BatchRemoveChargeSchedulesAction `protobuf:"bytes,108,opt,name=batchRemoveChargeSchedulesAction,proto3,oneof"` +} + func (*VehicleAction_ChargingSetLimitAction) isVehicleAction_VehicleActionMsg() {} func (*VehicleAction_ChargingStartStopAction) isVehicleAction_VehicleActionMsg() {} @@ -974,6 +1060,8 @@ func (*VehicleAction_HvacSteeringWheelHeaterAction) isVehicleAction_VehicleActio func (*VehicleAction_HvacTemperatureAdjustmentAction) isVehicleAction_VehicleActionMsg() {} +func (*VehicleAction_MediaPlayAction) isVehicleAction_VehicleActionMsg() {} + func (*VehicleAction_MediaUpdateVolume) isVehicleAction_VehicleActionMsg() {} func (*VehicleAction_MediaNextFavorite) isVehicleAction_VehicleActionMsg() {} @@ -1042,6 +1130,18 @@ func (*VehicleAction_VehicleControlSetPinToDriveAction) isVehicleAction_VehicleA func (*VehicleAction_VehicleControlResetPinToDriveAction) isVehicleAction_VehicleActionMsg() {} +func (*VehicleAction_AddChargeScheduleAction) isVehicleAction_VehicleActionMsg() {} + +func (*VehicleAction_RemoveChargeScheduleAction) isVehicleAction_VehicleActionMsg() {} + +func (*VehicleAction_AddPreconditionScheduleAction) isVehicleAction_VehicleActionMsg() {} + +func (*VehicleAction_RemovePreconditionScheduleAction) isVehicleAction_VehicleActionMsg() {} + +func (*VehicleAction_BatchRemovePreconditionSchedulesAction) isVehicleAction_VehicleActionMsg() {} + +func (*VehicleAction_BatchRemoveChargeSchedulesAction) isVehicleAction_VehicleActionMsg() {} + type EraseUserDataAction struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1096,6 +1196,7 @@ type Response struct { ActionStatus *ActionStatus `protobuf:"bytes,1,opt,name=actionStatus,proto3" json:"actionStatus,omitempty"` // Types that are assignable to ResponseMsg: + // // *Response_GetSessionInfoResponse // *Response_GetNearbyChargingSites // *Response_Ping @@ -1252,6 +1353,7 @@ type ResultReason struct { unknownFields protoimpl.UnknownFields // Types that are assignable to Reason: + // // *ResultReason_PlainText Reason isResultReason_Reason `protobuf_oneof:"reason"` } @@ -1428,6 +1530,7 @@ type ChargingStartStopAction struct { unknownFields protoimpl.UnknownFields // Types that are assignable to ChargingAction: + // // *ChargingStartStopAction_Unknown // *ChargingStartStopAction_Start // *ChargingStartStopAction_StartStandard @@ -2372,12 +2475,51 @@ func (x *Superchargers) GetOutOfOrderStallsNames() string { return "" } +type MediaPlayAction struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields +} + +func (x *MediaPlayAction) Reset() { + *x = MediaPlayAction{} + if protoimpl.UnsafeEnabled { + mi := &file_car_server_proto_msgTypes[21] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *MediaPlayAction) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*MediaPlayAction) ProtoMessage() {} + +func (x *MediaPlayAction) ProtoReflect() protoreflect.Message { + mi := &file_car_server_proto_msgTypes[21] + 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 MediaPlayAction.ProtoReflect.Descriptor instead. +func (*MediaPlayAction) Descriptor() ([]byte, []int) { + return file_car_server_proto_rawDescGZIP(), []int{21} +} + type MediaUpdateVolume struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // Types that are assignable to MediaVolume: + // // *MediaUpdateVolume_VolumeDelta // *MediaUpdateVolume_VolumeAbsoluteFloat MediaVolume isMediaUpdateVolume_MediaVolume `protobuf_oneof:"media_volume"` @@ -2386,7 +2528,7 @@ type MediaUpdateVolume struct { func (x *MediaUpdateVolume) Reset() { *x = MediaUpdateVolume{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[21] + mi := &file_car_server_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2399,7 +2541,7 @@ func (x *MediaUpdateVolume) String() string { func (*MediaUpdateVolume) ProtoMessage() {} func (x *MediaUpdateVolume) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[21] + mi := &file_car_server_proto_msgTypes[22] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2412,7 +2554,7 @@ func (x *MediaUpdateVolume) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaUpdateVolume.ProtoReflect.Descriptor instead. func (*MediaUpdateVolume) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{21} + return file_car_server_proto_rawDescGZIP(), []int{22} } func (m *MediaUpdateVolume) GetMediaVolume() isMediaUpdateVolume_MediaVolume { @@ -2461,7 +2603,7 @@ type MediaNextFavorite struct { func (x *MediaNextFavorite) Reset() { *x = MediaNextFavorite{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[22] + mi := &file_car_server_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2474,7 +2616,7 @@ func (x *MediaNextFavorite) String() string { func (*MediaNextFavorite) ProtoMessage() {} func (x *MediaNextFavorite) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[22] + mi := &file_car_server_proto_msgTypes[23] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2487,7 +2629,7 @@ func (x *MediaNextFavorite) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaNextFavorite.ProtoReflect.Descriptor instead. func (*MediaNextFavorite) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{22} + return file_car_server_proto_rawDescGZIP(), []int{23} } type MediaPreviousFavorite struct { @@ -2499,7 +2641,7 @@ type MediaPreviousFavorite struct { func (x *MediaPreviousFavorite) Reset() { *x = MediaPreviousFavorite{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[23] + mi := &file_car_server_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2512,7 +2654,7 @@ func (x *MediaPreviousFavorite) String() string { func (*MediaPreviousFavorite) ProtoMessage() {} func (x *MediaPreviousFavorite) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[23] + mi := &file_car_server_proto_msgTypes[24] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2525,7 +2667,7 @@ func (x *MediaPreviousFavorite) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaPreviousFavorite.ProtoReflect.Descriptor instead. func (*MediaPreviousFavorite) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{23} + return file_car_server_proto_rawDescGZIP(), []int{24} } type MediaNextTrack struct { @@ -2537,7 +2679,7 @@ type MediaNextTrack struct { func (x *MediaNextTrack) Reset() { *x = MediaNextTrack{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[24] + mi := &file_car_server_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2550,7 +2692,7 @@ func (x *MediaNextTrack) String() string { func (*MediaNextTrack) ProtoMessage() {} func (x *MediaNextTrack) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[24] + mi := &file_car_server_proto_msgTypes[25] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2563,7 +2705,7 @@ func (x *MediaNextTrack) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaNextTrack.ProtoReflect.Descriptor instead. func (*MediaNextTrack) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{24} + return file_car_server_proto_rawDescGZIP(), []int{25} } type MediaPreviousTrack struct { @@ -2575,7 +2717,7 @@ type MediaPreviousTrack struct { func (x *MediaPreviousTrack) Reset() { *x = MediaPreviousTrack{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[25] + mi := &file_car_server_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2588,7 +2730,7 @@ func (x *MediaPreviousTrack) String() string { func (*MediaPreviousTrack) ProtoMessage() {} func (x *MediaPreviousTrack) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[25] + mi := &file_car_server_proto_msgTypes[26] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2601,7 +2743,7 @@ func (x *MediaPreviousTrack) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaPreviousTrack.ProtoReflect.Descriptor instead. func (*MediaPreviousTrack) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{25} + return file_car_server_proto_rawDescGZIP(), []int{26} } type VehicleControlCancelSoftwareUpdateAction struct { @@ -2613,7 +2755,7 @@ type VehicleControlCancelSoftwareUpdateAction struct { func (x *VehicleControlCancelSoftwareUpdateAction) Reset() { *x = VehicleControlCancelSoftwareUpdateAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[26] + mi := &file_car_server_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2626,7 +2768,7 @@ func (x *VehicleControlCancelSoftwareUpdateAction) String() string { func (*VehicleControlCancelSoftwareUpdateAction) ProtoMessage() {} func (x *VehicleControlCancelSoftwareUpdateAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[26] + mi := &file_car_server_proto_msgTypes[27] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2639,7 +2781,7 @@ func (x *VehicleControlCancelSoftwareUpdateAction) ProtoReflect() protoreflect.M // Deprecated: Use VehicleControlCancelSoftwareUpdateAction.ProtoReflect.Descriptor instead. func (*VehicleControlCancelSoftwareUpdateAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{26} + return file_car_server_proto_rawDescGZIP(), []int{27} } type VehicleControlFlashLightsAction struct { @@ -2651,7 +2793,7 @@ type VehicleControlFlashLightsAction struct { func (x *VehicleControlFlashLightsAction) Reset() { *x = VehicleControlFlashLightsAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[27] + mi := &file_car_server_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2664,7 +2806,7 @@ func (x *VehicleControlFlashLightsAction) String() string { func (*VehicleControlFlashLightsAction) ProtoMessage() {} func (x *VehicleControlFlashLightsAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[27] + mi := &file_car_server_proto_msgTypes[28] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2677,7 +2819,7 @@ func (x *VehicleControlFlashLightsAction) ProtoReflect() protoreflect.Message { // Deprecated: Use VehicleControlFlashLightsAction.ProtoReflect.Descriptor instead. func (*VehicleControlFlashLightsAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{27} + return file_car_server_proto_rawDescGZIP(), []int{28} } type VehicleControlHonkHornAction struct { @@ -2689,7 +2831,7 @@ type VehicleControlHonkHornAction struct { func (x *VehicleControlHonkHornAction) Reset() { *x = VehicleControlHonkHornAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[28] + mi := &file_car_server_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2702,7 +2844,7 @@ func (x *VehicleControlHonkHornAction) String() string { func (*VehicleControlHonkHornAction) ProtoMessage() {} func (x *VehicleControlHonkHornAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[28] + mi := &file_car_server_proto_msgTypes[29] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2715,7 +2857,7 @@ func (x *VehicleControlHonkHornAction) ProtoReflect() protoreflect.Message { // Deprecated: Use VehicleControlHonkHornAction.ProtoReflect.Descriptor instead. func (*VehicleControlHonkHornAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{28} + return file_car_server_proto_rawDescGZIP(), []int{29} } type VehicleControlResetValetPinAction struct { @@ -2727,7 +2869,7 @@ type VehicleControlResetValetPinAction struct { func (x *VehicleControlResetValetPinAction) Reset() { *x = VehicleControlResetValetPinAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[29] + mi := &file_car_server_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2740,7 +2882,7 @@ func (x *VehicleControlResetValetPinAction) String() string { func (*VehicleControlResetValetPinAction) ProtoMessage() {} func (x *VehicleControlResetValetPinAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[29] + mi := &file_car_server_proto_msgTypes[30] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2753,7 +2895,7 @@ func (x *VehicleControlResetValetPinAction) ProtoReflect() protoreflect.Message // Deprecated: Use VehicleControlResetValetPinAction.ProtoReflect.Descriptor instead. func (*VehicleControlResetValetPinAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{29} + return file_car_server_proto_rawDescGZIP(), []int{30} } type VehicleControlScheduleSoftwareUpdateAction struct { @@ -2767,7 +2909,7 @@ type VehicleControlScheduleSoftwareUpdateAction struct { func (x *VehicleControlScheduleSoftwareUpdateAction) Reset() { *x = VehicleControlScheduleSoftwareUpdateAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[30] + mi := &file_car_server_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2780,7 +2922,7 @@ func (x *VehicleControlScheduleSoftwareUpdateAction) String() string { func (*VehicleControlScheduleSoftwareUpdateAction) ProtoMessage() {} func (x *VehicleControlScheduleSoftwareUpdateAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[30] + mi := &file_car_server_proto_msgTypes[31] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2793,7 +2935,7 @@ func (x *VehicleControlScheduleSoftwareUpdateAction) ProtoReflect() protoreflect // Deprecated: Use VehicleControlScheduleSoftwareUpdateAction.ProtoReflect.Descriptor instead. func (*VehicleControlScheduleSoftwareUpdateAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{30} + return file_car_server_proto_rawDescGZIP(), []int{31} } func (x *VehicleControlScheduleSoftwareUpdateAction) GetOffsetSec() int32 { @@ -2814,7 +2956,7 @@ type VehicleControlSetSentryModeAction struct { func (x *VehicleControlSetSentryModeAction) Reset() { *x = VehicleControlSetSentryModeAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[31] + mi := &file_car_server_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2827,7 +2969,7 @@ func (x *VehicleControlSetSentryModeAction) String() string { func (*VehicleControlSetSentryModeAction) ProtoMessage() {} func (x *VehicleControlSetSentryModeAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[31] + mi := &file_car_server_proto_msgTypes[32] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2840,7 +2982,7 @@ func (x *VehicleControlSetSentryModeAction) ProtoReflect() protoreflect.Message // Deprecated: Use VehicleControlSetSentryModeAction.ProtoReflect.Descriptor instead. func (*VehicleControlSetSentryModeAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{31} + return file_car_server_proto_rawDescGZIP(), []int{32} } func (x *VehicleControlSetSentryModeAction) GetOn() bool { @@ -2862,7 +3004,7 @@ type VehicleControlSetValetModeAction struct { func (x *VehicleControlSetValetModeAction) Reset() { *x = VehicleControlSetValetModeAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[32] + mi := &file_car_server_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2875,7 +3017,7 @@ func (x *VehicleControlSetValetModeAction) String() string { func (*VehicleControlSetValetModeAction) ProtoMessage() {} func (x *VehicleControlSetValetModeAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[32] + mi := &file_car_server_proto_msgTypes[33] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2888,7 +3030,7 @@ func (x *VehicleControlSetValetModeAction) ProtoReflect() protoreflect.Message { // Deprecated: Use VehicleControlSetValetModeAction.ProtoReflect.Descriptor instead. func (*VehicleControlSetValetModeAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{32} + return file_car_server_proto_rawDescGZIP(), []int{33} } func (x *VehicleControlSetValetModeAction) GetOn() bool { @@ -2911,10 +3053,12 @@ type VehicleControlSunroofOpenCloseAction struct { unknownFields protoimpl.UnknownFields // Types that are assignable to SunroofLevel: + // // *VehicleControlSunroofOpenCloseAction_AbsoluteLevel // *VehicleControlSunroofOpenCloseAction_DeltaLevel SunroofLevel isVehicleControlSunroofOpenCloseAction_SunroofLevel `protobuf_oneof:"sunroof_level"` // Types that are assignable to Action: + // // *VehicleControlSunroofOpenCloseAction_Vent // *VehicleControlSunroofOpenCloseAction_Close // *VehicleControlSunroofOpenCloseAction_Open @@ -2924,7 +3068,7 @@ type VehicleControlSunroofOpenCloseAction struct { func (x *VehicleControlSunroofOpenCloseAction) Reset() { *x = VehicleControlSunroofOpenCloseAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[33] + mi := &file_car_server_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2937,7 +3081,7 @@ func (x *VehicleControlSunroofOpenCloseAction) String() string { func (*VehicleControlSunroofOpenCloseAction) ProtoMessage() {} func (x *VehicleControlSunroofOpenCloseAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[33] + mi := &file_car_server_proto_msgTypes[34] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2950,7 +3094,7 @@ func (x *VehicleControlSunroofOpenCloseAction) ProtoReflect() protoreflect.Messa // Deprecated: Use VehicleControlSunroofOpenCloseAction.ProtoReflect.Descriptor instead. func (*VehicleControlSunroofOpenCloseAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{33} + return file_car_server_proto_rawDescGZIP(), []int{34} } func (m *VehicleControlSunroofOpenCloseAction) GetSunroofLevel() isVehicleControlSunroofOpenCloseAction_SunroofLevel { @@ -3054,7 +3198,7 @@ type VehicleControlTriggerHomelinkAction struct { func (x *VehicleControlTriggerHomelinkAction) Reset() { *x = VehicleControlTriggerHomelinkAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[34] + mi := &file_car_server_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3067,7 +3211,7 @@ func (x *VehicleControlTriggerHomelinkAction) String() string { func (*VehicleControlTriggerHomelinkAction) ProtoMessage() {} func (x *VehicleControlTriggerHomelinkAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[34] + mi := &file_car_server_proto_msgTypes[35] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3080,7 +3224,7 @@ func (x *VehicleControlTriggerHomelinkAction) ProtoReflect() protoreflect.Messag // Deprecated: Use VehicleControlTriggerHomelinkAction.ProtoReflect.Descriptor instead. func (*VehicleControlTriggerHomelinkAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{34} + return file_car_server_proto_rawDescGZIP(), []int{35} } func (x *VehicleControlTriggerHomelinkAction) GetLocation() *LatLong { @@ -3102,8 +3246,8 @@ type VehicleControlWindowAction struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - Location *LatLong `protobuf:"bytes,1,opt,name=location,proto3" json:"location,omitempty"` // Types that are assignable to Action: + // // *VehicleControlWindowAction_Unknown // *VehicleControlWindowAction_Vent // *VehicleControlWindowAction_Close @@ -3113,7 +3257,7 @@ type VehicleControlWindowAction struct { func (x *VehicleControlWindowAction) Reset() { *x = VehicleControlWindowAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[35] + mi := &file_car_server_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3126,7 +3270,7 @@ func (x *VehicleControlWindowAction) String() string { func (*VehicleControlWindowAction) ProtoMessage() {} func (x *VehicleControlWindowAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[35] + mi := &file_car_server_proto_msgTypes[36] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3139,14 +3283,7 @@ func (x *VehicleControlWindowAction) ProtoReflect() protoreflect.Message { // Deprecated: Use VehicleControlWindowAction.ProtoReflect.Descriptor instead. func (*VehicleControlWindowAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{35} -} - -func (x *VehicleControlWindowAction) GetLocation() *LatLong { - if x != nil { - return x.Location - } - return nil + return file_car_server_proto_rawDescGZIP(), []int{36} } func (m *VehicleControlWindowAction) GetAction() isVehicleControlWindowAction_Action { @@ -3211,7 +3348,7 @@ type HvacBioweaponModeAction struct { func (x *HvacBioweaponModeAction) Reset() { *x = HvacBioweaponModeAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[36] + mi := &file_car_server_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3224,7 +3361,7 @@ func (x *HvacBioweaponModeAction) String() string { func (*HvacBioweaponModeAction) ProtoMessage() {} func (x *HvacBioweaponModeAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[36] + mi := &file_car_server_proto_msgTypes[37] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3237,7 +3374,7 @@ func (x *HvacBioweaponModeAction) ProtoReflect() protoreflect.Message { // Deprecated: Use HvacBioweaponModeAction.ProtoReflect.Descriptor instead. func (*HvacBioweaponModeAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{36} + return file_car_server_proto_rawDescGZIP(), []int{37} } func (x *HvacBioweaponModeAction) GetOn() bool { @@ -3265,7 +3402,7 @@ type AutoSeatClimateAction struct { func (x *AutoSeatClimateAction) Reset() { *x = AutoSeatClimateAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[37] + mi := &file_car_server_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3278,7 +3415,7 @@ func (x *AutoSeatClimateAction) String() string { func (*AutoSeatClimateAction) ProtoMessage() {} func (x *AutoSeatClimateAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[37] + mi := &file_car_server_proto_msgTypes[38] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3291,7 +3428,7 @@ func (x *AutoSeatClimateAction) ProtoReflect() protoreflect.Message { // Deprecated: Use AutoSeatClimateAction.ProtoReflect.Descriptor instead. func (*AutoSeatClimateAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{37} + return file_car_server_proto_rawDescGZIP(), []int{38} } func (x *AutoSeatClimateAction) GetCarseat() []*AutoSeatClimateAction_CarSeat { @@ -3314,7 +3451,7 @@ type Ping struct { func (x *Ping) Reset() { *x = Ping{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[38] + mi := &file_car_server_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3327,7 +3464,7 @@ func (x *Ping) String() string { func (*Ping) ProtoMessage() {} func (x *Ping) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[38] + mi := &file_car_server_proto_msgTypes[39] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3340,7 +3477,7 @@ func (x *Ping) ProtoReflect() protoreflect.Message { // Deprecated: Use Ping.ProtoReflect.Descriptor instead. func (*Ping) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{38} + return file_car_server_proto_rawDescGZIP(), []int{39} } func (x *Ping) GetPingId() int32 { @@ -3376,7 +3513,7 @@ type ScheduledChargingAction struct { func (x *ScheduledChargingAction) Reset() { *x = ScheduledChargingAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[39] + mi := &file_car_server_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3389,7 +3526,7 @@ func (x *ScheduledChargingAction) String() string { func (*ScheduledChargingAction) ProtoMessage() {} func (x *ScheduledChargingAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[39] + mi := &file_car_server_proto_msgTypes[40] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3402,7 +3539,7 @@ func (x *ScheduledChargingAction) ProtoReflect() protoreflect.Message { // Deprecated: Use ScheduledChargingAction.ProtoReflect.Descriptor instead. func (*ScheduledChargingAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{39} + return file_car_server_proto_rawDescGZIP(), []int{40} } func (x *ScheduledChargingAction) GetEnabled() bool { @@ -3434,7 +3571,7 @@ type ScheduledDepartureAction struct { func (x *ScheduledDepartureAction) Reset() { *x = ScheduledDepartureAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[40] + mi := &file_car_server_proto_msgTypes[41] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3447,7 +3584,7 @@ func (x *ScheduledDepartureAction) String() string { func (*ScheduledDepartureAction) ProtoMessage() {} func (x *ScheduledDepartureAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[40] + mi := &file_car_server_proto_msgTypes[41] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3460,7 +3597,7 @@ func (x *ScheduledDepartureAction) ProtoReflect() protoreflect.Message { // Deprecated: Use ScheduledDepartureAction.ProtoReflect.Descriptor instead. func (*ScheduledDepartureAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{40} + return file_car_server_proto_rawDescGZIP(), []int{41} } func (x *ScheduledDepartureAction) GetEnabled() bool { @@ -3510,7 +3647,7 @@ type HvacClimateKeeperAction struct { func (x *HvacClimateKeeperAction) Reset() { *x = HvacClimateKeeperAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[41] + mi := &file_car_server_proto_msgTypes[42] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3523,7 +3660,7 @@ func (x *HvacClimateKeeperAction) String() string { func (*HvacClimateKeeperAction) ProtoMessage() {} func (x *HvacClimateKeeperAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[41] + mi := &file_car_server_proto_msgTypes[42] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3536,7 +3673,7 @@ func (x *HvacClimateKeeperAction) ProtoReflect() protoreflect.Message { // Deprecated: Use HvacClimateKeeperAction.ProtoReflect.Descriptor instead. func (*HvacClimateKeeperAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{41} + return file_car_server_proto_rawDescGZIP(), []int{42} } func (x *HvacClimateKeeperAction) GetClimateKeeperAction() HvacClimateKeeperAction_ClimateKeeperAction_E { @@ -3564,7 +3701,7 @@ type SetChargingAmpsAction struct { func (x *SetChargingAmpsAction) Reset() { *x = SetChargingAmpsAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[42] + mi := &file_car_server_proto_msgTypes[43] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3577,7 +3714,7 @@ func (x *SetChargingAmpsAction) String() string { func (*SetChargingAmpsAction) ProtoMessage() {} func (x *SetChargingAmpsAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[42] + mi := &file_car_server_proto_msgTypes[43] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3590,7 +3727,7 @@ func (x *SetChargingAmpsAction) ProtoReflect() protoreflect.Message { // Deprecated: Use SetChargingAmpsAction.ProtoReflect.Descriptor instead. func (*SetChargingAmpsAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{42} + return file_car_server_proto_rawDescGZIP(), []int{43} } func (x *SetChargingAmpsAction) GetChargingAmps() int32 { @@ -3600,32 +3737,31 @@ func (x *SetChargingAmpsAction) GetChargingAmps() int32 { return 0 } -type SetCabinOverheatProtectionAction struct { +type RemoveChargeScheduleAction struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - On bool `protobuf:"varint,1,opt,name=on,proto3" json:"on,omitempty"` - FanOnly bool `protobuf:"varint,2,opt,name=fan_only,json=fanOnly,proto3" json:"fan_only,omitempty"` + Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // datetime in epoch time } -func (x *SetCabinOverheatProtectionAction) Reset() { - *x = SetCabinOverheatProtectionAction{} +func (x *RemoveChargeScheduleAction) Reset() { + *x = RemoveChargeScheduleAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[43] + mi := &file_car_server_proto_msgTypes[44] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } -func (x *SetCabinOverheatProtectionAction) String() string { +func (x *RemoveChargeScheduleAction) String() string { return protoimpl.X.MessageStringOf(x) } -func (*SetCabinOverheatProtectionAction) ProtoMessage() {} +func (*RemoveChargeScheduleAction) ProtoMessage() {} -func (x *SetCabinOverheatProtectionAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[43] +func (x *RemoveChargeScheduleAction) ProtoReflect() protoreflect.Message { + mi := &file_car_server_proto_msgTypes[44] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3636,50 +3772,271 @@ func (x *SetCabinOverheatProtectionAction) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use SetCabinOverheatProtectionAction.ProtoReflect.Descriptor instead. -func (*SetCabinOverheatProtectionAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{43} -} - -func (x *SetCabinOverheatProtectionAction) GetOn() bool { - if x != nil { - return x.On - } - return false +// Deprecated: Use RemoveChargeScheduleAction.ProtoReflect.Descriptor instead. +func (*RemoveChargeScheduleAction) Descriptor() ([]byte, []int) { + return file_car_server_proto_rawDescGZIP(), []int{44} } -func (x *SetCabinOverheatProtectionAction) GetFanOnly() bool { +func (x *RemoveChargeScheduleAction) GetId() uint64 { if x != nil { - return x.FanOnly + return x.Id } - return false + return 0 } -type SetVehicleNameAction struct { +type BatchRemoveChargeSchedulesAction struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - VehicleName string `protobuf:"bytes,1,opt,name=vehicleName,proto3" json:"vehicleName,omitempty"` + Home bool `protobuf:"varint,1,opt,name=home,proto3" json:"home,omitempty"` + Work bool `protobuf:"varint,2,opt,name=work,proto3" json:"work,omitempty"` + Other bool `protobuf:"varint,3,opt,name=other,proto3" json:"other,omitempty"` // Delete non-home and non-work charge schedules } -func (x *SetVehicleNameAction) Reset() { - *x = SetVehicleNameAction{} +func (x *BatchRemoveChargeSchedulesAction) Reset() { + *x = BatchRemoveChargeSchedulesAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[44] + mi := &file_car_server_proto_msgTypes[45] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } -func (x *SetVehicleNameAction) String() string { +func (x *BatchRemoveChargeSchedulesAction) String() string { return protoimpl.X.MessageStringOf(x) } -func (*SetVehicleNameAction) ProtoMessage() {} +func (*BatchRemoveChargeSchedulesAction) ProtoMessage() {} -func (x *SetVehicleNameAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[44] +func (x *BatchRemoveChargeSchedulesAction) ProtoReflect() protoreflect.Message { + mi := &file_car_server_proto_msgTypes[45] + 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 BatchRemoveChargeSchedulesAction.ProtoReflect.Descriptor instead. +func (*BatchRemoveChargeSchedulesAction) Descriptor() ([]byte, []int) { + return file_car_server_proto_rawDescGZIP(), []int{45} +} + +func (x *BatchRemoveChargeSchedulesAction) GetHome() bool { + if x != nil { + return x.Home + } + return false +} + +func (x *BatchRemoveChargeSchedulesAction) GetWork() bool { + if x != nil { + return x.Work + } + return false +} + +func (x *BatchRemoveChargeSchedulesAction) GetOther() bool { + if x != nil { + return x.Other + } + return false +} + +type BatchRemovePreconditionSchedulesAction struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Home bool `protobuf:"varint,1,opt,name=home,proto3" json:"home,omitempty"` + Work bool `protobuf:"varint,2,opt,name=work,proto3" json:"work,omitempty"` + Other bool `protobuf:"varint,3,opt,name=other,proto3" json:"other,omitempty"` // Delete non-home and non-work precondition schedules +} + +func (x *BatchRemovePreconditionSchedulesAction) Reset() { + *x = BatchRemovePreconditionSchedulesAction{} + if protoimpl.UnsafeEnabled { + mi := &file_car_server_proto_msgTypes[46] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *BatchRemovePreconditionSchedulesAction) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*BatchRemovePreconditionSchedulesAction) ProtoMessage() {} + +func (x *BatchRemovePreconditionSchedulesAction) ProtoReflect() protoreflect.Message { + mi := &file_car_server_proto_msgTypes[46] + 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 BatchRemovePreconditionSchedulesAction.ProtoReflect.Descriptor instead. +func (*BatchRemovePreconditionSchedulesAction) Descriptor() ([]byte, []int) { + return file_car_server_proto_rawDescGZIP(), []int{46} +} + +func (x *BatchRemovePreconditionSchedulesAction) GetHome() bool { + if x != nil { + return x.Home + } + return false +} + +func (x *BatchRemovePreconditionSchedulesAction) GetWork() bool { + if x != nil { + return x.Work + } + return false +} + +func (x *BatchRemovePreconditionSchedulesAction) GetOther() bool { + if x != nil { + return x.Other + } + return false +} + +type RemovePreconditionScheduleAction struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // datetime in epoch time +} + +func (x *RemovePreconditionScheduleAction) Reset() { + *x = RemovePreconditionScheduleAction{} + if protoimpl.UnsafeEnabled { + mi := &file_car_server_proto_msgTypes[47] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *RemovePreconditionScheduleAction) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*RemovePreconditionScheduleAction) ProtoMessage() {} + +func (x *RemovePreconditionScheduleAction) ProtoReflect() protoreflect.Message { + mi := &file_car_server_proto_msgTypes[47] + 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 RemovePreconditionScheduleAction.ProtoReflect.Descriptor instead. +func (*RemovePreconditionScheduleAction) Descriptor() ([]byte, []int) { + return file_car_server_proto_rawDescGZIP(), []int{47} +} + +func (x *RemovePreconditionScheduleAction) GetId() uint64 { + if x != nil { + return x.Id + } + return 0 +} + +type SetCabinOverheatProtectionAction struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + On bool `protobuf:"varint,1,opt,name=on,proto3" json:"on,omitempty"` + FanOnly bool `protobuf:"varint,2,opt,name=fan_only,json=fanOnly,proto3" json:"fan_only,omitempty"` +} + +func (x *SetCabinOverheatProtectionAction) Reset() { + *x = SetCabinOverheatProtectionAction{} + if protoimpl.UnsafeEnabled { + mi := &file_car_server_proto_msgTypes[48] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *SetCabinOverheatProtectionAction) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SetCabinOverheatProtectionAction) ProtoMessage() {} + +func (x *SetCabinOverheatProtectionAction) ProtoReflect() protoreflect.Message { + mi := &file_car_server_proto_msgTypes[48] + 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 SetCabinOverheatProtectionAction.ProtoReflect.Descriptor instead. +func (*SetCabinOverheatProtectionAction) Descriptor() ([]byte, []int) { + return file_car_server_proto_rawDescGZIP(), []int{48} +} + +func (x *SetCabinOverheatProtectionAction) GetOn() bool { + if x != nil { + return x.On + } + return false +} + +func (x *SetCabinOverheatProtectionAction) GetFanOnly() bool { + if x != nil { + return x.FanOnly + } + return false +} + +type SetVehicleNameAction struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + VehicleName string `protobuf:"bytes,1,opt,name=vehicleName,proto3" json:"vehicleName,omitempty"` +} + +func (x *SetVehicleNameAction) Reset() { + *x = SetVehicleNameAction{} + if protoimpl.UnsafeEnabled { + mi := &file_car_server_proto_msgTypes[49] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *SetVehicleNameAction) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SetVehicleNameAction) ProtoMessage() {} + +func (x *SetVehicleNameAction) ProtoReflect() protoreflect.Message { + mi := &file_car_server_proto_msgTypes[49] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3692,7 +4049,7 @@ func (x *SetVehicleNameAction) ProtoReflect() protoreflect.Message { // Deprecated: Use SetVehicleNameAction.ProtoReflect.Descriptor instead. func (*SetVehicleNameAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{44} + return file_car_server_proto_rawDescGZIP(), []int{49} } func (x *SetVehicleNameAction) GetVehicleName() string { @@ -3711,7 +4068,7 @@ type ChargePortDoorClose struct { func (x *ChargePortDoorClose) Reset() { *x = ChargePortDoorClose{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[45] + mi := &file_car_server_proto_msgTypes[50] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3724,7 +4081,7 @@ func (x *ChargePortDoorClose) String() string { func (*ChargePortDoorClose) ProtoMessage() {} func (x *ChargePortDoorClose) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[45] + mi := &file_car_server_proto_msgTypes[50] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3737,7 +4094,7 @@ func (x *ChargePortDoorClose) ProtoReflect() protoreflect.Message { // Deprecated: Use ChargePortDoorClose.ProtoReflect.Descriptor instead. func (*ChargePortDoorClose) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{45} + return file_car_server_proto_rawDescGZIP(), []int{50} } type ChargePortDoorOpen struct { @@ -3749,7 +4106,7 @@ type ChargePortDoorOpen struct { func (x *ChargePortDoorOpen) Reset() { *x = ChargePortDoorOpen{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[46] + mi := &file_car_server_proto_msgTypes[51] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3762,7 +4119,7 @@ func (x *ChargePortDoorOpen) String() string { func (*ChargePortDoorOpen) ProtoMessage() {} func (x *ChargePortDoorOpen) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[46] + mi := &file_car_server_proto_msgTypes[51] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3775,7 +4132,7 @@ func (x *ChargePortDoorOpen) ProtoReflect() protoreflect.Message { // Deprecated: Use ChargePortDoorOpen.ProtoReflect.Descriptor instead. func (*ChargePortDoorOpen) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{46} + return file_car_server_proto_rawDescGZIP(), []int{51} } type SetCopTempAction struct { @@ -3789,7 +4146,7 @@ type SetCopTempAction struct { func (x *SetCopTempAction) Reset() { *x = SetCopTempAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[47] + mi := &file_car_server_proto_msgTypes[52] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3802,7 +4159,7 @@ func (x *SetCopTempAction) String() string { func (*SetCopTempAction) ProtoMessage() {} func (x *SetCopTempAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[47] + mi := &file_car_server_proto_msgTypes[52] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3815,7 +4172,7 @@ func (x *SetCopTempAction) ProtoReflect() protoreflect.Message { // Deprecated: Use SetCopTempAction.ProtoReflect.Descriptor instead. func (*SetCopTempAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{47} + return file_car_server_proto_rawDescGZIP(), []int{52} } func (x *SetCopTempAction) GetCopActivationTemp() ClimateState_CopActivationTemp { @@ -3837,7 +4194,7 @@ type VehicleControlSetPinToDriveAction struct { func (x *VehicleControlSetPinToDriveAction) Reset() { *x = VehicleControlSetPinToDriveAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[48] + mi := &file_car_server_proto_msgTypes[53] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3850,7 +4207,7 @@ func (x *VehicleControlSetPinToDriveAction) String() string { func (*VehicleControlSetPinToDriveAction) ProtoMessage() {} func (x *VehicleControlSetPinToDriveAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[48] + mi := &file_car_server_proto_msgTypes[53] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3863,7 +4220,7 @@ func (x *VehicleControlSetPinToDriveAction) ProtoReflect() protoreflect.Message // Deprecated: Use VehicleControlSetPinToDriveAction.ProtoReflect.Descriptor instead. func (*VehicleControlSetPinToDriveAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{48} + return file_car_server_proto_rawDescGZIP(), []int{53} } func (x *VehicleControlSetPinToDriveAction) GetOn() bool { @@ -3889,7 +4246,7 @@ type VehicleControlResetPinToDriveAction struct { func (x *VehicleControlResetPinToDriveAction) Reset() { *x = VehicleControlResetPinToDriveAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[49] + mi := &file_car_server_proto_msgTypes[54] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3902,7 +4259,7 @@ func (x *VehicleControlResetPinToDriveAction) String() string { func (*VehicleControlResetPinToDriveAction) ProtoMessage() {} func (x *VehicleControlResetPinToDriveAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[49] + mi := &file_car_server_proto_msgTypes[54] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3915,7 +4272,7 @@ func (x *VehicleControlResetPinToDriveAction) ProtoReflect() protoreflect.Messag // Deprecated: Use VehicleControlResetPinToDriveAction.ProtoReflect.Descriptor instead. func (*VehicleControlResetPinToDriveAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{49} + return file_car_server_proto_rawDescGZIP(), []int{54} } type HvacSeatHeaterActions_HvacSeatHeaterAction struct { @@ -3924,6 +4281,7 @@ type HvacSeatHeaterActions_HvacSeatHeaterAction struct { unknownFields protoimpl.UnknownFields // Types that are assignable to SeatHeaterLevel: + // // *HvacSeatHeaterActions_HvacSeatHeaterAction_SEAT_HEATER_UNKNOWN // *HvacSeatHeaterActions_HvacSeatHeaterAction_SEAT_HEATER_OFF // *HvacSeatHeaterActions_HvacSeatHeaterAction_SEAT_HEATER_LOW @@ -3931,6 +4289,7 @@ type HvacSeatHeaterActions_HvacSeatHeaterAction struct { // *HvacSeatHeaterActions_HvacSeatHeaterAction_SEAT_HEATER_HIGH SeatHeaterLevel isHvacSeatHeaterActions_HvacSeatHeaterAction_SeatHeaterLevel `protobuf_oneof:"seat_heater_level"` // Types that are assignable to SeatPosition: + // // *HvacSeatHeaterActions_HvacSeatHeaterAction_CAR_SEAT_UNKNOWN // *HvacSeatHeaterActions_HvacSeatHeaterAction_CAR_SEAT_FRONT_LEFT // *HvacSeatHeaterActions_HvacSeatHeaterAction_CAR_SEAT_FRONT_RIGHT @@ -3947,7 +4306,7 @@ type HvacSeatHeaterActions_HvacSeatHeaterAction struct { func (x *HvacSeatHeaterActions_HvacSeatHeaterAction) Reset() { *x = HvacSeatHeaterActions_HvacSeatHeaterAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[50] + mi := &file_car_server_proto_msgTypes[55] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3960,7 +4319,7 @@ func (x *HvacSeatHeaterActions_HvacSeatHeaterAction) String() string { func (*HvacSeatHeaterActions_HvacSeatHeaterAction) ProtoMessage() {} func (x *HvacSeatHeaterActions_HvacSeatHeaterAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[50] + mi := &file_car_server_proto_msgTypes[55] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4220,7 +4579,7 @@ type HvacSeatCoolerActions_HvacSeatCoolerAction struct { func (x *HvacSeatCoolerActions_HvacSeatCoolerAction) Reset() { *x = HvacSeatCoolerActions_HvacSeatCoolerAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[51] + mi := &file_car_server_proto_msgTypes[56] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4233,7 +4592,7 @@ func (x *HvacSeatCoolerActions_HvacSeatCoolerAction) String() string { func (*HvacSeatCoolerActions_HvacSeatCoolerAction) ProtoMessage() {} func (x *HvacSeatCoolerActions_HvacSeatCoolerAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[51] + mi := &file_car_server_proto_msgTypes[56] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4269,6 +4628,7 @@ type HvacTemperatureAdjustmentAction_Temperature struct { unknownFields protoimpl.UnknownFields // Types that are assignable to Type: + // // *HvacTemperatureAdjustmentAction_Temperature_TEMP_UNKNOWN // *HvacTemperatureAdjustmentAction_Temperature_TEMP_MIN // *HvacTemperatureAdjustmentAction_Temperature_TEMP_MAX @@ -4278,7 +4638,7 @@ type HvacTemperatureAdjustmentAction_Temperature struct { func (x *HvacTemperatureAdjustmentAction_Temperature) Reset() { *x = HvacTemperatureAdjustmentAction_Temperature{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[52] + mi := &file_car_server_proto_msgTypes[57] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4291,7 +4651,7 @@ func (x *HvacTemperatureAdjustmentAction_Temperature) String() string { func (*HvacTemperatureAdjustmentAction_Temperature) ProtoMessage() {} func (x *HvacTemperatureAdjustmentAction_Temperature) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[52] + mi := &file_car_server_proto_msgTypes[57] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4366,6 +4726,7 @@ type HvacTemperatureAdjustmentAction_HvacTemperatureZone struct { unknownFields protoimpl.UnknownFields // Types that are assignable to Type: + // // *HvacTemperatureAdjustmentAction_HvacTemperatureZone_TEMP_ZONE_UNKNOWN // *HvacTemperatureAdjustmentAction_HvacTemperatureZone_TEMP_ZONE_FRONT_LEFT // *HvacTemperatureAdjustmentAction_HvacTemperatureZone_TEMP_ZONE_FRONT_RIGHT @@ -4376,7 +4737,7 @@ type HvacTemperatureAdjustmentAction_HvacTemperatureZone struct { func (x *HvacTemperatureAdjustmentAction_HvacTemperatureZone) Reset() { *x = HvacTemperatureAdjustmentAction_HvacTemperatureZone{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[53] + mi := &file_car_server_proto_msgTypes[58] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4389,7 +4750,7 @@ func (x *HvacTemperatureAdjustmentAction_HvacTemperatureZone) String() string { func (*HvacTemperatureAdjustmentAction_HvacTemperatureZone) ProtoMessage() {} func (x *HvacTemperatureAdjustmentAction_HvacTemperatureZone) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[53] + mi := &file_car_server_proto_msgTypes[58] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4484,7 +4845,7 @@ type AutoSeatClimateAction_CarSeat struct { func (x *AutoSeatClimateAction_CarSeat) Reset() { *x = AutoSeatClimateAction_CarSeat{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[54] + mi := &file_car_server_proto_msgTypes[59] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4497,7 +4858,7 @@ func (x *AutoSeatClimateAction_CarSeat) String() string { func (*AutoSeatClimateAction_CarSeat) ProtoMessage() {} func (x *AutoSeatClimateAction_CarSeat) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[54] + mi := &file_car_server_proto_msgTypes[59] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4510,7 +4871,7 @@ func (x *AutoSeatClimateAction_CarSeat) ProtoReflect() protoreflect.Message { // Deprecated: Use AutoSeatClimateAction_CarSeat.ProtoReflect.Descriptor instead. func (*AutoSeatClimateAction_CarSeat) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{37, 0} + return file_car_server_proto_rawDescGZIP(), []int{38, 0} } func (x *AutoSeatClimateAction_CarSeat) GetOn() bool { @@ -4542,7 +4903,7 @@ var file_car_server_proto_rawDesc = []byte{ 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x0d, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0c, 0x0a, 0x0a, 0x61, 0x63, 0x74, - 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x73, 0x67, 0x4a, 0x04, 0x08, 0x03, 0x10, 0x06, 0x22, 0xc1, 0x22, + 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x73, 0x67, 0x4a, 0x04, 0x08, 0x03, 0x10, 0x06, 0x22, 0xb6, 0x28, 0x0a, 0x0d, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5b, 0x0a, 0x16, 0x63, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, @@ -4602,757 +4963,822 @@ var file_car_server_proto_rawDesc = []byte{ 0x65, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1f, 0x68, 0x76, 0x61, 0x63, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4c, 0x0a, 0x11, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x55, 0x70, 0x64, - 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x1c, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4d, 0x65, 0x64, 0x69, - 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x48, 0x00, 0x52, - 0x11, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, - 0x6d, 0x65, 0x12, 0x4c, 0x0a, 0x11, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x4e, 0x65, 0x78, 0x74, 0x46, - 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, - 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x4e, - 0x65, 0x78, 0x74, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x48, 0x00, 0x52, 0x11, 0x6d, - 0x65, 0x64, 0x69, 0x61, 0x4e, 0x65, 0x78, 0x74, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, - 0x12, 0x58, 0x0a, 0x15, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x50, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, - 0x73, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x20, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4d, 0x65, 0x64, 0x69, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x46, 0x0a, 0x0f, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x50, 0x6c, 0x61, + 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, + 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x50, + 0x6c, 0x61, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x0f, 0x6d, 0x65, 0x64, + 0x69, 0x61, 0x50, 0x6c, 0x61, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4c, 0x0a, 0x11, + 0x6d, 0x65, 0x64, 0x69, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, + 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, + 0x76, 0x65, 0x72, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, + 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x48, 0x00, 0x52, 0x11, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x55, 0x70, + 0x64, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x4c, 0x0a, 0x11, 0x6d, 0x65, + 0x64, 0x69, 0x61, 0x4e, 0x65, 0x78, 0x74, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x18, + 0x11, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, + 0x72, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x4e, 0x65, 0x78, 0x74, 0x46, 0x61, 0x76, 0x6f, 0x72, + 0x69, 0x74, 0x65, 0x48, 0x00, 0x52, 0x11, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x4e, 0x65, 0x78, 0x74, + 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x12, 0x58, 0x0a, 0x15, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x50, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, - 0x65, 0x48, 0x00, 0x52, 0x15, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x50, 0x72, 0x65, 0x76, 0x69, 0x6f, - 0x75, 0x73, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x12, 0x43, 0x0a, 0x0e, 0x6d, 0x65, - 0x64, 0x69, 0x61, 0x4e, 0x65, 0x78, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x18, 0x13, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4d, - 0x65, 0x64, 0x69, 0x61, 0x4e, 0x65, 0x78, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x48, 0x00, 0x52, - 0x0e, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x4e, 0x65, 0x78, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x12, - 0x4f, 0x0a, 0x12, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x50, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, - 0x54, 0x72, 0x61, 0x63, 0x6b, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x43, 0x61, - 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x50, 0x72, 0x65, - 0x76, 0x69, 0x6f, 0x75, 0x73, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x48, 0x00, 0x52, 0x12, 0x6d, 0x65, - 0x64, 0x69, 0x61, 0x50, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x54, 0x72, 0x61, 0x63, 0x6b, - 0x12, 0x5b, 0x0a, 0x16, 0x67, 0x65, 0x74, 0x4e, 0x65, 0x61, 0x72, 0x62, 0x79, 0x43, 0x68, 0x61, - 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x69, 0x74, 0x65, 0x73, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x21, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, - 0x4e, 0x65, 0x61, 0x72, 0x62, 0x79, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x69, - 0x74, 0x65, 0x73, 0x48, 0x00, 0x52, 0x16, 0x67, 0x65, 0x74, 0x4e, 0x65, 0x61, 0x72, 0x62, 0x79, - 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x69, 0x74, 0x65, 0x73, 0x12, 0x91, 0x01, - 0x0a, 0x28, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, - 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x55, 0x70, - 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x19, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x33, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, - 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x43, 0x61, 0x6e, 0x63, 0x65, - 0x6c, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x28, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, - 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x6f, 0x66, - 0x74, 0x77, 0x61, 0x72, 0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x12, 0x76, 0x0a, 0x1f, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, - 0x72, 0x6f, 0x6c, 0x46, 0x6c, 0x61, 0x73, 0x68, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x43, 0x61, 0x72, - 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, - 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x46, 0x6c, 0x61, 0x73, 0x68, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x73, - 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1f, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, - 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x46, 0x6c, 0x61, 0x73, 0x68, 0x4c, 0x69, 0x67, - 0x68, 0x74, 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x6d, 0x0a, 0x1c, 0x76, 0x65, 0x68, - 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x48, 0x6f, 0x6e, 0x6b, 0x48, - 0x6f, 0x72, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x27, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, 0x69, - 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x48, 0x6f, 0x6e, 0x6b, 0x48, 0x6f, - 0x72, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1c, 0x76, 0x65, 0x68, 0x69, - 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x48, 0x6f, 0x6e, 0x6b, 0x48, 0x6f, - 0x72, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7c, 0x0a, 0x21, 0x76, 0x65, 0x68, 0x69, - 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x73, 0x65, 0x74, 0x56, - 0x61, 0x6c, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1c, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, - 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, - 0x73, 0x65, 0x74, 0x56, 0x61, 0x6c, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x48, 0x00, 0x52, 0x21, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, - 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x73, 0x65, 0x74, 0x56, 0x61, 0x6c, 0x65, 0x74, 0x50, 0x69, 0x6e, - 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x97, 0x01, 0x0a, 0x2a, 0x76, 0x65, 0x68, 0x69, 0x63, - 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, - 0x65, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x43, 0x61, - 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, - 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x53, 0x6f, + 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, + 0x76, 0x65, 0x72, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x50, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, + 0x73, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x48, 0x00, 0x52, 0x15, 0x6d, 0x65, 0x64, + 0x69, 0x61, 0x50, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, + 0x74, 0x65, 0x12, 0x43, 0x0a, 0x0e, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x4e, 0x65, 0x78, 0x74, 0x54, + 0x72, 0x61, 0x63, 0x6b, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x43, 0x61, 0x72, + 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x4e, 0x65, 0x78, 0x74, + 0x54, 0x72, 0x61, 0x63, 0x6b, 0x48, 0x00, 0x52, 0x0e, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x4e, 0x65, + 0x78, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x12, 0x4f, 0x0a, 0x12, 0x6d, 0x65, 0x64, 0x69, 0x61, + 0x50, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x18, 0x14, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, + 0x4d, 0x65, 0x64, 0x69, 0x61, 0x50, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x54, 0x72, 0x61, + 0x63, 0x6b, 0x48, 0x00, 0x52, 0x12, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x50, 0x72, 0x65, 0x76, 0x69, + 0x6f, 0x75, 0x73, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x12, 0x5b, 0x0a, 0x16, 0x67, 0x65, 0x74, 0x4e, + 0x65, 0x61, 0x72, 0x62, 0x79, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x69, 0x74, + 0x65, 0x73, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, + 0x72, 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x4e, 0x65, 0x61, 0x72, 0x62, 0x79, 0x43, 0x68, + 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x69, 0x74, 0x65, 0x73, 0x48, 0x00, 0x52, 0x16, 0x67, + 0x65, 0x74, 0x4e, 0x65, 0x61, 0x72, 0x62, 0x79, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, + 0x53, 0x69, 0x74, 0x65, 0x73, 0x12, 0x91, 0x01, 0x0a, 0x28, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, + 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x2a, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, - 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x53, 0x6f, 0x66, 0x74, - 0x77, 0x61, 0x72, 0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x6f, 0x6e, 0x18, 0x19, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, + 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, + 0x72, 0x6f, 0x6c, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, + 0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, + 0x28, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x43, + 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x55, 0x70, 0x64, + 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x76, 0x0a, 0x1f, 0x76, 0x65, 0x68, + 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x46, 0x6c, 0x61, 0x73, 0x68, + 0x4c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1a, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, + 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x46, 0x6c, 0x61, + 0x73, 0x68, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, + 0x52, 0x1f, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, + 0x46, 0x6c, 0x61, 0x73, 0x68, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x12, 0x6d, 0x0a, 0x1c, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, + 0x72, 0x6f, 0x6c, 0x48, 0x6f, 0x6e, 0x6b, 0x48, 0x6f, 0x72, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, + 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, + 0x6f, 0x6c, 0x48, 0x6f, 0x6e, 0x6b, 0x48, 0x6f, 0x72, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x48, 0x00, 0x52, 0x1c, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, + 0x6f, 0x6c, 0x48, 0x6f, 0x6e, 0x6b, 0x48, 0x6f, 0x72, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7c, 0x0a, 0x21, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, - 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x53, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x4d, 0x6f, 0x64, 0x65, 0x41, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x43, 0x61, + 0x6f, 0x6c, 0x52, 0x65, 0x73, 0x65, 0x74, 0x56, 0x61, 0x6c, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x41, + 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, - 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x53, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x4d, - 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x21, 0x76, 0x65, 0x68, - 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x53, 0x65, - 0x6e, 0x74, 0x72, 0x79, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x79, - 0x0a, 0x20, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, - 0x53, 0x65, 0x74, 0x56, 0x61, 0x6c, 0x65, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, - 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, - 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x56, 0x61, 0x6c, 0x65, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x41, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x20, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, - 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x56, 0x61, 0x6c, 0x65, 0x74, 0x4d, - 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x85, 0x01, 0x0a, 0x24, 0x76, 0x65, - 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x75, 0x6e, 0x72, - 0x6f, 0x6f, 0x66, 0x4f, 0x70, 0x65, 0x6e, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x41, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, - 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, - 0x72, 0x6f, 0x6c, 0x53, 0x75, 0x6e, 0x72, 0x6f, 0x6f, 0x66, 0x4f, 0x70, 0x65, 0x6e, 0x43, 0x6c, - 0x6f, 0x73, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x24, 0x76, 0x65, 0x68, + 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x73, 0x65, 0x74, 0x56, 0x61, 0x6c, 0x65, 0x74, + 0x50, 0x69, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x21, 0x76, 0x65, 0x68, + 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x73, 0x65, 0x74, + 0x56, 0x61, 0x6c, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x97, + 0x01, 0x0a, 0x2a, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, + 0x6c, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, + 0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1d, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, + 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x63, + 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x55, 0x70, + 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x2a, 0x76, 0x65, + 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x63, 0x68, 0x65, + 0x64, 0x75, 0x6c, 0x65, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x55, 0x70, 0x64, 0x61, + 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7c, 0x0a, 0x21, 0x76, 0x65, 0x68, 0x69, + 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x53, 0x65, 0x6e, + 0x74, 0x72, 0x79, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1e, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, + 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, + 0x74, 0x53, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x48, 0x00, 0x52, 0x21, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, + 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x53, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x4d, 0x6f, 0x64, 0x65, + 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x79, 0x0a, 0x20, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, + 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x56, 0x61, 0x6c, 0x65, 0x74, + 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x2b, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, + 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x56, 0x61, + 0x6c, 0x65, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, + 0x20, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, + 0x65, 0x74, 0x56, 0x61, 0x6c, 0x65, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x12, 0x85, 0x01, 0x0a, 0x24, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, + 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x75, 0x6e, 0x72, 0x6f, 0x6f, 0x66, 0x4f, 0x70, 0x65, 0x6e, 0x43, + 0x6c, 0x6f, 0x73, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x2f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x75, 0x6e, 0x72, 0x6f, 0x6f, 0x66, 0x4f, 0x70, 0x65, 0x6e, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x12, 0x82, 0x01, 0x0a, 0x23, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, - 0x74, 0x72, 0x6f, 0x6c, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x48, 0x6f, 0x6d, 0x65, 0x6c, - 0x69, 0x6e, 0x6b, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x21, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x2e, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, 0x69, - 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, - 0x72, 0x48, 0x6f, 0x6d, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, - 0x00, 0x52, 0x23, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, - 0x6c, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x48, 0x6f, 0x6d, 0x65, 0x6c, 0x69, 0x6e, 0x6b, - 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x67, 0x0a, 0x1a, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, - 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x22, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x43, 0x61, 0x72, - 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, - 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x41, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x48, 0x00, 0x52, 0x1a, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, - 0x72, 0x6f, 0x6c, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, - 0x5e, 0x0a, 0x17, 0x68, 0x76, 0x61, 0x63, 0x42, 0x69, 0x6f, 0x77, 0x65, 0x61, 0x70, 0x6f, 0x6e, - 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x23, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x22, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, - 0x63, 0x42, 0x69, 0x6f, 0x77, 0x65, 0x61, 0x70, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x17, 0x68, 0x76, 0x61, 0x63, 0x42, 0x69, 0x6f, 0x77, - 0x65, 0x61, 0x70, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, - 0x58, 0x0a, 0x15, 0x68, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x48, 0x65, 0x61, 0x74, 0x65, - 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x24, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, - 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, - 0x65, 0x61, 0x74, 0x48, 0x65, 0x61, 0x74, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, - 0x48, 0x00, 0x52, 0x15, 0x68, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x48, 0x65, 0x61, 0x74, - 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x5e, 0x0a, 0x17, 0x73, 0x63, 0x68, - 0x65, 0x64, 0x75, 0x6c, 0x65, 0x64, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x29, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x43, 0x61, 0x72, - 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x64, - 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, - 0x52, 0x17, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x64, 0x43, 0x68, 0x61, 0x72, 0x67, - 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x61, 0x0a, 0x18, 0x73, 0x63, 0x68, - 0x65, 0x64, 0x75, 0x6c, 0x65, 0x64, 0x44, 0x65, 0x70, 0x61, 0x72, 0x74, 0x75, 0x72, 0x65, 0x41, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x43, 0x61, - 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, - 0x64, 0x44, 0x65, 0x70, 0x61, 0x72, 0x74, 0x75, 0x72, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x48, 0x00, 0x52, 0x18, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x64, 0x44, 0x65, 0x70, - 0x61, 0x72, 0x74, 0x75, 0x72, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x58, 0x0a, 0x15, - 0x73, 0x65, 0x74, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x41, 0x6d, 0x70, 0x73, 0x41, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x43, 0x61, - 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x74, 0x43, 0x68, 0x61, 0x72, 0x67, - 0x69, 0x6e, 0x67, 0x41, 0x6d, 0x70, 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, - 0x15, 0x73, 0x65, 0x74, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x41, 0x6d, 0x70, 0x73, - 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5e, 0x0a, 0x17, 0x68, 0x76, 0x61, 0x63, 0x43, 0x6c, - 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, - 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, - 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x17, 0x68, - 0x76, 0x61, 0x63, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, - 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x04, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x2e, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, - 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, 0x04, 0x70, 0x69, 0x6e, 0x67, 0x12, 0x58, 0x0a, - 0x15, 0x61, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, - 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x30, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x43, - 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, - 0x74, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, - 0x52, 0x15, 0x61, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, + 0x6e, 0x48, 0x00, 0x52, 0x24, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, + 0x72, 0x6f, 0x6c, 0x53, 0x75, 0x6e, 0x72, 0x6f, 0x6f, 0x66, 0x4f, 0x70, 0x65, 0x6e, 0x43, 0x6c, + 0x6f, 0x73, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x82, 0x01, 0x0a, 0x23, 0x76, 0x65, + 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x54, 0x72, 0x69, 0x67, + 0x67, 0x65, 0x72, 0x48, 0x6f, 0x6d, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x18, 0x21, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, + 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, + 0x6f, 0x6c, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x48, 0x6f, 0x6d, 0x65, 0x6c, 0x69, 0x6e, + 0x6b, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x23, 0x76, 0x65, 0x68, 0x69, 0x63, + 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, + 0x48, 0x6f, 0x6d, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x67, + 0x0a, 0x1a, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, + 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x22, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, + 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x57, 0x69, 0x6e, + 0x64, 0x6f, 0x77, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1a, 0x76, 0x65, 0x68, + 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x57, 0x69, 0x6e, 0x64, 0x6f, + 0x77, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5e, 0x0a, 0x17, 0x68, 0x76, 0x61, 0x63, 0x42, + 0x69, 0x6f, 0x77, 0x65, 0x61, 0x70, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, + 0x6f, 0x6e, 0x18, 0x23, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, + 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x42, 0x69, 0x6f, 0x77, 0x65, 0x61, 0x70, + 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x17, + 0x68, 0x76, 0x61, 0x63, 0x42, 0x69, 0x6f, 0x77, 0x65, 0x61, 0x70, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x58, 0x0a, 0x15, 0x68, 0x76, 0x61, 0x63, 0x53, - 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, - 0x18, 0x31, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, - 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, + 0x65, 0x61, 0x74, 0x48, 0x65, 0x61, 0x74, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, + 0x18, 0x24, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, + 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x48, 0x65, 0x61, 0x74, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x48, 0x00, 0x52, 0x15, 0x68, 0x76, 0x61, 0x63, - 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x12, 0x79, 0x0a, 0x20, 0x73, 0x65, 0x74, 0x43, 0x61, 0x62, 0x69, 0x6e, 0x4f, 0x76, 0x65, - 0x72, 0x68, 0x65, 0x61, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x41, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x32, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x43, 0x61, - 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x74, 0x43, 0x61, 0x62, 0x69, 0x6e, - 0x4f, 0x76, 0x65, 0x72, 0x68, 0x65, 0x61, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x65, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x20, 0x73, 0x65, 0x74, 0x43, - 0x61, 0x62, 0x69, 0x6e, 0x4f, 0x76, 0x65, 0x72, 0x68, 0x65, 0x61, 0x74, 0x50, 0x72, 0x6f, 0x74, - 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x55, 0x0a, 0x14, - 0x73, 0x65, 0x74, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x36, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x43, 0x61, 0x72, - 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x74, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, - 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x14, 0x73, + 0x53, 0x65, 0x61, 0x74, 0x48, 0x65, 0x61, 0x74, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x73, 0x12, 0x5e, 0x0a, 0x17, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x64, 0x43, 0x68, + 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x29, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x53, + 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x64, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, + 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x17, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, + 0x6c, 0x65, 0x64, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x12, 0x61, 0x0a, 0x18, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x64, 0x44, 0x65, + 0x70, 0x61, 0x72, 0x74, 0x75, 0x72, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2a, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, + 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x64, 0x44, 0x65, 0x70, 0x61, 0x72, 0x74, 0x75, + 0x72, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x18, 0x73, 0x63, 0x68, 0x65, + 0x64, 0x75, 0x6c, 0x65, 0x64, 0x44, 0x65, 0x70, 0x61, 0x72, 0x74, 0x75, 0x72, 0x65, 0x41, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x58, 0x0a, 0x15, 0x73, 0x65, 0x74, 0x43, 0x68, 0x61, 0x72, 0x67, + 0x69, 0x6e, 0x67, 0x41, 0x6d, 0x70, 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2b, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, + 0x53, 0x65, 0x74, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x41, 0x6d, 0x70, 0x73, 0x41, + 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x15, 0x73, 0x65, 0x74, 0x43, 0x68, 0x61, 0x72, + 0x67, 0x69, 0x6e, 0x67, 0x41, 0x6d, 0x70, 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5e, + 0x0a, 0x17, 0x68, 0x76, 0x61, 0x63, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, + 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x22, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, + 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, + 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x17, 0x68, 0x76, 0x61, 0x63, 0x43, 0x6c, 0x69, 0x6d, 0x61, + 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x25, + 0x0a, 0x04, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, + 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, + 0x04, 0x70, 0x69, 0x6e, 0x67, 0x12, 0x58, 0x0a, 0x15, 0x61, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, + 0x74, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x30, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, + 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, + 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x15, 0x61, 0x75, 0x74, 0x6f, 0x53, 0x65, + 0x61, 0x74, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, + 0x58, 0x0a, 0x15, 0x68, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, + 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x31, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, + 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, + 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, + 0x48, 0x00, 0x52, 0x15, 0x68, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, + 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x79, 0x0a, 0x20, 0x73, 0x65, 0x74, + 0x43, 0x61, 0x62, 0x69, 0x6e, 0x4f, 0x76, 0x65, 0x72, 0x68, 0x65, 0x61, 0x74, 0x50, 0x72, 0x6f, + 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x32, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, + 0x53, 0x65, 0x74, 0x43, 0x61, 0x62, 0x69, 0x6e, 0x4f, 0x76, 0x65, 0x72, 0x68, 0x65, 0x61, 0x74, + 0x50, 0x72, 0x6f, 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x48, 0x00, 0x52, 0x20, 0x73, 0x65, 0x74, 0x43, 0x61, 0x62, 0x69, 0x6e, 0x4f, 0x76, 0x65, 0x72, + 0x68, 0x65, 0x61, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x55, 0x0a, 0x14, 0x73, 0x65, 0x74, 0x56, 0x65, 0x68, 0x69, 0x63, + 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x36, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x74, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x41, 0x63, 0x74, - 0x69, 0x6f, 0x6e, 0x12, 0x52, 0x0a, 0x13, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x50, 0x6f, 0x72, - 0x74, 0x44, 0x6f, 0x6f, 0x72, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x18, 0x3d, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1e, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x43, 0x68, 0x61, - 0x72, 0x67, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x44, 0x6f, 0x6f, 0x72, 0x43, 0x6c, 0x6f, 0x73, 0x65, - 0x48, 0x00, 0x52, 0x13, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x44, 0x6f, - 0x6f, 0x72, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x12, 0x4f, 0x0a, 0x12, 0x63, 0x68, 0x61, 0x72, 0x67, - 0x65, 0x50, 0x6f, 0x72, 0x74, 0x44, 0x6f, 0x6f, 0x72, 0x4f, 0x70, 0x65, 0x6e, 0x18, 0x3e, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, - 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x44, 0x6f, 0x6f, 0x72, 0x4f, 0x70, - 0x65, 0x6e, 0x48, 0x00, 0x52, 0x12, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x50, 0x6f, 0x72, 0x74, - 0x44, 0x6f, 0x6f, 0x72, 0x4f, 0x70, 0x65, 0x6e, 0x12, 0x4d, 0x0a, 0x0f, 0x67, 0x75, 0x65, 0x73, - 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x41, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x21, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, - 0x68, 0x69, 0x63, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x2e, 0x47, 0x75, 0x65, 0x73, 0x74, - 0x4d, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x0f, 0x67, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x6f, 0x64, - 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x49, 0x0a, 0x10, 0x73, 0x65, 0x74, 0x43, 0x6f, - 0x70, 0x54, 0x65, 0x6d, 0x70, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x42, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1b, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x53, 0x65, - 0x74, 0x43, 0x6f, 0x70, 0x54, 0x65, 0x6d, 0x70, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, - 0x52, 0x10, 0x73, 0x65, 0x74, 0x43, 0x6f, 0x70, 0x54, 0x65, 0x6d, 0x70, 0x41, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x12, 0x52, 0x0a, 0x13, 0x65, 0x72, 0x61, 0x73, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, - 0x61, 0x74, 0x61, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x48, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x1e, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x45, 0x72, 0x61, 0x73, - 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, - 0x00, 0x52, 0x13, 0x65, 0x72, 0x61, 0x73, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, - 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7c, 0x0a, 0x21, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, - 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x54, 0x6f, - 0x44, 0x72, 0x69, 0x76, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x4d, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x2c, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, - 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x50, - 0x69, 0x6e, 0x54, 0x6f, 0x44, 0x72, 0x69, 0x76, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, - 0x00, 0x52, 0x21, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, - 0x6c, 0x53, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x54, 0x6f, 0x44, 0x72, 0x69, 0x76, 0x65, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x82, 0x01, 0x0a, 0x23, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, - 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x73, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x54, - 0x6f, 0x44, 0x72, 0x69, 0x76, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x4e, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, - 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x73, - 0x65, 0x74, 0x50, 0x69, 0x6e, 0x54, 0x6f, 0x44, 0x72, 0x69, 0x76, 0x65, 0x41, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x23, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, - 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x73, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x54, 0x6f, 0x44, 0x72, - 0x69, 0x76, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x14, 0x0a, 0x12, 0x76, 0x65, 0x68, - 0x69, 0x63, 0x6c, 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x73, 0x67, 0x4a, - 0x04, 0x08, 0x0b, 0x10, 0x0c, 0x4a, 0x04, 0x08, 0x3c, 0x10, 0x3d, 0x4a, 0x04, 0x08, 0x4c, 0x10, - 0x4d, 0x22, 0x2d, 0x0a, 0x13, 0x45, 0x72, 0x61, 0x73, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, - 0x74, 0x61, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x61, 0x73, - 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, - 0x22, 0xab, 0x02, 0x0a, 0x08, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3b, 0x0a, - 0x0c, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, - 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x61, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x51, 0x0a, 0x16, 0x67, 0x65, - 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x53, 0x69, 0x67, - 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, - 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x16, 0x67, 0x65, 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, - 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x58, 0x0a, - 0x16, 0x67, 0x65, 0x74, 0x4e, 0x65, 0x61, 0x72, 0x62, 0x79, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, - 0x6e, 0x67, 0x53, 0x69, 0x74, 0x65, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, - 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4e, 0x65, 0x61, 0x72, 0x62, 0x79, - 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x69, 0x74, 0x65, 0x73, 0x48, 0x00, 0x52, - 0x16, 0x67, 0x65, 0x74, 0x4e, 0x65, 0x61, 0x72, 0x62, 0x79, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, - 0x6e, 0x67, 0x53, 0x69, 0x74, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x04, 0x70, 0x69, 0x6e, 0x67, 0x18, - 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, - 0x72, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, 0x04, 0x70, 0x69, 0x6e, 0x67, 0x42, 0x0e, - 0x0a, 0x0c, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x6d, 0x73, 0x67, 0x22, 0x82, - 0x01, 0x0a, 0x0c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, - 0x34, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, - 0x1c, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x45, 0x52, 0x06, 0x72, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x3c, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x5f, - 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x43, - 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, - 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x61, - 0x73, 0x6f, 0x6e, 0x22, 0x39, 0x0a, 0x0c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x61, - 0x73, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0a, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x5f, 0x74, 0x65, 0x78, - 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x09, 0x70, 0x6c, 0x61, 0x69, 0x6e, - 0x54, 0x65, 0x78, 0x74, 0x42, 0x08, 0x0a, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x22, 0x64, - 0x0a, 0x0d, 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x12, - 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4e, 0x75, 0x6d, 0x62, - 0x65, 0x72, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x69, 0x70, 0x68, 0x65, 0x72, 0x74, 0x65, 0x78, 0x74, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x63, 0x69, 0x70, 0x68, 0x65, 0x72, 0x74, 0x65, - 0x78, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, - 0x03, 0x74, 0x61, 0x67, 0x22, 0x32, 0x0a, 0x16, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, - 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, - 0x0a, 0x07, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x07, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x22, 0x9e, 0x02, 0x0a, 0x17, 0x43, 0x68, 0x61, - 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x72, 0x74, 0x53, 0x74, 0x6f, 0x70, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2b, 0x0a, 0x07, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, - 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x07, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, - 0x6e, 0x12, 0x27, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, - 0x64, 0x48, 0x00, 0x52, 0x05, 0x73, 0x74, 0x61, 0x72, 0x74, 0x12, 0x38, 0x0a, 0x0e, 0x73, 0x74, - 0x61, 0x72, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, + 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x14, 0x73, 0x65, 0x74, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, + 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x52, 0x0a, 0x13, 0x63, + 0x68, 0x61, 0x72, 0x67, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x44, 0x6f, 0x6f, 0x72, 0x43, 0x6c, 0x6f, + 0x73, 0x65, 0x18, 0x3d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, + 0x72, 0x76, 0x65, 0x72, 0x2e, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x44, + 0x6f, 0x6f, 0x72, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x48, 0x00, 0x52, 0x13, 0x63, 0x68, 0x61, 0x72, + 0x67, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x44, 0x6f, 0x6f, 0x72, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x12, + 0x4f, 0x0a, 0x12, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x44, 0x6f, 0x6f, + 0x72, 0x4f, 0x70, 0x65, 0x6e, 0x18, 0x3e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x43, 0x61, + 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x50, 0x6f, + 0x72, 0x74, 0x44, 0x6f, 0x6f, 0x72, 0x4f, 0x70, 0x65, 0x6e, 0x48, 0x00, 0x52, 0x12, 0x63, 0x68, + 0x61, 0x72, 0x67, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x44, 0x6f, 0x6f, 0x72, 0x4f, 0x70, 0x65, 0x6e, + 0x12, 0x4d, 0x0a, 0x0f, 0x67, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, + 0x69, 0x6f, 0x6e, 0x18, 0x41, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x43, 0x61, 0x72, 0x53, + 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x53, 0x74, 0x61, + 0x74, 0x65, 0x2e, 0x47, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x0f, + 0x67, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, + 0x49, 0x0a, 0x10, 0x73, 0x65, 0x74, 0x43, 0x6f, 0x70, 0x54, 0x65, 0x6d, 0x70, 0x41, 0x63, 0x74, + 0x69, 0x6f, 0x6e, 0x18, 0x42, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x43, 0x61, 0x72, 0x53, + 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x74, 0x43, 0x6f, 0x70, 0x54, 0x65, 0x6d, 0x70, + 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x10, 0x73, 0x65, 0x74, 0x43, 0x6f, 0x70, + 0x54, 0x65, 0x6d, 0x70, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x52, 0x0a, 0x13, 0x65, 0x72, + 0x61, 0x73, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x18, 0x48, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, + 0x76, 0x65, 0x72, 0x2e, 0x45, 0x72, 0x61, 0x73, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, + 0x61, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x13, 0x65, 0x72, 0x61, 0x73, 0x65, + 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7c, + 0x0a, 0x21, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, + 0x53, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x54, 0x6f, 0x44, 0x72, 0x69, 0x76, 0x65, 0x41, 0x63, 0x74, + 0x69, 0x6f, 0x6e, 0x18, 0x4d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x43, 0x61, 0x72, 0x53, + 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, + 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x54, 0x6f, 0x44, 0x72, 0x69, 0x76, + 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x21, 0x76, 0x65, 0x68, 0x69, 0x63, + 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x54, + 0x6f, 0x44, 0x72, 0x69, 0x76, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x82, 0x01, 0x0a, + 0x23, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, + 0x65, 0x73, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x54, 0x6f, 0x44, 0x72, 0x69, 0x76, 0x65, 0x41, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x4e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x43, 0x61, 0x72, + 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, + 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x73, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x54, 0x6f, 0x44, + 0x72, 0x69, 0x76, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x23, 0x76, 0x65, + 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x73, 0x65, + 0x74, 0x50, 0x69, 0x6e, 0x54, 0x6f, 0x44, 0x72, 0x69, 0x76, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x12, 0x55, 0x0a, 0x17, 0x61, 0x64, 0x64, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x53, 0x63, + 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x61, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x43, + 0x68, 0x61, 0x72, 0x67, 0x65, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x48, 0x00, 0x52, + 0x17, 0x61, 0x64, 0x64, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, + 0x6c, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x67, 0x0a, 0x1a, 0x72, 0x65, 0x6d, 0x6f, + 0x76, 0x65, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, + 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x62, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x43, + 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x43, + 0x68, 0x61, 0x72, 0x67, 0x65, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x41, 0x63, 0x74, + 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x1a, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x43, 0x68, 0x61, + 0x72, 0x67, 0x65, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x12, 0x67, 0x0a, 0x1d, 0x61, 0x64, 0x64, 0x50, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, + 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x41, 0x63, 0x74, 0x69, + 0x6f, 0x6e, 0x18, 0x63, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, + 0x72, 0x76, 0x65, 0x72, 0x2e, 0x50, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, + 0x6e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x48, 0x00, 0x52, 0x1d, 0x61, 0x64, 0x64, + 0x50, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x63, 0x68, 0x65, + 0x64, 0x75, 0x6c, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x79, 0x0a, 0x20, 0x72, 0x65, + 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, + 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x64, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, + 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, + 0x69, 0x6f, 0x6e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x48, 0x00, 0x52, 0x20, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x65, 0x63, 0x6f, + 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x41, + 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x8b, 0x01, 0x0a, 0x26, 0x62, 0x61, 0x74, 0x63, 0x68, 0x52, + 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, + 0x6e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0x6b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, + 0x65, 0x72, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, + 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, + 0x6c, 0x65, 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x26, 0x62, 0x61, 0x74, + 0x63, 0x68, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, + 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x73, 0x41, 0x63, 0x74, + 0x69, 0x6f, 0x6e, 0x12, 0x79, 0x0a, 0x20, 0x62, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x6d, 0x6f, + 0x76, 0x65, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, + 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x6c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, + 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, + 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x53, 0x63, 0x68, 0x65, 0x64, + 0x75, 0x6c, 0x65, 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x20, 0x62, 0x61, + 0x74, 0x63, 0x68, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x53, + 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x14, + 0x0a, 0x12, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x6d, 0x73, 0x67, 0x4a, 0x04, 0x08, 0x0b, 0x10, 0x0c, 0x4a, 0x04, 0x08, 0x3c, 0x10, 0x3d, + 0x4a, 0x04, 0x08, 0x4c, 0x10, 0x4d, 0x22, 0x2d, 0x0a, 0x13, 0x45, 0x72, 0x61, 0x73, 0x65, 0x55, + 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, + 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, + 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x22, 0xab, 0x02, 0x0a, 0x08, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x12, 0x3b, 0x0a, 0x0c, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, + 0x72, 0x76, 0x65, 0x72, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x52, 0x0c, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, + 0x51, 0x0a, 0x16, 0x67, 0x65, 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, + 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x17, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x73, + 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x16, 0x67, 0x65, 0x74, 0x53, + 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x12, 0x58, 0x0a, 0x16, 0x67, 0x65, 0x74, 0x4e, 0x65, 0x61, 0x72, 0x62, 0x79, 0x43, + 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x69, 0x74, 0x65, 0x73, 0x18, 0x05, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4e, + 0x65, 0x61, 0x72, 0x62, 0x79, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x69, 0x74, + 0x65, 0x73, 0x48, 0x00, 0x52, 0x16, 0x67, 0x65, 0x74, 0x4e, 0x65, 0x61, 0x72, 0x62, 0x79, 0x43, + 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x69, 0x74, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x04, + 0x70, 0x69, 0x6e, 0x67, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, + 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, 0x04, 0x70, + 0x69, 0x6e, 0x67, 0x42, 0x0e, 0x0a, 0x0c, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, + 0x6d, 0x73, 0x67, 0x22, 0x82, 0x01, 0x0a, 0x0c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x12, 0x34, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1c, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, + 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, + 0x5f, 0x45, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x3c, 0x0a, 0x0d, 0x72, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x17, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x52, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x75, + 0x6c, 0x74, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x22, 0x39, 0x0a, 0x0c, 0x52, 0x65, 0x73, 0x75, + 0x6c, 0x74, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0a, 0x70, 0x6c, 0x61, 0x69, + 0x6e, 0x5f, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x09, + 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x42, 0x08, 0x0a, 0x06, 0x72, 0x65, 0x61, + 0x73, 0x6f, 0x6e, 0x22, 0x64, 0x0a, 0x0d, 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, + 0x44, 0x61, 0x74, 0x61, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6e, 0x75, + 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x66, 0x69, 0x65, 0x6c, + 0x64, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x69, 0x70, 0x68, 0x65, + 0x72, 0x74, 0x65, 0x78, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x63, 0x69, 0x70, + 0x68, 0x65, 0x72, 0x74, 0x65, 0x78, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18, 0x03, + 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x74, 0x61, 0x67, 0x22, 0x32, 0x0a, 0x16, 0x43, 0x68, 0x61, + 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x41, 0x63, 0x74, + 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x22, 0x9e, 0x02, + 0x0a, 0x17, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x72, 0x74, 0x53, + 0x74, 0x6f, 0x70, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2b, 0x0a, 0x07, 0x75, 0x6e, 0x6b, + 0x6e, 0x6f, 0x77, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, + 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x07, 0x75, + 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x12, 0x27, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, + 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x05, 0x73, 0x74, 0x61, 0x72, 0x74, 0x12, + 0x38, 0x0a, 0x0e, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, + 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, + 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x0d, 0x73, 0x74, 0x61, 0x72, + 0x74, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x12, 0x39, 0x0a, 0x0f, 0x73, 0x74, 0x61, + 0x72, 0x74, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, - 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x0d, 0x73, 0x74, 0x61, 0x72, 0x74, 0x53, 0x74, 0x61, 0x6e, - 0x64, 0x61, 0x72, 0x64, 0x12, 0x39, 0x0a, 0x0f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x6d, 0x61, - 0x78, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, - 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, - 0x52, 0x0d, 0x73, 0x74, 0x61, 0x72, 0x74, 0x4d, 0x61, 0x78, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, - 0x25, 0x0a, 0x04, 0x73, 0x74, 0x6f, 0x70, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, - 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, - 0x52, 0x04, 0x73, 0x74, 0x6f, 0x70, 0x42, 0x11, 0x0a, 0x0f, 0x63, 0x68, 0x61, 0x72, 0x67, 0x69, - 0x6e, 0x67, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x33, 0x0a, 0x1f, 0x44, 0x72, 0x69, - 0x76, 0x69, 0x6e, 0x67, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x53, 0x70, 0x65, 0x65, 0x64, 0x4c, 0x69, - 0x6d, 0x69, 0x74, 0x50, 0x69, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, - 0x70, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x70, 0x69, 0x6e, 0x22, 0x39, - 0x0a, 0x1a, 0x44, 0x72, 0x69, 0x76, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x53, 0x70, 0x65, 0x65, - 0x64, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, - 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x6d, 0x70, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, - 0x08, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x4d, 0x70, 0x68, 0x22, 0x47, 0x0a, 0x17, 0x44, 0x72, 0x69, - 0x76, 0x69, 0x6e, 0x67, 0x53, 0x70, 0x65, 0x65, 0x64, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, - 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x70, - 0x69, 0x6e, 0x22, 0x54, 0x0a, 0x0e, 0x48, 0x76, 0x61, 0x63, 0x41, 0x75, 0x74, 0x6f, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x6f, 0x6e, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x4f, 0x6e, 0x12, - 0x27, 0x0a, 0x0f, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, - 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, - 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x22, 0xa3, 0x09, 0x0a, 0x15, 0x48, 0x76, 0x61, - 0x63, 0x53, 0x65, 0x61, 0x74, 0x48, 0x65, 0x61, 0x74, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x73, 0x12, 0x69, 0x0a, 0x14, 0x68, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x48, 0x65, - 0x61, 0x74, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, - 0x32, 0x35, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, - 0x63, 0x53, 0x65, 0x61, 0x74, 0x48, 0x65, 0x61, 0x74, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x73, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x48, 0x65, 0x61, 0x74, 0x65, - 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x14, 0x68, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, - 0x74, 0x48, 0x65, 0x61, 0x74, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x9e, 0x08, - 0x0a, 0x14, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x48, 0x65, 0x61, 0x74, 0x65, 0x72, - 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x41, 0x0a, 0x13, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x48, - 0x45, 0x41, 0x54, 0x45, 0x52, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, - 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x11, 0x53, 0x45, 0x41, 0x54, 0x48, 0x45, 0x41, 0x54, - 0x45, 0x52, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x12, 0x39, 0x0a, 0x0f, 0x53, 0x45, 0x41, - 0x54, 0x5f, 0x48, 0x45, 0x41, 0x54, 0x45, 0x52, 0x5f, 0x4f, 0x46, 0x46, 0x18, 0x02, 0x20, 0x01, + 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x0d, 0x73, 0x74, 0x61, 0x72, 0x74, 0x4d, 0x61, 0x78, 0x52, + 0x61, 0x6e, 0x67, 0x65, 0x12, 0x25, 0x0a, 0x04, 0x73, 0x74, 0x6f, 0x70, 0x18, 0x05, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, + 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x04, 0x73, 0x74, 0x6f, 0x70, 0x42, 0x11, 0x0a, 0x0f, 0x63, + 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x33, + 0x0a, 0x1f, 0x44, 0x72, 0x69, 0x76, 0x69, 0x6e, 0x67, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x53, 0x70, + 0x65, 0x65, 0x64, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x50, 0x69, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, + 0x70, 0x69, 0x6e, 0x22, 0x39, 0x0a, 0x1a, 0x44, 0x72, 0x69, 0x76, 0x69, 0x6e, 0x67, 0x53, 0x65, + 0x74, 0x53, 0x70, 0x65, 0x65, 0x64, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x6d, 0x70, 0x68, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x4d, 0x70, 0x68, 0x22, 0x47, + 0x0a, 0x17, 0x44, 0x72, 0x69, 0x76, 0x69, 0x6e, 0x67, 0x53, 0x70, 0x65, 0x65, 0x64, 0x4c, 0x69, + 0x6d, 0x69, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x63, 0x74, + 0x69, 0x76, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x61, 0x63, 0x74, + 0x69, 0x76, 0x61, 0x74, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x03, 0x70, 0x69, 0x6e, 0x22, 0x54, 0x0a, 0x0e, 0x48, 0x76, 0x61, 0x63, 0x41, + 0x75, 0x74, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x70, 0x6f, 0x77, + 0x65, 0x72, 0x5f, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x70, 0x6f, 0x77, + 0x65, 0x72, 0x4f, 0x6e, 0x12, 0x27, 0x0a, 0x0f, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x6f, + 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x6d, + 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x22, 0xa3, 0x09, + 0x0a, 0x15, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x48, 0x65, 0x61, 0x74, 0x65, 0x72, + 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x69, 0x0a, 0x14, 0x68, 0x76, 0x61, 0x63, 0x53, + 0x65, 0x61, 0x74, 0x48, 0x65, 0x61, 0x74, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, + 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, + 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x48, 0x65, 0x61, 0x74, 0x65, 0x72, + 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, + 0x48, 0x65, 0x61, 0x74, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x14, 0x68, 0x76, + 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x48, 0x65, 0x61, 0x74, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, + 0x6f, 0x6e, 0x1a, 0x9e, 0x08, 0x0a, 0x14, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x48, + 0x65, 0x61, 0x74, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x41, 0x0a, 0x13, 0x53, + 0x45, 0x41, 0x54, 0x5f, 0x48, 0x45, 0x41, 0x54, 0x45, 0x52, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, + 0x57, 0x4e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, + 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x11, 0x53, 0x45, 0x41, + 0x54, 0x48, 0x45, 0x41, 0x54, 0x45, 0x52, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x12, 0x39, + 0x0a, 0x0f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x48, 0x45, 0x41, 0x54, 0x45, 0x52, 0x5f, 0x4f, 0x46, + 0x46, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, + 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x0d, 0x53, 0x45, 0x41, 0x54, + 0x48, 0x45, 0x41, 0x54, 0x45, 0x52, 0x4f, 0x46, 0x46, 0x12, 0x39, 0x0a, 0x0f, 0x53, 0x45, 0x41, + 0x54, 0x5f, 0x48, 0x45, 0x41, 0x54, 0x45, 0x52, 0x5f, 0x4c, 0x4f, 0x57, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x0d, 0x53, 0x45, 0x41, 0x54, 0x48, 0x45, 0x41, 0x54, 0x45, - 0x52, 0x4f, 0x46, 0x46, 0x12, 0x39, 0x0a, 0x0f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x48, 0x45, 0x41, - 0x54, 0x45, 0x52, 0x5f, 0x4c, 0x4f, 0x57, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, + 0x52, 0x4c, 0x4f, 0x57, 0x12, 0x39, 0x0a, 0x0f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x48, 0x45, 0x41, + 0x54, 0x45, 0x52, 0x5f, 0x4d, 0x45, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, - 0x52, 0x0d, 0x53, 0x45, 0x41, 0x54, 0x48, 0x45, 0x41, 0x54, 0x45, 0x52, 0x4c, 0x4f, 0x57, 0x12, - 0x39, 0x0a, 0x0f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x48, 0x45, 0x41, 0x54, 0x45, 0x52, 0x5f, 0x4d, - 0x45, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, - 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x0d, 0x53, 0x45, 0x41, - 0x54, 0x48, 0x45, 0x41, 0x54, 0x45, 0x52, 0x4d, 0x45, 0x44, 0x12, 0x3b, 0x0a, 0x10, 0x53, 0x45, - 0x41, 0x54, 0x5f, 0x48, 0x45, 0x41, 0x54, 0x45, 0x52, 0x5f, 0x48, 0x49, 0x47, 0x48, 0x18, 0x05, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, - 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x0e, 0x53, 0x45, 0x41, 0x54, 0x48, 0x45, 0x41, - 0x54, 0x45, 0x52, 0x48, 0x49, 0x47, 0x48, 0x12, 0x3b, 0x0a, 0x10, 0x43, 0x41, 0x52, 0x5f, 0x53, - 0x45, 0x41, 0x54, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x18, 0x06, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, - 0x69, 0x64, 0x48, 0x01, 0x52, 0x0e, 0x43, 0x41, 0x52, 0x53, 0x45, 0x41, 0x54, 0x55, 0x4e, 0x4b, - 0x4e, 0x4f, 0x57, 0x4e, 0x12, 0x40, 0x0a, 0x13, 0x43, 0x41, 0x52, 0x5f, 0x53, 0x45, 0x41, 0x54, - 0x5f, 0x46, 0x52, 0x4f, 0x4e, 0x54, 0x5f, 0x4c, 0x45, 0x46, 0x54, 0x18, 0x07, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, - 0x69, 0x64, 0x48, 0x01, 0x52, 0x10, 0x43, 0x41, 0x52, 0x53, 0x45, 0x41, 0x54, 0x46, 0x52, 0x4f, - 0x4e, 0x54, 0x4c, 0x45, 0x46, 0x54, 0x12, 0x42, 0x0a, 0x14, 0x43, 0x41, 0x52, 0x5f, 0x53, 0x45, - 0x41, 0x54, 0x5f, 0x46, 0x52, 0x4f, 0x4e, 0x54, 0x5f, 0x52, 0x49, 0x47, 0x48, 0x54, 0x18, 0x08, + 0x52, 0x0d, 0x53, 0x45, 0x41, 0x54, 0x48, 0x45, 0x41, 0x54, 0x45, 0x52, 0x4d, 0x45, 0x44, 0x12, + 0x3b, 0x0a, 0x10, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x48, 0x45, 0x41, 0x54, 0x45, 0x52, 0x5f, 0x48, + 0x49, 0x47, 0x48, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, + 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x0e, 0x53, 0x45, + 0x41, 0x54, 0x48, 0x45, 0x41, 0x54, 0x45, 0x52, 0x48, 0x49, 0x47, 0x48, 0x12, 0x3b, 0x0a, 0x10, + 0x43, 0x41, 0x52, 0x5f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, + 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, + 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x0e, 0x43, 0x41, 0x52, 0x53, 0x45, + 0x41, 0x54, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x12, 0x40, 0x0a, 0x13, 0x43, 0x41, 0x52, + 0x5f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x46, 0x52, 0x4f, 0x4e, 0x54, 0x5f, 0x4c, 0x45, 0x46, 0x54, + 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, + 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x10, 0x43, 0x41, 0x52, 0x53, 0x45, + 0x41, 0x54, 0x46, 0x52, 0x4f, 0x4e, 0x54, 0x4c, 0x45, 0x46, 0x54, 0x12, 0x42, 0x0a, 0x14, 0x43, + 0x41, 0x52, 0x5f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x46, 0x52, 0x4f, 0x4e, 0x54, 0x5f, 0x52, 0x49, + 0x47, 0x48, 0x54, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, + 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x11, 0x43, 0x41, + 0x52, 0x53, 0x45, 0x41, 0x54, 0x46, 0x52, 0x4f, 0x4e, 0x54, 0x52, 0x49, 0x47, 0x48, 0x54, 0x12, + 0x3e, 0x0a, 0x12, 0x43, 0x41, 0x52, 0x5f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x52, 0x45, 0x41, 0x52, + 0x5f, 0x4c, 0x45, 0x46, 0x54, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, + 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x0f, + 0x43, 0x41, 0x52, 0x53, 0x45, 0x41, 0x54, 0x52, 0x45, 0x41, 0x52, 0x4c, 0x45, 0x46, 0x54, 0x12, + 0x47, 0x0a, 0x17, 0x43, 0x41, 0x52, 0x5f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x52, 0x45, 0x41, 0x52, + 0x5f, 0x4c, 0x45, 0x46, 0x54, 0x5f, 0x42, 0x41, 0x43, 0x4b, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, + 0x64, 0x48, 0x01, 0x52, 0x13, 0x43, 0x41, 0x52, 0x53, 0x45, 0x41, 0x54, 0x52, 0x45, 0x41, 0x52, + 0x4c, 0x45, 0x46, 0x54, 0x42, 0x41, 0x43, 0x4b, 0x12, 0x42, 0x0a, 0x14, 0x43, 0x41, 0x52, 0x5f, + 0x53, 0x45, 0x41, 0x54, 0x5f, 0x52, 0x45, 0x41, 0x52, 0x5f, 0x43, 0x45, 0x4e, 0x54, 0x45, 0x52, + 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, + 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x11, 0x43, 0x41, 0x52, 0x53, 0x45, + 0x41, 0x54, 0x52, 0x45, 0x41, 0x52, 0x43, 0x45, 0x4e, 0x54, 0x45, 0x52, 0x12, 0x40, 0x0a, 0x13, + 0x43, 0x41, 0x52, 0x5f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x52, 0x45, 0x41, 0x52, 0x5f, 0x52, 0x49, + 0x47, 0x48, 0x54, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, + 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x10, 0x43, 0x41, + 0x52, 0x53, 0x45, 0x41, 0x54, 0x52, 0x45, 0x41, 0x52, 0x52, 0x49, 0x47, 0x48, 0x54, 0x12, 0x49, + 0x0a, 0x18, 0x43, 0x41, 0x52, 0x5f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x52, 0x45, 0x41, 0x52, 0x5f, + 0x52, 0x49, 0x47, 0x48, 0x54, 0x5f, 0x42, 0x41, 0x43, 0x4b, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, + 0x64, 0x48, 0x01, 0x52, 0x14, 0x43, 0x41, 0x52, 0x53, 0x45, 0x41, 0x54, 0x52, 0x45, 0x41, 0x52, + 0x52, 0x49, 0x47, 0x48, 0x54, 0x42, 0x41, 0x43, 0x4b, 0x12, 0x47, 0x0a, 0x17, 0x43, 0x41, 0x52, + 0x5f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x54, 0x48, 0x49, 0x52, 0x44, 0x5f, 0x52, 0x4f, 0x57, 0x5f, + 0x4c, 0x45, 0x46, 0x54, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, + 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x13, 0x43, + 0x41, 0x52, 0x53, 0x45, 0x41, 0x54, 0x54, 0x48, 0x49, 0x52, 0x44, 0x52, 0x4f, 0x57, 0x4c, 0x45, + 0x46, 0x54, 0x12, 0x49, 0x0a, 0x18, 0x43, 0x41, 0x52, 0x5f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x54, + 0x48, 0x49, 0x52, 0x44, 0x5f, 0x52, 0x4f, 0x57, 0x5f, 0x52, 0x49, 0x47, 0x48, 0x54, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, - 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x11, 0x43, 0x41, 0x52, 0x53, 0x45, 0x41, 0x54, - 0x46, 0x52, 0x4f, 0x4e, 0x54, 0x52, 0x49, 0x47, 0x48, 0x54, 0x12, 0x3e, 0x0a, 0x12, 0x43, 0x41, - 0x52, 0x5f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x52, 0x45, 0x41, 0x52, 0x5f, 0x4c, 0x45, 0x46, 0x54, - 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, - 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x0f, 0x43, 0x41, 0x52, 0x53, 0x45, - 0x41, 0x54, 0x52, 0x45, 0x41, 0x52, 0x4c, 0x45, 0x46, 0x54, 0x12, 0x47, 0x0a, 0x17, 0x43, 0x41, - 0x52, 0x5f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x52, 0x45, 0x41, 0x52, 0x5f, 0x4c, 0x45, 0x46, 0x54, - 0x5f, 0x42, 0x41, 0x43, 0x4b, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, - 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x13, - 0x43, 0x41, 0x52, 0x53, 0x45, 0x41, 0x54, 0x52, 0x45, 0x41, 0x52, 0x4c, 0x45, 0x46, 0x54, 0x42, - 0x41, 0x43, 0x4b, 0x12, 0x42, 0x0a, 0x14, 0x43, 0x41, 0x52, 0x5f, 0x53, 0x45, 0x41, 0x54, 0x5f, - 0x52, 0x45, 0x41, 0x52, 0x5f, 0x43, 0x45, 0x4e, 0x54, 0x45, 0x52, 0x18, 0x0b, 0x20, 0x01, 0x28, + 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x14, 0x43, 0x41, 0x52, 0x53, 0x45, 0x41, 0x54, + 0x54, 0x48, 0x49, 0x52, 0x44, 0x52, 0x4f, 0x57, 0x52, 0x49, 0x47, 0x48, 0x54, 0x42, 0x13, 0x0a, + 0x11, 0x73, 0x65, 0x61, 0x74, 0x5f, 0x68, 0x65, 0x61, 0x74, 0x65, 0x72, 0x5f, 0x6c, 0x65, 0x76, + 0x65, 0x6c, 0x42, 0x0f, 0x0a, 0x0d, 0x73, 0x65, 0x61, 0x74, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, + 0x69, 0x6f, 0x6e, 0x22, 0x9d, 0x05, 0x0a, 0x15, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, + 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x69, 0x0a, + 0x14, 0x68, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x41, + 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x43, 0x61, + 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, + 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x48, 0x76, + 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, + 0x6f, 0x6e, 0x52, 0x14, 0x68, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, + 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0xda, 0x01, 0x0a, 0x14, 0x48, 0x76, 0x61, + 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x12, 0x62, 0x0a, 0x11, 0x73, 0x65, 0x61, 0x74, 0x5f, 0x63, 0x6f, 0x6f, 0x6c, 0x65, 0x72, + 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x36, 0x2e, 0x43, + 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, + 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x48, + 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x4c, 0x65, 0x76, + 0x65, 0x6c, 0x5f, 0x45, 0x52, 0x0f, 0x73, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, + 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x5e, 0x0a, 0x0d, 0x73, 0x65, 0x61, 0x74, 0x5f, 0x70, 0x6f, + 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x39, 0x2e, 0x43, + 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, + 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x48, + 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x50, 0x6f, 0x73, + 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x45, 0x52, 0x0c, 0x73, 0x65, 0x61, 0x74, 0x50, 0x6f, 0x73, + 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xad, 0x01, 0x0a, 0x15, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, + 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x5f, 0x45, 0x12, + 0x1f, 0x0a, 0x1b, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, + 0x72, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x5f, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x10, 0x00, + 0x12, 0x1b, 0x0a, 0x17, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, + 0x65, 0x72, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x5f, 0x4f, 0x66, 0x66, 0x10, 0x01, 0x12, 0x1b, 0x0a, + 0x17, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x4c, + 0x65, 0x76, 0x65, 0x6c, 0x5f, 0x4c, 0x6f, 0x77, 0x10, 0x02, 0x12, 0x1b, 0x0a, 0x17, 0x48, 0x76, + 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x4c, 0x65, 0x76, 0x65, + 0x6c, 0x5f, 0x4d, 0x65, 0x64, 0x10, 0x03, 0x12, 0x1c, 0x0a, 0x18, 0x48, 0x76, 0x61, 0x63, 0x53, + 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x5f, 0x48, + 0x69, 0x67, 0x68, 0x10, 0x04, 0x22, 0x8b, 0x01, 0x0a, 0x18, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, + 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x45, 0x12, 0x22, 0x0a, 0x1e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, + 0x6f, 0x6c, 0x65, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x55, 0x6e, 0x6b, + 0x6e, 0x6f, 0x77, 0x6e, 0x10, 0x00, 0x12, 0x24, 0x0a, 0x20, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, + 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x4c, 0x65, 0x66, 0x74, 0x10, 0x01, 0x12, 0x25, 0x0a, 0x21, + 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x50, 0x6f, + 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x52, 0x69, 0x67, 0x68, + 0x74, 0x10, 0x02, 0x22, 0x86, 0x02, 0x0a, 0x1f, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x74, 0x50, + 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x69, 0x6e, 0x67, 0x4d, 0x61, + 0x78, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6e, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6e, 0x12, 0x27, 0x0a, 0x0f, 0x6d, 0x61, 0x6e, 0x75, 0x61, + 0x6c, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, + 0x52, 0x0e, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, + 0x12, 0x71, 0x0a, 0x14, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, + 0x69, 0x64, 0x65, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x3f, + 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, + 0x65, 0x74, 0x50, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x69, 0x6e, + 0x67, 0x4d, 0x61, 0x78, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x75, 0x61, + 0x6c, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x5f, 0x45, 0x52, + 0x12, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x4d, + 0x6f, 0x64, 0x65, 0x22, 0x37, 0x0a, 0x14, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x4f, 0x76, 0x65, + 0x72, 0x72, 0x69, 0x64, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x5f, 0x45, 0x12, 0x0b, 0x0a, 0x07, 0x44, + 0x6f, 0x67, 0x4d, 0x6f, 0x64, 0x65, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x53, 0x6f, 0x63, 0x10, + 0x01, 0x12, 0x09, 0x0a, 0x05, 0x44, 0x6f, 0x6f, 0x72, 0x73, 0x10, 0x02, 0x22, 0x3a, 0x0a, 0x1d, + 0x48, 0x76, 0x61, 0x63, 0x53, 0x74, 0x65, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x57, 0x68, 0x65, 0x65, + 0x6c, 0x48, 0x65, 0x61, 0x74, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, + 0x08, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, + 0x07, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x4f, 0x6e, 0x22, 0x8a, 0x07, 0x0a, 0x1f, 0x48, 0x76, 0x61, + 0x63, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x41, 0x64, 0x6a, 0x75, + 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x23, 0x0a, 0x0d, + 0x64, 0x65, 0x6c, 0x74, 0x61, 0x5f, 0x63, 0x65, 0x6c, 0x73, 0x69, 0x75, 0x73, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x02, 0x52, 0x0c, 0x64, 0x65, 0x6c, 0x74, 0x61, 0x43, 0x65, 0x6c, 0x73, 0x69, 0x75, + 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x64, 0x65, 0x6c, 0x74, 0x61, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, + 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x11, 0x52, 0x0c, 0x64, 0x65, 0x6c, 0x74, 0x61, 0x50, + 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, + 0x74, 0x65, 0x5f, 0x63, 0x65, 0x6c, 0x73, 0x69, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x02, + 0x52, 0x0f, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x73, 0x69, 0x75, + 0x73, 0x12, 0x4c, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x36, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, + 0x63, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x41, 0x64, 0x6a, 0x75, + 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x65, 0x6d, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, + 0x72, 0x0a, 0x15, 0x68, 0x76, 0x61, 0x63, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x75, 0x72, 0x65, 0x5f, 0x7a, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3e, + 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x54, + 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, + 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x54, + 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x52, 0x13, + 0x68, 0x76, 0x61, 0x63, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5a, + 0x6f, 0x6e, 0x65, 0x12, 0x2e, 0x0a, 0x13, 0x64, 0x72, 0x69, 0x76, 0x65, 0x72, 0x5f, 0x74, 0x65, + 0x6d, 0x70, 0x5f, 0x63, 0x65, 0x6c, 0x73, 0x69, 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x02, + 0x52, 0x11, 0x64, 0x72, 0x69, 0x76, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x43, 0x65, 0x6c, 0x73, + 0x69, 0x75, 0x73, 0x12, 0x34, 0x0a, 0x16, 0x70, 0x61, 0x73, 0x73, 0x65, 0x6e, 0x67, 0x65, 0x72, + 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x5f, 0x63, 0x65, 0x6c, 0x73, 0x69, 0x75, 0x73, 0x18, 0x07, 0x20, + 0x01, 0x28, 0x02, 0x52, 0x14, 0x70, 0x61, 0x73, 0x73, 0x65, 0x6e, 0x67, 0x65, 0x72, 0x54, 0x65, + 0x6d, 0x70, 0x43, 0x65, 0x6c, 0x73, 0x69, 0x75, 0x73, 0x1a, 0xa7, 0x01, 0x0a, 0x0b, 0x54, 0x65, + 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x34, 0x0a, 0x0c, 0x54, 0x45, 0x4d, + 0x50, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, + 0x48, 0x00, 0x52, 0x0b, 0x54, 0x45, 0x4d, 0x50, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x12, + 0x2c, 0x0a, 0x08, 0x54, 0x45, 0x4d, 0x50, 0x5f, 0x4d, 0x49, 0x4e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, - 0x69, 0x64, 0x48, 0x01, 0x52, 0x11, 0x43, 0x41, 0x52, 0x53, 0x45, 0x41, 0x54, 0x52, 0x45, 0x41, - 0x52, 0x43, 0x45, 0x4e, 0x54, 0x45, 0x52, 0x12, 0x40, 0x0a, 0x13, 0x43, 0x41, 0x52, 0x5f, 0x53, - 0x45, 0x41, 0x54, 0x5f, 0x52, 0x45, 0x41, 0x52, 0x5f, 0x52, 0x49, 0x47, 0x48, 0x54, 0x18, 0x0c, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, - 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x10, 0x43, 0x41, 0x52, 0x53, 0x45, 0x41, 0x54, - 0x52, 0x45, 0x41, 0x52, 0x52, 0x49, 0x47, 0x48, 0x54, 0x12, 0x49, 0x0a, 0x18, 0x43, 0x41, 0x52, - 0x5f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x52, 0x45, 0x41, 0x52, 0x5f, 0x52, 0x49, 0x47, 0x48, 0x54, - 0x5f, 0x42, 0x41, 0x43, 0x4b, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, - 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x14, - 0x43, 0x41, 0x52, 0x53, 0x45, 0x41, 0x54, 0x52, 0x45, 0x41, 0x52, 0x52, 0x49, 0x47, 0x48, 0x54, - 0x42, 0x41, 0x43, 0x4b, 0x12, 0x47, 0x0a, 0x17, 0x43, 0x41, 0x52, 0x5f, 0x53, 0x45, 0x41, 0x54, - 0x5f, 0x54, 0x48, 0x49, 0x52, 0x44, 0x5f, 0x52, 0x4f, 0x57, 0x5f, 0x4c, 0x45, 0x46, 0x54, 0x18, - 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, - 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x13, 0x43, 0x41, 0x52, 0x53, 0x45, 0x41, - 0x54, 0x54, 0x48, 0x49, 0x52, 0x44, 0x52, 0x4f, 0x57, 0x4c, 0x45, 0x46, 0x54, 0x12, 0x49, 0x0a, - 0x18, 0x43, 0x41, 0x52, 0x5f, 0x53, 0x45, 0x41, 0x54, 0x5f, 0x54, 0x48, 0x49, 0x52, 0x44, 0x5f, - 0x52, 0x4f, 0x57, 0x5f, 0x52, 0x49, 0x47, 0x48, 0x54, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x69, 0x64, 0x48, 0x00, 0x52, 0x07, 0x54, 0x45, 0x4d, 0x50, 0x4d, 0x49, 0x4e, 0x12, 0x2c, 0x0a, + 0x08, 0x54, 0x45, 0x4d, 0x50, 0x5f, 0x4d, 0x41, 0x58, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, - 0x48, 0x01, 0x52, 0x14, 0x43, 0x41, 0x52, 0x53, 0x45, 0x41, 0x54, 0x54, 0x48, 0x49, 0x52, 0x44, - 0x52, 0x4f, 0x57, 0x52, 0x49, 0x47, 0x48, 0x54, 0x42, 0x13, 0x0a, 0x11, 0x73, 0x65, 0x61, 0x74, - 0x5f, 0x68, 0x65, 0x61, 0x74, 0x65, 0x72, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x42, 0x0f, 0x0a, - 0x0d, 0x73, 0x65, 0x61, 0x74, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x9d, - 0x05, 0x0a, 0x15, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, - 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x69, 0x0a, 0x14, 0x68, 0x76, 0x61, 0x63, - 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, - 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, - 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, - 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x14, 0x68, - 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x41, 0x63, 0x74, - 0x69, 0x6f, 0x6e, 0x1a, 0xda, 0x01, 0x0a, 0x14, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, - 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x62, 0x0a, 0x11, - 0x73, 0x65, 0x61, 0x74, 0x5f, 0x63, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x5f, 0x6c, 0x65, 0x76, 0x65, - 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x36, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, - 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, - 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, - 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x5f, 0x45, 0x52, - 0x0f, 0x73, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x4c, 0x65, 0x76, 0x65, 0x6c, - 0x12, 0x5e, 0x0a, 0x0d, 0x73, 0x65, 0x61, 0x74, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, - 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x39, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, - 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, - 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, - 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, - 0x5f, 0x45, 0x52, 0x0c, 0x73, 0x65, 0x61, 0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, - 0x22, 0xad, 0x01, 0x0a, 0x15, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, - 0x6c, 0x65, 0x72, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x5f, 0x45, 0x12, 0x1f, 0x0a, 0x1b, 0x48, 0x76, - 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x4c, 0x65, 0x76, 0x65, - 0x6c, 0x5f, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x10, 0x00, 0x12, 0x1b, 0x0a, 0x17, 0x48, - 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x4c, 0x65, 0x76, - 0x65, 0x6c, 0x5f, 0x4f, 0x66, 0x66, 0x10, 0x01, 0x12, 0x1b, 0x0a, 0x17, 0x48, 0x76, 0x61, 0x63, - 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x5f, - 0x4c, 0x6f, 0x77, 0x10, 0x02, 0x12, 0x1b, 0x0a, 0x17, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, - 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x5f, 0x4d, 0x65, 0x64, - 0x10, 0x03, 0x12, 0x1c, 0x0a, 0x18, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, - 0x6f, 0x6c, 0x65, 0x72, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x5f, 0x48, 0x69, 0x67, 0x68, 0x10, 0x04, - 0x22, 0x8b, 0x01, 0x0a, 0x18, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, - 0x6c, 0x65, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x45, 0x12, 0x22, 0x0a, - 0x1e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x50, - 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x10, - 0x00, 0x12, 0x24, 0x0a, 0x20, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, - 0x6c, 0x65, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x46, 0x72, 0x6f, 0x6e, - 0x74, 0x4c, 0x65, 0x66, 0x74, 0x10, 0x01, 0x12, 0x25, 0x0a, 0x21, 0x48, 0x76, 0x61, 0x63, 0x53, - 0x65, 0x61, 0x74, 0x43, 0x6f, 0x6f, 0x6c, 0x65, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, - 0x6e, 0x5f, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x52, 0x69, 0x67, 0x68, 0x74, 0x10, 0x02, 0x22, 0x86, - 0x02, 0x0a, 0x1f, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x74, 0x50, 0x72, 0x65, 0x63, 0x6f, 0x6e, - 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x69, 0x6e, 0x67, 0x4d, 0x61, 0x78, 0x41, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, - 0x6f, 0x6e, 0x12, 0x27, 0x0a, 0x0f, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x6f, 0x76, 0x65, - 0x72, 0x72, 0x69, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x6d, 0x61, 0x6e, - 0x75, 0x61, 0x6c, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x12, 0x71, 0x0a, 0x14, 0x6d, - 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f, 0x6d, - 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x3f, 0x2e, 0x43, 0x61, 0x72, 0x53, - 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x53, 0x65, 0x74, 0x50, 0x72, 0x65, - 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x69, 0x6e, 0x67, 0x4d, 0x61, 0x78, 0x41, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x4f, 0x76, 0x65, 0x72, - 0x72, 0x69, 0x64, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x5f, 0x45, 0x52, 0x12, 0x6d, 0x61, 0x6e, 0x75, - 0x61, 0x6c, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x22, 0x37, - 0x0a, 0x14, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, - 0x4d, 0x6f, 0x64, 0x65, 0x5f, 0x45, 0x12, 0x0b, 0x0a, 0x07, 0x44, 0x6f, 0x67, 0x4d, 0x6f, 0x64, - 0x65, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x53, 0x6f, 0x63, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, - 0x44, 0x6f, 0x6f, 0x72, 0x73, 0x10, 0x02, 0x22, 0x3a, 0x0a, 0x1d, 0x48, 0x76, 0x61, 0x63, 0x53, - 0x74, 0x65, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x57, 0x68, 0x65, 0x65, 0x6c, 0x48, 0x65, 0x61, 0x74, - 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x70, 0x6f, 0x77, 0x65, - 0x72, 0x5f, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x70, 0x6f, 0x77, 0x65, - 0x72, 0x4f, 0x6e, 0x22, 0x8a, 0x07, 0x0a, 0x1f, 0x48, 0x76, 0x61, 0x63, 0x54, 0x65, 0x6d, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, - 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x64, 0x65, 0x6c, 0x74, 0x61, - 0x5f, 0x63, 0x65, 0x6c, 0x73, 0x69, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0c, - 0x64, 0x65, 0x6c, 0x74, 0x61, 0x43, 0x65, 0x6c, 0x73, 0x69, 0x75, 0x73, 0x12, 0x23, 0x0a, 0x0d, - 0x64, 0x65, 0x6c, 0x74, 0x61, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x11, 0x52, 0x0c, 0x64, 0x65, 0x6c, 0x74, 0x61, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, - 0x74, 0x12, 0x29, 0x0a, 0x10, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x63, 0x65, - 0x6c, 0x73, 0x69, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0f, 0x61, 0x62, 0x73, - 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x43, 0x65, 0x6c, 0x73, 0x69, 0x75, 0x73, 0x12, 0x4c, 0x0a, 0x05, - 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x43, 0x61, - 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x54, 0x65, 0x6d, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, - 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, - 0x75, 0x72, 0x65, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x72, 0x0a, 0x15, 0x68, 0x76, - 0x61, 0x63, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x7a, - 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3e, 0x2e, 0x43, 0x61, 0x72, 0x53, - 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x75, 0x72, 0x65, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x41, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x75, 0x72, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x52, 0x13, 0x68, 0x76, 0x61, 0x63, 0x54, - 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x12, 0x2e, - 0x0a, 0x13, 0x64, 0x72, 0x69, 0x76, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x5f, 0x63, 0x65, - 0x6c, 0x73, 0x69, 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x02, 0x52, 0x11, 0x64, 0x72, 0x69, - 0x76, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x43, 0x65, 0x6c, 0x73, 0x69, 0x75, 0x73, 0x12, 0x34, - 0x0a, 0x16, 0x70, 0x61, 0x73, 0x73, 0x65, 0x6e, 0x67, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d, 0x70, - 0x5f, 0x63, 0x65, 0x6c, 0x73, 0x69, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x02, 0x52, 0x14, - 0x70, 0x61, 0x73, 0x73, 0x65, 0x6e, 0x67, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x43, 0x65, 0x6c, - 0x73, 0x69, 0x75, 0x73, 0x1a, 0xa7, 0x01, 0x0a, 0x0b, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, - 0x74, 0x75, 0x72, 0x65, 0x12, 0x34, 0x0a, 0x0c, 0x54, 0x45, 0x4d, 0x50, 0x5f, 0x55, 0x4e, 0x4b, - 0x4e, 0x4f, 0x57, 0x4e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, - 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x0b, 0x54, - 0x45, 0x4d, 0x50, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x12, 0x2c, 0x0a, 0x08, 0x54, 0x45, - 0x4d, 0x50, 0x5f, 0x4d, 0x49, 0x4e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, + 0x48, 0x00, 0x52, 0x07, 0x54, 0x45, 0x4d, 0x50, 0x4d, 0x41, 0x58, 0x42, 0x06, 0x0a, 0x04, 0x74, + 0x79, 0x70, 0x65, 0x1a, 0x9f, 0x02, 0x0a, 0x13, 0x48, 0x76, 0x61, 0x63, 0x54, 0x65, 0x6d, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x12, 0x3d, 0x0a, 0x11, 0x54, + 0x45, 0x4d, 0x50, 0x5f, 0x5a, 0x4f, 0x4e, 0x45, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, + 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x0f, 0x54, 0x45, 0x4d, 0x50, 0x5a, + 0x4f, 0x4e, 0x45, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x12, 0x42, 0x0a, 0x14, 0x54, 0x45, + 0x4d, 0x50, 0x5f, 0x5a, 0x4f, 0x4e, 0x45, 0x5f, 0x46, 0x52, 0x4f, 0x4e, 0x54, 0x5f, 0x4c, 0x45, + 0x46, 0x54, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, + 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x11, 0x54, 0x45, 0x4d, + 0x50, 0x5a, 0x4f, 0x4e, 0x45, 0x46, 0x52, 0x4f, 0x4e, 0x54, 0x4c, 0x45, 0x46, 0x54, 0x12, 0x44, + 0x0a, 0x15, 0x54, 0x45, 0x4d, 0x50, 0x5f, 0x5a, 0x4f, 0x4e, 0x45, 0x5f, 0x46, 0x52, 0x4f, 0x4e, + 0x54, 0x5f, 0x52, 0x49, 0x47, 0x48, 0x54, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, + 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, + 0x52, 0x12, 0x54, 0x45, 0x4d, 0x50, 0x5a, 0x4f, 0x4e, 0x45, 0x46, 0x52, 0x4f, 0x4e, 0x54, 0x52, + 0x49, 0x47, 0x48, 0x54, 0x12, 0x37, 0x0a, 0x0e, 0x54, 0x45, 0x4d, 0x50, 0x5f, 0x5a, 0x4f, 0x4e, + 0x45, 0x5f, 0x52, 0x45, 0x41, 0x52, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, - 0x07, 0x54, 0x45, 0x4d, 0x50, 0x4d, 0x49, 0x4e, 0x12, 0x2c, 0x0a, 0x08, 0x54, 0x45, 0x4d, 0x50, - 0x5f, 0x4d, 0x41, 0x58, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, - 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x07, 0x54, - 0x45, 0x4d, 0x50, 0x4d, 0x41, 0x58, 0x42, 0x06, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x1a, 0x9f, - 0x02, 0x0a, 0x13, 0x48, 0x76, 0x61, 0x63, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, - 0x72, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x12, 0x3d, 0x0a, 0x11, 0x54, 0x45, 0x4d, 0x50, 0x5f, 0x5a, - 0x4f, 0x4e, 0x45, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, - 0x69, 0x64, 0x48, 0x00, 0x52, 0x0f, 0x54, 0x45, 0x4d, 0x50, 0x5a, 0x4f, 0x4e, 0x45, 0x55, 0x4e, - 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x12, 0x42, 0x0a, 0x14, 0x54, 0x45, 0x4d, 0x50, 0x5f, 0x5a, 0x4f, - 0x4e, 0x45, 0x5f, 0x46, 0x52, 0x4f, 0x4e, 0x54, 0x5f, 0x4c, 0x45, 0x46, 0x54, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, - 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x11, 0x54, 0x45, 0x4d, 0x50, 0x5a, 0x4f, 0x4e, 0x45, - 0x46, 0x52, 0x4f, 0x4e, 0x54, 0x4c, 0x45, 0x46, 0x54, 0x12, 0x44, 0x0a, 0x15, 0x54, 0x45, 0x4d, - 0x50, 0x5f, 0x5a, 0x4f, 0x4e, 0x45, 0x5f, 0x46, 0x52, 0x4f, 0x4e, 0x54, 0x5f, 0x52, 0x49, 0x47, - 0x48, 0x54, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, - 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x12, 0x54, 0x45, 0x4d, - 0x50, 0x5a, 0x4f, 0x4e, 0x45, 0x46, 0x52, 0x4f, 0x4e, 0x54, 0x52, 0x49, 0x47, 0x48, 0x54, 0x12, - 0x37, 0x0a, 0x0e, 0x54, 0x45, 0x4d, 0x50, 0x5f, 0x5a, 0x4f, 0x4e, 0x45, 0x5f, 0x52, 0x45, 0x41, - 0x52, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, - 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x0c, 0x54, 0x45, 0x4d, 0x50, - 0x5a, 0x4f, 0x4e, 0x45, 0x52, 0x45, 0x41, 0x52, 0x42, 0x06, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, - 0x22, 0x72, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x4e, 0x65, 0x61, 0x72, 0x62, 0x79, 0x43, 0x68, 0x61, - 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x69, 0x74, 0x65, 0x73, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x6e, - 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x4d, 0x65, - 0x74, 0x61, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x61, 0x64, 0x69, 0x75, 0x73, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x72, 0x61, 0x64, 0x69, 0x75, 0x73, 0x12, 0x14, - 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x63, - 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xd1, 0x01, 0x0a, 0x13, 0x4e, 0x65, 0x61, 0x72, 0x62, 0x79, 0x43, - 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x69, 0x74, 0x65, 0x73, 0x12, 0x38, 0x0a, 0x09, - 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, - 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x3e, 0x0a, 0x0d, 0x73, 0x75, 0x70, 0x65, 0x72, 0x63, - 0x68, 0x61, 0x72, 0x67, 0x65, 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, - 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x53, 0x75, 0x70, 0x65, 0x72, 0x63, - 0x68, 0x61, 0x72, 0x67, 0x65, 0x72, 0x73, 0x52, 0x0d, 0x73, 0x75, 0x70, 0x65, 0x72, 0x63, 0x68, - 0x61, 0x72, 0x67, 0x65, 0x72, 0x73, 0x12, 0x40, 0x0a, 0x1d, 0x63, 0x6f, 0x6e, 0x67, 0x65, 0x73, - 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x79, 0x6e, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x75, - 0x74, 0x63, 0x5f, 0x73, 0x65, 0x63, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x19, 0x63, - 0x6f, 0x6e, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x79, 0x6e, 0x63, 0x54, 0x69, 0x6d, - 0x65, 0x55, 0x74, 0x63, 0x53, 0x65, 0x63, 0x73, 0x22, 0xc0, 0x05, 0x0a, 0x0d, 0x53, 0x75, 0x70, - 0x65, 0x72, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x72, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x6d, - 0x65, 0x6e, 0x69, 0x74, 0x69, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, - 0x6d, 0x65, 0x6e, 0x69, 0x74, 0x69, 0x65, 0x73, 0x12, 0x29, 0x0a, 0x10, 0x61, 0x76, 0x61, 0x69, - 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x0f, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x74, 0x61, - 0x6c, 0x6c, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x69, - 0x6e, 0x66, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x62, 0x69, 0x6c, 0x6c, 0x69, - 0x6e, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, - 0x67, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x62, 0x69, - 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, - 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x18, 0x0a, - 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, - 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x25, 0x0a, 0x0e, 0x64, 0x69, 0x73, 0x74, 0x61, - 0x6e, 0x63, 0x65, 0x5f, 0x6d, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x02, 0x52, - 0x0d, 0x64, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x69, 0x6c, 0x65, 0x73, 0x12, 0x1a, - 0x0a, 0x08, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x08, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x12, 0x2e, 0x0a, 0x08, 0x6c, 0x6f, - 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x43, - 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4c, 0x61, 0x74, 0x4c, 0x6f, 0x6e, 0x67, - 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, - 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1f, - 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x0c, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x12, - 0x1f, 0x0a, 0x0b, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x18, 0x0d, - 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x73, 0x69, 0x74, 0x65, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x64, - 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, - 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, - 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x21, 0x0a, - 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x18, 0x10, 0x20, - 0x01, 0x28, 0x05, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x6c, 0x6c, 0x73, - 0x12, 0x21, 0x0a, 0x0c, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, - 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x52, 0x61, - 0x6e, 0x67, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x6d, 0x61, 0x78, 0x5f, 0x70, 0x6f, 0x77, 0x65, 0x72, - 0x5f, 0x6b, 0x77, 0x18, 0x12, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x6d, 0x61, 0x78, 0x50, 0x6f, - 0x77, 0x65, 0x72, 0x4b, 0x77, 0x12, 0x3a, 0x0a, 0x1a, 0x6f, 0x75, 0x74, 0x5f, 0x6f, 0x66, 0x5f, - 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x5f, 0x6e, 0x75, 0x6d, - 0x62, 0x65, 0x72, 0x18, 0x13, 0x20, 0x01, 0x28, 0x05, 0x52, 0x16, 0x6f, 0x75, 0x74, 0x4f, 0x66, - 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x4e, 0x75, 0x6d, 0x62, 0x65, - 0x72, 0x12, 0x38, 0x0a, 0x19, 0x6f, 0x75, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x6f, 0x72, 0x64, 0x65, - 0x72, 0x5f, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x14, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x6f, 0x75, 0x74, 0x4f, 0x66, 0x4f, 0x72, 0x64, 0x65, 0x72, - 0x53, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x22, 0x84, 0x01, 0x0a, 0x11, - 0x4d, 0x65, 0x64, 0x69, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, - 0x65, 0x12, 0x23, 0x0a, 0x0c, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x64, 0x65, 0x6c, 0x74, - 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x11, 0x48, 0x00, 0x52, 0x0b, 0x76, 0x6f, 0x6c, 0x75, 0x6d, - 0x65, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x12, 0x34, 0x0a, 0x15, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, - 0x5f, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, - 0x03, 0x20, 0x01, 0x28, 0x02, 0x48, 0x00, 0x52, 0x13, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x41, - 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x42, 0x0e, 0x0a, 0x0c, - 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4a, 0x04, 0x08, 0x02, - 0x10, 0x03, 0x22, 0x13, 0x0a, 0x11, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x4e, 0x65, 0x78, 0x74, 0x46, - 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x22, 0x17, 0x0a, 0x15, 0x4d, 0x65, 0x64, 0x69, 0x61, - 0x50, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, - 0x22, 0x10, 0x0a, 0x0e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x4e, 0x65, 0x78, 0x74, 0x54, 0x72, 0x61, - 0x63, 0x6b, 0x22, 0x14, 0x0a, 0x12, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x50, 0x72, 0x65, 0x76, 0x69, - 0x6f, 0x75, 0x73, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x22, 0x2a, 0x0a, 0x28, 0x56, 0x65, 0x68, 0x69, - 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, - 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x21, 0x0a, 0x1f, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, - 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x46, 0x6c, 0x61, 0x73, 0x68, 0x4c, 0x69, 0x67, 0x68, 0x74, - 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x1e, 0x0a, 0x1c, 0x56, 0x65, 0x68, 0x69, 0x63, - 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x48, 0x6f, 0x6e, 0x6b, 0x48, 0x6f, 0x72, - 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x23, 0x0a, 0x21, 0x56, 0x65, 0x68, 0x69, 0x63, - 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x73, 0x65, 0x74, 0x56, 0x61, - 0x6c, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x4b, 0x0a, 0x2a, - 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x63, - 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x55, 0x70, - 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x66, - 0x66, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, - 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x53, 0x65, 0x63, 0x22, 0x33, 0x0a, 0x21, 0x56, 0x65, 0x68, - 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x53, 0x65, - 0x6e, 0x74, 0x72, 0x79, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, - 0x0a, 0x02, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6e, 0x22, 0x4e, - 0x0a, 0x20, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, - 0x53, 0x65, 0x74, 0x56, 0x61, 0x6c, 0x65, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, - 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x84, - 0x02, 0x0a, 0x24, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, - 0x6c, 0x53, 0x75, 0x6e, 0x72, 0x6f, 0x6f, 0x66, 0x4f, 0x70, 0x65, 0x6e, 0x43, 0x6c, 0x6f, 0x73, - 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x27, 0x0a, 0x0e, 0x61, 0x62, 0x73, 0x6f, 0x6c, - 0x75, 0x74, 0x65, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x48, - 0x00, 0x52, 0x0d, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, - 0x12, 0x21, 0x0a, 0x0b, 0x64, 0x65, 0x6c, 0x74, 0x61, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x11, 0x48, 0x00, 0x52, 0x0a, 0x64, 0x65, 0x6c, 0x74, 0x61, 0x4c, 0x65, - 0x76, 0x65, 0x6c, 0x12, 0x25, 0x0a, 0x04, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, - 0x69, 0x64, 0x48, 0x01, 0x52, 0x04, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x27, 0x0a, 0x05, 0x63, 0x6c, - 0x6f, 0x73, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, - 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x05, 0x63, 0x6c, - 0x6f, 0x73, 0x65, 0x12, 0x25, 0x0a, 0x04, 0x6f, 0x70, 0x65, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, + 0x0c, 0x54, 0x45, 0x4d, 0x50, 0x5a, 0x4f, 0x4e, 0x45, 0x52, 0x45, 0x41, 0x52, 0x42, 0x06, 0x0a, + 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x72, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x4e, 0x65, 0x61, 0x72, + 0x62, 0x79, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x69, 0x74, 0x65, 0x73, 0x12, + 0x2a, 0x0a, 0x11, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x5f, + 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x6e, 0x63, 0x6c, + 0x75, 0x64, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x72, + 0x61, 0x64, 0x69, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x72, 0x61, 0x64, + 0x69, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xd1, 0x01, 0x0a, 0x13, 0x4e, 0x65, + 0x61, 0x72, 0x62, 0x79, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x53, 0x69, 0x74, 0x65, + 0x73, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, + 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x3e, 0x0a, 0x0d, 0x73, + 0x75, 0x70, 0x65, 0x72, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, + 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x53, + 0x75, 0x70, 0x65, 0x72, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x72, 0x73, 0x52, 0x0d, 0x73, 0x75, + 0x70, 0x65, 0x72, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x72, 0x73, 0x12, 0x40, 0x0a, 0x1d, 0x63, + 0x6f, 0x6e, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x79, 0x6e, 0x63, 0x5f, 0x74, + 0x69, 0x6d, 0x65, 0x5f, 0x75, 0x74, 0x63, 0x5f, 0x73, 0x65, 0x63, 0x73, 0x18, 0x04, 0x20, 0x01, + 0x28, 0x03, 0x52, 0x19, 0x63, 0x6f, 0x6e, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x79, + 0x6e, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x55, 0x74, 0x63, 0x53, 0x65, 0x63, 0x73, 0x22, 0xc0, 0x05, + 0x0a, 0x0d, 0x53, 0x75, 0x70, 0x65, 0x72, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x72, 0x73, 0x12, + 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, + 0x1c, 0x0a, 0x09, 0x61, 0x6d, 0x65, 0x6e, 0x69, 0x74, 0x69, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x09, 0x61, 0x6d, 0x65, 0x6e, 0x69, 0x74, 0x69, 0x65, 0x73, 0x12, 0x29, 0x0a, + 0x10, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x6c, 0x6c, + 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, + 0x6c, 0x65, 0x53, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x69, 0x6c, 0x6c, + 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, + 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x21, 0x0a, 0x0c, 0x62, + 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x0b, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x12, + 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, + 0x74, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x07, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x25, 0x0a, 0x0e, + 0x64, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x6d, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x08, + 0x20, 0x01, 0x28, 0x02, 0x52, 0x0d, 0x64, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x69, + 0x6c, 0x65, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x18, + 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x12, + 0x2e, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0a, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x12, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4c, 0x61, + 0x74, 0x4c, 0x6f, 0x6e, 0x67, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, + 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, + 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, + 0x64, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, + 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x63, 0x6c, 0x6f, + 0x73, 0x65, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x73, 0x69, 0x74, 0x65, 0x43, + 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x0e, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x73, + 0x74, 0x72, 0x65, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x0f, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, + 0x73, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x6c, + 0x6c, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x53, + 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x5f, + 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x77, 0x69, 0x74, + 0x68, 0x69, 0x6e, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x6d, 0x61, 0x78, 0x5f, + 0x70, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x6b, 0x77, 0x18, 0x12, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, + 0x6d, 0x61, 0x78, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x4b, 0x77, 0x12, 0x3a, 0x0a, 0x1a, 0x6f, 0x75, + 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x6c, 0x6c, + 0x73, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x13, 0x20, 0x01, 0x28, 0x05, 0x52, 0x16, + 0x6f, 0x75, 0x74, 0x4f, 0x66, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x74, 0x61, 0x6c, 0x6c, 0x73, + 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x38, 0x0a, 0x19, 0x6f, 0x75, 0x74, 0x5f, 0x6f, 0x66, + 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x5f, 0x6e, 0x61, + 0x6d, 0x65, 0x73, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x6f, 0x75, 0x74, 0x4f, 0x66, + 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x73, + 0x22, 0x11, 0x0a, 0x0f, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x50, 0x6c, 0x61, 0x79, 0x41, 0x63, 0x74, + 0x69, 0x6f, 0x6e, 0x22, 0x84, 0x01, 0x0a, 0x11, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x55, 0x70, 0x64, + 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0c, 0x76, 0x6f, 0x6c, + 0x75, 0x6d, 0x65, 0x5f, 0x64, 0x65, 0x6c, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x11, 0x48, + 0x00, 0x52, 0x0b, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x12, 0x34, + 0x0a, 0x15, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, + 0x65, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x02, 0x48, 0x00, 0x52, + 0x13, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x41, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x46, + 0x6c, 0x6f, 0x61, 0x74, 0x42, 0x0e, 0x0a, 0x0c, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x76, 0x6f, + 0x6c, 0x75, 0x6d, 0x65, 0x4a, 0x04, 0x08, 0x02, 0x10, 0x03, 0x22, 0x13, 0x0a, 0x11, 0x4d, 0x65, + 0x64, 0x69, 0x61, 0x4e, 0x65, 0x78, 0x74, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x22, + 0x17, 0x0a, 0x15, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x50, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, + 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x22, 0x10, 0x0a, 0x0e, 0x4d, 0x65, 0x64, 0x69, + 0x61, 0x4e, 0x65, 0x78, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x22, 0x14, 0x0a, 0x12, 0x4d, 0x65, + 0x64, 0x69, 0x61, 0x50, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x54, 0x72, 0x61, 0x63, 0x6b, + 0x22, 0x2a, 0x0a, 0x28, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, + 0x6f, 0x6c, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, + 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x21, 0x0a, 0x1f, + 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x46, 0x6c, + 0x61, 0x73, 0x68, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, + 0x1e, 0x0a, 0x1c, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, + 0x6c, 0x48, 0x6f, 0x6e, 0x6b, 0x48, 0x6f, 0x72, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, + 0x23, 0x0a, 0x21, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, + 0x6c, 0x52, 0x65, 0x73, 0x65, 0x74, 0x56, 0x61, 0x6c, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x41, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x4b, 0x0a, 0x2a, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, + 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x53, 0x6f, + 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, + 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x63, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x53, 0x65, + 0x63, 0x22, 0x33, 0x0a, 0x21, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, + 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x53, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x4d, 0x6f, 0x64, 0x65, + 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6e, 0x22, 0x4e, 0x0a, 0x20, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, + 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x56, 0x61, 0x6c, 0x65, 0x74, + 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6e, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, + 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, + 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x84, 0x02, 0x0a, 0x24, 0x56, 0x65, 0x68, 0x69, 0x63, + 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x75, 0x6e, 0x72, 0x6f, 0x6f, 0x66, + 0x4f, 0x70, 0x65, 0x6e, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, + 0x27, 0x0a, 0x0e, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x6c, 0x65, 0x76, 0x65, + 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x0d, 0x61, 0x62, 0x73, 0x6f, 0x6c, + 0x75, 0x74, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x21, 0x0a, 0x0b, 0x64, 0x65, 0x6c, 0x74, + 0x61, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x11, 0x48, 0x00, 0x52, + 0x0a, 0x64, 0x65, 0x6c, 0x74, 0x61, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x25, 0x0a, 0x04, 0x76, + 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, + 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x04, 0x76, 0x65, + 0x6e, 0x74, 0x12, 0x27, 0x0a, 0x05, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, - 0x69, 0x64, 0x48, 0x01, 0x52, 0x04, 0x6f, 0x70, 0x65, 0x6e, 0x42, 0x0f, 0x0a, 0x0d, 0x73, 0x75, - 0x6e, 0x72, 0x6f, 0x6f, 0x66, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x42, 0x08, 0x0a, 0x06, 0x61, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x6b, 0x0a, 0x23, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, - 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x48, 0x6f, - 0x6d, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2e, 0x0a, 0x08, - 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, - 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4c, 0x61, 0x74, 0x4c, 0x6f, - 0x6e, 0x67, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, - 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, - 0x65, 0x6e, 0x22, 0xd3, 0x01, 0x0a, 0x1a, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, - 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x41, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x12, 0x2e, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, - 0x4c, 0x61, 0x74, 0x4c, 0x6f, 0x6e, 0x67, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x12, 0x2b, 0x0a, 0x07, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, - 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x07, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x12, 0x25, - 0x0a, 0x04, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, - 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, - 0x04, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x27, 0x0a, 0x05, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x18, 0x04, + 0x69, 0x64, 0x48, 0x01, 0x52, 0x05, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x12, 0x25, 0x0a, 0x04, 0x6f, + 0x70, 0x65, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, + 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x01, 0x52, 0x04, 0x6f, 0x70, + 0x65, 0x6e, 0x42, 0x0f, 0x0a, 0x0d, 0x73, 0x75, 0x6e, 0x72, 0x6f, 0x6f, 0x66, 0x5f, 0x6c, 0x65, + 0x76, 0x65, 0x6c, 0x42, 0x08, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x6b, 0x0a, + 0x23, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x54, + 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x48, 0x6f, 0x6d, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x41, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2e, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, + 0x65, 0x72, 0x2e, 0x4c, 0x61, 0x74, 0x4c, 0x6f, 0x6e, 0x67, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xa9, 0x01, 0x0a, 0x1a, 0x56, + 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x57, 0x69, 0x6e, + 0x64, 0x6f, 0x77, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2b, 0x0a, 0x07, 0x75, 0x6e, 0x6b, + 0x6e, 0x6f, 0x77, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, + 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x07, 0x75, + 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x12, 0x25, 0x0a, 0x04, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, - 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x05, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x42, 0x08, - 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x52, 0x0a, 0x17, 0x48, 0x76, 0x61, 0x63, - 0x42, 0x69, 0x6f, 0x77, 0x65, 0x61, 0x70, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, - 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, - 0x02, 0x6f, 0x6e, 0x12, 0x27, 0x0a, 0x0f, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x6f, 0x76, - 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x6d, 0x61, - 0x6e, 0x75, 0x61, 0x6c, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x22, 0xc5, 0x02, 0x0a, - 0x15, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, - 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x0a, 0x07, 0x63, 0x61, 0x72, 0x73, 0x65, 0x61, - 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, - 0x76, 0x65, 0x72, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6c, 0x69, 0x6d, - 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x61, - 0x74, 0x52, 0x07, 0x63, 0x61, 0x72, 0x73, 0x65, 0x61, 0x74, 0x1a, 0x73, 0x0a, 0x07, 0x43, 0x61, - 0x72, 0x53, 0x65, 0x61, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x08, 0x52, 0x02, 0x6f, 0x6e, 0x12, 0x58, 0x0a, 0x0d, 0x73, 0x65, 0x61, 0x74, 0x5f, 0x70, 0x6f, - 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x33, 0x2e, 0x43, - 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, - 0x74, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, - 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, - 0x45, 0x52, 0x0c, 0x73, 0x65, 0x61, 0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, - 0x73, 0x0a, 0x12, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, - 0x69, 0x6f, 0x6e, 0x5f, 0x45, 0x12, 0x1c, 0x0a, 0x18, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, - 0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, - 0x6e, 0x10, 0x00, 0x12, 0x1e, 0x0a, 0x1a, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x74, 0x50, - 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x4c, 0x65, 0x66, - 0x74, 0x10, 0x01, 0x12, 0x1f, 0x0a, 0x1b, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x74, 0x50, - 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x52, 0x69, 0x67, - 0x68, 0x74, 0x10, 0x02, 0x22, 0xb4, 0x01, 0x0a, 0x04, 0x50, 0x69, 0x6e, 0x67, 0x12, 0x17, 0x0a, - 0x07, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, - 0x70, 0x69, 0x6e, 0x67, 0x49, 0x64, 0x12, 0x43, 0x0a, 0x0f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, - 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0e, 0x6c, 0x6f, 0x63, - 0x61, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x4e, 0x0a, 0x15, 0x6c, - 0x61, 0x73, 0x74, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, - 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, - 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x13, 0x6c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x6d, 0x6f, - 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x58, 0x0a, 0x17, 0x53, - 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x64, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, - 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, - 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, - 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x69, 0x6d, - 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x63, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, - 0x67, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xbf, 0x02, 0x0a, 0x18, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, - 0x6c, 0x65, 0x64, 0x44, 0x65, 0x70, 0x61, 0x72, 0x74, 0x75, 0x72, 0x65, 0x41, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x25, 0x0a, 0x0e, - 0x64, 0x65, 0x70, 0x61, 0x72, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x64, 0x65, 0x70, 0x61, 0x72, 0x74, 0x75, 0x72, 0x65, 0x54, - 0x69, 0x6d, 0x65, 0x12, 0x54, 0x0a, 0x15, 0x70, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, - 0x69, 0x6f, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x50, - 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x69, 0x6e, 0x67, 0x54, 0x69, - 0x6d, 0x65, 0x73, 0x52, 0x14, 0x70, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, - 0x6e, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x12, 0x56, 0x0a, 0x17, 0x6f, 0x66, 0x66, - 0x5f, 0x70, 0x65, 0x61, 0x6b, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x74, - 0x69, 0x6d, 0x65, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x43, 0x61, 0x72, - 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4f, 0x66, 0x66, 0x50, 0x65, 0x61, 0x6b, 0x43, 0x68, - 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x52, 0x14, 0x6f, 0x66, 0x66, - 0x50, 0x65, 0x61, 0x6b, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, - 0x73, 0x12, 0x34, 0x0a, 0x17, 0x6f, 0x66, 0x66, 0x5f, 0x70, 0x65, 0x61, 0x6b, 0x5f, 0x68, 0x6f, - 0x75, 0x72, 0x73, 0x5f, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x13, 0x6f, 0x66, 0x66, 0x50, 0x65, 0x61, 0x6b, 0x48, 0x6f, 0x75, 0x72, 0x73, - 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xbc, 0x02, 0x0a, 0x17, 0x48, 0x76, 0x61, 0x63, - 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, - 0x69, 0x6f, 0x6e, 0x12, 0x6a, 0x0a, 0x13, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, - 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, - 0x32, 0x38, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, - 0x63, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, - 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x45, 0x52, 0x13, 0x43, 0x6c, 0x69, 0x6d, - 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, - 0x27, 0x0a, 0x0f, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, - 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, - 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x22, 0x8b, 0x01, 0x0a, 0x15, 0x43, 0x6c, 0x69, - 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x5f, 0x45, 0x12, 0x1b, 0x0a, 0x17, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, - 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x4f, 0x66, 0x66, 0x10, 0x00, 0x12, - 0x1a, 0x0a, 0x16, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, - 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x4f, 0x6e, 0x10, 0x01, 0x12, 0x1b, 0x0a, 0x17, 0x43, + 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x04, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x27, 0x0a, + 0x05, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, + 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, + 0x05, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x42, 0x08, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x4a, 0x04, 0x08, 0x01, 0x10, 0x02, 0x22, 0x52, 0x0a, 0x17, 0x48, 0x76, 0x61, 0x63, 0x42, 0x69, + 0x6f, 0x77, 0x65, 0x61, 0x70, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, + 0x6e, 0x12, 0x27, 0x0a, 0x0f, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x6f, 0x76, 0x65, 0x72, + 0x72, 0x69, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x6d, 0x61, 0x6e, 0x75, + 0x61, 0x6c, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x22, 0xc5, 0x02, 0x0a, 0x15, 0x41, + 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x41, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x0a, 0x07, 0x63, 0x61, 0x72, 0x73, 0x65, 0x61, 0x74, 0x18, + 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, + 0x72, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x74, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, + 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x61, 0x74, 0x52, + 0x07, 0x63, 0x61, 0x72, 0x73, 0x65, 0x61, 0x74, 0x1a, 0x73, 0x0a, 0x07, 0x43, 0x61, 0x72, 0x53, + 0x65, 0x61, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, + 0x02, 0x6f, 0x6e, 0x12, 0x58, 0x0a, 0x0d, 0x73, 0x65, 0x61, 0x74, 0x5f, 0x70, 0x6f, 0x73, 0x69, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x33, 0x2e, 0x43, 0x61, 0x72, + 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x74, 0x43, + 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x75, 0x74, + 0x6f, 0x53, 0x65, 0x61, 0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x45, 0x52, + 0x0c, 0x73, 0x65, 0x61, 0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x73, 0x0a, + 0x12, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x45, 0x12, 0x1c, 0x0a, 0x18, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x74, 0x50, + 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x10, + 0x00, 0x12, 0x1e, 0x0a, 0x1a, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x74, 0x50, 0x6f, 0x73, + 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x4c, 0x65, 0x66, 0x74, 0x10, + 0x01, 0x12, 0x1f, 0x0a, 0x1b, 0x41, 0x75, 0x74, 0x6f, 0x53, 0x65, 0x61, 0x74, 0x50, 0x6f, 0x73, + 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x52, 0x69, 0x67, 0x68, 0x74, + 0x10, 0x02, 0x22, 0xb4, 0x01, 0x0a, 0x04, 0x50, 0x69, 0x6e, 0x67, 0x12, 0x17, 0x0a, 0x07, 0x70, + 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x70, 0x69, + 0x6e, 0x67, 0x49, 0x64, 0x12, 0x43, 0x0a, 0x0f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x74, 0x69, + 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, + 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0e, 0x6c, 0x6f, 0x63, 0x61, 0x6c, + 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x4e, 0x0a, 0x15, 0x6c, 0x61, 0x73, + 0x74, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, + 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, + 0x74, 0x61, 0x6d, 0x70, 0x52, 0x13, 0x6c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, + 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x58, 0x0a, 0x17, 0x53, 0x63, 0x68, + 0x65, 0x64, 0x75, 0x6c, 0x65, 0x64, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x41, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x23, + 0x0a, 0x0d, 0x63, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x63, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x54, + 0x69, 0x6d, 0x65, 0x22, 0xbf, 0x02, 0x0a, 0x18, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, + 0x64, 0x44, 0x65, 0x70, 0x61, 0x72, 0x74, 0x75, 0x72, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x64, 0x65, + 0x70, 0x61, 0x72, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x0d, 0x64, 0x65, 0x70, 0x61, 0x72, 0x74, 0x75, 0x72, 0x65, 0x54, 0x69, 0x6d, + 0x65, 0x12, 0x54, 0x0a, 0x15, 0x70, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, + 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x1f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x50, 0x72, 0x65, + 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, + 0x73, 0x52, 0x14, 0x70, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x69, + 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x12, 0x56, 0x0a, 0x17, 0x6f, 0x66, 0x66, 0x5f, 0x70, + 0x65, 0x61, 0x6b, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x69, 0x6d, + 0x65, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, + 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4f, 0x66, 0x66, 0x50, 0x65, 0x61, 0x6b, 0x43, 0x68, 0x61, 0x72, + 0x67, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x52, 0x14, 0x6f, 0x66, 0x66, 0x50, 0x65, + 0x61, 0x6b, 0x43, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x12, + 0x34, 0x0a, 0x17, 0x6f, 0x66, 0x66, 0x5f, 0x70, 0x65, 0x61, 0x6b, 0x5f, 0x68, 0x6f, 0x75, 0x72, + 0x73, 0x5f, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x13, 0x6f, 0x66, 0x66, 0x50, 0x65, 0x61, 0x6b, 0x48, 0x6f, 0x75, 0x72, 0x73, 0x45, 0x6e, + 0x64, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xbc, 0x02, 0x0a, 0x17, 0x48, 0x76, 0x61, 0x63, 0x43, 0x6c, + 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x12, 0x6a, 0x0a, 0x13, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, + 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x38, + 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x76, 0x61, 0x63, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x5f, 0x44, 0x6f, 0x67, 0x10, 0x02, 0x12, 0x1c, 0x0a, 0x18, 0x43, 0x6c, 0x69, 0x6d, - 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, - 0x43, 0x61, 0x6d, 0x70, 0x10, 0x03, 0x22, 0x3c, 0x0a, 0x15, 0x53, 0x65, 0x74, 0x43, 0x68, 0x61, - 0x72, 0x67, 0x69, 0x6e, 0x67, 0x41, 0x6d, 0x70, 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, - 0x23, 0x0a, 0x0d, 0x63, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x6d, 0x70, 0x73, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x63, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, - 0x41, 0x6d, 0x70, 0x73, 0x22, 0x4d, 0x0a, 0x20, 0x53, 0x65, 0x74, 0x43, 0x61, 0x62, 0x69, 0x6e, - 0x4f, 0x76, 0x65, 0x72, 0x68, 0x65, 0x61, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x65, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6e, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x61, 0x6e, 0x5f, - 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x66, 0x61, 0x6e, 0x4f, - 0x6e, 0x6c, 0x79, 0x22, 0x38, 0x0a, 0x14, 0x53, 0x65, 0x74, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, - 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x76, - 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x0b, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x15, 0x0a, - 0x13, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x44, 0x6f, 0x6f, 0x72, 0x43, - 0x6c, 0x6f, 0x73, 0x65, 0x22, 0x14, 0x0a, 0x12, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x50, 0x6f, - 0x72, 0x74, 0x44, 0x6f, 0x6f, 0x72, 0x4f, 0x70, 0x65, 0x6e, 0x22, 0x6b, 0x0a, 0x10, 0x53, 0x65, - 0x74, 0x43, 0x6f, 0x70, 0x54, 0x65, 0x6d, 0x70, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x57, - 0x0a, 0x11, 0x63, 0x6f, 0x70, 0x41, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, - 0x65, 0x6d, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x29, 0x2e, 0x43, 0x61, 0x72, 0x53, - 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, - 0x74, 0x65, 0x2e, 0x43, 0x6f, 0x70, 0x41, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x54, 0x65, 0x6d, 0x70, 0x52, 0x11, 0x63, 0x6f, 0x70, 0x41, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x54, 0x65, 0x6d, 0x70, 0x22, 0x4f, 0x0a, 0x21, 0x56, 0x65, 0x68, 0x69, 0x63, - 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x54, - 0x6f, 0x44, 0x72, 0x69, 0x76, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, - 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, - 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, - 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x25, 0x0a, 0x23, 0x56, 0x65, 0x68, 0x69, - 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x73, 0x65, 0x74, 0x50, - 0x69, 0x6e, 0x54, 0x6f, 0x44, 0x72, 0x69, 0x76, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2a, - 0x46, 0x0a, 0x11, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x5f, 0x45, 0x12, 0x16, 0x0a, 0x12, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, - 0x4e, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x4f, 0x4b, 0x10, 0x00, 0x12, 0x19, 0x0a, 0x15, - 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, - 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, 0x01, 0x42, 0x6e, 0x0a, 0x24, 0x63, 0x6f, 0x6d, 0x2e, 0x74, - 0x65, 0x73, 0x6c, 0x61, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x63, - 0x61, 0x72, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5a, - 0x46, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x65, 0x73, 0x6c, - 0x61, 0x6d, 0x6f, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x2d, - 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x63, 0x6f, 0x6c, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x63, 0x61, - 0x72, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x6f, 0x6e, 0x2e, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, + 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x45, 0x52, 0x13, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, + 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x27, 0x0a, + 0x0f, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x4f, 0x76, + 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x22, 0x8b, 0x01, 0x0a, 0x15, 0x43, 0x6c, 0x69, 0x6d, 0x61, + 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x45, + 0x12, 0x1b, 0x0a, 0x17, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, + 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x4f, 0x66, 0x66, 0x10, 0x00, 0x12, 0x1a, 0x0a, + 0x16, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x4f, 0x6e, 0x10, 0x01, 0x12, 0x1b, 0x0a, 0x17, 0x43, 0x6c, 0x69, + 0x6d, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x44, 0x6f, 0x67, 0x10, 0x02, 0x12, 0x1c, 0x0a, 0x18, 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, + 0x65, 0x4b, 0x65, 0x65, 0x70, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x43, 0x61, + 0x6d, 0x70, 0x10, 0x03, 0x22, 0x3c, 0x0a, 0x15, 0x53, 0x65, 0x74, 0x43, 0x68, 0x61, 0x72, 0x67, + 0x69, 0x6e, 0x67, 0x41, 0x6d, 0x70, 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x23, 0x0a, + 0x0d, 0x63, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x6d, 0x70, 0x73, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x63, 0x68, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x67, 0x41, 0x6d, + 0x70, 0x73, 0x22, 0x2c, 0x0a, 0x1a, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x43, 0x68, 0x61, 0x72, + 0x67, 0x65, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x02, 0x69, 0x64, + 0x22, 0x60, 0x0a, 0x20, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x43, + 0x68, 0x61, 0x72, 0x67, 0x65, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x73, 0x41, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x6f, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x08, 0x52, 0x04, 0x68, 0x6f, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x77, 0x6f, 0x72, 0x6b, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x77, 0x6f, 0x72, 0x6b, 0x12, 0x14, 0x0a, 0x05, + 0x6f, 0x74, 0x68, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x6f, 0x74, 0x68, + 0x65, 0x72, 0x22, 0x66, 0x0a, 0x26, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x6d, 0x6f, 0x76, + 0x65, 0x50, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x63, 0x68, + 0x65, 0x64, 0x75, 0x6c, 0x65, 0x73, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, + 0x68, 0x6f, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x68, 0x6f, 0x6d, 0x65, + 0x12, 0x12, 0x0a, 0x04, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, + 0x77, 0x6f, 0x72, 0x6b, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x08, 0x52, 0x05, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x22, 0x32, 0x0a, 0x20, 0x52, 0x65, + 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, + 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, + 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x02, 0x69, 0x64, 0x22, 0x4d, + 0x0a, 0x20, 0x53, 0x65, 0x74, 0x43, 0x61, 0x62, 0x69, 0x6e, 0x4f, 0x76, 0x65, 0x72, 0x68, 0x65, + 0x61, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, + 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, + 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x61, 0x6e, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x66, 0x61, 0x6e, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0x38, 0x0a, + 0x14, 0x53, 0x65, 0x74, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x41, + 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, + 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x76, 0x65, 0x68, 0x69, + 0x63, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x15, 0x0a, 0x13, 0x43, 0x68, 0x61, 0x72, 0x67, + 0x65, 0x50, 0x6f, 0x72, 0x74, 0x44, 0x6f, 0x6f, 0x72, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x22, 0x14, + 0x0a, 0x12, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x44, 0x6f, 0x6f, 0x72, + 0x4f, 0x70, 0x65, 0x6e, 0x22, 0x6b, 0x0a, 0x10, 0x53, 0x65, 0x74, 0x43, 0x6f, 0x70, 0x54, 0x65, + 0x6d, 0x70, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x57, 0x0a, 0x11, 0x63, 0x6f, 0x70, 0x41, + 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x65, 0x6d, 0x70, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x0e, 0x32, 0x29, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, + 0x43, 0x6c, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x2e, 0x43, 0x6f, 0x70, + 0x41, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x65, 0x6d, 0x70, 0x52, 0x11, + 0x63, 0x6f, 0x70, 0x41, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x65, 0x6d, + 0x70, 0x22, 0x4f, 0x0a, 0x21, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, + 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x54, 0x6f, 0x44, 0x72, 0x69, 0x76, 0x65, + 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, + 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, + 0x72, 0x64, 0x22, 0x25, 0x0a, 0x23, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, + 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x65, 0x73, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x54, 0x6f, 0x44, 0x72, + 0x69, 0x76, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2a, 0x46, 0x0a, 0x11, 0x4f, 0x70, 0x65, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x45, 0x12, 0x16, + 0x0a, 0x12, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x54, 0x41, 0x54, 0x55, + 0x53, 0x5f, 0x4f, 0x4b, 0x10, 0x00, 0x12, 0x19, 0x0a, 0x15, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, + 0x49, 0x4f, 0x4e, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, + 0x01, 0x42, 0x6e, 0x0a, 0x24, 0x63, 0x6f, 0x6d, 0x2e, 0x74, 0x65, 0x73, 0x6c, 0x61, 0x2e, 0x67, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x63, 0x61, 0x72, 0x73, 0x65, 0x72, 0x76, + 0x65, 0x72, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5a, 0x46, 0x67, 0x69, 0x74, 0x68, 0x75, + 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x65, 0x73, 0x6c, 0x61, 0x6d, 0x6f, 0x74, 0x6f, 0x72, + 0x73, 0x2f, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, + 0x64, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2f, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x63, 0x61, 0x72, 0x73, 0x65, 0x72, 0x76, 0x65, + 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -5368,7 +5794,7 @@ func file_car_server_proto_rawDescGZIP() []byte { } var file_car_server_proto_enumTypes = make([]protoimpl.EnumInfo, 6) -var file_car_server_proto_msgTypes = make([]protoimpl.MessageInfo, 55) +var file_car_server_proto_msgTypes = make([]protoimpl.MessageInfo, 60) var file_car_server_proto_goTypes = []interface{}{ (OperationStatus_E)(0), // 0: CarServer.OperationStatus_E (HvacSeatCoolerActions_HvacSeatCoolerLevel_E)(0), // 1: CarServer.HvacSeatCoolerActions.HvacSeatCoolerLevel_E @@ -5397,48 +5823,55 @@ var file_car_server_proto_goTypes = []interface{}{ (*GetNearbyChargingSites)(nil), // 24: CarServer.GetNearbyChargingSites (*NearbyChargingSites)(nil), // 25: CarServer.NearbyChargingSites (*Superchargers)(nil), // 26: CarServer.Superchargers - (*MediaUpdateVolume)(nil), // 27: CarServer.MediaUpdateVolume - (*MediaNextFavorite)(nil), // 28: CarServer.MediaNextFavorite - (*MediaPreviousFavorite)(nil), // 29: CarServer.MediaPreviousFavorite - (*MediaNextTrack)(nil), // 30: CarServer.MediaNextTrack - (*MediaPreviousTrack)(nil), // 31: CarServer.MediaPreviousTrack - (*VehicleControlCancelSoftwareUpdateAction)(nil), // 32: CarServer.VehicleControlCancelSoftwareUpdateAction - (*VehicleControlFlashLightsAction)(nil), // 33: CarServer.VehicleControlFlashLightsAction - (*VehicleControlHonkHornAction)(nil), // 34: CarServer.VehicleControlHonkHornAction - (*VehicleControlResetValetPinAction)(nil), // 35: CarServer.VehicleControlResetValetPinAction - (*VehicleControlScheduleSoftwareUpdateAction)(nil), // 36: CarServer.VehicleControlScheduleSoftwareUpdateAction - (*VehicleControlSetSentryModeAction)(nil), // 37: CarServer.VehicleControlSetSentryModeAction - (*VehicleControlSetValetModeAction)(nil), // 38: CarServer.VehicleControlSetValetModeAction - (*VehicleControlSunroofOpenCloseAction)(nil), // 39: CarServer.VehicleControlSunroofOpenCloseAction - (*VehicleControlTriggerHomelinkAction)(nil), // 40: CarServer.VehicleControlTriggerHomelinkAction - (*VehicleControlWindowAction)(nil), // 41: CarServer.VehicleControlWindowAction - (*HvacBioweaponModeAction)(nil), // 42: CarServer.HvacBioweaponModeAction - (*AutoSeatClimateAction)(nil), // 43: CarServer.AutoSeatClimateAction - (*Ping)(nil), // 44: CarServer.Ping - (*ScheduledChargingAction)(nil), // 45: CarServer.ScheduledChargingAction - (*ScheduledDepartureAction)(nil), // 46: CarServer.ScheduledDepartureAction - (*HvacClimateKeeperAction)(nil), // 47: CarServer.HvacClimateKeeperAction - (*SetChargingAmpsAction)(nil), // 48: CarServer.SetChargingAmpsAction - (*SetCabinOverheatProtectionAction)(nil), // 49: CarServer.SetCabinOverheatProtectionAction - (*SetVehicleNameAction)(nil), // 50: CarServer.SetVehicleNameAction - (*ChargePortDoorClose)(nil), // 51: CarServer.ChargePortDoorClose - (*ChargePortDoorOpen)(nil), // 52: CarServer.ChargePortDoorOpen - (*SetCopTempAction)(nil), // 53: CarServer.SetCopTempAction - (*VehicleControlSetPinToDriveAction)(nil), // 54: CarServer.VehicleControlSetPinToDriveAction - (*VehicleControlResetPinToDriveAction)(nil), // 55: CarServer.VehicleControlResetPinToDriveAction - (*HvacSeatHeaterActions_HvacSeatHeaterAction)(nil), // 56: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction - (*HvacSeatCoolerActions_HvacSeatCoolerAction)(nil), // 57: CarServer.HvacSeatCoolerActions.HvacSeatCoolerAction - (*HvacTemperatureAdjustmentAction_Temperature)(nil), // 58: CarServer.HvacTemperatureAdjustmentAction.Temperature - (*HvacTemperatureAdjustmentAction_HvacTemperatureZone)(nil), // 59: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone - (*AutoSeatClimateAction_CarSeat)(nil), // 60: CarServer.AutoSeatClimateAction.CarSeat - (*VehicleState_GuestMode)(nil), // 61: CarServer.VehicleState.GuestMode - (*signatures.SessionInfo)(nil), // 62: Signatures.SessionInfo - (*Void)(nil), // 63: CarServer.Void - (*timestamppb.Timestamp)(nil), // 64: google.protobuf.Timestamp - (*LatLong)(nil), // 65: CarServer.LatLong - (*PreconditioningTimes)(nil), // 66: CarServer.PreconditioningTimes - (*OffPeakChargingTimes)(nil), // 67: CarServer.OffPeakChargingTimes - (ClimateState_CopActivationTemp)(0), // 68: CarServer.ClimateState.CopActivationTemp + (*MediaPlayAction)(nil), // 27: CarServer.MediaPlayAction + (*MediaUpdateVolume)(nil), // 28: CarServer.MediaUpdateVolume + (*MediaNextFavorite)(nil), // 29: CarServer.MediaNextFavorite + (*MediaPreviousFavorite)(nil), // 30: CarServer.MediaPreviousFavorite + (*MediaNextTrack)(nil), // 31: CarServer.MediaNextTrack + (*MediaPreviousTrack)(nil), // 32: CarServer.MediaPreviousTrack + (*VehicleControlCancelSoftwareUpdateAction)(nil), // 33: CarServer.VehicleControlCancelSoftwareUpdateAction + (*VehicleControlFlashLightsAction)(nil), // 34: CarServer.VehicleControlFlashLightsAction + (*VehicleControlHonkHornAction)(nil), // 35: CarServer.VehicleControlHonkHornAction + (*VehicleControlResetValetPinAction)(nil), // 36: CarServer.VehicleControlResetValetPinAction + (*VehicleControlScheduleSoftwareUpdateAction)(nil), // 37: CarServer.VehicleControlScheduleSoftwareUpdateAction + (*VehicleControlSetSentryModeAction)(nil), // 38: CarServer.VehicleControlSetSentryModeAction + (*VehicleControlSetValetModeAction)(nil), // 39: CarServer.VehicleControlSetValetModeAction + (*VehicleControlSunroofOpenCloseAction)(nil), // 40: CarServer.VehicleControlSunroofOpenCloseAction + (*VehicleControlTriggerHomelinkAction)(nil), // 41: CarServer.VehicleControlTriggerHomelinkAction + (*VehicleControlWindowAction)(nil), // 42: CarServer.VehicleControlWindowAction + (*HvacBioweaponModeAction)(nil), // 43: CarServer.HvacBioweaponModeAction + (*AutoSeatClimateAction)(nil), // 44: CarServer.AutoSeatClimateAction + (*Ping)(nil), // 45: CarServer.Ping + (*ScheduledChargingAction)(nil), // 46: CarServer.ScheduledChargingAction + (*ScheduledDepartureAction)(nil), // 47: CarServer.ScheduledDepartureAction + (*HvacClimateKeeperAction)(nil), // 48: CarServer.HvacClimateKeeperAction + (*SetChargingAmpsAction)(nil), // 49: CarServer.SetChargingAmpsAction + (*RemoveChargeScheduleAction)(nil), // 50: CarServer.RemoveChargeScheduleAction + (*BatchRemoveChargeSchedulesAction)(nil), // 51: CarServer.BatchRemoveChargeSchedulesAction + (*BatchRemovePreconditionSchedulesAction)(nil), // 52: CarServer.BatchRemovePreconditionSchedulesAction + (*RemovePreconditionScheduleAction)(nil), // 53: CarServer.RemovePreconditionScheduleAction + (*SetCabinOverheatProtectionAction)(nil), // 54: CarServer.SetCabinOverheatProtectionAction + (*SetVehicleNameAction)(nil), // 55: CarServer.SetVehicleNameAction + (*ChargePortDoorClose)(nil), // 56: CarServer.ChargePortDoorClose + (*ChargePortDoorOpen)(nil), // 57: CarServer.ChargePortDoorOpen + (*SetCopTempAction)(nil), // 58: CarServer.SetCopTempAction + (*VehicleControlSetPinToDriveAction)(nil), // 59: CarServer.VehicleControlSetPinToDriveAction + (*VehicleControlResetPinToDriveAction)(nil), // 60: CarServer.VehicleControlResetPinToDriveAction + (*HvacSeatHeaterActions_HvacSeatHeaterAction)(nil), // 61: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction + (*HvacSeatCoolerActions_HvacSeatCoolerAction)(nil), // 62: CarServer.HvacSeatCoolerActions.HvacSeatCoolerAction + (*HvacTemperatureAdjustmentAction_Temperature)(nil), // 63: CarServer.HvacTemperatureAdjustmentAction.Temperature + (*HvacTemperatureAdjustmentAction_HvacTemperatureZone)(nil), // 64: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone + (*AutoSeatClimateAction_CarSeat)(nil), // 65: CarServer.AutoSeatClimateAction.CarSeat + (*VehicleState_GuestMode)(nil), // 66: CarServer.VehicleState.GuestMode + (*ChargeSchedule)(nil), // 67: CarServer.ChargeSchedule + (*PreconditionSchedule)(nil), // 68: CarServer.PreconditionSchedule + (*signatures.SessionInfo)(nil), // 69: Signatures.SessionInfo + (*Void)(nil), // 70: CarServer.Void + (*timestamppb.Timestamp)(nil), // 71: google.protobuf.Timestamp + (*LatLong)(nil), // 72: CarServer.LatLong + (*PreconditioningTimes)(nil), // 73: CarServer.PreconditioningTimes + (*OffPeakChargingTimes)(nil), // 74: CarServer.OffPeakChargingTimes + (ClimateState_CopActivationTemp)(0), // 75: CarServer.ClimateState.CopActivationTemp } var file_car_server_proto_depIdxs = []int32{ 7, // 0: CarServer.Action.vehicleAction:type_name -> CarServer.VehicleAction @@ -5451,104 +5884,110 @@ var file_car_server_proto_depIdxs = []int32{ 21, // 7: CarServer.VehicleAction.hvacSetPreconditioningMaxAction:type_name -> CarServer.HvacSetPreconditioningMaxAction 22, // 8: CarServer.VehicleAction.hvacSteeringWheelHeaterAction:type_name -> CarServer.HvacSteeringWheelHeaterAction 23, // 9: CarServer.VehicleAction.hvacTemperatureAdjustmentAction:type_name -> CarServer.HvacTemperatureAdjustmentAction - 27, // 10: CarServer.VehicleAction.mediaUpdateVolume:type_name -> CarServer.MediaUpdateVolume - 28, // 11: CarServer.VehicleAction.mediaNextFavorite:type_name -> CarServer.MediaNextFavorite - 29, // 12: CarServer.VehicleAction.mediaPreviousFavorite:type_name -> CarServer.MediaPreviousFavorite - 30, // 13: CarServer.VehicleAction.mediaNextTrack:type_name -> CarServer.MediaNextTrack - 31, // 14: CarServer.VehicleAction.mediaPreviousTrack:type_name -> CarServer.MediaPreviousTrack - 24, // 15: CarServer.VehicleAction.getNearbyChargingSites:type_name -> CarServer.GetNearbyChargingSites - 32, // 16: CarServer.VehicleAction.vehicleControlCancelSoftwareUpdateAction:type_name -> CarServer.VehicleControlCancelSoftwareUpdateAction - 33, // 17: CarServer.VehicleAction.vehicleControlFlashLightsAction:type_name -> CarServer.VehicleControlFlashLightsAction - 34, // 18: CarServer.VehicleAction.vehicleControlHonkHornAction:type_name -> CarServer.VehicleControlHonkHornAction - 35, // 19: CarServer.VehicleAction.vehicleControlResetValetPinAction:type_name -> CarServer.VehicleControlResetValetPinAction - 36, // 20: CarServer.VehicleAction.vehicleControlScheduleSoftwareUpdateAction:type_name -> CarServer.VehicleControlScheduleSoftwareUpdateAction - 37, // 21: CarServer.VehicleAction.vehicleControlSetSentryModeAction:type_name -> CarServer.VehicleControlSetSentryModeAction - 38, // 22: CarServer.VehicleAction.vehicleControlSetValetModeAction:type_name -> CarServer.VehicleControlSetValetModeAction - 39, // 23: CarServer.VehicleAction.vehicleControlSunroofOpenCloseAction:type_name -> CarServer.VehicleControlSunroofOpenCloseAction - 40, // 24: CarServer.VehicleAction.vehicleControlTriggerHomelinkAction:type_name -> CarServer.VehicleControlTriggerHomelinkAction - 41, // 25: CarServer.VehicleAction.vehicleControlWindowAction:type_name -> CarServer.VehicleControlWindowAction - 42, // 26: CarServer.VehicleAction.hvacBioweaponModeAction:type_name -> CarServer.HvacBioweaponModeAction - 19, // 27: CarServer.VehicleAction.hvacSeatHeaterActions:type_name -> CarServer.HvacSeatHeaterActions - 45, // 28: CarServer.VehicleAction.scheduledChargingAction:type_name -> CarServer.ScheduledChargingAction - 46, // 29: CarServer.VehicleAction.scheduledDepartureAction:type_name -> CarServer.ScheduledDepartureAction - 48, // 30: CarServer.VehicleAction.setChargingAmpsAction:type_name -> CarServer.SetChargingAmpsAction - 47, // 31: CarServer.VehicleAction.hvacClimateKeeperAction:type_name -> CarServer.HvacClimateKeeperAction - 44, // 32: CarServer.VehicleAction.ping:type_name -> CarServer.Ping - 43, // 33: CarServer.VehicleAction.autoSeatClimateAction:type_name -> CarServer.AutoSeatClimateAction - 20, // 34: CarServer.VehicleAction.hvacSeatCoolerActions:type_name -> CarServer.HvacSeatCoolerActions - 49, // 35: CarServer.VehicleAction.setCabinOverheatProtectionAction:type_name -> CarServer.SetCabinOverheatProtectionAction - 50, // 36: CarServer.VehicleAction.setVehicleNameAction:type_name -> CarServer.SetVehicleNameAction - 51, // 37: CarServer.VehicleAction.chargePortDoorClose:type_name -> CarServer.ChargePortDoorClose - 52, // 38: CarServer.VehicleAction.chargePortDoorOpen:type_name -> CarServer.ChargePortDoorOpen - 61, // 39: CarServer.VehicleAction.guestModeAction:type_name -> CarServer.VehicleState.GuestMode - 53, // 40: CarServer.VehicleAction.setCopTempAction:type_name -> CarServer.SetCopTempAction - 8, // 41: CarServer.VehicleAction.eraseUserDataAction:type_name -> CarServer.EraseUserDataAction - 54, // 42: CarServer.VehicleAction.vehicleControlSetPinToDriveAction:type_name -> CarServer.VehicleControlSetPinToDriveAction - 55, // 43: CarServer.VehicleAction.vehicleControlResetPinToDriveAction:type_name -> CarServer.VehicleControlResetPinToDriveAction - 10, // 44: CarServer.Response.actionStatus:type_name -> CarServer.ActionStatus - 62, // 45: CarServer.Response.getSessionInfoResponse:type_name -> Signatures.SessionInfo - 25, // 46: CarServer.Response.getNearbyChargingSites:type_name -> CarServer.NearbyChargingSites - 44, // 47: CarServer.Response.ping:type_name -> CarServer.Ping - 0, // 48: CarServer.ActionStatus.result:type_name -> CarServer.OperationStatus_E - 11, // 49: CarServer.ActionStatus.result_reason:type_name -> CarServer.ResultReason - 63, // 50: CarServer.ChargingStartStopAction.unknown:type_name -> CarServer.Void - 63, // 51: CarServer.ChargingStartStopAction.start:type_name -> CarServer.Void - 63, // 52: CarServer.ChargingStartStopAction.start_standard:type_name -> CarServer.Void - 63, // 53: CarServer.ChargingStartStopAction.start_max_range:type_name -> CarServer.Void - 63, // 54: CarServer.ChargingStartStopAction.stop:type_name -> CarServer.Void - 56, // 55: CarServer.HvacSeatHeaterActions.hvacSeatHeaterAction:type_name -> CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction - 57, // 56: CarServer.HvacSeatCoolerActions.hvacSeatCoolerAction:type_name -> CarServer.HvacSeatCoolerActions.HvacSeatCoolerAction - 3, // 57: CarServer.HvacSetPreconditioningMaxAction.manual_override_mode:type_name -> CarServer.HvacSetPreconditioningMaxAction.ManualOverrideMode_E - 58, // 58: CarServer.HvacTemperatureAdjustmentAction.level:type_name -> CarServer.HvacTemperatureAdjustmentAction.Temperature - 59, // 59: CarServer.HvacTemperatureAdjustmentAction.hvac_temperature_zone:type_name -> CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone - 64, // 60: CarServer.NearbyChargingSites.timestamp:type_name -> google.protobuf.Timestamp - 26, // 61: CarServer.NearbyChargingSites.superchargers:type_name -> CarServer.Superchargers - 65, // 62: CarServer.Superchargers.location:type_name -> CarServer.LatLong - 63, // 63: CarServer.VehicleControlSunroofOpenCloseAction.vent:type_name -> CarServer.Void - 63, // 64: CarServer.VehicleControlSunroofOpenCloseAction.close:type_name -> CarServer.Void - 63, // 65: CarServer.VehicleControlSunroofOpenCloseAction.open:type_name -> CarServer.Void - 65, // 66: CarServer.VehicleControlTriggerHomelinkAction.location:type_name -> CarServer.LatLong - 65, // 67: CarServer.VehicleControlWindowAction.location:type_name -> CarServer.LatLong - 63, // 68: CarServer.VehicleControlWindowAction.unknown:type_name -> CarServer.Void - 63, // 69: CarServer.VehicleControlWindowAction.vent:type_name -> CarServer.Void - 63, // 70: CarServer.VehicleControlWindowAction.close:type_name -> CarServer.Void - 60, // 71: CarServer.AutoSeatClimateAction.carseat:type_name -> CarServer.AutoSeatClimateAction.CarSeat - 64, // 72: CarServer.Ping.local_timestamp:type_name -> google.protobuf.Timestamp - 64, // 73: CarServer.Ping.last_remote_timestamp:type_name -> google.protobuf.Timestamp - 66, // 74: CarServer.ScheduledDepartureAction.preconditioning_times:type_name -> CarServer.PreconditioningTimes - 67, // 75: CarServer.ScheduledDepartureAction.off_peak_charging_times:type_name -> CarServer.OffPeakChargingTimes - 5, // 76: CarServer.HvacClimateKeeperAction.ClimateKeeperAction:type_name -> CarServer.HvacClimateKeeperAction.ClimateKeeperAction_E - 68, // 77: CarServer.SetCopTempAction.copActivationTemp:type_name -> CarServer.ClimateState.CopActivationTemp - 63, // 78: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_UNKNOWN:type_name -> CarServer.Void - 63, // 79: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_OFF:type_name -> CarServer.Void - 63, // 80: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_LOW:type_name -> CarServer.Void - 63, // 81: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_MED:type_name -> CarServer.Void - 63, // 82: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_HIGH:type_name -> CarServer.Void - 63, // 83: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_UNKNOWN:type_name -> CarServer.Void - 63, // 84: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_FRONT_LEFT:type_name -> CarServer.Void - 63, // 85: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_FRONT_RIGHT:type_name -> CarServer.Void - 63, // 86: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_LEFT:type_name -> CarServer.Void - 63, // 87: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_LEFT_BACK:type_name -> CarServer.Void - 63, // 88: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_CENTER:type_name -> CarServer.Void - 63, // 89: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_RIGHT:type_name -> CarServer.Void - 63, // 90: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_RIGHT_BACK:type_name -> CarServer.Void - 63, // 91: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_THIRD_ROW_LEFT:type_name -> CarServer.Void - 63, // 92: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_THIRD_ROW_RIGHT:type_name -> CarServer.Void - 1, // 93: CarServer.HvacSeatCoolerActions.HvacSeatCoolerAction.seat_cooler_level:type_name -> CarServer.HvacSeatCoolerActions.HvacSeatCoolerLevel_E - 2, // 94: CarServer.HvacSeatCoolerActions.HvacSeatCoolerAction.seat_position:type_name -> CarServer.HvacSeatCoolerActions.HvacSeatCoolerPosition_E - 63, // 95: CarServer.HvacTemperatureAdjustmentAction.Temperature.TEMP_UNKNOWN:type_name -> CarServer.Void - 63, // 96: CarServer.HvacTemperatureAdjustmentAction.Temperature.TEMP_MIN:type_name -> CarServer.Void - 63, // 97: CarServer.HvacTemperatureAdjustmentAction.Temperature.TEMP_MAX:type_name -> CarServer.Void - 63, // 98: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone.TEMP_ZONE_UNKNOWN:type_name -> CarServer.Void - 63, // 99: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone.TEMP_ZONE_FRONT_LEFT:type_name -> CarServer.Void - 63, // 100: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone.TEMP_ZONE_FRONT_RIGHT:type_name -> CarServer.Void - 63, // 101: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone.TEMP_ZONE_REAR:type_name -> CarServer.Void - 4, // 102: CarServer.AutoSeatClimateAction.CarSeat.seat_position:type_name -> CarServer.AutoSeatClimateAction.AutoSeatPosition_E - 103, // [103:103] is the sub-list for method output_type - 103, // [103:103] is the sub-list for method input_type - 103, // [103:103] is the sub-list for extension type_name - 103, // [103:103] is the sub-list for extension extendee - 0, // [0:103] is the sub-list for field type_name + 27, // 10: CarServer.VehicleAction.mediaPlayAction:type_name -> CarServer.MediaPlayAction + 28, // 11: CarServer.VehicleAction.mediaUpdateVolume:type_name -> CarServer.MediaUpdateVolume + 29, // 12: CarServer.VehicleAction.mediaNextFavorite:type_name -> CarServer.MediaNextFavorite + 30, // 13: CarServer.VehicleAction.mediaPreviousFavorite:type_name -> CarServer.MediaPreviousFavorite + 31, // 14: CarServer.VehicleAction.mediaNextTrack:type_name -> CarServer.MediaNextTrack + 32, // 15: CarServer.VehicleAction.mediaPreviousTrack:type_name -> CarServer.MediaPreviousTrack + 24, // 16: CarServer.VehicleAction.getNearbyChargingSites:type_name -> CarServer.GetNearbyChargingSites + 33, // 17: CarServer.VehicleAction.vehicleControlCancelSoftwareUpdateAction:type_name -> CarServer.VehicleControlCancelSoftwareUpdateAction + 34, // 18: CarServer.VehicleAction.vehicleControlFlashLightsAction:type_name -> CarServer.VehicleControlFlashLightsAction + 35, // 19: CarServer.VehicleAction.vehicleControlHonkHornAction:type_name -> CarServer.VehicleControlHonkHornAction + 36, // 20: CarServer.VehicleAction.vehicleControlResetValetPinAction:type_name -> CarServer.VehicleControlResetValetPinAction + 37, // 21: CarServer.VehicleAction.vehicleControlScheduleSoftwareUpdateAction:type_name -> CarServer.VehicleControlScheduleSoftwareUpdateAction + 38, // 22: CarServer.VehicleAction.vehicleControlSetSentryModeAction:type_name -> CarServer.VehicleControlSetSentryModeAction + 39, // 23: CarServer.VehicleAction.vehicleControlSetValetModeAction:type_name -> CarServer.VehicleControlSetValetModeAction + 40, // 24: CarServer.VehicleAction.vehicleControlSunroofOpenCloseAction:type_name -> CarServer.VehicleControlSunroofOpenCloseAction + 41, // 25: CarServer.VehicleAction.vehicleControlTriggerHomelinkAction:type_name -> CarServer.VehicleControlTriggerHomelinkAction + 42, // 26: CarServer.VehicleAction.vehicleControlWindowAction:type_name -> CarServer.VehicleControlWindowAction + 43, // 27: CarServer.VehicleAction.hvacBioweaponModeAction:type_name -> CarServer.HvacBioweaponModeAction + 19, // 28: CarServer.VehicleAction.hvacSeatHeaterActions:type_name -> CarServer.HvacSeatHeaterActions + 46, // 29: CarServer.VehicleAction.scheduledChargingAction:type_name -> CarServer.ScheduledChargingAction + 47, // 30: CarServer.VehicleAction.scheduledDepartureAction:type_name -> CarServer.ScheduledDepartureAction + 49, // 31: CarServer.VehicleAction.setChargingAmpsAction:type_name -> CarServer.SetChargingAmpsAction + 48, // 32: CarServer.VehicleAction.hvacClimateKeeperAction:type_name -> CarServer.HvacClimateKeeperAction + 45, // 33: CarServer.VehicleAction.ping:type_name -> CarServer.Ping + 44, // 34: CarServer.VehicleAction.autoSeatClimateAction:type_name -> CarServer.AutoSeatClimateAction + 20, // 35: CarServer.VehicleAction.hvacSeatCoolerActions:type_name -> CarServer.HvacSeatCoolerActions + 54, // 36: CarServer.VehicleAction.setCabinOverheatProtectionAction:type_name -> CarServer.SetCabinOverheatProtectionAction + 55, // 37: CarServer.VehicleAction.setVehicleNameAction:type_name -> CarServer.SetVehicleNameAction + 56, // 38: CarServer.VehicleAction.chargePortDoorClose:type_name -> CarServer.ChargePortDoorClose + 57, // 39: CarServer.VehicleAction.chargePortDoorOpen:type_name -> CarServer.ChargePortDoorOpen + 66, // 40: CarServer.VehicleAction.guestModeAction:type_name -> CarServer.VehicleState.GuestMode + 58, // 41: CarServer.VehicleAction.setCopTempAction:type_name -> CarServer.SetCopTempAction + 8, // 42: CarServer.VehicleAction.eraseUserDataAction:type_name -> CarServer.EraseUserDataAction + 59, // 43: CarServer.VehicleAction.vehicleControlSetPinToDriveAction:type_name -> CarServer.VehicleControlSetPinToDriveAction + 60, // 44: CarServer.VehicleAction.vehicleControlResetPinToDriveAction:type_name -> CarServer.VehicleControlResetPinToDriveAction + 67, // 45: CarServer.VehicleAction.addChargeScheduleAction:type_name -> CarServer.ChargeSchedule + 50, // 46: CarServer.VehicleAction.removeChargeScheduleAction:type_name -> CarServer.RemoveChargeScheduleAction + 68, // 47: CarServer.VehicleAction.addPreconditionScheduleAction:type_name -> CarServer.PreconditionSchedule + 53, // 48: CarServer.VehicleAction.removePreconditionScheduleAction:type_name -> CarServer.RemovePreconditionScheduleAction + 52, // 49: CarServer.VehicleAction.batchRemovePreconditionSchedulesAction:type_name -> CarServer.BatchRemovePreconditionSchedulesAction + 51, // 50: CarServer.VehicleAction.batchRemoveChargeSchedulesAction:type_name -> CarServer.BatchRemoveChargeSchedulesAction + 10, // 51: CarServer.Response.actionStatus:type_name -> CarServer.ActionStatus + 69, // 52: CarServer.Response.getSessionInfoResponse:type_name -> Signatures.SessionInfo + 25, // 53: CarServer.Response.getNearbyChargingSites:type_name -> CarServer.NearbyChargingSites + 45, // 54: CarServer.Response.ping:type_name -> CarServer.Ping + 0, // 55: CarServer.ActionStatus.result:type_name -> CarServer.OperationStatus_E + 11, // 56: CarServer.ActionStatus.result_reason:type_name -> CarServer.ResultReason + 70, // 57: CarServer.ChargingStartStopAction.unknown:type_name -> CarServer.Void + 70, // 58: CarServer.ChargingStartStopAction.start:type_name -> CarServer.Void + 70, // 59: CarServer.ChargingStartStopAction.start_standard:type_name -> CarServer.Void + 70, // 60: CarServer.ChargingStartStopAction.start_max_range:type_name -> CarServer.Void + 70, // 61: CarServer.ChargingStartStopAction.stop:type_name -> CarServer.Void + 61, // 62: CarServer.HvacSeatHeaterActions.hvacSeatHeaterAction:type_name -> CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction + 62, // 63: CarServer.HvacSeatCoolerActions.hvacSeatCoolerAction:type_name -> CarServer.HvacSeatCoolerActions.HvacSeatCoolerAction + 3, // 64: CarServer.HvacSetPreconditioningMaxAction.manual_override_mode:type_name -> CarServer.HvacSetPreconditioningMaxAction.ManualOverrideMode_E + 63, // 65: CarServer.HvacTemperatureAdjustmentAction.level:type_name -> CarServer.HvacTemperatureAdjustmentAction.Temperature + 64, // 66: CarServer.HvacTemperatureAdjustmentAction.hvac_temperature_zone:type_name -> CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone + 71, // 67: CarServer.NearbyChargingSites.timestamp:type_name -> google.protobuf.Timestamp + 26, // 68: CarServer.NearbyChargingSites.superchargers:type_name -> CarServer.Superchargers + 72, // 69: CarServer.Superchargers.location:type_name -> CarServer.LatLong + 70, // 70: CarServer.VehicleControlSunroofOpenCloseAction.vent:type_name -> CarServer.Void + 70, // 71: CarServer.VehicleControlSunroofOpenCloseAction.close:type_name -> CarServer.Void + 70, // 72: CarServer.VehicleControlSunroofOpenCloseAction.open:type_name -> CarServer.Void + 72, // 73: CarServer.VehicleControlTriggerHomelinkAction.location:type_name -> CarServer.LatLong + 70, // 74: CarServer.VehicleControlWindowAction.unknown:type_name -> CarServer.Void + 70, // 75: CarServer.VehicleControlWindowAction.vent:type_name -> CarServer.Void + 70, // 76: CarServer.VehicleControlWindowAction.close:type_name -> CarServer.Void + 65, // 77: CarServer.AutoSeatClimateAction.carseat:type_name -> CarServer.AutoSeatClimateAction.CarSeat + 71, // 78: CarServer.Ping.local_timestamp:type_name -> google.protobuf.Timestamp + 71, // 79: CarServer.Ping.last_remote_timestamp:type_name -> google.protobuf.Timestamp + 73, // 80: CarServer.ScheduledDepartureAction.preconditioning_times:type_name -> CarServer.PreconditioningTimes + 74, // 81: CarServer.ScheduledDepartureAction.off_peak_charging_times:type_name -> CarServer.OffPeakChargingTimes + 5, // 82: CarServer.HvacClimateKeeperAction.ClimateKeeperAction:type_name -> CarServer.HvacClimateKeeperAction.ClimateKeeperAction_E + 75, // 83: CarServer.SetCopTempAction.copActivationTemp:type_name -> CarServer.ClimateState.CopActivationTemp + 70, // 84: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_UNKNOWN:type_name -> CarServer.Void + 70, // 85: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_OFF:type_name -> CarServer.Void + 70, // 86: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_LOW:type_name -> CarServer.Void + 70, // 87: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_MED:type_name -> CarServer.Void + 70, // 88: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_HIGH:type_name -> CarServer.Void + 70, // 89: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_UNKNOWN:type_name -> CarServer.Void + 70, // 90: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_FRONT_LEFT:type_name -> CarServer.Void + 70, // 91: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_FRONT_RIGHT:type_name -> CarServer.Void + 70, // 92: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_LEFT:type_name -> CarServer.Void + 70, // 93: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_LEFT_BACK:type_name -> CarServer.Void + 70, // 94: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_CENTER:type_name -> CarServer.Void + 70, // 95: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_RIGHT:type_name -> CarServer.Void + 70, // 96: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_RIGHT_BACK:type_name -> CarServer.Void + 70, // 97: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_THIRD_ROW_LEFT:type_name -> CarServer.Void + 70, // 98: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_THIRD_ROW_RIGHT:type_name -> CarServer.Void + 1, // 99: CarServer.HvacSeatCoolerActions.HvacSeatCoolerAction.seat_cooler_level:type_name -> CarServer.HvacSeatCoolerActions.HvacSeatCoolerLevel_E + 2, // 100: CarServer.HvacSeatCoolerActions.HvacSeatCoolerAction.seat_position:type_name -> CarServer.HvacSeatCoolerActions.HvacSeatCoolerPosition_E + 70, // 101: CarServer.HvacTemperatureAdjustmentAction.Temperature.TEMP_UNKNOWN:type_name -> CarServer.Void + 70, // 102: CarServer.HvacTemperatureAdjustmentAction.Temperature.TEMP_MIN:type_name -> CarServer.Void + 70, // 103: CarServer.HvacTemperatureAdjustmentAction.Temperature.TEMP_MAX:type_name -> CarServer.Void + 70, // 104: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone.TEMP_ZONE_UNKNOWN:type_name -> CarServer.Void + 70, // 105: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone.TEMP_ZONE_FRONT_LEFT:type_name -> CarServer.Void + 70, // 106: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone.TEMP_ZONE_FRONT_RIGHT:type_name -> CarServer.Void + 70, // 107: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone.TEMP_ZONE_REAR:type_name -> CarServer.Void + 4, // 108: CarServer.AutoSeatClimateAction.CarSeat.seat_position:type_name -> CarServer.AutoSeatClimateAction.AutoSeatPosition_E + 109, // [109:109] is the sub-list for method output_type + 109, // [109:109] is the sub-list for method input_type + 109, // [109:109] is the sub-list for extension type_name + 109, // [109:109] is the sub-list for extension extendee + 0, // [0:109] is the sub-list for field type_name } func init() { file_car_server_proto_init() } @@ -5812,7 +6251,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MediaUpdateVolume); i { + switch v := v.(*MediaPlayAction); i { case 0: return &v.state case 1: @@ -5824,7 +6263,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MediaNextFavorite); i { + switch v := v.(*MediaUpdateVolume); i { case 0: return &v.state case 1: @@ -5836,7 +6275,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MediaPreviousFavorite); i { + switch v := v.(*MediaNextFavorite); i { case 0: return &v.state case 1: @@ -5848,7 +6287,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MediaNextTrack); i { + switch v := v.(*MediaPreviousFavorite); i { case 0: return &v.state case 1: @@ -5860,7 +6299,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MediaPreviousTrack); i { + switch v := v.(*MediaNextTrack); i { case 0: return &v.state case 1: @@ -5872,7 +6311,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VehicleControlCancelSoftwareUpdateAction); i { + switch v := v.(*MediaPreviousTrack); i { case 0: return &v.state case 1: @@ -5884,7 +6323,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VehicleControlFlashLightsAction); i { + switch v := v.(*VehicleControlCancelSoftwareUpdateAction); i { case 0: return &v.state case 1: @@ -5896,7 +6335,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VehicleControlHonkHornAction); i { + switch v := v.(*VehicleControlFlashLightsAction); i { case 0: return &v.state case 1: @@ -5908,7 +6347,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VehicleControlResetValetPinAction); i { + switch v := v.(*VehicleControlHonkHornAction); i { case 0: return &v.state case 1: @@ -5920,7 +6359,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VehicleControlScheduleSoftwareUpdateAction); i { + switch v := v.(*VehicleControlResetValetPinAction); i { case 0: return &v.state case 1: @@ -5932,7 +6371,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VehicleControlSetSentryModeAction); i { + switch v := v.(*VehicleControlScheduleSoftwareUpdateAction); i { case 0: return &v.state case 1: @@ -5944,7 +6383,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VehicleControlSetValetModeAction); i { + switch v := v.(*VehicleControlSetSentryModeAction); i { case 0: return &v.state case 1: @@ -5956,7 +6395,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VehicleControlSunroofOpenCloseAction); i { + switch v := v.(*VehicleControlSetValetModeAction); i { case 0: return &v.state case 1: @@ -5968,7 +6407,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VehicleControlTriggerHomelinkAction); i { + switch v := v.(*VehicleControlSunroofOpenCloseAction); i { case 0: return &v.state case 1: @@ -5980,7 +6419,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VehicleControlWindowAction); i { + switch v := v.(*VehicleControlTriggerHomelinkAction); i { case 0: return &v.state case 1: @@ -5992,7 +6431,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*HvacBioweaponModeAction); i { + switch v := v.(*VehicleControlWindowAction); i { case 0: return &v.state case 1: @@ -6004,7 +6443,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AutoSeatClimateAction); i { + switch v := v.(*HvacBioweaponModeAction); i { case 0: return &v.state case 1: @@ -6016,7 +6455,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ping); i { + switch v := v.(*AutoSeatClimateAction); i { case 0: return &v.state case 1: @@ -6028,7 +6467,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ScheduledChargingAction); i { + switch v := v.(*Ping); i { case 0: return &v.state case 1: @@ -6040,7 +6479,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ScheduledDepartureAction); i { + switch v := v.(*ScheduledChargingAction); i { case 0: return &v.state case 1: @@ -6052,7 +6491,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*HvacClimateKeeperAction); i { + switch v := v.(*ScheduledDepartureAction); i { case 0: return &v.state case 1: @@ -6064,7 +6503,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SetChargingAmpsAction); i { + switch v := v.(*HvacClimateKeeperAction); i { case 0: return &v.state case 1: @@ -6076,7 +6515,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SetCabinOverheatProtectionAction); i { + switch v := v.(*SetChargingAmpsAction); i { case 0: return &v.state case 1: @@ -6088,7 +6527,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SetVehicleNameAction); i { + switch v := v.(*RemoveChargeScheduleAction); i { case 0: return &v.state case 1: @@ -6100,7 +6539,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ChargePortDoorClose); i { + switch v := v.(*BatchRemoveChargeSchedulesAction); i { case 0: return &v.state case 1: @@ -6112,7 +6551,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ChargePortDoorOpen); i { + switch v := v.(*BatchRemovePreconditionSchedulesAction); i { case 0: return &v.state case 1: @@ -6124,7 +6563,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SetCopTempAction); i { + switch v := v.(*RemovePreconditionScheduleAction); i { case 0: return &v.state case 1: @@ -6136,7 +6575,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VehicleControlSetPinToDriveAction); i { + switch v := v.(*SetCabinOverheatProtectionAction); i { case 0: return &v.state case 1: @@ -6148,7 +6587,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VehicleControlResetPinToDriveAction); i { + switch v := v.(*SetVehicleNameAction); i { case 0: return &v.state case 1: @@ -6160,7 +6599,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*HvacSeatHeaterActions_HvacSeatHeaterAction); i { + switch v := v.(*ChargePortDoorClose); i { case 0: return &v.state case 1: @@ -6172,7 +6611,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*HvacSeatCoolerActions_HvacSeatCoolerAction); i { + switch v := v.(*ChargePortDoorOpen); i { case 0: return &v.state case 1: @@ -6184,7 +6623,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*HvacTemperatureAdjustmentAction_Temperature); i { + switch v := v.(*SetCopTempAction); i { case 0: return &v.state case 1: @@ -6196,7 +6635,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*HvacTemperatureAdjustmentAction_HvacTemperatureZone); i { + switch v := v.(*VehicleControlSetPinToDriveAction); i { case 0: return &v.state case 1: @@ -6208,6 +6647,66 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*VehicleControlResetPinToDriveAction); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_car_server_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*HvacSeatHeaterActions_HvacSeatHeaterAction); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_car_server_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*HvacSeatCoolerActions_HvacSeatCoolerAction); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_car_server_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*HvacTemperatureAdjustmentAction_Temperature); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_car_server_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*HvacTemperatureAdjustmentAction_HvacTemperatureZone); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_car_server_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AutoSeatClimateAction_CarSeat); i { case 0: return &v.state @@ -6233,6 +6732,7 @@ func file_car_server_proto_init() { (*VehicleAction_HvacSetPreconditioningMaxAction)(nil), (*VehicleAction_HvacSteeringWheelHeaterAction)(nil), (*VehicleAction_HvacTemperatureAdjustmentAction)(nil), + (*VehicleAction_MediaPlayAction)(nil), (*VehicleAction_MediaUpdateVolume)(nil), (*VehicleAction_MediaNextFavorite)(nil), (*VehicleAction_MediaPreviousFavorite)(nil), @@ -6267,6 +6767,12 @@ func file_car_server_proto_init() { (*VehicleAction_EraseUserDataAction)(nil), (*VehicleAction_VehicleControlSetPinToDriveAction)(nil), (*VehicleAction_VehicleControlResetPinToDriveAction)(nil), + (*VehicleAction_AddChargeScheduleAction)(nil), + (*VehicleAction_RemoveChargeScheduleAction)(nil), + (*VehicleAction_AddPreconditionScheduleAction)(nil), + (*VehicleAction_RemovePreconditionScheduleAction)(nil), + (*VehicleAction_BatchRemovePreconditionSchedulesAction)(nil), + (*VehicleAction_BatchRemoveChargeSchedulesAction)(nil), } file_car_server_proto_msgTypes[3].OneofWrappers = []interface{}{ (*Response_GetSessionInfoResponse)(nil), @@ -6283,23 +6789,23 @@ func file_car_server_proto_init() { (*ChargingStartStopAction_StartMaxRange)(nil), (*ChargingStartStopAction_Stop)(nil), } - file_car_server_proto_msgTypes[21].OneofWrappers = []interface{}{ + file_car_server_proto_msgTypes[22].OneofWrappers = []interface{}{ (*MediaUpdateVolume_VolumeDelta)(nil), (*MediaUpdateVolume_VolumeAbsoluteFloat)(nil), } - file_car_server_proto_msgTypes[33].OneofWrappers = []interface{}{ + file_car_server_proto_msgTypes[34].OneofWrappers = []interface{}{ (*VehicleControlSunroofOpenCloseAction_AbsoluteLevel)(nil), (*VehicleControlSunroofOpenCloseAction_DeltaLevel)(nil), (*VehicleControlSunroofOpenCloseAction_Vent)(nil), (*VehicleControlSunroofOpenCloseAction_Close)(nil), (*VehicleControlSunroofOpenCloseAction_Open)(nil), } - file_car_server_proto_msgTypes[35].OneofWrappers = []interface{}{ + file_car_server_proto_msgTypes[36].OneofWrappers = []interface{}{ (*VehicleControlWindowAction_Unknown)(nil), (*VehicleControlWindowAction_Vent)(nil), (*VehicleControlWindowAction_Close)(nil), } - file_car_server_proto_msgTypes[50].OneofWrappers = []interface{}{ + file_car_server_proto_msgTypes[55].OneofWrappers = []interface{}{ (*HvacSeatHeaterActions_HvacSeatHeaterAction_SEAT_HEATER_UNKNOWN)(nil), (*HvacSeatHeaterActions_HvacSeatHeaterAction_SEAT_HEATER_OFF)(nil), (*HvacSeatHeaterActions_HvacSeatHeaterAction_SEAT_HEATER_LOW)(nil), @@ -6316,12 +6822,12 @@ func file_car_server_proto_init() { (*HvacSeatHeaterActions_HvacSeatHeaterAction_CAR_SEAT_THIRD_ROW_LEFT)(nil), (*HvacSeatHeaterActions_HvacSeatHeaterAction_CAR_SEAT_THIRD_ROW_RIGHT)(nil), } - file_car_server_proto_msgTypes[52].OneofWrappers = []interface{}{ + file_car_server_proto_msgTypes[57].OneofWrappers = []interface{}{ (*HvacTemperatureAdjustmentAction_Temperature_TEMP_UNKNOWN)(nil), (*HvacTemperatureAdjustmentAction_Temperature_TEMP_MIN)(nil), (*HvacTemperatureAdjustmentAction_Temperature_TEMP_MAX)(nil), } - file_car_server_proto_msgTypes[53].OneofWrappers = []interface{}{ + file_car_server_proto_msgTypes[58].OneofWrappers = []interface{}{ (*HvacTemperatureAdjustmentAction_HvacTemperatureZone_TEMP_ZONE_UNKNOWN)(nil), (*HvacTemperatureAdjustmentAction_HvacTemperatureZone_TEMP_ZONE_FRONT_LEFT)(nil), (*HvacTemperatureAdjustmentAction_HvacTemperatureZone_TEMP_ZONE_FRONT_RIGHT)(nil), @@ -6333,7 +6839,7 @@ func file_car_server_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_car_server_proto_rawDesc, NumEnums: 6, - NumMessages: 55, + NumMessages: 60, NumExtensions: 0, NumServices: 0, }, diff --git a/pkg/protocol/protobuf/carserver/common.pb.go b/pkg/protocol/protobuf/carserver/common.pb.go index aeebd4e..d2e4c82 100644 --- a/pkg/protocol/protobuf/carserver/common.pb.go +++ b/pkg/protocol/protobuf/carserver/common.pb.go @@ -162,6 +162,7 @@ type PreconditioningTimes struct { unknownFields protoimpl.UnknownFields // Types that are assignable to Times: + // // *PreconditioningTimes_AllWeek // *PreconditioningTimes_Weekdays Times isPreconditioningTimes_Times `protobuf_oneof:"times"` @@ -242,6 +243,7 @@ type OffPeakChargingTimes struct { unknownFields protoimpl.UnknownFields // Types that are assignable to Times: + // // *OffPeakChargingTimes_AllWeek // *OffPeakChargingTimes_Weekdays Times isOffPeakChargingTimes_Times `protobuf_oneof:"times"` @@ -316,6 +318,236 @@ func (*OffPeakChargingTimes_AllWeek) isOffPeakChargingTimes_Times() {} func (*OffPeakChargingTimes_Weekdays) isOffPeakChargingTimes_Times() {} +type ChargeSchedule struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // datetime in epoch time + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + DaysOfWeek int32 `protobuf:"varint,3,opt,name=days_of_week,json=daysOfWeek,proto3" json:"days_of_week,omitempty"` + StartEnabled bool `protobuf:"varint,4,opt,name=start_enabled,json=startEnabled,proto3" json:"start_enabled,omitempty"` + StartTime int32 `protobuf:"varint,5,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 24h in minutes + EndEnabled bool `protobuf:"varint,6,opt,name=end_enabled,json=endEnabled,proto3" json:"end_enabled,omitempty"` + EndTime int32 `protobuf:"varint,7,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 24h in minutes + OneTime bool `protobuf:"varint,8,opt,name=one_time,json=oneTime,proto3" json:"one_time,omitempty"` + Enabled bool `protobuf:"varint,9,opt,name=enabled,proto3" json:"enabled,omitempty"` + Latitude float32 `protobuf:"fixed32,10,opt,name=latitude,proto3" json:"latitude,omitempty"` + Longitude float32 `protobuf:"fixed32,11,opt,name=longitude,proto3" json:"longitude,omitempty"` +} + +func (x *ChargeSchedule) Reset() { + *x = ChargeSchedule{} + if protoimpl.UnsafeEnabled { + mi := &file_common_proto_msgTypes[4] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ChargeSchedule) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ChargeSchedule) ProtoMessage() {} + +func (x *ChargeSchedule) ProtoReflect() protoreflect.Message { + mi := &file_common_proto_msgTypes[4] + 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 ChargeSchedule.ProtoReflect.Descriptor instead. +func (*ChargeSchedule) Descriptor() ([]byte, []int) { + return file_common_proto_rawDescGZIP(), []int{4} +} + +func (x *ChargeSchedule) GetId() uint64 { + if x != nil { + return x.Id + } + return 0 +} + +func (x *ChargeSchedule) GetName() string { + if x != nil { + return x.Name + } + return "" +} + +func (x *ChargeSchedule) GetDaysOfWeek() int32 { + if x != nil { + return x.DaysOfWeek + } + return 0 +} + +func (x *ChargeSchedule) GetStartEnabled() bool { + if x != nil { + return x.StartEnabled + } + return false +} + +func (x *ChargeSchedule) GetStartTime() int32 { + if x != nil { + return x.StartTime + } + return 0 +} + +func (x *ChargeSchedule) GetEndEnabled() bool { + if x != nil { + return x.EndEnabled + } + return false +} + +func (x *ChargeSchedule) GetEndTime() int32 { + if x != nil { + return x.EndTime + } + return 0 +} + +func (x *ChargeSchedule) GetOneTime() bool { + if x != nil { + return x.OneTime + } + return false +} + +func (x *ChargeSchedule) GetEnabled() bool { + if x != nil { + return x.Enabled + } + return false +} + +func (x *ChargeSchedule) GetLatitude() float32 { + if x != nil { + return x.Latitude + } + return 0 +} + +func (x *ChargeSchedule) GetLongitude() float32 { + if x != nil { + return x.Longitude + } + return 0 +} + +type PreconditionSchedule struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // datetime in epoch time + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + DaysOfWeek int32 `protobuf:"varint,3,opt,name=days_of_week,json=daysOfWeek,proto3" json:"days_of_week,omitempty"` + PreconditionTime int32 `protobuf:"varint,4,opt,name=precondition_time,json=preconditionTime,proto3" json:"precondition_time,omitempty"` // 24h in minutes + OneTime bool `protobuf:"varint,5,opt,name=one_time,json=oneTime,proto3" json:"one_time,omitempty"` + Enabled bool `protobuf:"varint,6,opt,name=enabled,proto3" json:"enabled,omitempty"` + Latitude float32 `protobuf:"fixed32,7,opt,name=latitude,proto3" json:"latitude,omitempty"` + Longitude float32 `protobuf:"fixed32,8,opt,name=longitude,proto3" json:"longitude,omitempty"` +} + +func (x *PreconditionSchedule) Reset() { + *x = PreconditionSchedule{} + if protoimpl.UnsafeEnabled { + mi := &file_common_proto_msgTypes[5] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *PreconditionSchedule) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*PreconditionSchedule) ProtoMessage() {} + +func (x *PreconditionSchedule) ProtoReflect() protoreflect.Message { + mi := &file_common_proto_msgTypes[5] + 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 PreconditionSchedule.ProtoReflect.Descriptor instead. +func (*PreconditionSchedule) Descriptor() ([]byte, []int) { + return file_common_proto_rawDescGZIP(), []int{5} +} + +func (x *PreconditionSchedule) GetId() uint64 { + if x != nil { + return x.Id + } + return 0 +} + +func (x *PreconditionSchedule) GetName() string { + if x != nil { + return x.Name + } + return "" +} + +func (x *PreconditionSchedule) GetDaysOfWeek() int32 { + if x != nil { + return x.DaysOfWeek + } + return 0 +} + +func (x *PreconditionSchedule) GetPreconditionTime() int32 { + if x != nil { + return x.PreconditionTime + } + return 0 +} + +func (x *PreconditionSchedule) GetOneTime() bool { + if x != nil { + return x.OneTime + } + return false +} + +func (x *PreconditionSchedule) GetEnabled() bool { + if x != nil { + return x.Enabled + } + return false +} + +func (x *PreconditionSchedule) GetLatitude() float32 { + if x != nil { + return x.Latitude + } + return 0 +} + +func (x *PreconditionSchedule) GetLongitude() float32 { + if x != nil { + return x.Longitude + } + return 0 +} + var File_common_proto protoreflect.FileDescriptor var file_common_proto_rawDesc = []byte{ @@ -341,16 +573,52 @@ var file_common_proto_rawDesc = []byte{ 0x65, 0x6b, 0x64, 0x61, 0x79, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x43, 0x61, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x56, 0x6f, 0x69, 0x64, 0x48, 0x00, 0x52, 0x08, 0x77, 0x65, 0x65, 0x6b, 0x64, 0x61, 0x79, 0x73, 0x42, 0x07, 0x0a, 0x05, 0x74, 0x69, 0x6d, - 0x65, 0x73, 0x2a, 0x16, 0x0a, 0x07, 0x49, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x12, 0x0b, 0x0a, - 0x07, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x00, 0x42, 0x6e, 0x0a, 0x24, 0x63, 0x6f, - 0x6d, 0x2e, 0x74, 0x65, 0x73, 0x6c, 0x61, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, - 0x64, 0x2e, 0x63, 0x61, 0x72, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, - 0x6f, 0x6e, 0x5a, 0x46, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, - 0x65, 0x73, 0x6c, 0x61, 0x6d, 0x6f, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x65, 0x68, 0x69, 0x63, - 0x6c, 0x65, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, - 0x2f, 0x63, 0x61, 0x72, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x65, 0x73, 0x22, 0xc5, 0x02, 0x0a, 0x0e, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x53, 0x63, 0x68, + 0x65, 0x64, 0x75, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x04, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x64, 0x61, 0x79, + 0x73, 0x5f, 0x6f, 0x66, 0x5f, 0x77, 0x65, 0x65, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, + 0x0a, 0x64, 0x61, 0x79, 0x73, 0x4f, 0x66, 0x57, 0x65, 0x65, 0x6b, 0x12, 0x23, 0x0a, 0x0d, 0x73, + 0x74, 0x61, 0x72, 0x74, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, + 0x28, 0x08, 0x52, 0x0c, 0x73, 0x74, 0x61, 0x72, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, + 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, + 0x1f, 0x0a, 0x0b, 0x65, 0x6e, 0x64, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x06, + 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x65, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, + 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x6f, + 0x6e, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x6f, + 0x6e, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, + 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, + 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x74, 0x69, 0x74, 0x75, 0x64, 0x65, 0x18, 0x0a, 0x20, 0x01, + 0x28, 0x02, 0x52, 0x08, 0x6c, 0x61, 0x74, 0x69, 0x74, 0x75, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, + 0x6c, 0x6f, 0x6e, 0x67, 0x69, 0x74, 0x75, 0x64, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x02, 0x52, + 0x09, 0x6c, 0x6f, 0x6e, 0x67, 0x69, 0x74, 0x75, 0x64, 0x65, 0x22, 0xf8, 0x01, 0x0a, 0x14, 0x50, + 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x63, 0x68, 0x65, 0x64, + 0x75, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, + 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x64, 0x61, 0x79, 0x73, 0x5f, + 0x6f, 0x66, 0x5f, 0x77, 0x65, 0x65, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x64, + 0x61, 0x79, 0x73, 0x4f, 0x66, 0x57, 0x65, 0x65, 0x6b, 0x12, 0x2b, 0x0a, 0x11, 0x70, 0x72, 0x65, + 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x70, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, + 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x6e, 0x65, 0x5f, 0x74, 0x69, + 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x6f, 0x6e, 0x65, 0x54, 0x69, 0x6d, + 0x65, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, + 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6c, + 0x61, 0x74, 0x69, 0x74, 0x75, 0x64, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x02, 0x52, 0x08, 0x6c, + 0x61, 0x74, 0x69, 0x74, 0x75, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6c, 0x6f, 0x6e, 0x67, 0x69, + 0x74, 0x75, 0x64, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x02, 0x52, 0x09, 0x6c, 0x6f, 0x6e, 0x67, + 0x69, 0x74, 0x75, 0x64, 0x65, 0x2a, 0x16, 0x0a, 0x07, 0x49, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, + 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x00, 0x42, 0x6e, 0x0a, + 0x24, 0x63, 0x6f, 0x6d, 0x2e, 0x74, 0x65, 0x73, 0x6c, 0x61, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, + 0x61, 0x74, 0x65, 0x64, 0x2e, 0x63, 0x61, 0x72, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x63, + 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x5a, 0x46, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, + 0x6d, 0x2f, 0x74, 0x65, 0x73, 0x6c, 0x61, 0x6d, 0x6f, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x65, + 0x68, 0x69, 0x63, 0x6c, 0x65, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2f, 0x70, 0x6b, + 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x62, 0x75, 0x66, 0x2f, 0x63, 0x61, 0x72, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x62, 0x06, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -366,13 +634,15 @@ func file_common_proto_rawDescGZIP() []byte { } var file_common_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_common_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_common_proto_msgTypes = make([]protoimpl.MessageInfo, 6) var file_common_proto_goTypes = []interface{}{ (Invalid)(0), // 0: CarServer.Invalid (*Void)(nil), // 1: CarServer.Void (*LatLong)(nil), // 2: CarServer.LatLong (*PreconditioningTimes)(nil), // 3: CarServer.PreconditioningTimes (*OffPeakChargingTimes)(nil), // 4: CarServer.OffPeakChargingTimes + (*ChargeSchedule)(nil), // 5: CarServer.ChargeSchedule + (*PreconditionSchedule)(nil), // 6: CarServer.PreconditionSchedule } var file_common_proto_depIdxs = []int32{ 1, // 0: CarServer.PreconditioningTimes.all_week:type_name -> CarServer.Void @@ -440,6 +710,30 @@ func file_common_proto_init() { return nil } } + file_common_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*ChargeSchedule); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_common_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*PreconditionSchedule); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } } file_common_proto_msgTypes[2].OneofWrappers = []interface{}{ (*PreconditioningTimes_AllWeek)(nil), @@ -455,7 +749,7 @@ func file_common_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_common_proto_rawDesc, NumEnums: 1, - NumMessages: 4, + NumMessages: 6, NumExtensions: 0, NumServices: 0, }, diff --git a/pkg/protocol/protobuf/common.proto b/pkg/protocol/protobuf/common.proto index 5eb9878..b51ea05 100644 --- a/pkg/protocol/protobuf/common.proto +++ b/pkg/protocol/protobuf/common.proto @@ -29,3 +29,28 @@ message OffPeakChargingTimes { Void weekdays = 2; } } + +message ChargeSchedule { + uint64 id = 1; // datetime in epoch time + string name = 2; + int32 days_of_week = 3; + bool start_enabled = 4; + int32 start_time = 5; // 24h in minutes + bool end_enabled = 6; + int32 end_time = 7; // 24h in minutes + bool one_time = 8; + bool enabled = 9; + float latitude = 10; + float longitude = 11; +} + +message PreconditionSchedule { + uint64 id = 1; // datetime in epoch time + string name = 2; + int32 days_of_week = 3; + int32 precondition_time = 4; // 24h in minutes + bool one_time = 5; + bool enabled = 6; + float latitude = 7; + float longitude = 8; +} diff --git a/pkg/protocol/protobuf/signatures/signatures.pb.go b/pkg/protocol/protobuf/signatures/signatures.pb.go index d5d76d9..3aba59a 100644 --- a/pkg/protocol/protobuf/signatures/signatures.pb.go +++ b/pkg/protocol/protobuf/signatures/signatures.pb.go @@ -191,7 +191,9 @@ type KeyIdentity struct { unknownFields protoimpl.UnknownFields // Types that are assignable to IdentityType: + // // *KeyIdentity_PublicKey + // *KeyIdentity_Handle IdentityType isKeyIdentity_IdentityType `protobuf_oneof:"identity_type"` } @@ -241,6 +243,13 @@ func (x *KeyIdentity) GetPublicKey() []byte { return nil } +func (x *KeyIdentity) GetHandle() uint32 { + if x, ok := x.GetIdentityType().(*KeyIdentity_Handle); ok { + return x.Handle + } + return 0 +} + type isKeyIdentity_IdentityType interface { isKeyIdentity_IdentityType() } @@ -249,8 +258,14 @@ type KeyIdentity_PublicKey struct { PublicKey []byte `protobuf:"bytes,1,opt,name=public_key,json=publicKey,proto3,oneof"` } +type KeyIdentity_Handle struct { + Handle uint32 `protobuf:"varint,3,opt,name=handle,proto3,oneof"` +} + func (*KeyIdentity_PublicKey) isKeyIdentity_IdentityType() {} +func (*KeyIdentity_Handle) isKeyIdentity_IdentityType() {} + type AES_GCM_Personalized_Signature_Data struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -455,6 +470,7 @@ type SignatureData struct { SignerIdentity *KeyIdentity `protobuf:"bytes,1,opt,name=signer_identity,json=signerIdentity,proto3" json:"signer_identity,omitempty"` // Types that are assignable to SigType: + // // *SignatureData_AES_GCM_PersonalizedData // *SignatureData_SessionInfoTag // *SignatureData_HMAC_PersonalizedData @@ -607,6 +623,7 @@ type SessionInfo struct { Epoch []byte `protobuf:"bytes,3,opt,name=epoch,proto3" json:"epoch,omitempty"` ClockTime uint32 `protobuf:"fixed32,4,opt,name=clock_time,json=clockTime,proto3" json:"clock_time,omitempty"` Status Session_Info_Status `protobuf:"varint,5,opt,name=status,proto3,enum=Signatures.Session_Info_Status" json:"status,omitempty"` + Handle uint32 `protobuf:"varint,6,opt,name=handle,proto3" json:"handle,omitempty"` } func (x *SessionInfo) Reset() { @@ -676,112 +693,122 @@ func (x *SessionInfo) GetStatus() Session_Info_Status { return Session_Info_Status_SESSION_INFO_STATUS_OK } +func (x *SessionInfo) GetHandle() uint32 { + if x != nil { + return x.Handle + } + return 0 +} + var File_signatures_proto protoreflect.FileDescriptor var file_signatures_proto_rawDesc = []byte{ 0x0a, 0x10, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x12, 0x0a, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x22, 0x45, + 0x74, 0x6f, 0x12, 0x0a, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x22, 0x5f, 0x0a, 0x0b, 0x4b, 0x65, 0x79, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x1f, 0x0a, 0x0a, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0c, 0x48, 0x00, 0x52, 0x09, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x42, 0x0f, - 0x0a, 0x0d, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x4a, - 0x04, 0x08, 0x02, 0x10, 0x03, 0x22, 0x9c, 0x01, 0x0a, 0x23, 0x41, 0x45, 0x53, 0x5f, 0x47, 0x43, - 0x4d, 0x5f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x64, 0x5f, 0x53, - 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, - 0x05, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x65, 0x70, - 0x6f, 0x63, 0x68, 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x6f, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x0c, 0x52, 0x05, 0x6e, 0x6f, 0x6e, 0x63, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, - 0x6e, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, - 0x74, 0x65, 0x72, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73, 0x5f, 0x61, - 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x07, 0x52, 0x09, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73, - 0x41, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, - 0x03, 0x74, 0x61, 0x67, 0x22, 0x27, 0x0a, 0x13, 0x48, 0x4d, 0x41, 0x43, 0x5f, 0x53, 0x69, 0x67, - 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x44, 0x61, 0x74, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x74, - 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x74, 0x61, 0x67, 0x22, 0x83, 0x01, - 0x0a, 0x20, 0x48, 0x4d, 0x41, 0x43, 0x5f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, - 0x7a, 0x65, 0x64, 0x5f, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x44, 0x61, - 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0c, 0x52, 0x05, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, - 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, - 0x65, 0x72, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73, 0x5f, 0x61, 0x74, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x07, 0x52, 0x09, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73, 0x41, - 0x74, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, - 0x74, 0x61, 0x67, 0x22, 0x84, 0x03, 0x0a, 0x0d, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, - 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x40, 0x0a, 0x0f, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x72, 0x5f, - 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, - 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x49, - 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x0e, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x72, 0x49, - 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x6c, 0x0a, 0x19, 0x41, 0x45, 0x53, 0x5f, 0x47, - 0x43, 0x4d, 0x5f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x64, 0x5f, - 0x64, 0x61, 0x74, 0x61, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x53, 0x69, 0x67, - 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2e, 0x41, 0x45, 0x53, 0x5f, 0x47, 0x43, 0x4d, 0x5f, - 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x64, 0x5f, 0x53, 0x69, 0x67, - 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x16, 0x41, - 0x45, 0x53, 0x47, 0x43, 0x4d, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, - 0x64, 0x44, 0x61, 0x74, 0x61, 0x12, 0x4b, 0x0a, 0x10, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, - 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x74, 0x61, 0x67, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x1f, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2e, 0x48, 0x4d, 0x41, - 0x43, 0x5f, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x44, 0x61, 0x74, 0x61, - 0x48, 0x00, 0x52, 0x0e, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x54, - 0x61, 0x67, 0x12, 0x64, 0x0a, 0x16, 0x48, 0x4d, 0x41, 0x43, 0x5f, 0x50, 0x65, 0x72, 0x73, 0x6f, - 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x08, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2e, + 0x0c, 0x48, 0x00, 0x52, 0x09, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x12, 0x18, + 0x0a, 0x06, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, + 0x52, 0x06, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x69, 0x64, 0x65, 0x6e, + 0x74, 0x69, 0x74, 0x79, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x4a, 0x04, 0x08, 0x02, 0x10, 0x03, 0x22, + 0x9c, 0x01, 0x0a, 0x23, 0x41, 0x45, 0x53, 0x5f, 0x47, 0x43, 0x4d, 0x5f, 0x50, 0x65, 0x72, 0x73, + 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x64, 0x5f, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, + 0x72, 0x65, 0x5f, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x70, 0x6f, 0x63, 0x68, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x12, 0x14, 0x0a, + 0x05, 0x6e, 0x6f, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x6e, 0x6f, + 0x6e, 0x63, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x65, 0x72, 0x18, 0x03, + 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x1d, 0x0a, + 0x0a, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73, 0x5f, 0x61, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, + 0x07, 0x52, 0x09, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73, 0x41, 0x74, 0x12, 0x10, 0x0a, 0x03, + 0x74, 0x61, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x74, 0x61, 0x67, 0x22, 0x27, + 0x0a, 0x13, 0x48, 0x4d, 0x41, 0x43, 0x5f, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, + 0x5f, 0x44, 0x61, 0x74, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x0c, 0x52, 0x03, 0x74, 0x61, 0x67, 0x22, 0x83, 0x01, 0x0a, 0x20, 0x48, 0x4d, 0x41, 0x43, + 0x5f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x64, 0x5f, 0x53, 0x69, + 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, + 0x65, 0x70, 0x6f, 0x63, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x65, 0x70, 0x6f, + 0x63, 0x68, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x0d, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x1d, 0x0a, 0x0a, + 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73, 0x5f, 0x61, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x07, + 0x52, 0x09, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73, 0x41, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x74, + 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x74, 0x61, 0x67, 0x22, 0x84, 0x03, + 0x0a, 0x0d, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, + 0x40, 0x0a, 0x0f, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, + 0x74, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, + 0x74, 0x75, 0x72, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, + 0x79, 0x52, 0x0e, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, + 0x79, 0x12, 0x6c, 0x0a, 0x19, 0x41, 0x45, 0x53, 0x5f, 0x47, 0x43, 0x4d, 0x5f, 0x50, 0x65, 0x72, + 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x05, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, + 0x73, 0x2e, 0x41, 0x45, 0x53, 0x5f, 0x47, 0x43, 0x4d, 0x5f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, + 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x64, 0x5f, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, + 0x5f, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x16, 0x41, 0x45, 0x53, 0x47, 0x43, 0x4d, 0x50, + 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x12, + 0x4b, 0x0a, 0x10, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, + 0x74, 0x61, 0x67, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x53, 0x69, 0x67, 0x6e, + 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2e, 0x48, 0x4d, 0x41, 0x43, 0x5f, 0x53, 0x69, 0x67, 0x6e, + 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x0e, 0x73, 0x65, + 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x54, 0x61, 0x67, 0x12, 0x64, 0x0a, 0x16, 0x48, 0x4d, 0x41, 0x43, 0x5f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, - 0x64, 0x5f, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x44, 0x61, 0x74, 0x61, - 0x48, 0x00, 0x52, 0x14, 0x48, 0x4d, 0x41, 0x43, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, - 0x69, 0x7a, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x42, 0x0a, 0x0a, 0x08, 0x73, 0x69, 0x67, 0x5f, - 0x74, 0x79, 0x70, 0x65, 0x4a, 0x04, 0x08, 0x07, 0x10, 0x08, 0x22, 0x53, 0x0a, 0x15, 0x47, 0x65, - 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x12, 0x3a, 0x0a, 0x0c, 0x6b, 0x65, 0x79, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, - 0x69, 0x74, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x53, 0x69, 0x67, 0x6e, - 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, - 0x74, 0x79, 0x52, 0x0b, 0x6b, 0x65, 0x79, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x22, - 0xb3, 0x01, 0x0a, 0x0b, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, - 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, - 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x75, 0x62, - 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x70, 0x75, - 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x70, 0x6f, 0x63, 0x68, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x12, 0x1d, 0x0a, - 0x0a, 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, - 0x07, 0x52, 0x09, 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x37, 0x0a, 0x06, - 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x53, - 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, - 0x6e, 0x5f, 0x49, 0x6e, 0x66, 0x6f, 0x5f, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, - 0x74, 0x61, 0x74, 0x75, 0x73, 0x2a, 0xaa, 0x01, 0x0a, 0x03, 0x54, 0x61, 0x67, 0x12, 0x16, 0x0a, - 0x12, 0x54, 0x41, 0x47, 0x5f, 0x53, 0x49, 0x47, 0x4e, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x54, - 0x59, 0x50, 0x45, 0x10, 0x00, 0x12, 0x0e, 0x0a, 0x0a, 0x54, 0x41, 0x47, 0x5f, 0x44, 0x4f, 0x4d, - 0x41, 0x49, 0x4e, 0x10, 0x01, 0x12, 0x17, 0x0a, 0x13, 0x54, 0x41, 0x47, 0x5f, 0x50, 0x45, 0x52, - 0x53, 0x4f, 0x4e, 0x41, 0x4c, 0x49, 0x5a, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x02, 0x12, 0x0d, - 0x0a, 0x09, 0x54, 0x41, 0x47, 0x5f, 0x45, 0x50, 0x4f, 0x43, 0x48, 0x10, 0x03, 0x12, 0x12, 0x0a, - 0x0e, 0x54, 0x41, 0x47, 0x5f, 0x45, 0x58, 0x50, 0x49, 0x52, 0x45, 0x53, 0x5f, 0x41, 0x54, 0x10, - 0x04, 0x12, 0x0f, 0x0a, 0x0b, 0x54, 0x41, 0x47, 0x5f, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x45, 0x52, - 0x10, 0x05, 0x12, 0x11, 0x0a, 0x0d, 0x54, 0x41, 0x47, 0x5f, 0x43, 0x48, 0x41, 0x4c, 0x4c, 0x45, - 0x4e, 0x47, 0x45, 0x10, 0x06, 0x12, 0x0d, 0x0a, 0x09, 0x54, 0x41, 0x47, 0x5f, 0x46, 0x4c, 0x41, - 0x47, 0x53, 0x10, 0x07, 0x12, 0x0c, 0x0a, 0x07, 0x54, 0x41, 0x47, 0x5f, 0x45, 0x4e, 0x44, 0x10, - 0xff, 0x01, 0x2a, 0x99, 0x01, 0x0a, 0x0d, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, - 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x16, 0x53, 0x49, 0x47, 0x4e, 0x41, 0x54, 0x55, 0x52, - 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x41, 0x45, 0x53, 0x5f, 0x47, 0x43, 0x4d, 0x10, 0x00, - 0x12, 0x27, 0x0a, 0x23, 0x53, 0x49, 0x47, 0x4e, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x54, 0x59, - 0x50, 0x45, 0x5f, 0x41, 0x45, 0x53, 0x5f, 0x47, 0x43, 0x4d, 0x5f, 0x50, 0x45, 0x52, 0x53, 0x4f, - 0x4e, 0x41, 0x4c, 0x49, 0x5a, 0x45, 0x44, 0x10, 0x05, 0x12, 0x17, 0x0a, 0x13, 0x53, 0x49, 0x47, - 0x4e, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x48, 0x4d, 0x41, 0x43, - 0x10, 0x06, 0x12, 0x24, 0x0a, 0x20, 0x53, 0x49, 0x47, 0x4e, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, - 0x54, 0x59, 0x50, 0x45, 0x5f, 0x48, 0x4d, 0x41, 0x43, 0x5f, 0x50, 0x45, 0x52, 0x53, 0x4f, 0x4e, - 0x41, 0x4c, 0x49, 0x5a, 0x45, 0x44, 0x10, 0x08, 0x22, 0x04, 0x08, 0x07, 0x10, 0x07, 0x2a, 0x5f, - 0x0a, 0x13, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x49, 0x6e, 0x66, 0x6f, 0x5f, 0x53, - 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1a, 0x0a, 0x16, 0x53, 0x45, 0x53, 0x53, 0x49, 0x4f, 0x4e, - 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x4f, 0x4b, 0x10, - 0x00, 0x12, 0x2c, 0x0a, 0x28, 0x53, 0x45, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, - 0x4f, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x4b, 0x45, 0x59, 0x5f, 0x4e, 0x4f, 0x54, - 0x5f, 0x4f, 0x4e, 0x5f, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x10, 0x01, 0x42, - 0x69, 0x0a, 0x1e, 0x63, 0x6f, 0x6d, 0x2e, 0x74, 0x65, 0x73, 0x6c, 0x61, 0x2e, 0x67, 0x65, 0x6e, - 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, - 0x73, 0x5a, 0x47, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x65, - 0x73, 0x6c, 0x61, 0x6d, 0x6f, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, - 0x65, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, - 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x53, + 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2e, 0x48, 0x4d, 0x41, 0x43, 0x5f, 0x50, + 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x64, 0x5f, 0x53, 0x69, 0x67, 0x6e, + 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x14, 0x48, 0x4d, + 0x41, 0x43, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x64, 0x44, 0x61, + 0x74, 0x61, 0x42, 0x0a, 0x0a, 0x08, 0x73, 0x69, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x4a, 0x04, + 0x08, 0x07, 0x10, 0x08, 0x22, 0x53, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, + 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3a, 0x0a, + 0x0c, 0x6b, 0x65, 0x79, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, + 0x2e, 0x4b, 0x65, 0x79, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x0b, 0x6b, 0x65, + 0x79, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x22, 0xcb, 0x01, 0x0a, 0x0b, 0x53, 0x65, + 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, + 0x6e, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, + 0x74, 0x65, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, + 0x79, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, + 0x52, 0x05, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x6c, 0x6f, 0x63, 0x6b, + 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x07, 0x52, 0x09, 0x63, 0x6c, 0x6f, + 0x63, 0x6b, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x37, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, + 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, + 0x72, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x49, 0x6e, 0x66, 0x6f, + 0x5f, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, + 0x16, 0x0a, 0x06, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, + 0x06, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x2a, 0xaa, 0x01, 0x0a, 0x03, 0x54, 0x61, 0x67, 0x12, + 0x16, 0x0a, 0x12, 0x54, 0x41, 0x47, 0x5f, 0x53, 0x49, 0x47, 0x4e, 0x41, 0x54, 0x55, 0x52, 0x45, + 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x00, 0x12, 0x0e, 0x0a, 0x0a, 0x54, 0x41, 0x47, 0x5f, 0x44, + 0x4f, 0x4d, 0x41, 0x49, 0x4e, 0x10, 0x01, 0x12, 0x17, 0x0a, 0x13, 0x54, 0x41, 0x47, 0x5f, 0x50, + 0x45, 0x52, 0x53, 0x4f, 0x4e, 0x41, 0x4c, 0x49, 0x5a, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x02, + 0x12, 0x0d, 0x0a, 0x09, 0x54, 0x41, 0x47, 0x5f, 0x45, 0x50, 0x4f, 0x43, 0x48, 0x10, 0x03, 0x12, + 0x12, 0x0a, 0x0e, 0x54, 0x41, 0x47, 0x5f, 0x45, 0x58, 0x50, 0x49, 0x52, 0x45, 0x53, 0x5f, 0x41, + 0x54, 0x10, 0x04, 0x12, 0x0f, 0x0a, 0x0b, 0x54, 0x41, 0x47, 0x5f, 0x43, 0x4f, 0x55, 0x4e, 0x54, + 0x45, 0x52, 0x10, 0x05, 0x12, 0x11, 0x0a, 0x0d, 0x54, 0x41, 0x47, 0x5f, 0x43, 0x48, 0x41, 0x4c, + 0x4c, 0x45, 0x4e, 0x47, 0x45, 0x10, 0x06, 0x12, 0x0d, 0x0a, 0x09, 0x54, 0x41, 0x47, 0x5f, 0x46, + 0x4c, 0x41, 0x47, 0x53, 0x10, 0x07, 0x12, 0x0c, 0x0a, 0x07, 0x54, 0x41, 0x47, 0x5f, 0x45, 0x4e, + 0x44, 0x10, 0xff, 0x01, 0x2a, 0x99, 0x01, 0x0a, 0x0d, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, + 0x72, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x16, 0x53, 0x49, 0x47, 0x4e, 0x41, 0x54, + 0x55, 0x52, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x41, 0x45, 0x53, 0x5f, 0x47, 0x43, 0x4d, + 0x10, 0x00, 0x12, 0x27, 0x0a, 0x23, 0x53, 0x49, 0x47, 0x4e, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, + 0x54, 0x59, 0x50, 0x45, 0x5f, 0x41, 0x45, 0x53, 0x5f, 0x47, 0x43, 0x4d, 0x5f, 0x50, 0x45, 0x52, + 0x53, 0x4f, 0x4e, 0x41, 0x4c, 0x49, 0x5a, 0x45, 0x44, 0x10, 0x05, 0x12, 0x17, 0x0a, 0x13, 0x53, + 0x49, 0x47, 0x4e, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x48, 0x4d, + 0x41, 0x43, 0x10, 0x06, 0x12, 0x24, 0x0a, 0x20, 0x53, 0x49, 0x47, 0x4e, 0x41, 0x54, 0x55, 0x52, + 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x48, 0x4d, 0x41, 0x43, 0x5f, 0x50, 0x45, 0x52, 0x53, + 0x4f, 0x4e, 0x41, 0x4c, 0x49, 0x5a, 0x45, 0x44, 0x10, 0x08, 0x22, 0x04, 0x08, 0x07, 0x10, 0x07, + 0x2a, 0x5f, 0x0a, 0x13, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x49, 0x6e, 0x66, 0x6f, + 0x5f, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1a, 0x0a, 0x16, 0x53, 0x45, 0x53, 0x53, 0x49, + 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x4f, + 0x4b, 0x10, 0x00, 0x12, 0x2c, 0x0a, 0x28, 0x53, 0x45, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x49, + 0x4e, 0x46, 0x4f, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x4b, 0x45, 0x59, 0x5f, 0x4e, + 0x4f, 0x54, 0x5f, 0x4f, 0x4e, 0x5f, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x10, + 0x01, 0x42, 0x69, 0x0a, 0x1e, 0x63, 0x6f, 0x6d, 0x2e, 0x74, 0x65, 0x73, 0x6c, 0x61, 0x2e, 0x67, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, + 0x72, 0x65, 0x73, 0x5a, 0x47, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, + 0x74, 0x65, 0x73, 0x6c, 0x61, 0x6d, 0x6f, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x65, 0x68, 0x69, + 0x63, 0x6c, 0x65, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2f, 0x70, 0x6b, 0x67, 0x2f, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, + 0x66, 0x2f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -917,6 +944,7 @@ func file_signatures_proto_init() { } file_signatures_proto_msgTypes[0].OneofWrappers = []interface{}{ (*KeyIdentity_PublicKey)(nil), + (*KeyIdentity_Handle)(nil), } file_signatures_proto_msgTypes[4].OneofWrappers = []interface{}{ (*SignatureData_AES_GCM_PersonalizedData)(nil), diff --git a/pkg/protocol/protobuf/universalmessage/universal_message.pb.go b/pkg/protocol/protobuf/universalmessage/universal_message.pb.go index 051ae13..6a7d807 100644 --- a/pkg/protocol/protobuf/universalmessage/universal_message.pb.go +++ b/pkg/protocol/protobuf/universalmessage/universal_message.pb.go @@ -1,8 +1,3 @@ -//* -// This proto file defines the message protocol that is used to communicate from applications/clients to the car/servers -// -// - // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.28.1 @@ -127,30 +122,30 @@ func (OperationStatus_E) EnumDescriptor() ([]byte, []int) { type MessageFault_E int32 const ( - MessageFault_E_MESSAGEFAULT_ERROR_NONE MessageFault_E = 0 - MessageFault_E_MESSAGEFAULT_ERROR_BUSY MessageFault_E = 1 - MessageFault_E_MESSAGEFAULT_ERROR_TIMEOUT MessageFault_E = 2 - MessageFault_E_MESSAGEFAULT_ERROR_UNKNOWN_KEY_ID MessageFault_E = 3 - MessageFault_E_MESSAGEFAULT_ERROR_INACTIVE_KEY MessageFault_E = 4 - MessageFault_E_MESSAGEFAULT_ERROR_INVALID_SIGNATURE MessageFault_E = 5 - MessageFault_E_MESSAGEFAULT_ERROR_INVALID_TOKEN_OR_COUNTER MessageFault_E = 6 - MessageFault_E_MESSAGEFAULT_ERROR_INSUFFICIENT_PRIVILEGES MessageFault_E = 7 - MessageFault_E_MESSAGEFAULT_ERROR_INVALID_DOMAINS MessageFault_E = 8 - MessageFault_E_MESSAGEFAULT_ERROR_INVALID_COMMAND MessageFault_E = 9 - MessageFault_E_MESSAGEFAULT_ERROR_DECODING MessageFault_E = 10 - MessageFault_E_MESSAGEFAULT_ERROR_INTERNAL MessageFault_E = 11 - MessageFault_E_MESSAGEFAULT_ERROR_WRONG_PERSONALIZATION MessageFault_E = 12 - MessageFault_E_MESSAGEFAULT_ERROR_BAD_PARAMETER MessageFault_E = 13 - MessageFault_E_MESSAGEFAULT_ERROR_KEYCHAIN_IS_FULL MessageFault_E = 14 - MessageFault_E_MESSAGEFAULT_ERROR_INCORRECT_EPOCH MessageFault_E = 15 - MessageFault_E_MESSAGEFAULT_ERROR_IV_INCORRECT_LENGTH MessageFault_E = 16 - MessageFault_E_MESSAGEFAULT_ERROR_TIME_EXPIRED MessageFault_E = 17 - MessageFault_E_MESSAGEFAULT_ERROR_NOT_PROVISIONED_WITH_IDENTITY MessageFault_E = 18 - MessageFault_E_MESSAGEFAULT_ERROR_COULD_NOT_HASH_METADATA MessageFault_E = 19 - MessageFault_E_MESSAGEFAULT_ERROR_TIME_TO_LIVE_TOO_LONG MessageFault_E = 20 - MessageFault_E_MESSAGEFAULT_ERROR_REMOTE_ACCESS_DISABLED MessageFault_E = 21 - MessageFault_E_MESSAGEFAULT_ERROR_REMOTE_SERVICE_ACCESS_DISABLED MessageFault_E = 22 - MessageFault_E_MESSAGEFAULT_ERROR_COMMAND_REQUIRES_ACCOUNT_CREDENTIALS MessageFault_E = 23 + MessageFault_E_MESSAGEFAULT_ERROR_NONE MessageFault_E = 0 // Request succeeded. + MessageFault_E_MESSAGEFAULT_ERROR_BUSY MessageFault_E = 1 // Required vehicle subsystem is busy. Try again. + MessageFault_E_MESSAGEFAULT_ERROR_TIMEOUT MessageFault_E = 2 // Vehicle subsystem did not respond. Try again. + MessageFault_E_MESSAGEFAULT_ERROR_UNKNOWN_KEY_ID MessageFault_E = 3 // Vehicle did not recognize the key used to authorize command. Make sure your key is paired with the vehicle. + MessageFault_E_MESSAGEFAULT_ERROR_INACTIVE_KEY MessageFault_E = 4 // Key used to authorize command has been disabled. + MessageFault_E_MESSAGEFAULT_ERROR_INVALID_SIGNATURE MessageFault_E = 5 // Command signature/MAC is incorrect. Use included session info to update session and try again. + MessageFault_E_MESSAGEFAULT_ERROR_INVALID_TOKEN_OR_COUNTER MessageFault_E = 6 // Command anti-replay counter has been used before. Use included session info to update session and try again. + MessageFault_E_MESSAGEFAULT_ERROR_INSUFFICIENT_PRIVILEGES MessageFault_E = 7 // User is not authorized to execute command. This can be because of the role or because of vehicle state. + MessageFault_E_MESSAGEFAULT_ERROR_INVALID_DOMAINS MessageFault_E = 8 // Command was malformed or addressed to an unrecognized vehicle system. May indicate client error or older vehicle firmware. + MessageFault_E_MESSAGEFAULT_ERROR_INVALID_COMMAND MessageFault_E = 9 // Unrecognized command. May indicate client error or unsupported vehicle firmware. + MessageFault_E_MESSAGEFAULT_ERROR_DECODING MessageFault_E = 10 // Could not parse command. Indicates client error. + MessageFault_E_MESSAGEFAULT_ERROR_INTERNAL MessageFault_E = 11 // Internal vehicle error. Try again. Most commonly encountered when the vehicle has not finished booting. + MessageFault_E_MESSAGEFAULT_ERROR_WRONG_PERSONALIZATION MessageFault_E = 12 // Command sent to wrong VIN. + MessageFault_E_MESSAGEFAULT_ERROR_BAD_PARAMETER MessageFault_E = 13 // Command was malformed or used a deprecated parameter. + MessageFault_E_MESSAGEFAULT_ERROR_KEYCHAIN_IS_FULL MessageFault_E = 14 // Vehicle's keychain is full. You must delete a key before you can add another. + MessageFault_E_MESSAGEFAULT_ERROR_INCORRECT_EPOCH MessageFault_E = 15 // Session ID mismatch. Use included session info to update session and try again. + MessageFault_E_MESSAGEFAULT_ERROR_IV_INCORRECT_LENGTH MessageFault_E = 16 // Initialization Value length is incorrect (AES-GCM must use 12-byte IVs). Indicates a client programming error. + MessageFault_E_MESSAGEFAULT_ERROR_TIME_EXPIRED MessageFault_E = 17 // Command expired. Use included session info to determine if clocks have desynchronized and try again. + MessageFault_E_MESSAGEFAULT_ERROR_NOT_PROVISIONED_WITH_IDENTITY MessageFault_E = 18 // Vehicle has not been provisioned with a VIN and may require service. + MessageFault_E_MESSAGEFAULT_ERROR_COULD_NOT_HASH_METADATA MessageFault_E = 19 // Internal vehicle error. + MessageFault_E_MESSAGEFAULT_ERROR_TIME_TO_LIVE_TOO_LONG MessageFault_E = 20 // Vehicle rejected command because its expiration time was too far in the future. This is a security precaution. + MessageFault_E_MESSAGEFAULT_ERROR_REMOTE_ACCESS_DISABLED MessageFault_E = 21 // The vehicle owner has disabled Mobile access. + MessageFault_E_MESSAGEFAULT_ERROR_REMOTE_SERVICE_ACCESS_DISABLED MessageFault_E = 22 // The command was authorized with a Service key, but the vehicle has not been configured to permit remote service commands. + MessageFault_E_MESSAGEFAULT_ERROR_COMMAND_REQUIRES_ACCOUNT_CREDENTIALS MessageFault_E = 23 // The command requires proof of Tesla account credentials but was not sent over a channel that provides this proof. Resend the command using Fleet API. ) // Enum value maps for MessageFault_E. @@ -285,6 +280,7 @@ type Destination struct { unknownFields protoimpl.UnknownFields // Types that are assignable to SubDestination: + // // *Destination_Domain // *Destination_RoutingAddress SubDestination isDestination_SubDestination `protobuf_oneof:"sub_destination"` @@ -477,11 +473,13 @@ type RoutableMessage struct { ToDestination *Destination `protobuf:"bytes,6,opt,name=to_destination,json=toDestination,proto3" json:"to_destination,omitempty"` FromDestination *Destination `protobuf:"bytes,7,opt,name=from_destination,json=fromDestination,proto3" json:"from_destination,omitempty"` // Types that are assignable to Payload: + // // *RoutableMessage_ProtobufMessageAsBytes // *RoutableMessage_SessionInfoRequest // *RoutableMessage_SessionInfo Payload isRoutableMessage_Payload `protobuf_oneof:"payload"` // Types that are assignable to SubSigData: + // // *RoutableMessage_SignatureData SubSigData isRoutableMessage_SubSigData `protobuf_oneof:"sub_sigData"` SignedMessageStatus *MessageStatus `protobuf:"bytes,12,opt,name=signedMessageStatus,proto3" json:"signedMessageStatus,omitempty"` diff --git a/pkg/protocol/protobuf/vcsec/vcsec.pb.go b/pkg/protocol/protobuf/vcsec/vcsec.pb.go index a30c1b3..5585b30 100644 --- a/pkg/protocol/protobuf/vcsec/vcsec.pb.go +++ b/pkg/protocol/protobuf/vcsec/vcsec.pb.go @@ -540,6 +540,217 @@ func (WhitelistOperationInformation_E) EnumDescriptor() ([]byte, []int) { return file_vcsec_proto_rawDescGZIP(), []int{7} } +type ClosureState_E int32 + +const ( + ClosureState_E_CLOSURESTATE_CLOSED ClosureState_E = 0 + ClosureState_E_CLOSURESTATE_OPEN ClosureState_E = 1 + ClosureState_E_CLOSURESTATE_AJAR ClosureState_E = 2 + ClosureState_E_CLOSURESTATE_UNKNOWN ClosureState_E = 3 + ClosureState_E_CLOSURESTATE_FAILED_UNLATCH ClosureState_E = 4 + ClosureState_E_CLOSURESTATE_OPENING ClosureState_E = 5 + ClosureState_E_CLOSURESTATE_CLOSING ClosureState_E = 6 +) + +// Enum value maps for ClosureState_E. +var ( + ClosureState_E_name = map[int32]string{ + 0: "CLOSURESTATE_CLOSED", + 1: "CLOSURESTATE_OPEN", + 2: "CLOSURESTATE_AJAR", + 3: "CLOSURESTATE_UNKNOWN", + 4: "CLOSURESTATE_FAILED_UNLATCH", + 5: "CLOSURESTATE_OPENING", + 6: "CLOSURESTATE_CLOSING", + } + ClosureState_E_value = map[string]int32{ + "CLOSURESTATE_CLOSED": 0, + "CLOSURESTATE_OPEN": 1, + "CLOSURESTATE_AJAR": 2, + "CLOSURESTATE_UNKNOWN": 3, + "CLOSURESTATE_FAILED_UNLATCH": 4, + "CLOSURESTATE_OPENING": 5, + "CLOSURESTATE_CLOSING": 6, + } +) + +func (x ClosureState_E) Enum() *ClosureState_E { + p := new(ClosureState_E) + *p = x + return p +} + +func (x ClosureState_E) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (ClosureState_E) Descriptor() protoreflect.EnumDescriptor { + return file_vcsec_proto_enumTypes[8].Descriptor() +} + +func (ClosureState_E) Type() protoreflect.EnumType { + return &file_vcsec_proto_enumTypes[8] +} + +func (x ClosureState_E) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use ClosureState_E.Descriptor instead. +func (ClosureState_E) EnumDescriptor() ([]byte, []int) { + return file_vcsec_proto_rawDescGZIP(), []int{8} +} + +type VehicleLockState_E int32 + +const ( + VehicleLockState_E_VEHICLELOCKSTATE_UNLOCKED VehicleLockState_E = 0 + VehicleLockState_E_VEHICLELOCKSTATE_LOCKED VehicleLockState_E = 1 + VehicleLockState_E_VEHICLELOCKSTATE_INTERNAL_LOCKED VehicleLockState_E = 2 + VehicleLockState_E_VEHICLELOCKSTATE_SELECTIVE_UNLOCKED VehicleLockState_E = 3 +) + +// Enum value maps for VehicleLockState_E. +var ( + VehicleLockState_E_name = map[int32]string{ + 0: "VEHICLELOCKSTATE_UNLOCKED", + 1: "VEHICLELOCKSTATE_LOCKED", + 2: "VEHICLELOCKSTATE_INTERNAL_LOCKED", + 3: "VEHICLELOCKSTATE_SELECTIVE_UNLOCKED", + } + VehicleLockState_E_value = map[string]int32{ + "VEHICLELOCKSTATE_UNLOCKED": 0, + "VEHICLELOCKSTATE_LOCKED": 1, + "VEHICLELOCKSTATE_INTERNAL_LOCKED": 2, + "VEHICLELOCKSTATE_SELECTIVE_UNLOCKED": 3, + } +) + +func (x VehicleLockState_E) Enum() *VehicleLockState_E { + p := new(VehicleLockState_E) + *p = x + return p +} + +func (x VehicleLockState_E) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (VehicleLockState_E) Descriptor() protoreflect.EnumDescriptor { + return file_vcsec_proto_enumTypes[9].Descriptor() +} + +func (VehicleLockState_E) Type() protoreflect.EnumType { + return &file_vcsec_proto_enumTypes[9] +} + +func (x VehicleLockState_E) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use VehicleLockState_E.Descriptor instead. +func (VehicleLockState_E) EnumDescriptor() ([]byte, []int) { + return file_vcsec_proto_rawDescGZIP(), []int{9} +} + +type VehicleSleepStatus_E int32 + +const ( + VehicleSleepStatus_E_VEHICLE_SLEEP_STATUS_UNKNOWN VehicleSleepStatus_E = 0 + VehicleSleepStatus_E_VEHICLE_SLEEP_STATUS_AWAKE VehicleSleepStatus_E = 1 + VehicleSleepStatus_E_VEHICLE_SLEEP_STATUS_ASLEEP VehicleSleepStatus_E = 2 +) + +// Enum value maps for VehicleSleepStatus_E. +var ( + VehicleSleepStatus_E_name = map[int32]string{ + 0: "VEHICLE_SLEEP_STATUS_UNKNOWN", + 1: "VEHICLE_SLEEP_STATUS_AWAKE", + 2: "VEHICLE_SLEEP_STATUS_ASLEEP", + } + VehicleSleepStatus_E_value = map[string]int32{ + "VEHICLE_SLEEP_STATUS_UNKNOWN": 0, + "VEHICLE_SLEEP_STATUS_AWAKE": 1, + "VEHICLE_SLEEP_STATUS_ASLEEP": 2, + } +) + +func (x VehicleSleepStatus_E) Enum() *VehicleSleepStatus_E { + p := new(VehicleSleepStatus_E) + *p = x + return p +} + +func (x VehicleSleepStatus_E) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (VehicleSleepStatus_E) Descriptor() protoreflect.EnumDescriptor { + return file_vcsec_proto_enumTypes[10].Descriptor() +} + +func (VehicleSleepStatus_E) Type() protoreflect.EnumType { + return &file_vcsec_proto_enumTypes[10] +} + +func (x VehicleSleepStatus_E) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use VehicleSleepStatus_E.Descriptor instead. +func (VehicleSleepStatus_E) EnumDescriptor() ([]byte, []int) { + return file_vcsec_proto_rawDescGZIP(), []int{10} +} + +type UserPresence_E int32 + +const ( + UserPresence_E_VEHICLE_USER_PRESENCE_UNKNOWN UserPresence_E = 0 + UserPresence_E_VEHICLE_USER_PRESENCE_NOT_PRESENT UserPresence_E = 1 + UserPresence_E_VEHICLE_USER_PRESENCE_PRESENT UserPresence_E = 2 +) + +// Enum value maps for UserPresence_E. +var ( + UserPresence_E_name = map[int32]string{ + 0: "VEHICLE_USER_PRESENCE_UNKNOWN", + 1: "VEHICLE_USER_PRESENCE_NOT_PRESENT", + 2: "VEHICLE_USER_PRESENCE_PRESENT", + } + UserPresence_E_value = map[string]int32{ + "VEHICLE_USER_PRESENCE_UNKNOWN": 0, + "VEHICLE_USER_PRESENCE_NOT_PRESENT": 1, + "VEHICLE_USER_PRESENCE_PRESENT": 2, + } +) + +func (x UserPresence_E) Enum() *UserPresence_E { + p := new(UserPresence_E) + *p = x + return p +} + +func (x UserPresence_E) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (UserPresence_E) Descriptor() protoreflect.EnumDescriptor { + return file_vcsec_proto_enumTypes[11].Descriptor() +} + +func (UserPresence_E) Type() protoreflect.EnumType { + return &file_vcsec_proto_enumTypes[11] +} + +func (x UserPresence_E) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use UserPresence_E.Descriptor instead. +func (UserPresence_E) EnumDescriptor() ([]byte, []int) { + return file_vcsec_proto_rawDescGZIP(), []int{11} +} + type SignedMessage struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -932,6 +1143,7 @@ type InformationRequest struct { InformationRequestType InformationRequestType `protobuf:"varint,1,opt,name=informationRequestType,proto3,enum=VCSEC.InformationRequestType" json:"informationRequestType,omitempty"` // Types that are assignable to Key: + // // *InformationRequest_KeyId // *InformationRequest_PublicKey // *InformationRequest_Slot @@ -1039,6 +1251,7 @@ type ClosureMoveRequest struct { RearTrunk ClosureMoveType_E `protobuf:"varint,5,opt,name=rearTrunk,proto3,enum=VCSEC.ClosureMoveType_E" json:"rearTrunk,omitempty"` FrontTrunk ClosureMoveType_E `protobuf:"varint,6,opt,name=frontTrunk,proto3,enum=VCSEC.ClosureMoveType_E" json:"frontTrunk,omitempty"` ChargePort ClosureMoveType_E `protobuf:"varint,7,opt,name=chargePort,proto3,enum=VCSEC.ClosureMoveType_E" json:"chargePort,omitempty"` + Tonneau ClosureMoveType_E `protobuf:"varint,8,opt,name=tonneau,proto3,enum=VCSEC.ClosureMoveType_E" json:"tonneau,omitempty"` } func (x *ClosureMoveRequest) Reset() { @@ -1122,6 +1335,13 @@ func (x *ClosureMoveRequest) GetChargePort() ClosureMoveType_E { return ClosureMoveType_E_CLOSURE_MOVE_TYPE_NONE } +func (x *ClosureMoveRequest) GetTonneau() ClosureMoveType_E { + if x != nil { + return x.Tonneau + } + return ClosureMoveType_E_CLOSURE_MOVE_TYPE_NONE +} + type PermissionChange struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1191,6 +1411,7 @@ type ReplaceKey struct { unknownFields protoimpl.UnknownFields // Types that are assignable to KeyToReplace: + // // *ReplaceKey_PublicKeyToReplace // *ReplaceKey_SlotToReplace KeyToReplace isReplaceKey_KeyToReplace `protobuf_oneof:"keyToReplace"` @@ -1295,6 +1516,7 @@ type WhitelistOperation struct { unknownFields protoimpl.UnknownFields // Types that are assignable to SubMessage: + // // *WhitelistOperation_AddPublicKeyToWhitelist // *WhitelistOperation_RemovePublicKeyFromWhitelist // *WhitelistOperation_AddPermissionsToPublicKey @@ -1454,15 +1676,6 @@ type WhitelistOperation_UpdateKeyAndPermissions struct { } type WhitelistOperation_AddImpermanentKey struct { - // - // Adds an Impermanent key - // - // An impermanent key acts like a normal key, except that it can be batch removed. - // This should be primarily used by fleet sharing. The advantage over individual add/removes - // is that it offers atomic transfer of ownership from a previous impermanent key to a new one - // - // E.g: A and her NFC card are added as impermanent keys. They are on the whitelist until B is added. - // A and her NFC card are removed at the same time that B's first key is added AddImpermanentKey *PermissionChange `protobuf:"bytes,8,opt,name=addImpermanentKey,proto3,oneof"` } @@ -1623,6 +1836,7 @@ type CommandStatus struct { OperationStatus OperationStatus_E `protobuf:"varint,1,opt,name=operationStatus,proto3,enum=VCSEC.OperationStatus_E" json:"operationStatus,omitempty"` // Types that are assignable to SubMessage: + // // *CommandStatus_SignedMessageStatus // *CommandStatus_WhitelistOperationStatus SubMessage isCommandStatus_SubMessage `protobuf_oneof:"sub_message"` @@ -1710,6 +1924,7 @@ type UnsignedMessage struct { unknownFields protoimpl.UnknownFields // Types that are assignable to SubMessage: + // // *UnsignedMessage_InformationRequest // *UnsignedMessage_RKEAction // *UnsignedMessage_ClosureMoveRequest @@ -1812,12 +2027,243 @@ func (*UnsignedMessage_ClosureMoveRequest) isUnsignedMessage_SubMessage() {} func (*UnsignedMessage_WhitelistOperation) isUnsignedMessage_SubMessage() {} +type ClosureStatuses struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + FrontDriverDoor ClosureState_E `protobuf:"varint,1,opt,name=frontDriverDoor,proto3,enum=VCSEC.ClosureState_E" json:"frontDriverDoor,omitempty"` + FrontPassengerDoor ClosureState_E `protobuf:"varint,2,opt,name=frontPassengerDoor,proto3,enum=VCSEC.ClosureState_E" json:"frontPassengerDoor,omitempty"` + RearDriverDoor ClosureState_E `protobuf:"varint,3,opt,name=rearDriverDoor,proto3,enum=VCSEC.ClosureState_E" json:"rearDriverDoor,omitempty"` + RearPassengerDoor ClosureState_E `protobuf:"varint,4,opt,name=rearPassengerDoor,proto3,enum=VCSEC.ClosureState_E" json:"rearPassengerDoor,omitempty"` + RearTrunk ClosureState_E `protobuf:"varint,5,opt,name=rearTrunk,proto3,enum=VCSEC.ClosureState_E" json:"rearTrunk,omitempty"` + FrontTrunk ClosureState_E `protobuf:"varint,6,opt,name=frontTrunk,proto3,enum=VCSEC.ClosureState_E" json:"frontTrunk,omitempty"` + ChargePort ClosureState_E `protobuf:"varint,7,opt,name=chargePort,proto3,enum=VCSEC.ClosureState_E" json:"chargePort,omitempty"` + Tonneau ClosureState_E `protobuf:"varint,8,opt,name=tonneau,proto3,enum=VCSEC.ClosureState_E" json:"tonneau,omitempty"` +} + +func (x *ClosureStatuses) Reset() { + *x = ClosureStatuses{} + if protoimpl.UnsafeEnabled { + mi := &file_vcsec_proto_msgTypes[16] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ClosureStatuses) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ClosureStatuses) ProtoMessage() {} + +func (x *ClosureStatuses) ProtoReflect() protoreflect.Message { + mi := &file_vcsec_proto_msgTypes[16] + 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 ClosureStatuses.ProtoReflect.Descriptor instead. +func (*ClosureStatuses) Descriptor() ([]byte, []int) { + return file_vcsec_proto_rawDescGZIP(), []int{16} +} + +func (x *ClosureStatuses) GetFrontDriverDoor() ClosureState_E { + if x != nil { + return x.FrontDriverDoor + } + return ClosureState_E_CLOSURESTATE_CLOSED +} + +func (x *ClosureStatuses) GetFrontPassengerDoor() ClosureState_E { + if x != nil { + return x.FrontPassengerDoor + } + return ClosureState_E_CLOSURESTATE_CLOSED +} + +func (x *ClosureStatuses) GetRearDriverDoor() ClosureState_E { + if x != nil { + return x.RearDriverDoor + } + return ClosureState_E_CLOSURESTATE_CLOSED +} + +func (x *ClosureStatuses) GetRearPassengerDoor() ClosureState_E { + if x != nil { + return x.RearPassengerDoor + } + return ClosureState_E_CLOSURESTATE_CLOSED +} + +func (x *ClosureStatuses) GetRearTrunk() ClosureState_E { + if x != nil { + return x.RearTrunk + } + return ClosureState_E_CLOSURESTATE_CLOSED +} + +func (x *ClosureStatuses) GetFrontTrunk() ClosureState_E { + if x != nil { + return x.FrontTrunk + } + return ClosureState_E_CLOSURESTATE_CLOSED +} + +func (x *ClosureStatuses) GetChargePort() ClosureState_E { + if x != nil { + return x.ChargePort + } + return ClosureState_E_CLOSURESTATE_CLOSED +} + +func (x *ClosureStatuses) GetTonneau() ClosureState_E { + if x != nil { + return x.Tonneau + } + return ClosureState_E_CLOSURESTATE_CLOSED +} + +type DetailedClosureStatus struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + TonneauPercentOpen uint32 `protobuf:"varint,1,opt,name=tonneauPercentOpen,proto3" json:"tonneauPercentOpen,omitempty"` +} + +func (x *DetailedClosureStatus) Reset() { + *x = DetailedClosureStatus{} + if protoimpl.UnsafeEnabled { + mi := &file_vcsec_proto_msgTypes[17] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *DetailedClosureStatus) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DetailedClosureStatus) ProtoMessage() {} + +func (x *DetailedClosureStatus) ProtoReflect() protoreflect.Message { + mi := &file_vcsec_proto_msgTypes[17] + 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 DetailedClosureStatus.ProtoReflect.Descriptor instead. +func (*DetailedClosureStatus) Descriptor() ([]byte, []int) { + return file_vcsec_proto_rawDescGZIP(), []int{17} +} + +func (x *DetailedClosureStatus) GetTonneauPercentOpen() uint32 { + if x != nil { + return x.TonneauPercentOpen + } + return 0 +} + +type VehicleStatus struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + ClosureStatuses *ClosureStatuses `protobuf:"bytes,1,opt,name=closureStatuses,proto3" json:"closureStatuses,omitempty"` + VehicleLockState VehicleLockState_E `protobuf:"varint,2,opt,name=vehicleLockState,proto3,enum=VCSEC.VehicleLockState_E" json:"vehicleLockState,omitempty"` + VehicleSleepStatus VehicleSleepStatus_E `protobuf:"varint,3,opt,name=vehicleSleepStatus,proto3,enum=VCSEC.VehicleSleepStatus_E" json:"vehicleSleepStatus,omitempty"` + UserPresence UserPresence_E `protobuf:"varint,4,opt,name=userPresence,proto3,enum=VCSEC.UserPresence_E" json:"userPresence,omitempty"` + DetailedClosureStatus *DetailedClosureStatus `protobuf:"bytes,5,opt,name=detailedClosureStatus,proto3" json:"detailedClosureStatus,omitempty"` +} + +func (x *VehicleStatus) Reset() { + *x = VehicleStatus{} + if protoimpl.UnsafeEnabled { + mi := &file_vcsec_proto_msgTypes[18] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *VehicleStatus) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*VehicleStatus) ProtoMessage() {} + +func (x *VehicleStatus) ProtoReflect() protoreflect.Message { + mi := &file_vcsec_proto_msgTypes[18] + 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 VehicleStatus.ProtoReflect.Descriptor instead. +func (*VehicleStatus) Descriptor() ([]byte, []int) { + return file_vcsec_proto_rawDescGZIP(), []int{18} +} + +func (x *VehicleStatus) GetClosureStatuses() *ClosureStatuses { + if x != nil { + return x.ClosureStatuses + } + return nil +} + +func (x *VehicleStatus) GetVehicleLockState() VehicleLockState_E { + if x != nil { + return x.VehicleLockState + } + return VehicleLockState_E_VEHICLELOCKSTATE_UNLOCKED +} + +func (x *VehicleStatus) GetVehicleSleepStatus() VehicleSleepStatus_E { + if x != nil { + return x.VehicleSleepStatus + } + return VehicleSleepStatus_E_VEHICLE_SLEEP_STATUS_UNKNOWN +} + +func (x *VehicleStatus) GetUserPresence() UserPresence_E { + if x != nil { + return x.UserPresence + } + return UserPresence_E_VEHICLE_USER_PRESENCE_UNKNOWN +} + +func (x *VehicleStatus) GetDetailedClosureStatus() *DetailedClosureStatus { + if x != nil { + return x.DetailedClosureStatus + } + return nil +} + type FromVCSECMessage struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // Types that are assignable to SubMessage: + // + // *FromVCSECMessage_VehicleStatus // *FromVCSECMessage_CommandStatus // *FromVCSECMessage_WhitelistInfo // *FromVCSECMessage_WhitelistEntryInfo @@ -1828,7 +2274,7 @@ type FromVCSECMessage struct { func (x *FromVCSECMessage) Reset() { *x = FromVCSECMessage{} if protoimpl.UnsafeEnabled { - mi := &file_vcsec_proto_msgTypes[16] + mi := &file_vcsec_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1841,7 +2287,7 @@ func (x *FromVCSECMessage) String() string { func (*FromVCSECMessage) ProtoMessage() {} func (x *FromVCSECMessage) ProtoReflect() protoreflect.Message { - mi := &file_vcsec_proto_msgTypes[16] + mi := &file_vcsec_proto_msgTypes[19] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1854,7 +2300,7 @@ func (x *FromVCSECMessage) ProtoReflect() protoreflect.Message { // Deprecated: Use FromVCSECMessage.ProtoReflect.Descriptor instead. func (*FromVCSECMessage) Descriptor() ([]byte, []int) { - return file_vcsec_proto_rawDescGZIP(), []int{16} + return file_vcsec_proto_rawDescGZIP(), []int{19} } func (m *FromVCSECMessage) GetSubMessage() isFromVCSECMessage_SubMessage { @@ -1864,6 +2310,13 @@ func (m *FromVCSECMessage) GetSubMessage() isFromVCSECMessage_SubMessage { return nil } +func (x *FromVCSECMessage) GetVehicleStatus() *VehicleStatus { + if x, ok := x.GetSubMessage().(*FromVCSECMessage_VehicleStatus); ok { + return x.VehicleStatus + } + return nil +} + func (x *FromVCSECMessage) GetCommandStatus() *CommandStatus { if x, ok := x.GetSubMessage().(*FromVCSECMessage_CommandStatus); ok { return x.CommandStatus @@ -1896,6 +2349,10 @@ type isFromVCSECMessage_SubMessage interface { isFromVCSECMessage_SubMessage() } +type FromVCSECMessage_VehicleStatus struct { + VehicleStatus *VehicleStatus `protobuf:"bytes,1,opt,name=vehicleStatus,proto3,oneof"` +} + type FromVCSECMessage_CommandStatus struct { CommandStatus *CommandStatus `protobuf:"bytes,4,opt,name=commandStatus,proto3,oneof"` } @@ -1912,6 +2369,8 @@ type FromVCSECMessage_NominalError struct { NominalError *errors.NominalError `protobuf:"bytes,46,opt,name=nominalError,proto3,oneof"` } +func (*FromVCSECMessage_VehicleStatus) isFromVCSECMessage_SubMessage() {} + func (*FromVCSECMessage_CommandStatus) isFromVCSECMessage_SubMessage() {} func (*FromVCSECMessage_WhitelistInfo) isFromVCSECMessage_SubMessage() {} @@ -1988,7 +2447,7 @@ var file_vcsec_proto_rawDesc = []byte{ 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x00, 0x52, 0x09, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x04, 0x73, 0x6c, 0x6f, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x04, 0x73, 0x6c, 0x6f, 0x74, 0x42, 0x05, 0x0a, 0x03, 0x6b, 0x65, - 0x79, 0x22, 0xd8, 0x03, 0x0a, 0x12, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x4d, 0x6f, 0x76, + 0x79, 0x22, 0x8c, 0x04, 0x0a, 0x12, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x4d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x42, 0x0a, 0x0f, 0x66, 0x72, 0x6f, 0x6e, 0x74, 0x44, 0x72, 0x69, 0x76, 0x65, 0x72, 0x44, 0x6f, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x18, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, @@ -2017,406 +2476,511 @@ var file_vcsec_proto_rawDesc = []byte{ 0x6e, 0x6b, 0x12, 0x38, 0x0a, 0x0a, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x18, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x79, 0x70, 0x65, 0x5f, 0x45, - 0x52, 0x0a, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x22, 0x8a, 0x01, 0x0a, - 0x10, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, - 0x65, 0x12, 0x22, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, - 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, - 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2c, 0x0a, 0x11, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, - 0x54, 0x6f, 0x42, 0x65, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, - 0x52, 0x11, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x54, 0x6f, 0x42, 0x65, 0x41, 0x63, 0x74, - 0x69, 0x76, 0x65, 0x12, 0x24, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x52, 0x6f, 0x6c, 0x65, 0x18, 0x04, - 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0a, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x2e, 0x52, 0x6f, 0x6c, 0x65, - 0x52, 0x07, 0x6b, 0x65, 0x79, 0x52, 0x6f, 0x6c, 0x65, 0x22, 0xfe, 0x01, 0x0a, 0x0a, 0x52, 0x65, - 0x70, 0x6c, 0x61, 0x63, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x42, 0x0a, 0x12, 0x70, 0x75, 0x62, 0x6c, - 0x69, 0x63, 0x4b, 0x65, 0x79, 0x54, 0x6f, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x50, 0x75, 0x62, - 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x48, 0x00, 0x52, 0x12, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, - 0x4b, 0x65, 0x79, 0x54, 0x6f, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x12, 0x26, 0x0a, 0x0d, - 0x73, 0x6c, 0x6f, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x0d, 0x73, 0x6c, 0x6f, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x70, - 0x6c, 0x61, 0x63, 0x65, 0x12, 0x2c, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x54, 0x6f, 0x41, 0x64, 0x64, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x50, - 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x54, 0x6f, 0x41, - 0x64, 0x64, 0x12, 0x24, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x52, 0x6f, 0x6c, 0x65, 0x18, 0x04, 0x20, - 0x01, 0x28, 0x0e, 0x32, 0x0a, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x2e, 0x52, 0x6f, 0x6c, 0x65, 0x52, - 0x07, 0x6b, 0x65, 0x79, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x6d, 0x70, 0x65, - 0x72, 0x6d, 0x61, 0x6e, 0x65, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, - 0x6d, 0x70, 0x65, 0x72, 0x6d, 0x61, 0x6e, 0x65, 0x6e, 0x74, 0x42, 0x0e, 0x0a, 0x0c, 0x6b, 0x65, - 0x79, 0x54, 0x6f, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x22, 0xa8, 0x07, 0x0a, 0x12, 0x57, - 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x12, 0x4c, 0x0a, 0x17, 0x61, 0x64, 0x64, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, - 0x79, 0x54, 0x6f, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, + 0x52, 0x0a, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x12, 0x32, 0x0a, 0x07, + 0x74, 0x6f, 0x6e, 0x6e, 0x65, 0x61, 0x75, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x18, 0x2e, + 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x4d, 0x6f, 0x76, + 0x65, 0x54, 0x79, 0x70, 0x65, 0x5f, 0x45, 0x52, 0x07, 0x74, 0x6f, 0x6e, 0x6e, 0x65, 0x61, 0x75, + 0x22, 0x8a, 0x01, 0x0a, 0x10, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x43, + 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x22, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x50, 0x75, 0x62, 0x6c, 0x69, - 0x63, 0x4b, 0x65, 0x79, 0x48, 0x00, 0x52, 0x17, 0x61, 0x64, 0x64, 0x50, 0x75, 0x62, 0x6c, 0x69, - 0x63, 0x4b, 0x65, 0x79, 0x54, 0x6f, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x12, - 0x56, 0x0a, 0x1c, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, - 0x65, 0x79, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x50, 0x75, - 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x48, 0x00, 0x52, 0x1c, 0x72, 0x65, 0x6d, 0x6f, 0x76, - 0x65, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x68, - 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x57, 0x0a, 0x19, 0x61, 0x64, 0x64, 0x50, 0x65, - 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x54, 0x6f, 0x50, 0x75, 0x62, 0x6c, 0x69, - 0x63, 0x4b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x56, 0x43, 0x53, - 0x45, 0x43, 0x2e, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x61, - 0x6e, 0x67, 0x65, 0x48, 0x00, 0x52, 0x19, 0x61, 0x64, 0x64, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, - 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x54, 0x6f, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, - 0x12, 0x61, 0x0a, 0x1e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, - 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, - 0x65, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, - 0x2e, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, - 0x65, 0x48, 0x00, 0x52, 0x1e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x65, 0x72, 0x6d, 0x69, - 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, - 0x4b, 0x65, 0x79, 0x12, 0x69, 0x0a, 0x22, 0x61, 0x64, 0x64, 0x4b, 0x65, 0x79, 0x54, 0x6f, 0x57, - 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x41, 0x6e, 0x64, 0x41, 0x64, 0x64, 0x50, 0x65, - 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x17, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, - 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x48, 0x00, 0x52, 0x22, 0x61, 0x64, 0x64, 0x4b, - 0x65, 0x79, 0x54, 0x6f, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x41, 0x6e, 0x64, - 0x41, 0x64, 0x64, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x53, - 0x0a, 0x17, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x41, 0x6e, 0x64, 0x50, 0x65, - 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x17, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, - 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x48, 0x00, 0x52, 0x17, 0x75, 0x70, 0x64, 0x61, - 0x74, 0x65, 0x4b, 0x65, 0x79, 0x41, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, - 0x6f, 0x6e, 0x73, 0x12, 0x47, 0x0a, 0x11, 0x61, 0x64, 0x64, 0x49, 0x6d, 0x70, 0x65, 0x72, 0x6d, - 0x61, 0x6e, 0x65, 0x6e, 0x74, 0x4b, 0x65, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, + 0x63, 0x4b, 0x65, 0x79, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2c, 0x0a, 0x11, 0x73, 0x65, 0x63, + 0x6f, 0x6e, 0x64, 0x73, 0x54, 0x6f, 0x42, 0x65, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x18, 0x03, + 0x20, 0x01, 0x28, 0x0d, 0x52, 0x11, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x54, 0x6f, 0x42, + 0x65, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x12, 0x24, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x52, 0x6f, + 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0a, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x2e, + 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x52, 0x6f, 0x6c, 0x65, 0x22, 0xfe, 0x01, + 0x0a, 0x0a, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x42, 0x0a, 0x12, + 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x54, 0x6f, 0x52, 0x65, 0x70, 0x6c, 0x61, + 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, + 0x2e, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x48, 0x00, 0x52, 0x12, 0x70, 0x75, + 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x54, 0x6f, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, + 0x12, 0x26, 0x0a, 0x0d, 0x73, 0x6c, 0x6f, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, + 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x0d, 0x73, 0x6c, 0x6f, 0x74, 0x54, + 0x6f, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x12, 0x2c, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x54, + 0x6f, 0x41, 0x64, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x56, 0x43, 0x53, + 0x45, 0x43, 0x2e, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x52, 0x08, 0x6b, 0x65, + 0x79, 0x54, 0x6f, 0x41, 0x64, 0x64, 0x12, 0x24, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x52, 0x6f, 0x6c, + 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0a, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x2e, 0x52, + 0x6f, 0x6c, 0x65, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x20, 0x0a, 0x0b, + 0x69, 0x6d, 0x70, 0x65, 0x72, 0x6d, 0x61, 0x6e, 0x65, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, + 0x08, 0x52, 0x0b, 0x69, 0x6d, 0x70, 0x65, 0x72, 0x6d, 0x61, 0x6e, 0x65, 0x6e, 0x74, 0x42, 0x0e, + 0x0a, 0x0c, 0x6b, 0x65, 0x79, 0x54, 0x6f, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x22, 0xa8, + 0x07, 0x0a, 0x12, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4c, 0x0a, 0x17, 0x61, 0x64, 0x64, 0x50, 0x75, 0x62, 0x6c, + 0x69, 0x63, 0x4b, 0x65, 0x79, 0x54, 0x6f, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x50, + 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x48, 0x00, 0x52, 0x17, 0x61, 0x64, 0x64, 0x50, + 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x54, 0x6f, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, + 0x69, 0x73, 0x74, 0x12, 0x56, 0x0a, 0x1c, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x75, 0x62, + 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, + 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x56, 0x43, 0x53, 0x45, + 0x43, 0x2e, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x48, 0x00, 0x52, 0x1c, 0x72, + 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x46, 0x72, + 0x6f, 0x6d, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x57, 0x0a, 0x19, 0x61, + 0x64, 0x64, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x54, 0x6f, 0x50, + 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, - 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x48, 0x00, 0x52, 0x11, 0x61, 0x64, 0x64, 0x49, 0x6d, - 0x70, 0x65, 0x72, 0x6d, 0x61, 0x6e, 0x65, 0x6e, 0x74, 0x4b, 0x65, 0x79, 0x12, 0x69, 0x0a, 0x22, - 0x61, 0x64, 0x64, 0x49, 0x6d, 0x70, 0x65, 0x72, 0x6d, 0x61, 0x6e, 0x65, 0x6e, 0x74, 0x4b, 0x65, - 0x79, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x69, - 0x6e, 0x67, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, - 0x2e, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, - 0x65, 0x48, 0x00, 0x52, 0x22, 0x61, 0x64, 0x64, 0x49, 0x6d, 0x70, 0x65, 0x72, 0x6d, 0x61, 0x6e, - 0x65, 0x6e, 0x74, 0x4b, 0x65, 0x79, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x45, - 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x3c, 0x0a, 0x18, 0x72, 0x65, 0x6d, 0x6f, 0x76, - 0x65, 0x41, 0x6c, 0x6c, 0x49, 0x6d, 0x70, 0x65, 0x72, 0x6d, 0x61, 0x6e, 0x65, 0x6e, 0x74, 0x4b, - 0x65, 0x79, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x18, 0x72, 0x65, 0x6d, - 0x6f, 0x76, 0x65, 0x41, 0x6c, 0x6c, 0x49, 0x6d, 0x70, 0x65, 0x72, 0x6d, 0x61, 0x6e, 0x65, 0x6e, - 0x74, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x33, 0x0a, 0x0a, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, - 0x4b, 0x65, 0x79, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x56, 0x43, 0x53, 0x45, - 0x43, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x4b, 0x65, 0x79, 0x48, 0x00, 0x52, 0x0a, - 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x3a, 0x0a, 0x0e, 0x6d, 0x65, - 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x4b, 0x65, 0x79, 0x18, 0x06, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x4b, 0x65, 0x79, 0x4d, 0x65, - 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x0e, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, - 0x46, 0x6f, 0x72, 0x4b, 0x65, 0x79, 0x42, 0x0d, 0x0a, 0x0b, 0x73, 0x75, 0x62, 0x5f, 0x6d, 0x65, - 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x92, 0x02, 0x0a, 0x19, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, - 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, - 0x74, 0x75, 0x73, 0x12, 0x6d, 0x0a, 0x1d, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, - 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x56, 0x43, 0x53, - 0x45, 0x43, 0x2e, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x5f, 0x45, 0x52, 0x1d, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x12, 0x42, 0x0a, 0x11, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x72, 0x4f, 0x66, 0x4f, 0x70, - 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, - 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x4b, 0x65, 0x79, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, - 0x69, 0x65, 0x72, 0x52, 0x11, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x72, 0x4f, 0x66, 0x4f, 0x70, 0x65, - 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x0a, 0x0f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, - 0x18, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x45, 0x52, 0x0f, 0x6f, 0x70, 0x65, 0x72, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x90, 0x01, 0x0a, 0x14, 0x53, - 0x69, 0x67, 0x6e, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, - 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x65, 0x72, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x5e, 0x0a, - 0x18, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e, - 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, - 0x22, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x4d, 0x65, - 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x5f, 0x45, 0x52, 0x18, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, - 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x93, 0x02, - 0x0a, 0x0d, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, - 0x42, 0x0a, 0x0f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x18, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, - 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, - 0x5f, 0x45, 0x52, 0x0f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, - 0x74, 0x75, 0x73, 0x12, 0x4f, 0x0a, 0x13, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x4d, 0x65, 0x73, - 0x73, 0x61, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1b, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x4d, - 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x00, 0x52, - 0x13, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x74, - 0x61, 0x74, 0x75, 0x73, 0x12, 0x5e, 0x0a, 0x18, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, - 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x57, - 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x00, 0x52, 0x18, 0x77, 0x68, 0x69, 0x74, + 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x48, 0x00, 0x52, 0x19, 0x61, 0x64, 0x64, 0x50, 0x65, + 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x54, 0x6f, 0x50, 0x75, 0x62, 0x6c, 0x69, + 0x63, 0x4b, 0x65, 0x79, 0x12, 0x61, 0x0a, 0x1e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x65, + 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x50, 0x75, 0x62, + 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x56, + 0x43, 0x53, 0x45, 0x43, 0x2e, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x43, + 0x68, 0x61, 0x6e, 0x67, 0x65, 0x48, 0x00, 0x52, 0x1e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, + 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x50, 0x75, + 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x12, 0x69, 0x0a, 0x22, 0x61, 0x64, 0x64, 0x4b, 0x65, + 0x79, 0x54, 0x6f, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x41, 0x6e, 0x64, 0x41, + 0x64, 0x64, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x50, 0x65, 0x72, 0x6d, + 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x48, 0x00, 0x52, 0x22, + 0x61, 0x64, 0x64, 0x4b, 0x65, 0x79, 0x54, 0x6f, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, + 0x74, 0x41, 0x6e, 0x64, 0x41, 0x64, 0x64, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, + 0x6e, 0x73, 0x12, 0x53, 0x0a, 0x17, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x41, + 0x6e, 0x64, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x07, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x50, 0x65, 0x72, 0x6d, + 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x48, 0x00, 0x52, 0x17, + 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x41, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x6d, + 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x47, 0x0a, 0x11, 0x61, 0x64, 0x64, 0x49, 0x6d, + 0x70, 0x65, 0x72, 0x6d, 0x61, 0x6e, 0x65, 0x6e, 0x74, 0x4b, 0x65, 0x79, 0x18, 0x08, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x50, 0x65, 0x72, 0x6d, 0x69, + 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x48, 0x00, 0x52, 0x11, 0x61, + 0x64, 0x64, 0x49, 0x6d, 0x70, 0x65, 0x72, 0x6d, 0x61, 0x6e, 0x65, 0x6e, 0x74, 0x4b, 0x65, 0x79, + 0x12, 0x69, 0x0a, 0x22, 0x61, 0x64, 0x64, 0x49, 0x6d, 0x70, 0x65, 0x72, 0x6d, 0x61, 0x6e, 0x65, + 0x6e, 0x74, 0x4b, 0x65, 0x79, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x45, 0x78, + 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x56, + 0x43, 0x53, 0x45, 0x43, 0x2e, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x43, + 0x68, 0x61, 0x6e, 0x67, 0x65, 0x48, 0x00, 0x52, 0x22, 0x61, 0x64, 0x64, 0x49, 0x6d, 0x70, 0x65, + 0x72, 0x6d, 0x61, 0x6e, 0x65, 0x6e, 0x74, 0x4b, 0x65, 0x79, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x6d, + 0x6f, 0x76, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x3c, 0x0a, 0x18, 0x72, + 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x6c, 0x6c, 0x49, 0x6d, 0x70, 0x65, 0x72, 0x6d, 0x61, 0x6e, + 0x65, 0x6e, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, + 0x18, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x6c, 0x6c, 0x49, 0x6d, 0x70, 0x65, 0x72, 0x6d, + 0x61, 0x6e, 0x65, 0x6e, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x33, 0x0a, 0x0a, 0x72, 0x65, 0x70, + 0x6c, 0x61, 0x63, 0x65, 0x4b, 0x65, 0x79, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, + 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x4b, 0x65, 0x79, + 0x48, 0x00, 0x52, 0x0a, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x3a, + 0x0a, 0x0e, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x4b, 0x65, 0x79, + 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x4b, + 0x65, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x0e, 0x6d, 0x65, 0x74, 0x61, + 0x64, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x4b, 0x65, 0x79, 0x42, 0x0d, 0x0a, 0x0b, 0x73, 0x75, + 0x62, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x92, 0x02, 0x0a, 0x19, 0x57, 0x68, + 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x6d, 0x0a, 0x1d, 0x77, 0x68, 0x69, 0x74, 0x65, + 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, + 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, + 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, + 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x45, 0x52, 0x1d, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, + 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x72, + 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x0a, 0x11, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x72, + 0x4f, 0x66, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x14, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x4b, 0x65, 0x79, 0x49, 0x64, 0x65, + 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x11, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x72, 0x4f, + 0x66, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x0a, 0x0f, 0x6f, 0x70, + 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x0e, 0x32, 0x18, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x45, 0x52, 0x0f, 0x6f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x90, + 0x01, 0x0a, 0x14, 0x53, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, + 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, + 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x65, + 0x72, 0x12, 0x5e, 0x0a, 0x18, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, + 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x0e, 0x32, 0x22, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x53, 0x69, 0x67, 0x6e, + 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x45, 0x52, 0x18, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x4d, + 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x22, 0x93, 0x02, 0x0a, 0x0d, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x53, 0x74, 0x61, + 0x74, 0x75, 0x73, 0x12, 0x42, 0x0a, 0x0f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x18, 0x2e, 0x56, + 0x43, 0x53, 0x45, 0x43, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x5f, 0x45, 0x52, 0x0f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x4f, 0x0a, 0x13, 0x73, 0x69, 0x67, 0x6e, 0x65, + 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x53, 0x69, 0x67, + 0x6e, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x48, 0x00, 0x52, 0x13, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, + 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x5e, 0x0a, 0x18, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, - 0x61, 0x74, 0x75, 0x73, 0x42, 0x0d, 0x0a, 0x0b, 0x73, 0x75, 0x62, 0x5f, 0x6d, 0x65, 0x73, 0x73, - 0x61, 0x67, 0x65, 0x22, 0xd9, 0x02, 0x0a, 0x0f, 0x55, 0x6e, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, - 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x4b, 0x0a, 0x12, 0x49, 0x6e, 0x66, 0x6f, 0x72, - 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x49, 0x6e, 0x66, 0x6f, - 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, - 0x52, 0x12, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x12, 0x32, 0x0a, 0x09, 0x52, 0x4b, 0x45, 0x41, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x12, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, - 0x52, 0x4b, 0x45, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x45, 0x48, 0x00, 0x52, 0x09, 0x52, - 0x4b, 0x45, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x12, 0x63, 0x6c, 0x6f, 0x73, - 0x75, 0x72, 0x65, 0x4d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x04, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x43, 0x6c, 0x6f, - 0x73, 0x75, 0x72, 0x65, 0x4d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, - 0x00, 0x52, 0x12, 0x63, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x4d, 0x6f, 0x76, 0x65, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x4b, 0x0a, 0x12, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, - 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x10, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x19, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, - 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x12, - 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x42, 0x0d, 0x0a, 0x0b, 0x73, 0x75, 0x62, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, - 0x65, 0x4a, 0x04, 0x08, 0x06, 0x10, 0x07, 0x4a, 0x04, 0x08, 0x07, 0x10, 0x08, 0x4a, 0x04, 0x08, - 0x0a, 0x10, 0x0b, 0x4a, 0x04, 0x08, 0x0c, 0x10, 0x0d, 0x4a, 0x04, 0x08, 0x0d, 0x10, 0x0e, 0x22, - 0xac, 0x02, 0x0a, 0x10, 0x46, 0x72, 0x6f, 0x6d, 0x56, 0x43, 0x53, 0x45, 0x43, 0x4d, 0x65, 0x73, - 0x73, 0x61, 0x67, 0x65, 0x12, 0x3c, 0x0a, 0x0d, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x53, - 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x56, 0x43, - 0x53, 0x45, 0x43, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, - 0x73, 0x48, 0x00, 0x52, 0x0d, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x53, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x12, 0x3c, 0x0a, 0x0d, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x49, - 0x6e, 0x66, 0x6f, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x56, 0x43, 0x53, 0x45, - 0x43, 0x2e, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x48, - 0x00, 0x52, 0x0d, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, - 0x12, 0x4b, 0x0a, 0x12, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, - 0x72, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x56, - 0x43, 0x53, 0x45, 0x43, 0x2e, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x45, 0x6e, - 0x74, 0x72, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x12, 0x77, 0x68, 0x69, 0x74, 0x65, - 0x6c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x3a, 0x0a, - 0x0c, 0x6e, 0x6f, 0x6d, 0x69, 0x6e, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x2e, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4e, 0x6f, 0x6d, - 0x69, 0x6e, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0c, 0x6e, 0x6f, 0x6d, - 0x69, 0x6e, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x42, 0x0d, 0x0a, 0x0b, 0x73, 0x75, 0x62, - 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x4a, 0x04, 0x08, 0x06, 0x10, 0x0b, 0x2a, 0x48, - 0x0a, 0x0d, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, - 0x17, 0x0a, 0x13, 0x53, 0x49, 0x47, 0x4e, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x54, 0x59, 0x50, - 0x45, 0x5f, 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x00, 0x12, 0x1e, 0x0a, 0x1a, 0x53, 0x49, 0x47, 0x4e, - 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x50, 0x52, 0x45, 0x53, 0x45, - 0x4e, 0x54, 0x5f, 0x4b, 0x45, 0x59, 0x10, 0x02, 0x2a, 0xad, 0x01, 0x0a, 0x0d, 0x4b, 0x65, 0x79, - 0x46, 0x6f, 0x72, 0x6d, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x12, 0x1b, 0x0a, 0x17, 0x4b, 0x45, - 0x59, 0x5f, 0x46, 0x4f, 0x52, 0x4d, 0x5f, 0x46, 0x41, 0x43, 0x54, 0x4f, 0x52, 0x5f, 0x55, 0x4e, - 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x1c, 0x0a, 0x18, 0x4b, 0x45, 0x59, 0x5f, 0x46, - 0x4f, 0x52, 0x4d, 0x5f, 0x46, 0x41, 0x43, 0x54, 0x4f, 0x52, 0x5f, 0x4e, 0x46, 0x43, 0x5f, 0x43, - 0x41, 0x52, 0x44, 0x10, 0x01, 0x12, 0x1e, 0x0a, 0x1a, 0x4b, 0x45, 0x59, 0x5f, 0x46, 0x4f, 0x52, - 0x4d, 0x5f, 0x46, 0x41, 0x43, 0x54, 0x4f, 0x52, 0x5f, 0x49, 0x4f, 0x53, 0x5f, 0x44, 0x45, 0x56, - 0x49, 0x43, 0x45, 0x10, 0x06, 0x12, 0x22, 0x0a, 0x1e, 0x4b, 0x45, 0x59, 0x5f, 0x46, 0x4f, 0x52, - 0x4d, 0x5f, 0x46, 0x41, 0x43, 0x54, 0x4f, 0x52, 0x5f, 0x41, 0x4e, 0x44, 0x52, 0x4f, 0x49, 0x44, - 0x5f, 0x44, 0x45, 0x56, 0x49, 0x43, 0x45, 0x10, 0x07, 0x12, 0x1d, 0x0a, 0x19, 0x4b, 0x45, 0x59, - 0x5f, 0x46, 0x4f, 0x52, 0x4d, 0x5f, 0x46, 0x41, 0x43, 0x54, 0x4f, 0x52, 0x5f, 0x43, 0x4c, 0x4f, - 0x55, 0x44, 0x5f, 0x4b, 0x45, 0x59, 0x10, 0x09, 0x2a, 0xa9, 0x01, 0x0a, 0x16, 0x49, 0x6e, 0x66, - 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, - 0x79, 0x70, 0x65, 0x12, 0x27, 0x0a, 0x23, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, + 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x56, 0x43, 0x53, + 0x45, 0x43, 0x2e, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x00, 0x52, 0x18, + 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x0d, 0x0a, 0x0b, 0x73, 0x75, 0x62, 0x5f, + 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0xd9, 0x02, 0x0a, 0x0f, 0x55, 0x6e, 0x73, 0x69, + 0x67, 0x6e, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x4b, 0x0a, 0x12, 0x49, + 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, + 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x48, 0x00, 0x52, 0x12, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x32, 0x0a, 0x09, 0x52, 0x4b, 0x45, 0x41, + 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x12, 0x2e, 0x56, 0x43, + 0x53, 0x45, 0x43, 0x2e, 0x52, 0x4b, 0x45, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x45, 0x48, + 0x00, 0x52, 0x09, 0x52, 0x4b, 0x45, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x12, + 0x63, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x4d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, + 0x2e, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x4d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x12, 0x63, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x4d, 0x6f, + 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x4b, 0x0a, 0x12, 0x57, 0x68, 0x69, + 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, + 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x57, 0x68, + 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x48, 0x00, 0x52, 0x12, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0d, 0x0a, 0x0b, 0x73, 0x75, 0x62, 0x5f, 0x6d, 0x65, + 0x73, 0x73, 0x61, 0x67, 0x65, 0x4a, 0x04, 0x08, 0x06, 0x10, 0x07, 0x4a, 0x04, 0x08, 0x07, 0x10, + 0x08, 0x4a, 0x04, 0x08, 0x0a, 0x10, 0x0b, 0x4a, 0x04, 0x08, 0x0c, 0x10, 0x0d, 0x4a, 0x04, 0x08, + 0x0d, 0x10, 0x0e, 0x22, 0xf1, 0x03, 0x0a, 0x0f, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x53, + 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x12, 0x3f, 0x0a, 0x0f, 0x66, 0x72, 0x6f, 0x6e, 0x74, + 0x44, 0x72, 0x69, 0x76, 0x65, 0x72, 0x44, 0x6f, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, + 0x32, 0x15, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, + 0x53, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x45, 0x52, 0x0f, 0x66, 0x72, 0x6f, 0x6e, 0x74, 0x44, 0x72, + 0x69, 0x76, 0x65, 0x72, 0x44, 0x6f, 0x6f, 0x72, 0x12, 0x45, 0x0a, 0x12, 0x66, 0x72, 0x6f, 0x6e, + 0x74, 0x50, 0x61, 0x73, 0x73, 0x65, 0x6e, 0x67, 0x65, 0x72, 0x44, 0x6f, 0x6f, 0x72, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x0e, 0x32, 0x15, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x43, 0x6c, 0x6f, + 0x73, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x45, 0x52, 0x12, 0x66, 0x72, 0x6f, + 0x6e, 0x74, 0x50, 0x61, 0x73, 0x73, 0x65, 0x6e, 0x67, 0x65, 0x72, 0x44, 0x6f, 0x6f, 0x72, 0x12, + 0x3d, 0x0a, 0x0e, 0x72, 0x65, 0x61, 0x72, 0x44, 0x72, 0x69, 0x76, 0x65, 0x72, 0x44, 0x6f, 0x6f, + 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x15, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, + 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x45, 0x52, 0x0e, + 0x72, 0x65, 0x61, 0x72, 0x44, 0x72, 0x69, 0x76, 0x65, 0x72, 0x44, 0x6f, 0x6f, 0x72, 0x12, 0x43, + 0x0a, 0x11, 0x72, 0x65, 0x61, 0x72, 0x50, 0x61, 0x73, 0x73, 0x65, 0x6e, 0x67, 0x65, 0x72, 0x44, + 0x6f, 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x15, 0x2e, 0x56, 0x43, 0x53, 0x45, + 0x43, 0x2e, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x45, + 0x52, 0x11, 0x72, 0x65, 0x61, 0x72, 0x50, 0x61, 0x73, 0x73, 0x65, 0x6e, 0x67, 0x65, 0x72, 0x44, + 0x6f, 0x6f, 0x72, 0x12, 0x33, 0x0a, 0x09, 0x72, 0x65, 0x61, 0x72, 0x54, 0x72, 0x75, 0x6e, 0x6b, + 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x15, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x43, + 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x45, 0x52, 0x09, 0x72, + 0x65, 0x61, 0x72, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x12, 0x35, 0x0a, 0x0a, 0x66, 0x72, 0x6f, 0x6e, + 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x15, 0x2e, 0x56, + 0x43, 0x53, 0x45, 0x43, 0x2e, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, + 0x65, 0x5f, 0x45, 0x52, 0x0a, 0x66, 0x72, 0x6f, 0x6e, 0x74, 0x54, 0x72, 0x75, 0x6e, 0x6b, 0x12, + 0x35, 0x0a, 0x0a, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x18, 0x07, 0x20, + 0x01, 0x28, 0x0e, 0x32, 0x15, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x43, 0x6c, 0x6f, 0x73, + 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x45, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x72, + 0x67, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x12, 0x2f, 0x0a, 0x07, 0x74, 0x6f, 0x6e, 0x6e, 0x65, 0x61, + 0x75, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x15, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, + 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x45, 0x52, 0x07, + 0x74, 0x6f, 0x6e, 0x6e, 0x65, 0x61, 0x75, 0x22, 0x47, 0x0a, 0x15, 0x44, 0x65, 0x74, 0x61, 0x69, + 0x6c, 0x65, 0x64, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, + 0x12, 0x2e, 0x0a, 0x12, 0x74, 0x6f, 0x6e, 0x6e, 0x65, 0x61, 0x75, 0x50, 0x65, 0x72, 0x63, 0x65, + 0x6e, 0x74, 0x4f, 0x70, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x74, 0x6f, + 0x6e, 0x6e, 0x65, 0x61, 0x75, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x4f, 0x70, 0x65, 0x6e, + 0x22, 0xf4, 0x02, 0x0a, 0x0d, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x12, 0x40, 0x0a, 0x0f, 0x63, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, + 0x74, 0x75, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x56, 0x43, + 0x53, 0x45, 0x43, 0x2e, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x65, 0x73, 0x52, 0x0f, 0x63, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x65, 0x73, 0x12, 0x45, 0x0a, 0x10, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x4c, + 0x6f, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x19, + 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x4c, 0x6f, + 0x63, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x45, 0x52, 0x10, 0x76, 0x65, 0x68, 0x69, 0x63, + 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x4b, 0x0a, 0x12, 0x76, + 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x53, 0x6c, 0x65, 0x65, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1b, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, + 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x53, 0x6c, 0x65, 0x65, 0x70, 0x53, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x5f, 0x45, 0x52, 0x12, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x53, 0x6c, 0x65, + 0x65, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x39, 0x0a, 0x0c, 0x75, 0x73, 0x65, 0x72, + 0x50, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x15, + 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x65, 0x73, 0x65, + 0x6e, 0x63, 0x65, 0x5f, 0x45, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x50, 0x72, 0x65, 0x73, 0x65, + 0x6e, 0x63, 0x65, 0x12, 0x52, 0x0a, 0x15, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x43, + 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x44, 0x65, 0x74, 0x61, 0x69, + 0x6c, 0x65, 0x64, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, + 0x52, 0x15, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, + 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xea, 0x02, 0x0a, 0x10, 0x46, 0x72, 0x6f, 0x6d, + 0x56, 0x43, 0x53, 0x45, 0x43, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x3c, 0x0a, 0x0d, + 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x56, 0x65, 0x68, 0x69, + 0x63, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x00, 0x52, 0x0d, 0x76, 0x65, 0x68, + 0x69, 0x63, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x3c, 0x0a, 0x0d, 0x63, 0x6f, + 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x14, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, + 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x00, 0x52, 0x0d, 0x63, 0x6f, 0x6d, 0x6d, 0x61, + 0x6e, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x3c, 0x0a, 0x0d, 0x77, 0x68, 0x69, 0x74, + 0x65, 0x6c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x14, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, + 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0d, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, + 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x4b, 0x0a, 0x12, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, + 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x11, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x56, 0x43, 0x53, 0x45, 0x43, 0x2e, 0x57, 0x68, 0x69, 0x74, 0x65, + 0x6c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, + 0x12, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x49, + 0x6e, 0x66, 0x6f, 0x12, 0x3a, 0x0a, 0x0c, 0x6e, 0x6f, 0x6d, 0x69, 0x6e, 0x61, 0x6c, 0x45, 0x72, + 0x72, 0x6f, 0x72, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x45, 0x72, 0x72, 0x6f, + 0x72, 0x73, 0x2e, 0x4e, 0x6f, 0x6d, 0x69, 0x6e, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, + 0x00, 0x52, 0x0c, 0x6e, 0x6f, 0x6d, 0x69, 0x6e, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x42, + 0x0d, 0x0a, 0x0b, 0x73, 0x75, 0x62, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x4a, 0x04, + 0x08, 0x06, 0x10, 0x0b, 0x2a, 0x48, 0x0a, 0x0d, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, + 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a, 0x13, 0x53, 0x49, 0x47, 0x4e, 0x41, 0x54, 0x55, + 0x52, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x00, 0x12, 0x1e, + 0x0a, 0x1a, 0x53, 0x49, 0x47, 0x4e, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, + 0x5f, 0x50, 0x52, 0x45, 0x53, 0x45, 0x4e, 0x54, 0x5f, 0x4b, 0x45, 0x59, 0x10, 0x02, 0x2a, 0xad, + 0x01, 0x0a, 0x0d, 0x4b, 0x65, 0x79, 0x46, 0x6f, 0x72, 0x6d, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, + 0x12, 0x1b, 0x0a, 0x17, 0x4b, 0x45, 0x59, 0x5f, 0x46, 0x4f, 0x52, 0x4d, 0x5f, 0x46, 0x41, 0x43, + 0x54, 0x4f, 0x52, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x1c, 0x0a, + 0x18, 0x4b, 0x45, 0x59, 0x5f, 0x46, 0x4f, 0x52, 0x4d, 0x5f, 0x46, 0x41, 0x43, 0x54, 0x4f, 0x52, + 0x5f, 0x4e, 0x46, 0x43, 0x5f, 0x43, 0x41, 0x52, 0x44, 0x10, 0x01, 0x12, 0x1e, 0x0a, 0x1a, 0x4b, + 0x45, 0x59, 0x5f, 0x46, 0x4f, 0x52, 0x4d, 0x5f, 0x46, 0x41, 0x43, 0x54, 0x4f, 0x52, 0x5f, 0x49, + 0x4f, 0x53, 0x5f, 0x44, 0x45, 0x56, 0x49, 0x43, 0x45, 0x10, 0x06, 0x12, 0x22, 0x0a, 0x1e, 0x4b, + 0x45, 0x59, 0x5f, 0x46, 0x4f, 0x52, 0x4d, 0x5f, 0x46, 0x41, 0x43, 0x54, 0x4f, 0x52, 0x5f, 0x41, + 0x4e, 0x44, 0x52, 0x4f, 0x49, 0x44, 0x5f, 0x44, 0x45, 0x56, 0x49, 0x43, 0x45, 0x10, 0x07, 0x12, + 0x1d, 0x0a, 0x19, 0x4b, 0x45, 0x59, 0x5f, 0x46, 0x4f, 0x52, 0x4d, 0x5f, 0x46, 0x41, 0x43, 0x54, + 0x4f, 0x52, 0x5f, 0x43, 0x4c, 0x4f, 0x55, 0x44, 0x5f, 0x4b, 0x45, 0x59, 0x10, 0x09, 0x2a, 0xa9, + 0x01, 0x0a, 0x16, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x27, 0x0a, 0x23, 0x49, 0x4e, 0x46, + 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, + 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x47, 0x45, 0x54, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, + 0x10, 0x00, 0x12, 0x2f, 0x0a, 0x2b, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, + 0x4e, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x47, + 0x45, 0x54, 0x5f, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x5f, 0x49, 0x4e, 0x46, + 0x4f, 0x10, 0x05, 0x12, 0x35, 0x0a, 0x31, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, - 0x47, 0x45, 0x54, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x10, 0x00, 0x12, 0x2f, 0x0a, 0x2b, - 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x52, 0x45, 0x51, 0x55, - 0x45, 0x53, 0x54, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x47, 0x45, 0x54, 0x5f, 0x57, 0x48, 0x49, - 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x10, 0x05, 0x12, 0x35, 0x0a, - 0x31, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x52, 0x45, 0x51, - 0x55, 0x45, 0x53, 0x54, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x47, 0x45, 0x54, 0x5f, 0x57, 0x48, - 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x5f, 0x45, 0x4e, 0x54, 0x52, 0x59, 0x5f, 0x49, 0x4e, - 0x46, 0x4f, 0x10, 0x06, 0x2a, 0x97, 0x01, 0x0a, 0x0b, 0x52, 0x4b, 0x45, 0x41, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x5f, 0x45, 0x12, 0x15, 0x0a, 0x11, 0x52, 0x4b, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, - 0x4f, 0x4e, 0x5f, 0x55, 0x4e, 0x4c, 0x4f, 0x43, 0x4b, 0x10, 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x52, - 0x4b, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x10, 0x01, - 0x12, 0x1b, 0x0a, 0x17, 0x52, 0x4b, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x52, - 0x45, 0x4d, 0x4f, 0x54, 0x45, 0x5f, 0x44, 0x52, 0x49, 0x56, 0x45, 0x10, 0x14, 0x12, 0x22, 0x0a, - 0x1e, 0x52, 0x4b, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x41, 0x55, 0x54, 0x4f, - 0x5f, 0x53, 0x45, 0x43, 0x55, 0x52, 0x45, 0x5f, 0x56, 0x45, 0x48, 0x49, 0x43, 0x4c, 0x45, 0x10, - 0x1d, 0x12, 0x1b, 0x0a, 0x17, 0x52, 0x4b, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, - 0x57, 0x41, 0x4b, 0x45, 0x5f, 0x56, 0x45, 0x48, 0x49, 0x43, 0x4c, 0x45, 0x10, 0x1e, 0x2a, 0xa0, - 0x01, 0x0a, 0x11, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x79, - 0x70, 0x65, 0x5f, 0x45, 0x12, 0x1a, 0x0a, 0x16, 0x43, 0x4c, 0x4f, 0x53, 0x55, 0x52, 0x45, 0x5f, - 0x4d, 0x4f, 0x56, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x00, - 0x12, 0x1a, 0x0a, 0x16, 0x43, 0x4c, 0x4f, 0x53, 0x55, 0x52, 0x45, 0x5f, 0x4d, 0x4f, 0x56, 0x45, - 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4d, 0x4f, 0x56, 0x45, 0x10, 0x01, 0x12, 0x1a, 0x0a, 0x16, - 0x43, 0x4c, 0x4f, 0x53, 0x55, 0x52, 0x45, 0x5f, 0x4d, 0x4f, 0x56, 0x45, 0x5f, 0x54, 0x59, 0x50, - 0x45, 0x5f, 0x53, 0x54, 0x4f, 0x50, 0x10, 0x02, 0x12, 0x1a, 0x0a, 0x16, 0x43, 0x4c, 0x4f, 0x53, - 0x55, 0x52, 0x45, 0x5f, 0x4d, 0x4f, 0x56, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4f, 0x50, - 0x45, 0x4e, 0x10, 0x03, 0x12, 0x1b, 0x0a, 0x17, 0x43, 0x4c, 0x4f, 0x53, 0x55, 0x52, 0x45, 0x5f, - 0x4d, 0x4f, 0x56, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x43, 0x4c, 0x4f, 0x53, 0x45, 0x10, - 0x04, 0x2a, 0x60, 0x0a, 0x11, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, - 0x61, 0x74, 0x75, 0x73, 0x5f, 0x45, 0x12, 0x16, 0x0a, 0x12, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, - 0x49, 0x4f, 0x4e, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x4f, 0x4b, 0x10, 0x00, 0x12, 0x18, - 0x0a, 0x14, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x54, 0x41, 0x54, 0x55, - 0x53, 0x5f, 0x57, 0x41, 0x49, 0x54, 0x10, 0x01, 0x12, 0x19, 0x0a, 0x15, 0x4f, 0x50, 0x45, 0x52, - 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x45, 0x52, 0x52, 0x4f, - 0x52, 0x10, 0x02, 0x2a, 0xf3, 0x08, 0x0a, 0x1b, 0x53, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x4d, 0x65, - 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x5f, 0x45, 0x12, 0x22, 0x0a, 0x1e, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, - 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, - 0x5f, 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x00, 0x12, 0x2b, 0x0a, 0x27, 0x53, 0x49, 0x47, 0x4e, 0x45, - 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, - 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, - 0x57, 0x4e, 0x10, 0x01, 0x12, 0x34, 0x0a, 0x30, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, - 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, - 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x4f, 0x4e, 0x5f, 0x57, - 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x10, 0x02, 0x12, 0x3c, 0x0a, 0x38, 0x53, 0x49, - 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, - 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x49, 0x56, - 0x5f, 0x53, 0x4d, 0x41, 0x4c, 0x4c, 0x45, 0x52, 0x5f, 0x54, 0x48, 0x41, 0x4e, 0x5f, 0x45, 0x58, - 0x50, 0x45, 0x43, 0x54, 0x45, 0x44, 0x10, 0x03, 0x12, 0x31, 0x0a, 0x2d, 0x53, 0x49, 0x47, 0x4e, - 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, - 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x49, 0x4e, 0x56, 0x41, - 0x4c, 0x49, 0x44, 0x5f, 0x54, 0x4f, 0x4b, 0x45, 0x4e, 0x10, 0x04, 0x12, 0x3d, 0x0a, 0x39, 0x53, - 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, - 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x54, - 0x4f, 0x4b, 0x45, 0x4e, 0x5f, 0x41, 0x4e, 0x44, 0x5f, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x45, 0x52, - 0x5f, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x05, 0x12, 0x34, 0x0a, 0x30, 0x53, 0x49, + 0x47, 0x45, 0x54, 0x5f, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x5f, 0x45, 0x4e, + 0x54, 0x52, 0x59, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x10, 0x06, 0x2a, 0x97, 0x01, 0x0a, 0x0b, 0x52, + 0x4b, 0x45, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x45, 0x12, 0x15, 0x0a, 0x11, 0x52, 0x4b, + 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x55, 0x4e, 0x4c, 0x4f, 0x43, 0x4b, 0x10, + 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x52, 0x4b, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, + 0x4c, 0x4f, 0x43, 0x4b, 0x10, 0x01, 0x12, 0x1b, 0x0a, 0x17, 0x52, 0x4b, 0x45, 0x5f, 0x41, 0x43, + 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x54, 0x45, 0x5f, 0x44, 0x52, 0x49, 0x56, + 0x45, 0x10, 0x14, 0x12, 0x22, 0x0a, 0x1e, 0x52, 0x4b, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, + 0x4e, 0x5f, 0x41, 0x55, 0x54, 0x4f, 0x5f, 0x53, 0x45, 0x43, 0x55, 0x52, 0x45, 0x5f, 0x56, 0x45, + 0x48, 0x49, 0x43, 0x4c, 0x45, 0x10, 0x1d, 0x12, 0x1b, 0x0a, 0x17, 0x52, 0x4b, 0x45, 0x5f, 0x41, + 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x57, 0x41, 0x4b, 0x45, 0x5f, 0x56, 0x45, 0x48, 0x49, 0x43, + 0x4c, 0x45, 0x10, 0x1e, 0x2a, 0xa0, 0x01, 0x0a, 0x11, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, 0x65, + 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x79, 0x70, 0x65, 0x5f, 0x45, 0x12, 0x1a, 0x0a, 0x16, 0x43, 0x4c, + 0x4f, 0x53, 0x55, 0x52, 0x45, 0x5f, 0x4d, 0x4f, 0x56, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, + 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x00, 0x12, 0x1a, 0x0a, 0x16, 0x43, 0x4c, 0x4f, 0x53, 0x55, 0x52, + 0x45, 0x5f, 0x4d, 0x4f, 0x56, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4d, 0x4f, 0x56, 0x45, + 0x10, 0x01, 0x12, 0x1a, 0x0a, 0x16, 0x43, 0x4c, 0x4f, 0x53, 0x55, 0x52, 0x45, 0x5f, 0x4d, 0x4f, + 0x56, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x53, 0x54, 0x4f, 0x50, 0x10, 0x02, 0x12, 0x1a, + 0x0a, 0x16, 0x43, 0x4c, 0x4f, 0x53, 0x55, 0x52, 0x45, 0x5f, 0x4d, 0x4f, 0x56, 0x45, 0x5f, 0x54, + 0x59, 0x50, 0x45, 0x5f, 0x4f, 0x50, 0x45, 0x4e, 0x10, 0x03, 0x12, 0x1b, 0x0a, 0x17, 0x43, 0x4c, + 0x4f, 0x53, 0x55, 0x52, 0x45, 0x5f, 0x4d, 0x4f, 0x56, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, + 0x43, 0x4c, 0x4f, 0x53, 0x45, 0x10, 0x04, 0x2a, 0x60, 0x0a, 0x11, 0x4f, 0x70, 0x65, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x45, 0x12, 0x16, 0x0a, 0x12, + 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, + 0x4f, 0x4b, 0x10, 0x00, 0x12, 0x18, 0x0a, 0x14, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, + 0x4e, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x57, 0x41, 0x49, 0x54, 0x10, 0x01, 0x12, 0x19, + 0x0a, 0x15, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x54, 0x41, 0x54, 0x55, + 0x53, 0x5f, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, 0x02, 0x2a, 0xf3, 0x08, 0x0a, 0x1b, 0x53, 0x69, + 0x67, 0x6e, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, + 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x45, 0x12, 0x22, 0x0a, 0x1e, 0x53, 0x49, 0x47, + 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, + 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x00, 0x12, 0x2b, 0x0a, + 0x27, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, + 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, + 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x34, 0x0a, 0x30, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, - 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x41, 0x45, - 0x53, 0x5f, 0x44, 0x45, 0x43, 0x52, 0x59, 0x50, 0x54, 0x5f, 0x41, 0x55, 0x54, 0x48, 0x10, 0x06, - 0x12, 0x2f, 0x0a, 0x2b, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, + 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x4e, 0x4f, + 0x54, 0x5f, 0x4f, 0x4e, 0x5f, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x10, 0x02, + 0x12, 0x3c, 0x0a, 0x38, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, - 0x55, 0x4c, 0x54, 0x5f, 0x45, 0x43, 0x44, 0x53, 0x41, 0x5f, 0x49, 0x4e, 0x50, 0x55, 0x54, 0x10, - 0x07, 0x12, 0x33, 0x0a, 0x2f, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, - 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, - 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x45, 0x43, 0x44, 0x53, 0x41, 0x5f, 0x53, 0x49, 0x47, 0x4e, 0x41, - 0x54, 0x55, 0x52, 0x45, 0x10, 0x08, 0x12, 0x36, 0x0a, 0x32, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, - 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, - 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x4c, 0x4f, 0x43, 0x41, 0x4c, 0x5f, - 0x45, 0x4e, 0x54, 0x49, 0x54, 0x59, 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54, 0x10, 0x09, 0x12, 0x37, - 0x0a, 0x33, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, + 0x55, 0x4c, 0x54, 0x5f, 0x49, 0x56, 0x5f, 0x53, 0x4d, 0x41, 0x4c, 0x4c, 0x45, 0x52, 0x5f, 0x54, + 0x48, 0x41, 0x4e, 0x5f, 0x45, 0x58, 0x50, 0x45, 0x43, 0x54, 0x45, 0x44, 0x10, 0x03, 0x12, 0x31, + 0x0a, 0x2d, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, - 0x54, 0x5f, 0x4c, 0x4f, 0x43, 0x41, 0x4c, 0x5f, 0x45, 0x4e, 0x54, 0x49, 0x54, 0x59, 0x5f, 0x52, - 0x45, 0x53, 0x55, 0x4c, 0x54, 0x10, 0x0a, 0x12, 0x3a, 0x0a, 0x36, 0x53, 0x49, 0x47, 0x4e, 0x45, - 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, - 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x43, 0x4f, 0x55, 0x4c, 0x44, - 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x52, 0x45, 0x54, 0x52, 0x49, 0x45, 0x56, 0x45, 0x5f, 0x4b, 0x45, - 0x59, 0x10, 0x0b, 0x12, 0x3c, 0x0a, 0x38, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, - 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, - 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x43, 0x4f, 0x55, 0x4c, 0x44, 0x5f, 0x4e, 0x4f, 0x54, - 0x5f, 0x52, 0x45, 0x54, 0x52, 0x49, 0x45, 0x56, 0x45, 0x5f, 0x54, 0x4f, 0x4b, 0x45, 0x4e, 0x10, - 0x0c, 0x12, 0x37, 0x0a, 0x33, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, + 0x54, 0x5f, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x54, 0x4f, 0x4b, 0x45, 0x4e, 0x10, + 0x04, 0x12, 0x3d, 0x0a, 0x39, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, - 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x53, 0x49, 0x47, 0x4e, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x54, - 0x4f, 0x4f, 0x5f, 0x53, 0x48, 0x4f, 0x52, 0x54, 0x10, 0x0d, 0x12, 0x3d, 0x0a, 0x39, 0x53, 0x49, - 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, - 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x54, 0x4f, - 0x4b, 0x45, 0x4e, 0x5f, 0x49, 0x53, 0x5f, 0x49, 0x4e, 0x43, 0x4f, 0x52, 0x52, 0x45, 0x43, 0x54, - 0x5f, 0x4c, 0x45, 0x4e, 0x47, 0x54, 0x48, 0x10, 0x0e, 0x12, 0x33, 0x0a, 0x2f, 0x53, 0x49, 0x47, - 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, - 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x49, 0x4e, 0x43, - 0x4f, 0x52, 0x52, 0x45, 0x43, 0x54, 0x5f, 0x45, 0x50, 0x4f, 0x43, 0x48, 0x10, 0x0f, 0x12, 0x37, - 0x0a, 0x33, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, - 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, - 0x54, 0x5f, 0x49, 0x56, 0x5f, 0x49, 0x4e, 0x43, 0x4f, 0x52, 0x52, 0x45, 0x43, 0x54, 0x5f, 0x4c, - 0x45, 0x4e, 0x47, 0x54, 0x48, 0x10, 0x10, 0x12, 0x30, 0x0a, 0x2c, 0x53, 0x49, 0x47, 0x4e, 0x45, + 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x54, 0x4f, 0x4b, 0x45, 0x4e, 0x5f, 0x41, 0x4e, 0x44, 0x5f, 0x43, + 0x4f, 0x55, 0x4e, 0x54, 0x45, 0x52, 0x5f, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x05, + 0x12, 0x34, 0x0a, 0x30, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, + 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, + 0x55, 0x4c, 0x54, 0x5f, 0x41, 0x45, 0x53, 0x5f, 0x44, 0x45, 0x43, 0x52, 0x59, 0x50, 0x54, 0x5f, + 0x41, 0x55, 0x54, 0x48, 0x10, 0x06, 0x12, 0x2f, 0x0a, 0x2b, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, + 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, + 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x45, 0x43, 0x44, 0x53, 0x41, 0x5f, + 0x49, 0x4e, 0x50, 0x55, 0x54, 0x10, 0x07, 0x12, 0x33, 0x0a, 0x2f, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, - 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x54, 0x49, 0x4d, 0x45, 0x5f, - 0x45, 0x58, 0x50, 0x49, 0x52, 0x45, 0x44, 0x10, 0x11, 0x12, 0x41, 0x0a, 0x3d, 0x53, 0x49, 0x47, - 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, - 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x4e, 0x4f, 0x54, - 0x5f, 0x50, 0x52, 0x4f, 0x56, 0x49, 0x53, 0x49, 0x4f, 0x4e, 0x45, 0x44, 0x5f, 0x57, 0x49, 0x54, - 0x48, 0x5f, 0x49, 0x44, 0x45, 0x4e, 0x54, 0x49, 0x54, 0x59, 0x10, 0x12, 0x12, 0x3b, 0x0a, 0x37, + 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x45, 0x43, 0x44, 0x53, 0x41, + 0x5f, 0x53, 0x49, 0x47, 0x4e, 0x41, 0x54, 0x55, 0x52, 0x45, 0x10, 0x08, 0x12, 0x36, 0x0a, 0x32, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, - 0x43, 0x4f, 0x55, 0x4c, 0x44, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x48, 0x41, 0x53, 0x48, 0x5f, 0x4d, - 0x45, 0x54, 0x41, 0x44, 0x41, 0x54, 0x41, 0x10, 0x13, 0x2a, 0xc3, 0x0c, 0x0a, 0x20, 0x57, 0x68, - 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x45, 0x12, 0x27, - 0x0a, 0x23, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, - 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, - 0x5f, 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x00, 0x12, 0x35, 0x0a, 0x31, 0x57, 0x48, 0x49, 0x54, 0x45, - 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, - 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x55, 0x4e, 0x44, 0x4f, 0x43, 0x55, - 0x4d, 0x45, 0x4e, 0x54, 0x45, 0x44, 0x5f, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, 0x01, 0x12, 0x42, - 0x0a, 0x3e, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, - 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, - 0x5f, 0x4e, 0x4f, 0x5f, 0x50, 0x45, 0x52, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x54, - 0x4f, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x5f, 0x4f, 0x4e, 0x45, 0x53, 0x45, 0x4c, 0x46, - 0x10, 0x02, 0x12, 0x34, 0x0a, 0x30, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, - 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, - 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4b, 0x45, 0x59, 0x46, 0x4f, 0x42, 0x5f, 0x53, 0x4c, 0x4f, 0x54, - 0x53, 0x5f, 0x46, 0x55, 0x4c, 0x4c, 0x10, 0x03, 0x12, 0x31, 0x0a, 0x2d, 0x57, 0x48, 0x49, 0x54, - 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, - 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x57, 0x48, 0x49, 0x54, 0x45, - 0x4c, 0x49, 0x53, 0x54, 0x5f, 0x46, 0x55, 0x4c, 0x4c, 0x10, 0x04, 0x12, 0x37, 0x0a, 0x33, 0x57, - 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, - 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4e, 0x4f, - 0x5f, 0x50, 0x45, 0x52, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x4f, 0x5f, 0x41, - 0x44, 0x44, 0x10, 0x05, 0x12, 0x35, 0x0a, 0x31, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, + 0x4c, 0x4f, 0x43, 0x41, 0x4c, 0x5f, 0x45, 0x4e, 0x54, 0x49, 0x54, 0x59, 0x5f, 0x53, 0x54, 0x41, + 0x52, 0x54, 0x10, 0x09, 0x12, 0x37, 0x0a, 0x33, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, + 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, + 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x4c, 0x4f, 0x43, 0x41, 0x4c, 0x5f, 0x45, 0x4e, + 0x54, 0x49, 0x54, 0x59, 0x5f, 0x52, 0x45, 0x53, 0x55, 0x4c, 0x54, 0x10, 0x0a, 0x12, 0x3a, 0x0a, + 0x36, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, + 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, + 0x5f, 0x43, 0x4f, 0x55, 0x4c, 0x44, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x52, 0x45, 0x54, 0x52, 0x49, + 0x45, 0x56, 0x45, 0x5f, 0x4b, 0x45, 0x59, 0x10, 0x0b, 0x12, 0x3c, 0x0a, 0x38, 0x53, 0x49, 0x47, + 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, + 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x43, 0x4f, 0x55, + 0x4c, 0x44, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x52, 0x45, 0x54, 0x52, 0x49, 0x45, 0x56, 0x45, 0x5f, + 0x54, 0x4f, 0x4b, 0x45, 0x4e, 0x10, 0x0c, 0x12, 0x37, 0x0a, 0x33, 0x53, 0x49, 0x47, 0x4e, 0x45, + 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, + 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x53, 0x49, 0x47, 0x4e, 0x41, + 0x54, 0x55, 0x52, 0x45, 0x5f, 0x54, 0x4f, 0x4f, 0x5f, 0x53, 0x48, 0x4f, 0x52, 0x54, 0x10, 0x0d, + 0x12, 0x3d, 0x0a, 0x39, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, + 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, + 0x55, 0x4c, 0x54, 0x5f, 0x54, 0x4f, 0x4b, 0x45, 0x4e, 0x5f, 0x49, 0x53, 0x5f, 0x49, 0x4e, 0x43, + 0x4f, 0x52, 0x52, 0x45, 0x43, 0x54, 0x5f, 0x4c, 0x45, 0x4e, 0x47, 0x54, 0x48, 0x10, 0x0e, 0x12, + 0x33, 0x0a, 0x2f, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, + 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, + 0x4c, 0x54, 0x5f, 0x49, 0x4e, 0x43, 0x4f, 0x52, 0x52, 0x45, 0x43, 0x54, 0x5f, 0x45, 0x50, 0x4f, + 0x43, 0x48, 0x10, 0x0f, 0x12, 0x37, 0x0a, 0x33, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, + 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, + 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x49, 0x56, 0x5f, 0x49, 0x4e, 0x43, 0x4f, 0x52, + 0x52, 0x45, 0x43, 0x54, 0x5f, 0x4c, 0x45, 0x4e, 0x47, 0x54, 0x48, 0x10, 0x10, 0x12, 0x30, 0x0a, + 0x2c, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x49, + 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, 0x4c, 0x54, + 0x5f, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x45, 0x58, 0x50, 0x49, 0x52, 0x45, 0x44, 0x10, 0x11, 0x12, + 0x41, 0x0a, 0x3d, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, + 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x55, + 0x4c, 0x54, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x50, 0x52, 0x4f, 0x56, 0x49, 0x53, 0x49, 0x4f, 0x4e, + 0x45, 0x44, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x5f, 0x49, 0x44, 0x45, 0x4e, 0x54, 0x49, 0x54, 0x59, + 0x10, 0x12, 0x12, 0x3b, 0x0a, 0x37, 0x53, 0x49, 0x47, 0x4e, 0x45, 0x44, 0x4d, 0x45, 0x53, 0x53, + 0x41, 0x47, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, + 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x43, 0x4f, 0x55, 0x4c, 0x44, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, + 0x48, 0x41, 0x53, 0x48, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x44, 0x41, 0x54, 0x41, 0x10, 0x13, 0x2a, + 0xc3, 0x0c, 0x0a, 0x20, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x5f, 0x45, 0x12, 0x27, 0x0a, 0x23, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, - 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x50, - 0x55, 0x42, 0x4c, 0x49, 0x43, 0x5f, 0x4b, 0x45, 0x59, 0x10, 0x06, 0x12, 0x3a, 0x0a, 0x36, 0x57, - 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, - 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4e, 0x4f, - 0x5f, 0x50, 0x45, 0x52, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x4f, 0x5f, 0x52, - 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x10, 0x07, 0x12, 0x46, 0x0a, 0x42, 0x57, 0x48, 0x49, 0x54, 0x45, - 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, - 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4e, 0x4f, 0x5f, 0x50, 0x45, 0x52, - 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x4f, 0x5f, 0x43, 0x48, 0x41, 0x4e, 0x47, - 0x45, 0x5f, 0x50, 0x45, 0x52, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x53, 0x10, 0x08, 0x12, - 0x4c, 0x0a, 0x48, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, - 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, - 0x4e, 0x5f, 0x41, 0x54, 0x54, 0x45, 0x4d, 0x50, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x54, 0x4f, 0x5f, - 0x45, 0x4c, 0x45, 0x56, 0x41, 0x54, 0x45, 0x5f, 0x4f, 0x54, 0x48, 0x45, 0x52, 0x5f, 0x41, 0x42, - 0x4f, 0x56, 0x45, 0x5f, 0x4f, 0x4e, 0x45, 0x53, 0x45, 0x4c, 0x46, 0x10, 0x09, 0x12, 0x4b, 0x0a, - 0x47, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, + 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x00, 0x12, 0x35, 0x0a, + 0x31, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, - 0x41, 0x54, 0x54, 0x45, 0x4d, 0x50, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x54, 0x4f, 0x5f, 0x44, 0x45, - 0x4d, 0x4f, 0x54, 0x45, 0x5f, 0x53, 0x55, 0x50, 0x45, 0x52, 0x49, 0x4f, 0x52, 0x5f, 0x54, 0x4f, - 0x5f, 0x4f, 0x4e, 0x45, 0x53, 0x45, 0x4c, 0x46, 0x10, 0x0a, 0x12, 0x47, 0x0a, 0x43, 0x57, 0x48, - 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, - 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x41, 0x54, 0x54, - 0x45, 0x4d, 0x50, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x54, 0x4f, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, - 0x45, 0x5f, 0x4f, 0x57, 0x4e, 0x5f, 0x50, 0x45, 0x52, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, - 0x53, 0x10, 0x0b, 0x12, 0x3e, 0x0a, 0x3a, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, - 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, - 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x50, 0x55, 0x42, 0x4c, 0x49, 0x43, 0x5f, 0x4b, 0x45, 0x59, - 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x4f, 0x4e, 0x5f, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, - 0x54, 0x10, 0x0c, 0x12, 0x59, 0x0a, 0x55, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, - 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, - 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x41, 0x54, 0x54, 0x45, 0x4d, 0x50, 0x54, 0x49, 0x4e, 0x47, - 0x5f, 0x54, 0x4f, 0x5f, 0x41, 0x44, 0x44, 0x5f, 0x4b, 0x45, 0x59, 0x5f, 0x54, 0x48, 0x41, 0x54, - 0x5f, 0x49, 0x53, 0x5f, 0x41, 0x4c, 0x52, 0x45, 0x41, 0x44, 0x59, 0x5f, 0x4f, 0x4e, 0x5f, 0x54, - 0x48, 0x45, 0x5f, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x10, 0x0d, 0x12, 0x46, - 0x0a, 0x42, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, + 0x55, 0x4e, 0x44, 0x4f, 0x43, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x45, 0x44, 0x5f, 0x45, 0x52, 0x52, + 0x4f, 0x52, 0x10, 0x01, 0x12, 0x42, 0x0a, 0x3e, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, + 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, + 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4e, 0x4f, 0x5f, 0x50, 0x45, 0x52, 0x4d, 0x49, 0x53, + 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x4f, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x5f, 0x4f, + 0x4e, 0x45, 0x53, 0x45, 0x4c, 0x46, 0x10, 0x02, 0x12, 0x34, 0x0a, 0x30, 0x57, 0x48, 0x49, 0x54, + 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, + 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4b, 0x45, 0x59, 0x46, 0x4f, + 0x42, 0x5f, 0x53, 0x4c, 0x4f, 0x54, 0x53, 0x5f, 0x46, 0x55, 0x4c, 0x4c, 0x10, 0x03, 0x12, 0x31, + 0x0a, 0x2d, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, - 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x41, 0x4c, 0x4c, 0x4f, 0x57, 0x45, 0x44, 0x5f, 0x54, 0x4f, 0x5f, - 0x41, 0x44, 0x44, 0x5f, 0x55, 0x4e, 0x4c, 0x45, 0x53, 0x53, 0x5f, 0x4f, 0x4e, 0x5f, 0x52, 0x45, - 0x41, 0x44, 0x45, 0x52, 0x10, 0x0e, 0x12, 0x41, 0x0a, 0x3d, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, - 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, - 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x4d, 0x5f, 0x4d, 0x4f, 0x44, 0x49, - 0x46, 0x59, 0x49, 0x4e, 0x47, 0x5f, 0x4f, 0x55, 0x54, 0x53, 0x49, 0x44, 0x45, 0x5f, 0x4f, 0x46, - 0x5f, 0x46, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x10, 0x0f, 0x12, 0x45, 0x0a, 0x41, 0x57, 0x48, 0x49, - 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, - 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x4d, 0x5f, 0x41, - 0x54, 0x54, 0x45, 0x4d, 0x50, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x54, 0x4f, 0x5f, 0x41, 0x44, 0x44, - 0x5f, 0x50, 0x45, 0x52, 0x4d, 0x41, 0x4e, 0x45, 0x4e, 0x54, 0x5f, 0x4b, 0x45, 0x59, 0x10, 0x10, - 0x12, 0x48, 0x0a, 0x44, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, - 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, - 0x4f, 0x4e, 0x5f, 0x46, 0x4d, 0x5f, 0x41, 0x54, 0x54, 0x45, 0x4d, 0x50, 0x54, 0x49, 0x4e, 0x47, - 0x5f, 0x54, 0x4f, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x5f, 0x50, 0x45, 0x52, 0x4d, 0x41, - 0x4e, 0x45, 0x4e, 0x54, 0x5f, 0x4b, 0x45, 0x59, 0x10, 0x11, 0x12, 0x39, 0x0a, 0x35, 0x57, 0x48, + 0x5f, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x5f, 0x46, 0x55, 0x4c, 0x4c, 0x10, + 0x04, 0x12, 0x37, 0x0a, 0x33, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, + 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, + 0x49, 0x4f, 0x4e, 0x5f, 0x4e, 0x4f, 0x5f, 0x50, 0x45, 0x52, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, + 0x4e, 0x5f, 0x54, 0x4f, 0x5f, 0x41, 0x44, 0x44, 0x10, 0x05, 0x12, 0x35, 0x0a, 0x31, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, - 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4b, 0x45, 0x59, - 0x43, 0x48, 0x41, 0x49, 0x4e, 0x5f, 0x57, 0x48, 0x49, 0x4c, 0x45, 0x5f, 0x46, 0x53, 0x5f, 0x46, - 0x55, 0x4c, 0x4c, 0x10, 0x12, 0x12, 0x45, 0x0a, 0x41, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, + 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x56, + 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x50, 0x55, 0x42, 0x4c, 0x49, 0x43, 0x5f, 0x4b, 0x45, 0x59, 0x10, + 0x06, 0x12, 0x3a, 0x0a, 0x36, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, + 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, + 0x49, 0x4f, 0x4e, 0x5f, 0x4e, 0x4f, 0x5f, 0x50, 0x45, 0x52, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, + 0x4e, 0x5f, 0x54, 0x4f, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x10, 0x07, 0x12, 0x46, 0x0a, + 0x42, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, + 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, + 0x4e, 0x4f, 0x5f, 0x50, 0x45, 0x52, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x4f, + 0x5f, 0x43, 0x48, 0x41, 0x4e, 0x47, 0x45, 0x5f, 0x50, 0x45, 0x52, 0x4d, 0x49, 0x53, 0x53, 0x49, + 0x4f, 0x4e, 0x53, 0x10, 0x08, 0x12, 0x4c, 0x0a, 0x48, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x41, 0x54, 0x54, 0x45, 0x4d, 0x50, 0x54, 0x49, - 0x4e, 0x47, 0x5f, 0x54, 0x4f, 0x5f, 0x41, 0x44, 0x44, 0x5f, 0x4b, 0x45, 0x59, 0x5f, 0x57, 0x49, - 0x54, 0x48, 0x4f, 0x55, 0x54, 0x5f, 0x52, 0x4f, 0x4c, 0x45, 0x10, 0x13, 0x12, 0x4a, 0x0a, 0x46, + 0x4e, 0x47, 0x5f, 0x54, 0x4f, 0x5f, 0x45, 0x4c, 0x45, 0x56, 0x41, 0x54, 0x45, 0x5f, 0x4f, 0x54, + 0x48, 0x45, 0x52, 0x5f, 0x41, 0x42, 0x4f, 0x56, 0x45, 0x5f, 0x4f, 0x4e, 0x45, 0x53, 0x45, 0x4c, + 0x46, 0x10, 0x09, 0x12, 0x4b, 0x0a, 0x47, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, + 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, + 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x41, 0x54, 0x54, 0x45, 0x4d, 0x50, 0x54, 0x49, 0x4e, 0x47, + 0x5f, 0x54, 0x4f, 0x5f, 0x44, 0x45, 0x4d, 0x4f, 0x54, 0x45, 0x5f, 0x53, 0x55, 0x50, 0x45, 0x52, + 0x49, 0x4f, 0x52, 0x5f, 0x54, 0x4f, 0x5f, 0x4f, 0x4e, 0x45, 0x53, 0x45, 0x4c, 0x46, 0x10, 0x0a, + 0x12, 0x47, 0x0a, 0x43, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, + 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, + 0x4f, 0x4e, 0x5f, 0x41, 0x54, 0x54, 0x45, 0x4d, 0x50, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x54, 0x4f, + 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x5f, 0x4f, 0x57, 0x4e, 0x5f, 0x50, 0x45, 0x52, 0x4d, + 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x53, 0x10, 0x0b, 0x12, 0x3e, 0x0a, 0x3a, 0x57, 0x48, 0x49, + 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, + 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x50, 0x55, 0x42, 0x4c, + 0x49, 0x43, 0x5f, 0x4b, 0x45, 0x59, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x4f, 0x4e, 0x5f, 0x57, 0x48, + 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x10, 0x0c, 0x12, 0x59, 0x0a, 0x55, 0x57, 0x48, 0x49, + 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, + 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x41, 0x54, 0x54, 0x45, + 0x4d, 0x50, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x54, 0x4f, 0x5f, 0x41, 0x44, 0x44, 0x5f, 0x4b, 0x45, + 0x59, 0x5f, 0x54, 0x48, 0x41, 0x54, 0x5f, 0x49, 0x53, 0x5f, 0x41, 0x4c, 0x52, 0x45, 0x41, 0x44, + 0x59, 0x5f, 0x4f, 0x4e, 0x5f, 0x54, 0x48, 0x45, 0x5f, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, + 0x53, 0x54, 0x10, 0x0d, 0x12, 0x46, 0x0a, 0x42, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, + 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, + 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x41, 0x4c, 0x4c, 0x4f, 0x57, + 0x45, 0x44, 0x5f, 0x54, 0x4f, 0x5f, 0x41, 0x44, 0x44, 0x5f, 0x55, 0x4e, 0x4c, 0x45, 0x53, 0x53, + 0x5f, 0x4f, 0x4e, 0x5f, 0x52, 0x45, 0x41, 0x44, 0x45, 0x52, 0x10, 0x0e, 0x12, 0x41, 0x0a, 0x3d, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, - 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x41, - 0x54, 0x54, 0x45, 0x4d, 0x50, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x54, 0x4f, 0x5f, 0x41, 0x44, 0x44, - 0x5f, 0x4b, 0x45, 0x59, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x49, 0x43, - 0x45, 0x5f, 0x52, 0x4f, 0x4c, 0x45, 0x10, 0x14, 0x12, 0x51, 0x0a, 0x4d, 0x57, 0x48, 0x49, 0x54, - 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, - 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4e, 0x4f, 0x4e, 0x5f, 0x53, - 0x45, 0x52, 0x56, 0x49, 0x43, 0x45, 0x5f, 0x4b, 0x45, 0x59, 0x5f, 0x41, 0x54, 0x54, 0x45, 0x4d, - 0x50, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x54, 0x4f, 0x5f, 0x41, 0x44, 0x44, 0x5f, 0x53, 0x45, 0x52, - 0x56, 0x49, 0x43, 0x45, 0x5f, 0x54, 0x45, 0x43, 0x48, 0x10, 0x15, 0x12, 0x62, 0x0a, 0x5e, 0x57, + 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, + 0x4d, 0x5f, 0x4d, 0x4f, 0x44, 0x49, 0x46, 0x59, 0x49, 0x4e, 0x47, 0x5f, 0x4f, 0x55, 0x54, 0x53, + 0x49, 0x44, 0x45, 0x5f, 0x4f, 0x46, 0x5f, 0x46, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x10, 0x0f, 0x12, + 0x45, 0x0a, 0x41, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, + 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, + 0x4e, 0x5f, 0x46, 0x4d, 0x5f, 0x41, 0x54, 0x54, 0x45, 0x4d, 0x50, 0x54, 0x49, 0x4e, 0x47, 0x5f, + 0x54, 0x4f, 0x5f, 0x41, 0x44, 0x44, 0x5f, 0x50, 0x45, 0x52, 0x4d, 0x41, 0x4e, 0x45, 0x4e, 0x54, + 0x5f, 0x4b, 0x45, 0x59, 0x10, 0x10, 0x12, 0x48, 0x0a, 0x44, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, + 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, + 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x4d, 0x5f, 0x41, 0x54, 0x54, 0x45, + 0x4d, 0x50, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x54, 0x4f, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, + 0x5f, 0x50, 0x45, 0x52, 0x4d, 0x41, 0x4e, 0x45, 0x4e, 0x54, 0x5f, 0x4b, 0x45, 0x59, 0x10, 0x11, + 0x12, 0x39, 0x0a, 0x35, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, + 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, + 0x4f, 0x4e, 0x5f, 0x4b, 0x45, 0x59, 0x43, 0x48, 0x41, 0x49, 0x4e, 0x5f, 0x57, 0x48, 0x49, 0x4c, + 0x45, 0x5f, 0x46, 0x53, 0x5f, 0x46, 0x55, 0x4c, 0x4c, 0x10, 0x12, 0x12, 0x45, 0x0a, 0x41, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, - 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x53, 0x45, - 0x52, 0x56, 0x49, 0x43, 0x45, 0x5f, 0x4b, 0x45, 0x59, 0x5f, 0x41, 0x54, 0x54, 0x45, 0x4d, 0x50, - 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x54, 0x4f, 0x5f, 0x41, 0x44, 0x44, 0x5f, 0x53, 0x45, 0x52, 0x56, - 0x49, 0x43, 0x45, 0x5f, 0x54, 0x45, 0x43, 0x48, 0x5f, 0x4f, 0x55, 0x54, 0x53, 0x49, 0x44, 0x45, - 0x5f, 0x53, 0x45, 0x52, 0x56, 0x49, 0x43, 0x45, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x10, 0x16, 0x42, - 0x5f, 0x0a, 0x19, 0x63, 0x6f, 0x6d, 0x2e, 0x74, 0x65, 0x73, 0x6c, 0x61, 0x2e, 0x67, 0x65, 0x6e, - 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x76, 0x63, 0x73, 0x65, 0x63, 0x5a, 0x42, 0x67, 0x69, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x65, 0x73, 0x6c, 0x61, 0x6d, 0x6f, - 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x2d, 0x63, 0x6f, 0x6d, - 0x6d, 0x61, 0x6e, 0x64, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, - 0x6c, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x76, 0x63, 0x73, 0x65, 0x63, - 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x41, 0x54, + 0x54, 0x45, 0x4d, 0x50, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x54, 0x4f, 0x5f, 0x41, 0x44, 0x44, 0x5f, + 0x4b, 0x45, 0x59, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x4f, 0x55, 0x54, 0x5f, 0x52, 0x4f, 0x4c, 0x45, + 0x10, 0x13, 0x12, 0x4a, 0x0a, 0x46, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, + 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, + 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x41, 0x54, 0x54, 0x45, 0x4d, 0x50, 0x54, 0x49, 0x4e, 0x47, 0x5f, + 0x54, 0x4f, 0x5f, 0x41, 0x44, 0x44, 0x5f, 0x4b, 0x45, 0x59, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x5f, + 0x53, 0x45, 0x52, 0x56, 0x49, 0x43, 0x45, 0x5f, 0x52, 0x4f, 0x4c, 0x45, 0x10, 0x14, 0x12, 0x51, + 0x0a, 0x4d, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, 0x45, 0x52, 0x41, + 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, + 0x5f, 0x4e, 0x4f, 0x4e, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x49, 0x43, 0x45, 0x5f, 0x4b, 0x45, 0x59, + 0x5f, 0x41, 0x54, 0x54, 0x45, 0x4d, 0x50, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x54, 0x4f, 0x5f, 0x41, + 0x44, 0x44, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x49, 0x43, 0x45, 0x5f, 0x54, 0x45, 0x43, 0x48, 0x10, + 0x15, 0x12, 0x62, 0x0a, 0x5e, 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x4f, 0x50, + 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, + 0x49, 0x4f, 0x4e, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x49, 0x43, 0x45, 0x5f, 0x4b, 0x45, 0x59, 0x5f, + 0x41, 0x54, 0x54, 0x45, 0x4d, 0x50, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x54, 0x4f, 0x5f, 0x41, 0x44, + 0x44, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x49, 0x43, 0x45, 0x5f, 0x54, 0x45, 0x43, 0x48, 0x5f, 0x4f, + 0x55, 0x54, 0x53, 0x49, 0x44, 0x45, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x49, 0x43, 0x45, 0x5f, 0x4d, + 0x4f, 0x44, 0x45, 0x10, 0x16, 0x2a, 0xc6, 0x01, 0x0a, 0x0e, 0x43, 0x6c, 0x6f, 0x73, 0x75, 0x72, + 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x45, 0x12, 0x17, 0x0a, 0x13, 0x43, 0x4c, 0x4f, 0x53, + 0x55, 0x52, 0x45, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x43, 0x4c, 0x4f, 0x53, 0x45, 0x44, 0x10, + 0x00, 0x12, 0x15, 0x0a, 0x11, 0x43, 0x4c, 0x4f, 0x53, 0x55, 0x52, 0x45, 0x53, 0x54, 0x41, 0x54, + 0x45, 0x5f, 0x4f, 0x50, 0x45, 0x4e, 0x10, 0x01, 0x12, 0x15, 0x0a, 0x11, 0x43, 0x4c, 0x4f, 0x53, + 0x55, 0x52, 0x45, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x41, 0x4a, 0x41, 0x52, 0x10, 0x02, 0x12, + 0x18, 0x0a, 0x14, 0x43, 0x4c, 0x4f, 0x53, 0x55, 0x52, 0x45, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, + 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x03, 0x12, 0x1f, 0x0a, 0x1b, 0x43, 0x4c, 0x4f, + 0x53, 0x55, 0x52, 0x45, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, + 0x5f, 0x55, 0x4e, 0x4c, 0x41, 0x54, 0x43, 0x48, 0x10, 0x04, 0x12, 0x18, 0x0a, 0x14, 0x43, 0x4c, + 0x4f, 0x53, 0x55, 0x52, 0x45, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x4f, 0x50, 0x45, 0x4e, 0x49, + 0x4e, 0x47, 0x10, 0x05, 0x12, 0x18, 0x0a, 0x14, 0x43, 0x4c, 0x4f, 0x53, 0x55, 0x52, 0x45, 0x53, + 0x54, 0x41, 0x54, 0x45, 0x5f, 0x43, 0x4c, 0x4f, 0x53, 0x49, 0x4e, 0x47, 0x10, 0x06, 0x2a, 0x9f, + 0x01, 0x0a, 0x12, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x6b, 0x53, 0x74, + 0x61, 0x74, 0x65, 0x5f, 0x45, 0x12, 0x1d, 0x0a, 0x19, 0x56, 0x45, 0x48, 0x49, 0x43, 0x4c, 0x45, + 0x4c, 0x4f, 0x43, 0x4b, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x4c, 0x4f, 0x43, 0x4b, + 0x45, 0x44, 0x10, 0x00, 0x12, 0x1b, 0x0a, 0x17, 0x56, 0x45, 0x48, 0x49, 0x43, 0x4c, 0x45, 0x4c, + 0x4f, 0x43, 0x4b, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x45, 0x44, 0x10, + 0x01, 0x12, 0x24, 0x0a, 0x20, 0x56, 0x45, 0x48, 0x49, 0x43, 0x4c, 0x45, 0x4c, 0x4f, 0x43, 0x4b, + 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x4e, 0x41, 0x4c, 0x5f, 0x4c, + 0x4f, 0x43, 0x4b, 0x45, 0x44, 0x10, 0x02, 0x12, 0x27, 0x0a, 0x23, 0x56, 0x45, 0x48, 0x49, 0x43, + 0x4c, 0x45, 0x4c, 0x4f, 0x43, 0x4b, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x53, 0x45, 0x4c, 0x45, + 0x43, 0x54, 0x49, 0x56, 0x45, 0x5f, 0x55, 0x4e, 0x4c, 0x4f, 0x43, 0x4b, 0x45, 0x44, 0x10, 0x03, + 0x2a, 0x79, 0x0a, 0x14, 0x56, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x53, 0x6c, 0x65, 0x65, 0x70, + 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x45, 0x12, 0x20, 0x0a, 0x1c, 0x56, 0x45, 0x48, 0x49, + 0x43, 0x4c, 0x45, 0x5f, 0x53, 0x4c, 0x45, 0x45, 0x50, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, + 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x1e, 0x0a, 0x1a, 0x56, 0x45, + 0x48, 0x49, 0x43, 0x4c, 0x45, 0x5f, 0x53, 0x4c, 0x45, 0x45, 0x50, 0x5f, 0x53, 0x54, 0x41, 0x54, + 0x55, 0x53, 0x5f, 0x41, 0x57, 0x41, 0x4b, 0x45, 0x10, 0x01, 0x12, 0x1f, 0x0a, 0x1b, 0x56, 0x45, + 0x48, 0x49, 0x43, 0x4c, 0x45, 0x5f, 0x53, 0x4c, 0x45, 0x45, 0x50, 0x5f, 0x53, 0x54, 0x41, 0x54, + 0x55, 0x53, 0x5f, 0x41, 0x53, 0x4c, 0x45, 0x45, 0x50, 0x10, 0x02, 0x2a, 0x7d, 0x0a, 0x0e, 0x55, + 0x73, 0x65, 0x72, 0x50, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x45, 0x12, 0x21, 0x0a, + 0x1d, 0x56, 0x45, 0x48, 0x49, 0x43, 0x4c, 0x45, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x50, 0x52, + 0x45, 0x53, 0x45, 0x4e, 0x43, 0x45, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, + 0x12, 0x25, 0x0a, 0x21, 0x56, 0x45, 0x48, 0x49, 0x43, 0x4c, 0x45, 0x5f, 0x55, 0x53, 0x45, 0x52, + 0x5f, 0x50, 0x52, 0x45, 0x53, 0x45, 0x4e, 0x43, 0x45, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x50, 0x52, + 0x45, 0x53, 0x45, 0x4e, 0x54, 0x10, 0x01, 0x12, 0x21, 0x0a, 0x1d, 0x56, 0x45, 0x48, 0x49, 0x43, + 0x4c, 0x45, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x50, 0x52, 0x45, 0x53, 0x45, 0x4e, 0x43, 0x45, + 0x5f, 0x50, 0x52, 0x45, 0x53, 0x45, 0x4e, 0x54, 0x10, 0x02, 0x42, 0x5f, 0x0a, 0x19, 0x63, 0x6f, + 0x6d, 0x2e, 0x74, 0x65, 0x73, 0x6c, 0x61, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, + 0x64, 0x2e, 0x76, 0x63, 0x73, 0x65, 0x63, 0x5a, 0x42, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, + 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x65, 0x73, 0x6c, 0x61, 0x6d, 0x6f, 0x74, 0x6f, 0x72, 0x73, 0x2f, + 0x76, 0x65, 0x68, 0x69, 0x63, 0x6c, 0x65, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2f, + 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2f, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x76, 0x63, 0x73, 0x65, 0x63, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x33, } var ( @@ -2431,8 +2995,8 @@ func file_vcsec_proto_rawDescGZIP() []byte { return file_vcsec_proto_rawDescData } -var file_vcsec_proto_enumTypes = make([]protoimpl.EnumInfo, 8) -var file_vcsec_proto_msgTypes = make([]protoimpl.MessageInfo, 17) +var file_vcsec_proto_enumTypes = make([]protoimpl.EnumInfo, 12) +var file_vcsec_proto_msgTypes = make([]protoimpl.MessageInfo, 20) var file_vcsec_proto_goTypes = []interface{}{ (SignatureType)(0), // 0: VCSEC.SignatureType (KeyFormFactor)(0), // 1: VCSEC.KeyFormFactor @@ -2442,37 +3006,44 @@ var file_vcsec_proto_goTypes = []interface{}{ (OperationStatus_E)(0), // 5: VCSEC.OperationStatus_E (SignedMessageInformation_E)(0), // 6: VCSEC.SignedMessage_information_E (WhitelistOperationInformation_E)(0), // 7: VCSEC.WhitelistOperation_information_E - (*SignedMessage)(nil), // 8: VCSEC.SignedMessage - (*ToVCSECMessage)(nil), // 9: VCSEC.ToVCSECMessage - (*KeyIdentifier)(nil), // 10: VCSEC.KeyIdentifier - (*KeyMetadata)(nil), // 11: VCSEC.KeyMetadata - (*PublicKey)(nil), // 12: VCSEC.PublicKey - (*WhitelistInfo)(nil), // 13: VCSEC.WhitelistInfo - (*WhitelistEntryInfo)(nil), // 14: VCSEC.WhitelistEntryInfo - (*InformationRequest)(nil), // 15: VCSEC.InformationRequest - (*ClosureMoveRequest)(nil), // 16: VCSEC.ClosureMoveRequest - (*PermissionChange)(nil), // 17: VCSEC.PermissionChange - (*ReplaceKey)(nil), // 18: VCSEC.ReplaceKey - (*WhitelistOperation)(nil), // 19: VCSEC.WhitelistOperation - (*WhitelistOperationStatus)(nil), // 20: VCSEC.WhitelistOperation_status - (*SignedMessageStatus)(nil), // 21: VCSEC.SignedMessage_status - (*CommandStatus)(nil), // 22: VCSEC.CommandStatus - (*UnsignedMessage)(nil), // 23: VCSEC.UnsignedMessage - (*FromVCSECMessage)(nil), // 24: VCSEC.FromVCSECMessage - (keys.Role)(0), // 25: Keys.Role - (*errors.NominalError)(nil), // 26: Errors.NominalError + (ClosureState_E)(0), // 8: VCSEC.ClosureState_E + (VehicleLockState_E)(0), // 9: VCSEC.VehicleLockState_E + (VehicleSleepStatus_E)(0), // 10: VCSEC.VehicleSleepStatus_E + (UserPresence_E)(0), // 11: VCSEC.UserPresence_E + (*SignedMessage)(nil), // 12: VCSEC.SignedMessage + (*ToVCSECMessage)(nil), // 13: VCSEC.ToVCSECMessage + (*KeyIdentifier)(nil), // 14: VCSEC.KeyIdentifier + (*KeyMetadata)(nil), // 15: VCSEC.KeyMetadata + (*PublicKey)(nil), // 16: VCSEC.PublicKey + (*WhitelistInfo)(nil), // 17: VCSEC.WhitelistInfo + (*WhitelistEntryInfo)(nil), // 18: VCSEC.WhitelistEntryInfo + (*InformationRequest)(nil), // 19: VCSEC.InformationRequest + (*ClosureMoveRequest)(nil), // 20: VCSEC.ClosureMoveRequest + (*PermissionChange)(nil), // 21: VCSEC.PermissionChange + (*ReplaceKey)(nil), // 22: VCSEC.ReplaceKey + (*WhitelistOperation)(nil), // 23: VCSEC.WhitelistOperation + (*WhitelistOperationStatus)(nil), // 24: VCSEC.WhitelistOperation_status + (*SignedMessageStatus)(nil), // 25: VCSEC.SignedMessage_status + (*CommandStatus)(nil), // 26: VCSEC.CommandStatus + (*UnsignedMessage)(nil), // 27: VCSEC.UnsignedMessage + (*ClosureStatuses)(nil), // 28: VCSEC.ClosureStatuses + (*DetailedClosureStatus)(nil), // 29: VCSEC.DetailedClosureStatus + (*VehicleStatus)(nil), // 30: VCSEC.VehicleStatus + (*FromVCSECMessage)(nil), // 31: VCSEC.FromVCSECMessage + (keys.Role)(0), // 32: Keys.Role + (*errors.NominalError)(nil), // 33: Errors.NominalError } var file_vcsec_proto_depIdxs = []int32{ 0, // 0: VCSEC.SignedMessage.signatureType:type_name -> VCSEC.SignatureType - 8, // 1: VCSEC.ToVCSECMessage.signedMessage:type_name -> VCSEC.SignedMessage + 12, // 1: VCSEC.ToVCSECMessage.signedMessage:type_name -> VCSEC.SignedMessage 1, // 2: VCSEC.KeyMetadata.keyFormFactor:type_name -> VCSEC.KeyFormFactor - 10, // 3: VCSEC.WhitelistInfo.whitelistEntries:type_name -> VCSEC.KeyIdentifier - 10, // 4: VCSEC.WhitelistEntryInfo.keyId:type_name -> VCSEC.KeyIdentifier - 12, // 5: VCSEC.WhitelistEntryInfo.publicKey:type_name -> VCSEC.PublicKey - 11, // 6: VCSEC.WhitelistEntryInfo.metadataForKey:type_name -> VCSEC.KeyMetadata - 25, // 7: VCSEC.WhitelistEntryInfo.keyRole:type_name -> Keys.Role + 14, // 3: VCSEC.WhitelistInfo.whitelistEntries:type_name -> VCSEC.KeyIdentifier + 14, // 4: VCSEC.WhitelistEntryInfo.keyId:type_name -> VCSEC.KeyIdentifier + 16, // 5: VCSEC.WhitelistEntryInfo.publicKey:type_name -> VCSEC.PublicKey + 15, // 6: VCSEC.WhitelistEntryInfo.metadataForKey:type_name -> VCSEC.KeyMetadata + 32, // 7: VCSEC.WhitelistEntryInfo.keyRole:type_name -> Keys.Role 2, // 8: VCSEC.InformationRequest.informationRequestType:type_name -> VCSEC.InformationRequestType - 10, // 9: VCSEC.InformationRequest.keyId:type_name -> VCSEC.KeyIdentifier + 14, // 9: VCSEC.InformationRequest.keyId:type_name -> VCSEC.KeyIdentifier 4, // 10: VCSEC.ClosureMoveRequest.frontDriverDoor:type_name -> VCSEC.ClosureMoveType_E 4, // 11: VCSEC.ClosureMoveRequest.frontPassengerDoor:type_name -> VCSEC.ClosureMoveType_E 4, // 12: VCSEC.ClosureMoveRequest.rearDriverDoor:type_name -> VCSEC.ClosureMoveType_E @@ -2480,41 +3051,56 @@ var file_vcsec_proto_depIdxs = []int32{ 4, // 14: VCSEC.ClosureMoveRequest.rearTrunk:type_name -> VCSEC.ClosureMoveType_E 4, // 15: VCSEC.ClosureMoveRequest.frontTrunk:type_name -> VCSEC.ClosureMoveType_E 4, // 16: VCSEC.ClosureMoveRequest.chargePort:type_name -> VCSEC.ClosureMoveType_E - 12, // 17: VCSEC.PermissionChange.key:type_name -> VCSEC.PublicKey - 25, // 18: VCSEC.PermissionChange.keyRole:type_name -> Keys.Role - 12, // 19: VCSEC.ReplaceKey.publicKeyToReplace:type_name -> VCSEC.PublicKey - 12, // 20: VCSEC.ReplaceKey.keyToAdd:type_name -> VCSEC.PublicKey - 25, // 21: VCSEC.ReplaceKey.keyRole:type_name -> Keys.Role - 12, // 22: VCSEC.WhitelistOperation.addPublicKeyToWhitelist:type_name -> VCSEC.PublicKey - 12, // 23: VCSEC.WhitelistOperation.removePublicKeyFromWhitelist:type_name -> VCSEC.PublicKey - 17, // 24: VCSEC.WhitelistOperation.addPermissionsToPublicKey:type_name -> VCSEC.PermissionChange - 17, // 25: VCSEC.WhitelistOperation.removePermissionsFromPublicKey:type_name -> VCSEC.PermissionChange - 17, // 26: VCSEC.WhitelistOperation.addKeyToWhitelistAndAddPermissions:type_name -> VCSEC.PermissionChange - 17, // 27: VCSEC.WhitelistOperation.updateKeyAndPermissions:type_name -> VCSEC.PermissionChange - 17, // 28: VCSEC.WhitelistOperation.addImpermanentKey:type_name -> VCSEC.PermissionChange - 17, // 29: VCSEC.WhitelistOperation.addImpermanentKeyAndRemoveExisting:type_name -> VCSEC.PermissionChange - 18, // 30: VCSEC.WhitelistOperation.replaceKey:type_name -> VCSEC.ReplaceKey - 11, // 31: VCSEC.WhitelistOperation.metadataForKey:type_name -> VCSEC.KeyMetadata - 7, // 32: VCSEC.WhitelistOperation_status.whitelistOperationInformation:type_name -> VCSEC.WhitelistOperation_information_E - 10, // 33: VCSEC.WhitelistOperation_status.signerOfOperation:type_name -> VCSEC.KeyIdentifier - 5, // 34: VCSEC.WhitelistOperation_status.operationStatus:type_name -> VCSEC.OperationStatus_E - 6, // 35: VCSEC.SignedMessage_status.signedMessageInformation:type_name -> VCSEC.SignedMessage_information_E - 5, // 36: VCSEC.CommandStatus.operationStatus:type_name -> VCSEC.OperationStatus_E - 21, // 37: VCSEC.CommandStatus.signedMessageStatus:type_name -> VCSEC.SignedMessage_status - 20, // 38: VCSEC.CommandStatus.whitelistOperationStatus:type_name -> VCSEC.WhitelistOperation_status - 15, // 39: VCSEC.UnsignedMessage.InformationRequest:type_name -> VCSEC.InformationRequest - 3, // 40: VCSEC.UnsignedMessage.RKEAction:type_name -> VCSEC.RKEAction_E - 16, // 41: VCSEC.UnsignedMessage.closureMoveRequest:type_name -> VCSEC.ClosureMoveRequest - 19, // 42: VCSEC.UnsignedMessage.WhitelistOperation:type_name -> VCSEC.WhitelistOperation - 22, // 43: VCSEC.FromVCSECMessage.commandStatus:type_name -> VCSEC.CommandStatus - 13, // 44: VCSEC.FromVCSECMessage.whitelistInfo:type_name -> VCSEC.WhitelistInfo - 14, // 45: VCSEC.FromVCSECMessage.whitelistEntryInfo:type_name -> VCSEC.WhitelistEntryInfo - 26, // 46: VCSEC.FromVCSECMessage.nominalError:type_name -> Errors.NominalError - 47, // [47:47] is the sub-list for method output_type - 47, // [47:47] is the sub-list for method input_type - 47, // [47:47] is the sub-list for extension type_name - 47, // [47:47] is the sub-list for extension extendee - 0, // [0:47] is the sub-list for field type_name + 4, // 17: VCSEC.ClosureMoveRequest.tonneau:type_name -> VCSEC.ClosureMoveType_E + 16, // 18: VCSEC.PermissionChange.key:type_name -> VCSEC.PublicKey + 32, // 19: VCSEC.PermissionChange.keyRole:type_name -> Keys.Role + 16, // 20: VCSEC.ReplaceKey.publicKeyToReplace:type_name -> VCSEC.PublicKey + 16, // 21: VCSEC.ReplaceKey.keyToAdd:type_name -> VCSEC.PublicKey + 32, // 22: VCSEC.ReplaceKey.keyRole:type_name -> Keys.Role + 16, // 23: VCSEC.WhitelistOperation.addPublicKeyToWhitelist:type_name -> VCSEC.PublicKey + 16, // 24: VCSEC.WhitelistOperation.removePublicKeyFromWhitelist:type_name -> VCSEC.PublicKey + 21, // 25: VCSEC.WhitelistOperation.addPermissionsToPublicKey:type_name -> VCSEC.PermissionChange + 21, // 26: VCSEC.WhitelistOperation.removePermissionsFromPublicKey:type_name -> VCSEC.PermissionChange + 21, // 27: VCSEC.WhitelistOperation.addKeyToWhitelistAndAddPermissions:type_name -> VCSEC.PermissionChange + 21, // 28: VCSEC.WhitelistOperation.updateKeyAndPermissions:type_name -> VCSEC.PermissionChange + 21, // 29: VCSEC.WhitelistOperation.addImpermanentKey:type_name -> VCSEC.PermissionChange + 21, // 30: VCSEC.WhitelistOperation.addImpermanentKeyAndRemoveExisting:type_name -> VCSEC.PermissionChange + 22, // 31: VCSEC.WhitelistOperation.replaceKey:type_name -> VCSEC.ReplaceKey + 15, // 32: VCSEC.WhitelistOperation.metadataForKey:type_name -> VCSEC.KeyMetadata + 7, // 33: VCSEC.WhitelistOperation_status.whitelistOperationInformation:type_name -> VCSEC.WhitelistOperation_information_E + 14, // 34: VCSEC.WhitelistOperation_status.signerOfOperation:type_name -> VCSEC.KeyIdentifier + 5, // 35: VCSEC.WhitelistOperation_status.operationStatus:type_name -> VCSEC.OperationStatus_E + 6, // 36: VCSEC.SignedMessage_status.signedMessageInformation:type_name -> VCSEC.SignedMessage_information_E + 5, // 37: VCSEC.CommandStatus.operationStatus:type_name -> VCSEC.OperationStatus_E + 25, // 38: VCSEC.CommandStatus.signedMessageStatus:type_name -> VCSEC.SignedMessage_status + 24, // 39: VCSEC.CommandStatus.whitelistOperationStatus:type_name -> VCSEC.WhitelistOperation_status + 19, // 40: VCSEC.UnsignedMessage.InformationRequest:type_name -> VCSEC.InformationRequest + 3, // 41: VCSEC.UnsignedMessage.RKEAction:type_name -> VCSEC.RKEAction_E + 20, // 42: VCSEC.UnsignedMessage.closureMoveRequest:type_name -> VCSEC.ClosureMoveRequest + 23, // 43: VCSEC.UnsignedMessage.WhitelistOperation:type_name -> VCSEC.WhitelistOperation + 8, // 44: VCSEC.ClosureStatuses.frontDriverDoor:type_name -> VCSEC.ClosureState_E + 8, // 45: VCSEC.ClosureStatuses.frontPassengerDoor:type_name -> VCSEC.ClosureState_E + 8, // 46: VCSEC.ClosureStatuses.rearDriverDoor:type_name -> VCSEC.ClosureState_E + 8, // 47: VCSEC.ClosureStatuses.rearPassengerDoor:type_name -> VCSEC.ClosureState_E + 8, // 48: VCSEC.ClosureStatuses.rearTrunk:type_name -> VCSEC.ClosureState_E + 8, // 49: VCSEC.ClosureStatuses.frontTrunk:type_name -> VCSEC.ClosureState_E + 8, // 50: VCSEC.ClosureStatuses.chargePort:type_name -> VCSEC.ClosureState_E + 8, // 51: VCSEC.ClosureStatuses.tonneau:type_name -> VCSEC.ClosureState_E + 28, // 52: VCSEC.VehicleStatus.closureStatuses:type_name -> VCSEC.ClosureStatuses + 9, // 53: VCSEC.VehicleStatus.vehicleLockState:type_name -> VCSEC.VehicleLockState_E + 10, // 54: VCSEC.VehicleStatus.vehicleSleepStatus:type_name -> VCSEC.VehicleSleepStatus_E + 11, // 55: VCSEC.VehicleStatus.userPresence:type_name -> VCSEC.UserPresence_E + 29, // 56: VCSEC.VehicleStatus.detailedClosureStatus:type_name -> VCSEC.DetailedClosureStatus + 30, // 57: VCSEC.FromVCSECMessage.vehicleStatus:type_name -> VCSEC.VehicleStatus + 26, // 58: VCSEC.FromVCSECMessage.commandStatus:type_name -> VCSEC.CommandStatus + 17, // 59: VCSEC.FromVCSECMessage.whitelistInfo:type_name -> VCSEC.WhitelistInfo + 18, // 60: VCSEC.FromVCSECMessage.whitelistEntryInfo:type_name -> VCSEC.WhitelistEntryInfo + 33, // 61: VCSEC.FromVCSECMessage.nominalError:type_name -> Errors.NominalError + 62, // [62:62] is the sub-list for method output_type + 62, // [62:62] is the sub-list for method input_type + 62, // [62:62] is the sub-list for extension type_name + 62, // [62:62] is the sub-list for extension extendee + 0, // [0:62] is the sub-list for field type_name } func init() { file_vcsec_proto_init() } @@ -2716,6 +3302,42 @@ func file_vcsec_proto_init() { } } file_vcsec_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*ClosureStatuses); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_vcsec_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*DetailedClosureStatus); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_vcsec_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*VehicleStatus); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_vcsec_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FromVCSECMessage); i { case 0: return &v.state @@ -2759,7 +3381,8 @@ func file_vcsec_proto_init() { (*UnsignedMessage_ClosureMoveRequest)(nil), (*UnsignedMessage_WhitelistOperation)(nil), } - file_vcsec_proto_msgTypes[16].OneofWrappers = []interface{}{ + file_vcsec_proto_msgTypes[19].OneofWrappers = []interface{}{ + (*FromVCSECMessage_VehicleStatus)(nil), (*FromVCSECMessage_CommandStatus)(nil), (*FromVCSECMessage_WhitelistInfo)(nil), (*FromVCSECMessage_WhitelistEntryInfo)(nil), @@ -2770,8 +3393,8 @@ func file_vcsec_proto_init() { File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_vcsec_proto_rawDesc, - NumEnums: 8, - NumMessages: 17, + NumEnums: 12, + NumMessages: 20, NumExtensions: 0, NumServices: 0, }, diff --git a/pkg/proxy/command.go b/pkg/proxy/command.go index f9f56c9..4b968e6 100644 --- a/pkg/proxy/command.go +++ b/pkg/proxy/command.go @@ -5,6 +5,7 @@ import ( "errors" "fmt" "net/http" + "strings" "time" "github.com/teslamotors/vehicle-command/pkg/connector/inet" @@ -32,6 +33,25 @@ var ( vehicle.SeatThirdRowLeft, vehicle.SeatThirdRowRight, } + + dayNamesBitMask = map[string]int32{ + "SUN": 1, + "SUNDAY": 1, + "MON": 2, + "MONDAY": 2, + "TUES": 4, + "TUESDAY": 4, + "WED": 8, + "WEDNESDAY": 8, + "THURS": 16, + "THURSDAY": 16, + "FRI": 32, + "FRIDAY": 32, + "SAT": 64, + "SATURDAY": 64, + "ALL": 127, + "WEEKDAYS": 62, + } ) // RequestParameters allows simple type check @@ -49,6 +69,8 @@ func ExtractCommandAction(ctx context.Context, command string, params RequestPar return func(v *vehicle.Vehicle) error { return v.SetVolume(ctx, float32(volume)) }, nil case "remote_boombox": return nil, ErrCommandNotImplemented + case "media_toggle_playback": + return func(v *vehicle.Vehicle) error { return v.ToggleMediaPlayback(ctx) }, nil // Climate Controls case "auto_conditioning_start": return func(v *vehicle.Vehicle) error { return v.ClimateOn(ctx) }, nil @@ -70,11 +92,13 @@ func ExtractCommandAction(ctx context.Context, command string, params RequestPar return func(v *vehicle.Vehicle) error { return v.SetSeatHeater(ctx, setting) }, nil case "remote_auto_seat_climate_request": - level, seat, err := params.settingForAutoSeatPosition() + seat, enabled, err := params.settingForAutoSeatPosition() if err != nil { return nil, err } - return func(v *vehicle.Vehicle) error { return v.SetSeatCooler(ctx, level, seat) }, nil + return func(v *vehicle.Vehicle) error { + return v.AutoSeatAndClimate(ctx, []vehicle.SeatPosition{seat}, enabled) + }, nil case "remote_steering_wheel_heater_request": on, err := params.getBool("on", true) if err != nil { @@ -170,6 +194,12 @@ func ExtractCommandAction(ctx context.Context, command string, params RequestPar return func(v *vehicle.Vehicle) error { return v.HonkHorn(ctx) }, nil case "remote_start_drive": return func(v *vehicle.Vehicle) error { return v.RemoteDrive(ctx) }, nil + case "open_tonneau": + return func(v *vehicle.Vehicle) error { return v.OpenTonneau(ctx) }, nil + case "close_tonneau": + return func(v *vehicle.Vehicle) error { return v.CloseTonneau(ctx) }, nil + case "stop_tonneau": + return func(v *vehicle.Vehicle) error { return v.StopTonneau(ctx) }, nil // Charging controls case "charge_standard": return func(v *vehicle.Vehicle) error { return v.ChargeStandardRange(ctx) }, nil @@ -228,6 +258,119 @@ func ExtractCommandAction(ctx context.Context, command string, params RequestPar return func(v *vehicle.Vehicle) error { return v.ScheduleDeparture(ctx, departureTime, endOffPeakTime, preconditionPolicy, offPeakPolicy) }, nil + case "add_charge_schedule": + lat, err := params.getNumber("lat", true) + if err != nil { + return nil, err + } + lon, err := params.getNumber("lon", true) + if err != nil { + return nil, err + } + startTime, err := params.getNumber("start_time", false) + if err != nil { + return nil, err + } + startEnabled, err := params.getBool("start_enabled", true) + if err != nil { + return nil, err + } + endTime, err := params.getNumber("end_time", false) + if err != nil { + return nil, err + } + endEnabled, err := params.getBool("end_enabled", true) + if err != nil { + return nil, err + } + daysOfWeek, err := params.getDays("days_of_week", true) + if err != nil { + return nil, err + } + id, err := params.getNumber("id", false) + if err != nil { + return nil, err + } + idUint64 := uint64(id) + if id == 0 { + idUint64 = uint64(time.Now().Unix()) + } + enabled, err := params.getBool("enabled", true) + if err != nil { + return nil, err + } + oneTime, err := params.getBool("one_time", false) + if err != nil { + return nil, err + } + schedule := vehicle.ChargeSchedule{ + DaysOfWeek: daysOfWeek, + Latitude: float32(lat), + Longitude: float32(lon), + Id: idUint64, + StartTime: int32(startTime), + EndTime: int32(endTime), + StartEnabled: startEnabled, + EndEnabled: endEnabled, + Enabled: enabled, + OneTime: oneTime, + } + return func(v *vehicle.Vehicle) error { return v.AddChargeSchedule(ctx, &schedule) }, nil + case "add_precondition_schedule": + lat, err := params.getNumber("lat", true) + if err != nil { + return nil, err + } + lon, err := params.getNumber("lon", true) + if err != nil { + return nil, err + } + preconditionTime, err := params.getNumber("precondition_time", true) + if err != nil { + return nil, err + } + oneTime, err := params.getBool("one_time", false) + if err != nil { + return nil, err + } + daysOfWeek, err := params.getDays("days_of_week", true) + if err != nil { + return nil, err + } + id, err := params.getNumber("id", false) + if err != nil { + return nil, err + } + idUint64 := uint64(id) + if id == 0 { + idUint64 = uint64(time.Now().Unix()) + } + enabled, err := params.getBool("enabled", true) + if err != nil { + return nil, err + } + schedule := vehicle.PreconditionSchedule{ + DaysOfWeek: daysOfWeek, + Latitude: float32(lat), + Longitude: float32(lon), + Id: idUint64, + PreconditionTime: int32(preconditionTime), + OneTime: oneTime, + Enabled: enabled, + } + return func(v *vehicle.Vehicle) error { return v.AddPreconditionSchedule(ctx, &schedule) }, nil + case "remove_charge_schedule": + id, err := params.getNumber("id", true) + if err != nil { + return nil, err + } + return func(v *vehicle.Vehicle) error { return v.RemoveChargeSchedule(ctx, uint64(id)) }, nil + case "remove_precondition_schedule": + id, err := params.getNumber("id", true) + if err != nil { + return nil, err + } + return func(v *vehicle.Vehicle) error { return v.RemovePreconditionSchedule(ctx, uint64(id)) }, nil case "set_managed_charge_current_request": return nil, ErrCommandUseRESTAPI case "set_managed_charger_location": @@ -251,6 +394,8 @@ func ExtractCommandAction(ctx context.Context, command string, params RequestPar return func(v *vehicle.Vehicle) error { return v.Lock(ctx) }, nil case "door_unlock": return func(v *vehicle.Vehicle) error { return v.Unlock(ctx) }, nil + case "erase_user_data": + return func(v *vehicle.Vehicle) error { return v.EraseGuestData(ctx) }, nil case "reset_pin_to_drive_pin": return func(v *vehicle.Vehicle) error { return v.ResetPIN(ctx) }, nil case "reset_valet_pin": @@ -332,6 +477,20 @@ func ExtractCommandAction(ctx context.Context, command string, params RequestPar // end-to-end authentication. case "navigation_request": return nil, ErrCommandUseRESTAPI + case "window_control": + // Latitude and longitude are not required for vehicles that support this protocol. + cmd, err := params.getString("command", true) + if err != nil { + return nil, err + } + switch cmd { + case "vent": + return func(v *vehicle.Vehicle) error { return v.VentWindows(ctx) }, nil + case "close": + return func(v *vehicle.Vehicle) error { return v.CloseWindows(ctx) }, nil + default: + return nil, errors.New("command must be 'vent' or 'close'") + } default: return nil, &inet.HttpError{Code: http.StatusBadRequest, Message: "{\"response\":null,\"error\":\"invalid_command\",\"error_description\":\"\"}"} } @@ -386,6 +545,23 @@ func (p RequestParameters) getNumber(key string, required bool) (float64, error) return 0, missingParamError(key) } +func (p RequestParameters) getDays(key string, required bool) (int32, error) { + daysStr, err := p.getString(key, required) + if err != nil { + return 0, err + } + + var mask int32 + for _, d := range strings.Split(daysStr, ",") { + if v, ok := dayNamesBitMask[strings.TrimSpace(strings.ToUpper(d))]; ok { + mask |= v + } else { + return 0, fmt.Errorf("unrecognized day name: %v", d) + } + } + return mask, nil +} + func (p RequestParameters) getPolicy(enabledKey string, weekdaysOnlyKey string) (vehicle.ChargingPolicy, error) { enabled, err := p.getBool(enabledKey, false) if err != nil { @@ -455,11 +631,15 @@ func (p RequestParameters) settingForCoolerSeatPosition() (vehicle.Level, vehicl return vehicle.Level(level - 1), seat, nil } -// Note: The API uses 0-3 -func (p RequestParameters) settingForAutoSeatPosition() (vehicle.Level, vehicle.SeatPosition, error) { +func (p RequestParameters) settingForAutoSeatPosition() (vehicle.SeatPosition, bool, error) { position, err := p.getNumber("auto_seat_position", true) if err != nil { - return 0, 0, err + return 0, false, err + } + + enabled, err := p.getBool("auto_climate_on", true) + if err != nil { + return 0, false, err } var seat vehicle.SeatPosition @@ -472,12 +652,7 @@ func (p RequestParameters) settingForAutoSeatPosition() (vehicle.Level, vehicle. seat = vehicle.SeatUnknown } - level, err := p.getNumber("seat_position", true) - if err != nil { - return 0, 0, err - } - - return vehicle.Level(level - 1), seat, nil + return seat, enabled, nil } func missingParamError(key string) error { diff --git a/pkg/vehicle/actions.go b/pkg/vehicle/actions.go index d6e098f..c759c48 100644 --- a/pkg/vehicle/actions.go +++ b/pkg/vehicle/actions.go @@ -115,3 +115,18 @@ func (v *Vehicle) ChargePortOpen(ctx context.Context) error { }, }) } + +// OpenTonneau opens a Cybetruck's tonneau. Has no effect on other vehicles. +func (v *Vehicle) OpenTonneau(ctx context.Context) error { + return v.executeClosureAction(ctx, vcsec.ClosureMoveType_E_CLOSURE_MOVE_TYPE_OPEN, ClosureTonneau) +} + +// CloseTonneau closes a Cybetruck's tonneau. Has no effect on other vehicles. +func (v *Vehicle) CloseTonneau(ctx context.Context) error { + return v.executeClosureAction(ctx, vcsec.ClosureMoveType_E_CLOSURE_MOVE_TYPE_CLOSE, ClosureTonneau) +} + +// StopTonneau tells a Cybetruck to stop moving its tonneau. Has no effect on other vehicles. +func (v *Vehicle) StopTonneau(ctx context.Context) error { + return v.executeClosureAction(ctx, vcsec.ClosureMoveType_E_CLOSURE_MOVE_TYPE_STOP, ClosureTonneau) +} diff --git a/pkg/vehicle/charge.go b/pkg/vehicle/charge.go index 61ffe08..a00f32c 100644 --- a/pkg/vehicle/charge.go +++ b/pkg/vehicle/charge.go @@ -18,6 +18,88 @@ const ( ChargingPolicyWeekdays ) +type ChargeSchedule = carserver.ChargeSchedule + +type PreconditionSchedule = carserver.PreconditionSchedule + +func (v *Vehicle) AddChargeSchedule(ctx context.Context, schedule *ChargeSchedule) error { + return v.executeCarServerAction(ctx, + &carserver.Action_VehicleAction{ + VehicleAction: &carserver.VehicleAction{ + VehicleActionMsg: &carserver.VehicleAction_AddChargeScheduleAction{ + AddChargeScheduleAction: schedule, + }, + }, + }) +} + +func (v *Vehicle) RemoveChargeSchedule(ctx context.Context, id uint64) error { + return v.executeCarServerAction(ctx, + &carserver.Action_VehicleAction{ + VehicleAction: &carserver.VehicleAction{ + VehicleActionMsg: &carserver.VehicleAction_RemoveChargeScheduleAction{ + RemoveChargeScheduleAction: &carserver.RemoveChargeScheduleAction{ + Id: id, + }, + }, + }, + }) +} + +func (v *Vehicle) BatchRemoveChargeSchedules(ctx context.Context, home, work, other bool) error { + return v.executeCarServerAction(ctx, + &carserver.Action_VehicleAction{ + VehicleAction: &carserver.VehicleAction{ + VehicleActionMsg: &carserver.VehicleAction_BatchRemoveChargeSchedulesAction{ + BatchRemoveChargeSchedulesAction: &carserver.BatchRemoveChargeSchedulesAction{ + Home: home, + Work: work, + Other: other, + }, + }, + }, + }) +} + +func (v *Vehicle) AddPreconditionSchedule(ctx context.Context, schedule *PreconditionSchedule) error { + return v.executeCarServerAction(ctx, + &carserver.Action_VehicleAction{ + VehicleAction: &carserver.VehicleAction{ + VehicleActionMsg: &carserver.VehicleAction_AddPreconditionScheduleAction{ + AddPreconditionScheduleAction: schedule, + }, + }, + }) +} + +func (v *Vehicle) RemovePreconditionSchedule(ctx context.Context, id uint64) error { + return v.executeCarServerAction(ctx, + &carserver.Action_VehicleAction{ + VehicleAction: &carserver.VehicleAction{ + VehicleActionMsg: &carserver.VehicleAction_RemovePreconditionScheduleAction{ + RemovePreconditionScheduleAction: &carserver.RemovePreconditionScheduleAction{ + Id: id, + }, + }, + }, + }) +} + +func (v *Vehicle) BatchRemovePreconditionSchedules(ctx context.Context, home, work, other bool) error { + return v.executeCarServerAction(ctx, + &carserver.Action_VehicleAction{ + VehicleAction: &carserver.VehicleAction{ + VehicleActionMsg: &carserver.VehicleAction_BatchRemovePreconditionSchedulesAction{ + BatchRemovePreconditionSchedulesAction: &carserver.BatchRemovePreconditionSchedulesAction{ + Home: home, + Work: work, + Other: other, + }, + }, + }, + }) +} + func (v *Vehicle) ChangeChargeLimit(ctx context.Context, chargeLimitPercent int32) error { return v.executeCarServerAction(ctx, &carserver.Action_VehicleAction{ diff --git a/pkg/vehicle/infotainment.go b/pkg/vehicle/infotainment.go index 47aa609..568ab48 100644 --- a/pkg/vehicle/infotainment.go +++ b/pkg/vehicle/infotainment.go @@ -88,6 +88,17 @@ func (v *Vehicle) SetVolume(ctx context.Context, volume float32) error { }) } +func (v *Vehicle) ToggleMediaPlayback(ctx context.Context) error { + return v.executeCarServerAction(ctx, + &carserver.Action_VehicleAction{ + VehicleAction: &carserver.VehicleAction{ + VehicleActionMsg: &carserver.VehicleAction_MediaPlayAction{ + MediaPlayAction: &carserver.MediaPlayAction{}, + }, + }, + }) +} + func (v *Vehicle) ScheduleSoftwareUpdate(ctx context.Context, delay time.Duration) error { seconds := int32(delay / time.Second) return v.executeCarServerAction(ctx, diff --git a/pkg/vehicle/security.go b/pkg/vehicle/security.go index e27d53e..c5716e6 100644 --- a/pkg/vehicle/security.go +++ b/pkg/vehicle/security.go @@ -9,6 +9,7 @@ import ( "github.com/teslamotors/vehicle-command/pkg/connector" "github.com/teslamotors/vehicle-command/pkg/protocol" carserver "github.com/teslamotors/vehicle-command/pkg/protocol/protobuf/carserver" + "github.com/teslamotors/vehicle-command/pkg/protocol/protobuf/keys" "github.com/teslamotors/vehicle-command/pkg/protocol/protobuf/vcsec" ) @@ -121,7 +122,7 @@ func (v *Vehicle) SetSentryMode(ctx context.Context, state bool) error { // // We recommend users avoid this command unless they are managing a fleet of vehicles and understand // the implications of enabling the mode. See official API documentation at -// https://developer.tesla.com/docs/fleet-api#guest_mode. +// https://developer.tesla.com/docs/fleet-api/endpoints/vehicle-commands#guest-mode func (v *Vehicle) SetGuestMode(ctx context.Context, enabled bool) error { return v.executeCarServerAction(ctx, &carserver.Action_VehicleAction{ @@ -178,10 +179,21 @@ func (v *Vehicle) TriggerHomelink(ctx context.Context, latitude float32, longitu // AddKey adds a public key to the vehicle's whitelist. If isOwner is true, the new key can // authorize changes to vehicle access controls, such as adding/removing other keys. func (v *Vehicle) AddKey(ctx context.Context, publicKey *ecdh.PublicKey, isOwner bool, formFactor vcsec.KeyFormFactor) error { + if isOwner { + return v.AddKeyWithRole(ctx, publicKey, keys.Role_ROLE_OWNER, formFactor) + } + return v.AddKeyWithRole(ctx, publicKey, keys.Role_ROLE_DRIVER, formFactor) +} + +// AddKeyWithRole adds a public key to the vehicle's whitelist. See [Protocol Specification] for +// more information on roles. +// +// [Protocol Specification]: https://github.com/teslamotors/vehicle-command/blob/main/pkg/protocol/protocol.md#roles +func (v *Vehicle) AddKeyWithRole(ctx context.Context, publicKey *ecdh.PublicKey, role keys.Role, formFactor vcsec.KeyFormFactor) error { if publicKey.Curve() != ecdh.P256() { return protocol.ErrInvalidPublicKey } - payload := addKeyPayload(publicKey, isOwner, formFactor) + payload := addKeyPayload(publicKey, role, formFactor) encodedPayload, err := proto.Marshal(payload) if err != nil { return err @@ -212,19 +224,7 @@ func (v *Vehicle) RemoveKey(ctx context.Context, publicKey *ecdh.PublicKey) erro } func (v *Vehicle) KeySummary(ctx context.Context) (*vcsec.WhitelistInfo, error) { - payload := vcsec.UnsignedMessage{ - SubMessage: &vcsec.UnsignedMessage_InformationRequest{ - InformationRequest: &vcsec.InformationRequest{ - InformationRequestType: vcsec.InformationRequestType_INFORMATION_REQUEST_TYPE_GET_WHITELIST_INFO, - }, - }, - } - encodedPayload, err := proto.Marshal(&payload) - if err != nil { - return nil, err - } - done := func(v *vcsec.FromVCSECMessage) (bool, error) { return true, nil } - reply, err := v.getVCSECResult(ctx, encodedPayload, connector.AuthMethodNone, done) + reply, err := v.getVCSECInfo(ctx, vcsec.InformationRequestType_INFORMATION_REQUEST_TYPE_GET_WHITELIST_INFO, slotNone) if err != nil { return nil, err } @@ -232,22 +232,7 @@ func (v *Vehicle) KeySummary(ctx context.Context) (*vcsec.WhitelistInfo, error) } func (v *Vehicle) KeyInfoBySlot(ctx context.Context, slot uint32) (*vcsec.WhitelistEntryInfo, error) { - payload := vcsec.UnsignedMessage{ - SubMessage: &vcsec.UnsignedMessage_InformationRequest{ - InformationRequest: &vcsec.InformationRequest{ - InformationRequestType: vcsec.InformationRequestType_INFORMATION_REQUEST_TYPE_GET_WHITELIST_ENTRY_INFO, - Key: &vcsec.InformationRequest_Slot{ - Slot: slot, - }, - }, - }, - } - encodedPayload, err := proto.Marshal(&payload) - if err != nil { - return nil, err - } - done := func(v *vcsec.FromVCSECMessage) (bool, error) { return true, nil } - reply, err := v.getVCSECResult(ctx, encodedPayload, connector.AuthMethodNone, done) + reply, err := v.getVCSECInfo(ctx, vcsec.InformationRequestType_INFORMATION_REQUEST_TYPE_GET_WHITELIST_ENTRY_INFO, slot) if err != nil { return nil, err } @@ -276,13 +261,24 @@ func (v *Vehicle) Unlock(ctx context.Context) error { // attempting to call v.SessionInfo with the domain argument set to // [universal.Domain_DOMAIN_INFOTAINMENT]. func (v *Vehicle) SendAddKeyRequest(ctx context.Context, publicKey *ecdh.PublicKey, isOwner bool, formFactor vcsec.KeyFormFactor) error { + if isOwner { + return v.SendAddKeyRequestWithRole(ctx, publicKey, keys.Role_ROLE_OWNER, formFactor) + } + return v.SendAddKeyRequestWithRole(ctx, publicKey, keys.Role_ROLE_DRIVER, formFactor) +} + +// SendAddKeyRequestWithRole behaves like [SendAddKeyRequest] except the new key's role can be +// specified explicitly. See [Protocol Specification] for more information on roles. +// +// [Protocol Specification]: https://github.com/teslamotors/vehicle-command/blob/main/pkg/protocol/protocol.md#roles +func (v *Vehicle) SendAddKeyRequestWithRole(ctx context.Context, publicKey *ecdh.PublicKey, role keys.Role, formFactor vcsec.KeyFormFactor) error { if publicKey.Curve() != ecdh.P256() { return protocol.ErrInvalidPublicKey } if _, ok := v.conn.(connector.FleetAPIConnector); ok { return protocol.ErrRequiresBLE } - encodedPayload, err := proto.Marshal(addKeyPayload(publicKey, isOwner, formFactor)) + encodedPayload, err := proto.Marshal(addKeyPayload(publicKey, role, formFactor)) if err != nil { return err } @@ -298,3 +294,14 @@ func (v *Vehicle) SendAddKeyRequest(ctx context.Context, publicKey *ecdh.PublicK } return v.conn.Send(ctx, encodedEnvelope) } + +// EraseGuestData erases user data created while in Guest Mode. This command has no effect unless +// the vehicle is currently in Guest Mode. +func (v *Vehicle) EraseGuestData(ctx context.Context) error { + return v.executeCarServerAction(ctx, + &carserver.Action_VehicleAction{ + VehicleAction: &carserver.VehicleAction{ + VehicleActionMsg: &carserver.VehicleAction_EraseUserDataAction{}, + }, + }) +} diff --git a/pkg/vehicle/vcsec.go b/pkg/vehicle/vcsec.go index f07434e..b1618cd 100644 --- a/pkg/vehicle/vcsec.go +++ b/pkg/vehicle/vcsec.go @@ -104,6 +104,31 @@ func (v *Vehicle) getVCSECResult(ctx context.Context, payload []byte, auth conne } } +const slotNone = 0xFFFFFFFF + +func (v *Vehicle) getVCSECInfo(ctx context.Context, requestType vcsec.InformationRequestType, keySlot uint32) (*vcsec.FromVCSECMessage, error) { + payload := vcsec.UnsignedMessage{ + SubMessage: &vcsec.UnsignedMessage_InformationRequest{ + InformationRequest: &vcsec.InformationRequest{ + InformationRequestType: requestType, + }, + }, + } + if keySlot != slotNone { + payload.GetInformationRequest().Key = &vcsec.InformationRequest_Slot{ + Slot: keySlot, + } + } + + encodedPayload, err := proto.Marshal(&payload) + if err != nil { + return nil, err + } + + done := func(v *vcsec.FromVCSECMessage) (bool, error) { return true, nil } + return v.getVCSECResult(ctx, encodedPayload, connector.AuthMethodNone, done) +} + func isWhitelistOperationComplete(fromVCSEC *vcsec.FromVCSECMessage) (bool, error) { if opStatus := fromVCSEC.GetCommandStatus().GetWhitelistOperationStatus(); opStatus != nil { status := opStatus.GetWhitelistOperationInformation() @@ -123,13 +148,7 @@ func (v *Vehicle) executeWhitelistOperation(ctx context.Context, payload []byte) return err } -func addKeyPayload(publicKey *ecdh.PublicKey, isOwner bool, formFactor vcsec.KeyFormFactor) *vcsec.UnsignedMessage { - var role keys.Role - if isOwner { - role = keys.Role_ROLE_OWNER - } else { - role = keys.Role_ROLE_DRIVER - } +func addKeyPayload(publicKey *ecdh.PublicKey, role keys.Role, formFactor vcsec.KeyFormFactor) *vcsec.UnsignedMessage { return &vcsec.UnsignedMessage{ SubMessage: &vcsec.UnsignedMessage_WhitelistOperation{ WhitelistOperation: &vcsec.WhitelistOperation{ @@ -190,8 +209,9 @@ func (v *Vehicle) AutoSecureVehicle(ctx context.Context) error { type Closure string const ( - ClosureTrunk Closure = "trunk" - ClosureFrunk Closure = "frunk" + ClosureTrunk Closure = "trunk" + ClosureFrunk Closure = "frunk" + ClosureTonneau Closure = "tonneau" ) func (v *Vehicle) executeClosureAction(ctx context.Context, action vcsec.ClosureMoveType_E, closure Closure) error { @@ -209,6 +229,8 @@ func (v *Vehicle) executeClosureAction(ctx context.Context, action vcsec.Closure request.RearTrunk = action case ClosureFrunk: request.FrontTrunk = action + case ClosureTonneau: + request.Tonneau = action } payload := vcsec.UnsignedMessage{