From 7aa41277926933369eab80fd77d3f5fd68f63dc0 Mon Sep 17 00:00:00 2001 From: Seth Terashima Date: Mon, 19 Aug 2024 14:59:42 -0700 Subject: [PATCH] Support new scheduled charging Adds support for weekly charging schedules. --- cmd/tesla-control/commands.go | 186 +- cmd/tesla-control/commands_test.go | 64 + pkg/protocol/protobuf/car_server.proto | 13 + .../protobuf/carserver/car_server.pb.go | 1530 ++++++++++------- pkg/protocol/protobuf/carserver/common.pb.go | 316 +++- pkg/protocol/protobuf/common.proto | 25 + pkg/vehicle/charge.go | 41 + 7 files changed, 1504 insertions(+), 671 deletions(-) create mode 100644 cmd/tesla-control/commands_test.go diff --git a/cmd/tesla-control/commands.go b/cmd/tesla-control/commands.go index 10524cb..b351072 100644 --- a/cmd/tesla-control/commands.go +++ b/cmd/tesla-control/commands.go @@ -19,7 +19,10 @@ import ( "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") +) type Argument struct { name string @@ -38,6 +41,85 @@ type Command struct { 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) { + names := 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, + } + var mask int32 + for _, d := range strings.Split(days, ",") { + if v, ok := names[strings.TrimSpace(strings.ToUpper(d))]; ok { + mask |= v + } else { + return 0, fmt.Errorf("unrecognized day name: %v", d) + } + } + return mask, nil +} + +func TimeRange(rangeStr string) (int32, int32, error) { + r := strings.Split(rangeStr, "-") + if len(r) != 2 { + return 0, 0, errors.New("invalid time range") + } + var err error + var start, stop int32 + start, err = MinutesAfterMidnight(r[0]) + if err != nil { + return 0, 0, err + } + stop, err = MinutesAfterMidnight(r[1]) + if err != nil { + return 0, 0, err + } + return start, stop, 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. func configureFlags(c *cli.Config, commandName string, forceBLE bool) error { info, ok := commands[commandName] @@ -827,4 +909,106 @@ var commands = map[string]*Command{ return car.EraseGuestData(ctx) }, }, + "charging-schedule-add": &Command{ + help: "Schedule charge NAME 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"}, + }, + 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, + } + + 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) + }, + }, } diff --git a/cmd/tesla-control/commands_test.go b/cmd/tesla-control/commands_test.go new file mode 100644 index 0000000..b57a754 --- /dev/null +++ b/cmd/tesla-control/commands_test.go @@ -0,0 +1,64 @@ +package main + +import ( + "errors" + "strconv" + "testing" +) + +func TestMinutesAfterMidnight(t *testing.T) { + type params struct { + str string + minutes int32 + err error + } + testCases := []params{ + {str: "3:03", minutes: 183}, + {str: "0:00", minutes: 0}, + {str: "", err: ErrInvalidTime}, + {str: "3:", err: ErrInvalidTime}, + {str: ":40", err: ErrInvalidTime}, + {str: "3:40pm", err: ErrInvalidTime}, + {str: "25:40", err: ErrInvalidTime}, + {str: "23:40", minutes: 23*60 + 40}, + {str: "23:60", err: ErrInvalidTime}, + {str: "23:-01", err: ErrInvalidTime}, + {str: "24:00", err: ErrInvalidTime}, + {str: "-2:00", err: ErrInvalidTime}, + } + for _, test := range testCases { + minutes, err := MinutesAfterMidnight(test.str) + if !errors.Is(err, test.err) { + t.Errorf("expected '%s' to result in error %s, but got %s", test.str, test.err, err) + } else if test.minutes != minutes { + t.Errorf("expected MinutesAfterMidnight('%s') = %d, but got %d", test.str, test.minutes, minutes) + } + } +} + +func TestGetDays(t *testing.T) { + type params struct { + str string + mask int32 + isErr bool + } + testCases := []params{ + {str: "SUN", mask: 1}, + {str: "SUN, WED", mask: 1 + 8}, + {str: "SUN, WEDnesday", mask: 1 + 8}, + {str: "sUN,wEd", mask: 1 + 8}, + {str: "all", mask: 127}, + {str: "sun,all", mask: 127}, + {str: "mon,tues,wed,thurs", mask: 2 + 4 + 8 + 16}, + {str: "marketday", isErr: true}, + {str: "sun mon", isErr: true}, + } + for _, test := range testCases { + mask, err := GetDays(test.str) + if (err != nil) != test.isErr { + t.Errorf("day string '%s' gave unexpected err = %s", test.str, err) + } else if mask != test.mask { + t.Errorf("day string '%s' gave mask %s instead of %s", test.str, strconv.FormatInt(int64(mask), 2), strconv.FormatInt(int64(test.mask), 2)) + } + } +} diff --git a/pkg/protocol/protobuf/car_server.proto b/pkg/protocol/protobuf/car_server.proto index a7fe903..db53f60 100644 --- a/pkg/protocol/protobuf/car_server.proto +++ b/pkg/protocol/protobuf/car_server.proto @@ -66,6 +66,9 @@ message VehicleAction { EraseUserDataAction eraseUserDataAction = 72; VehicleControlSetPinToDriveAction vehicleControlSetPinToDriveAction = 77; VehicleControlResetPinToDriveAction vehicleControlResetPinToDriveAction = 78; + ChargeSchedule addChargeScheduleAction = 97; + RemoveChargeScheduleAction removeChargeScheduleAction = 98; + BatchRemoveChargeSchedulesAction batchRemoveChargeSchedulesAction = 108; } } @@ -389,6 +392,16 @@ 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 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 9e30006..32532b0 100644 --- a/pkg/protocol/protobuf/carserver/car_server.pb.go +++ b/pkg/protocol/protobuf/carserver/car_server.pb.go @@ -438,6 +438,9 @@ type VehicleAction struct { // *VehicleAction_EraseUserDataAction // *VehicleAction_VehicleControlSetPinToDriveAction // *VehicleAction_VehicleControlResetPinToDriveAction + // *VehicleAction_AddChargeScheduleAction + // *VehicleAction_RemoveChargeScheduleAction + // *VehicleAction_BatchRemoveChargeSchedulesAction VehicleActionMsg isVehicleAction_VehicleActionMsg `protobuf_oneof:"vehicle_action_msg"` } @@ -788,6 +791,27 @@ 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) GetBatchRemoveChargeSchedulesAction() *BatchRemoveChargeSchedulesAction { + if x, ok := x.GetVehicleActionMsg().(*VehicleAction_BatchRemoveChargeSchedulesAction); ok { + return x.BatchRemoveChargeSchedulesAction + } + return nil +} + type isVehicleAction_VehicleActionMsg interface { isVehicleAction_VehicleActionMsg() } @@ -968,6 +992,18 @@ 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_BatchRemoveChargeSchedulesAction struct { + BatchRemoveChargeSchedulesAction *BatchRemoveChargeSchedulesAction `protobuf:"bytes,108,opt,name=batchRemoveChargeSchedulesAction,proto3,oneof"` +} + func (*VehicleAction_ChargingSetLimitAction) isVehicleAction_VehicleActionMsg() {} func (*VehicleAction_ChargingStartStopAction) isVehicleAction_VehicleActionMsg() {} @@ -1056,6 +1092,12 @@ func (*VehicleAction_VehicleControlSetPinToDriveAction) isVehicleAction_VehicleA func (*VehicleAction_VehicleControlResetPinToDriveAction) isVehicleAction_VehicleActionMsg() {} +func (*VehicleAction_AddChargeScheduleAction) isVehicleAction_VehicleActionMsg() {} + +func (*VehicleAction_RemoveChargeScheduleAction) isVehicleAction_VehicleActionMsg() {} + +func (*VehicleAction_BatchRemoveChargeSchedulesAction) isVehicleAction_VehicleActionMsg() {} + type EraseUserDataAction struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -3644,6 +3686,116 @@ func (x *SetChargingAmpsAction) GetChargingAmps() int32 { return 0 } +type RemoveChargeScheduleAction 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 *RemoveChargeScheduleAction) Reset() { + *x = RemoveChargeScheduleAction{} + if protoimpl.UnsafeEnabled { + mi := &file_car_server_proto_msgTypes[44] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *RemoveChargeScheduleAction) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*RemoveChargeScheduleAction) ProtoMessage() {} + +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 { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use RemoveChargeScheduleAction.ProtoReflect.Descriptor instead. +func (*RemoveChargeScheduleAction) Descriptor() ([]byte, []int) { + return file_car_server_proto_rawDescGZIP(), []int{44} +} + +func (x *RemoveChargeScheduleAction) GetId() uint64 { + if x != nil { + return x.Id + } + return 0 +} + +type BatchRemoveChargeSchedulesAction 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 charge schedules +} + +func (x *BatchRemoveChargeSchedulesAction) Reset() { + *x = BatchRemoveChargeSchedulesAction{} + if protoimpl.UnsafeEnabled { + mi := &file_car_server_proto_msgTypes[45] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *BatchRemoveChargeSchedulesAction) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*BatchRemoveChargeSchedulesAction) ProtoMessage() {} + +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 SetCabinOverheatProtectionAction struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -3656,7 +3808,7 @@ type SetCabinOverheatProtectionAction struct { func (x *SetCabinOverheatProtectionAction) Reset() { *x = SetCabinOverheatProtectionAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[44] + mi := &file_car_server_proto_msgTypes[46] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3669,7 +3821,7 @@ func (x *SetCabinOverheatProtectionAction) String() string { func (*SetCabinOverheatProtectionAction) ProtoMessage() {} func (x *SetCabinOverheatProtectionAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[44] + mi := &file_car_server_proto_msgTypes[46] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3682,7 +3834,7 @@ func (x *SetCabinOverheatProtectionAction) ProtoReflect() protoreflect.Message { // Deprecated: Use SetCabinOverheatProtectionAction.ProtoReflect.Descriptor instead. func (*SetCabinOverheatProtectionAction) Descriptor() ([]byte, []int) { - return file_car_server_proto_rawDescGZIP(), []int{44} + return file_car_server_proto_rawDescGZIP(), []int{46} } func (x *SetCabinOverheatProtectionAction) GetOn() bool { @@ -3710,7 +3862,7 @@ type SetVehicleNameAction struct { func (x *SetVehicleNameAction) Reset() { *x = SetVehicleNameAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[45] + mi := &file_car_server_proto_msgTypes[47] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3723,7 +3875,7 @@ func (x *SetVehicleNameAction) String() string { func (*SetVehicleNameAction) ProtoMessage() {} func (x *SetVehicleNameAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[45] + mi := &file_car_server_proto_msgTypes[47] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3736,7 +3888,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{45} + return file_car_server_proto_rawDescGZIP(), []int{47} } func (x *SetVehicleNameAction) GetVehicleName() string { @@ -3755,7 +3907,7 @@ type ChargePortDoorClose struct { func (x *ChargePortDoorClose) Reset() { *x = ChargePortDoorClose{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[46] + mi := &file_car_server_proto_msgTypes[48] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3768,7 +3920,7 @@ func (x *ChargePortDoorClose) String() string { func (*ChargePortDoorClose) ProtoMessage() {} func (x *ChargePortDoorClose) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[46] + mi := &file_car_server_proto_msgTypes[48] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3781,7 +3933,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{46} + return file_car_server_proto_rawDescGZIP(), []int{48} } type ChargePortDoorOpen struct { @@ -3793,7 +3945,7 @@ type ChargePortDoorOpen struct { func (x *ChargePortDoorOpen) Reset() { *x = ChargePortDoorOpen{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[47] + mi := &file_car_server_proto_msgTypes[49] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3806,7 +3958,7 @@ func (x *ChargePortDoorOpen) String() string { func (*ChargePortDoorOpen) ProtoMessage() {} func (x *ChargePortDoorOpen) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[47] + mi := &file_car_server_proto_msgTypes[49] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3819,7 +3971,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{47} + return file_car_server_proto_rawDescGZIP(), []int{49} } type SetCopTempAction struct { @@ -3833,7 +3985,7 @@ type SetCopTempAction struct { func (x *SetCopTempAction) Reset() { *x = SetCopTempAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[48] + mi := &file_car_server_proto_msgTypes[50] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3846,7 +3998,7 @@ func (x *SetCopTempAction) String() string { func (*SetCopTempAction) ProtoMessage() {} func (x *SetCopTempAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[48] + mi := &file_car_server_proto_msgTypes[50] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3859,7 +4011,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{48} + return file_car_server_proto_rawDescGZIP(), []int{50} } func (x *SetCopTempAction) GetCopActivationTemp() ClimateState_CopActivationTemp { @@ -3881,7 +4033,7 @@ type VehicleControlSetPinToDriveAction struct { func (x *VehicleControlSetPinToDriveAction) Reset() { *x = VehicleControlSetPinToDriveAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[49] + mi := &file_car_server_proto_msgTypes[51] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3894,7 +4046,7 @@ func (x *VehicleControlSetPinToDriveAction) String() string { func (*VehicleControlSetPinToDriveAction) ProtoMessage() {} func (x *VehicleControlSetPinToDriveAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[49] + mi := &file_car_server_proto_msgTypes[51] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3907,7 +4059,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{49} + return file_car_server_proto_rawDescGZIP(), []int{51} } func (x *VehicleControlSetPinToDriveAction) GetOn() bool { @@ -3933,7 +4085,7 @@ type VehicleControlResetPinToDriveAction struct { func (x *VehicleControlResetPinToDriveAction) Reset() { *x = VehicleControlResetPinToDriveAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[50] + mi := &file_car_server_proto_msgTypes[52] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3946,7 +4098,7 @@ func (x *VehicleControlResetPinToDriveAction) String() string { func (*VehicleControlResetPinToDriveAction) ProtoMessage() {} func (x *VehicleControlResetPinToDriveAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[50] + mi := &file_car_server_proto_msgTypes[52] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3959,7 +4111,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{50} + return file_car_server_proto_rawDescGZIP(), []int{52} } type HvacSeatHeaterActions_HvacSeatHeaterAction struct { @@ -3991,7 +4143,7 @@ type HvacSeatHeaterActions_HvacSeatHeaterAction struct { func (x *HvacSeatHeaterActions_HvacSeatHeaterAction) Reset() { *x = HvacSeatHeaterActions_HvacSeatHeaterAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[51] + mi := &file_car_server_proto_msgTypes[53] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4004,7 +4156,7 @@ func (x *HvacSeatHeaterActions_HvacSeatHeaterAction) String() string { func (*HvacSeatHeaterActions_HvacSeatHeaterAction) ProtoMessage() {} func (x *HvacSeatHeaterActions_HvacSeatHeaterAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[51] + mi := &file_car_server_proto_msgTypes[53] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4264,7 +4416,7 @@ type HvacSeatCoolerActions_HvacSeatCoolerAction struct { func (x *HvacSeatCoolerActions_HvacSeatCoolerAction) Reset() { *x = HvacSeatCoolerActions_HvacSeatCoolerAction{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[52] + mi := &file_car_server_proto_msgTypes[54] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4277,7 +4429,7 @@ func (x *HvacSeatCoolerActions_HvacSeatCoolerAction) String() string { func (*HvacSeatCoolerActions_HvacSeatCoolerAction) ProtoMessage() {} func (x *HvacSeatCoolerActions_HvacSeatCoolerAction) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[52] + mi := &file_car_server_proto_msgTypes[54] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4322,7 +4474,7 @@ type HvacTemperatureAdjustmentAction_Temperature struct { func (x *HvacTemperatureAdjustmentAction_Temperature) Reset() { *x = HvacTemperatureAdjustmentAction_Temperature{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[53] + mi := &file_car_server_proto_msgTypes[55] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4335,7 +4487,7 @@ func (x *HvacTemperatureAdjustmentAction_Temperature) String() string { func (*HvacTemperatureAdjustmentAction_Temperature) ProtoMessage() {} func (x *HvacTemperatureAdjustmentAction_Temperature) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[53] + mi := &file_car_server_proto_msgTypes[55] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4420,7 +4572,7 @@ type HvacTemperatureAdjustmentAction_HvacTemperatureZone struct { func (x *HvacTemperatureAdjustmentAction_HvacTemperatureZone) Reset() { *x = HvacTemperatureAdjustmentAction_HvacTemperatureZone{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[54] + mi := &file_car_server_proto_msgTypes[56] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4433,7 +4585,7 @@ func (x *HvacTemperatureAdjustmentAction_HvacTemperatureZone) String() string { func (*HvacTemperatureAdjustmentAction_HvacTemperatureZone) ProtoMessage() {} func (x *HvacTemperatureAdjustmentAction_HvacTemperatureZone) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[54] + mi := &file_car_server_proto_msgTypes[56] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4528,7 +4680,7 @@ type AutoSeatClimateAction_CarSeat struct { func (x *AutoSeatClimateAction_CarSeat) Reset() { *x = AutoSeatClimateAction_CarSeat{} if protoimpl.UnsafeEnabled { - mi := &file_car_server_proto_msgTypes[55] + mi := &file_car_server_proto_msgTypes[57] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4541,7 +4693,7 @@ func (x *AutoSeatClimateAction_CarSeat) String() string { func (*AutoSeatClimateAction_CarSeat) ProtoMessage() {} func (x *AutoSeatClimateAction_CarSeat) ProtoReflect() protoreflect.Message { - mi := &file_car_server_proto_msgTypes[55] + mi := &file_car_server_proto_msgTypes[57] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4586,7 +4738,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, 0x89, 0x23, + 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x73, 0x67, 0x4a, 0x04, 0x08, 0x03, 0x10, 0x06, 0x22, 0xc4, 0x25, 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, @@ -4865,541 +5017,570 @@ var file_car_server_proto_rawDesc = []byte{ 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, 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, 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, + 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, 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, 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, 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, + 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, 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, + 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, 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, 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, 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, + 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, 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, - 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, + 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, 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, + 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, 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, + 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, 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, 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, + 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, 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, 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, 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, + 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, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x12, 0x25, 0x0a, 0x04, 0x76, 0x65, 0x6e, + 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, 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, 0x00, 0x52, 0x04, 0x76, 0x65, 0x6e, 0x74, + 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, 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, + 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, 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, 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, + 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, 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, 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, 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, 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, + 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, 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 ( @@ -5415,7 +5596,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, 56) +var file_car_server_proto_msgTypes = make([]protoimpl.MessageInfo, 58) var file_car_server_proto_goTypes = []interface{}{ (OperationStatus_E)(0), // 0: CarServer.OperationStatus_E (HvacSeatCoolerActions_HvacSeatCoolerLevel_E)(0), // 1: CarServer.HvacSeatCoolerActions.HvacSeatCoolerLevel_E @@ -5467,26 +5648,29 @@ var file_car_server_proto_goTypes = []interface{}{ (*ScheduledDepartureAction)(nil), // 47: CarServer.ScheduledDepartureAction (*HvacClimateKeeperAction)(nil), // 48: CarServer.HvacClimateKeeperAction (*SetChargingAmpsAction)(nil), // 49: CarServer.SetChargingAmpsAction - (*SetCabinOverheatProtectionAction)(nil), // 50: CarServer.SetCabinOverheatProtectionAction - (*SetVehicleNameAction)(nil), // 51: CarServer.SetVehicleNameAction - (*ChargePortDoorClose)(nil), // 52: CarServer.ChargePortDoorClose - (*ChargePortDoorOpen)(nil), // 53: CarServer.ChargePortDoorOpen - (*SetCopTempAction)(nil), // 54: CarServer.SetCopTempAction - (*VehicleControlSetPinToDriveAction)(nil), // 55: CarServer.VehicleControlSetPinToDriveAction - (*VehicleControlResetPinToDriveAction)(nil), // 56: CarServer.VehicleControlResetPinToDriveAction - (*HvacSeatHeaterActions_HvacSeatHeaterAction)(nil), // 57: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction - (*HvacSeatCoolerActions_HvacSeatCoolerAction)(nil), // 58: CarServer.HvacSeatCoolerActions.HvacSeatCoolerAction - (*HvacTemperatureAdjustmentAction_Temperature)(nil), // 59: CarServer.HvacTemperatureAdjustmentAction.Temperature - (*HvacTemperatureAdjustmentAction_HvacTemperatureZone)(nil), // 60: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone - (*AutoSeatClimateAction_CarSeat)(nil), // 61: CarServer.AutoSeatClimateAction.CarSeat - (*VehicleState_GuestMode)(nil), // 62: CarServer.VehicleState.GuestMode - (*signatures.SessionInfo)(nil), // 63: Signatures.SessionInfo - (*Void)(nil), // 64: CarServer.Void - (*timestamppb.Timestamp)(nil), // 65: google.protobuf.Timestamp - (*LatLong)(nil), // 66: CarServer.LatLong - (*PreconditioningTimes)(nil), // 67: CarServer.PreconditioningTimes - (*OffPeakChargingTimes)(nil), // 68: CarServer.OffPeakChargingTimes - (ClimateState_CopActivationTemp)(0), // 69: CarServer.ClimateState.CopActivationTemp + (*RemoveChargeScheduleAction)(nil), // 50: CarServer.RemoveChargeScheduleAction + (*BatchRemoveChargeSchedulesAction)(nil), // 51: CarServer.BatchRemoveChargeSchedulesAction + (*SetCabinOverheatProtectionAction)(nil), // 52: CarServer.SetCabinOverheatProtectionAction + (*SetVehicleNameAction)(nil), // 53: CarServer.SetVehicleNameAction + (*ChargePortDoorClose)(nil), // 54: CarServer.ChargePortDoorClose + (*ChargePortDoorOpen)(nil), // 55: CarServer.ChargePortDoorOpen + (*SetCopTempAction)(nil), // 56: CarServer.SetCopTempAction + (*VehicleControlSetPinToDriveAction)(nil), // 57: CarServer.VehicleControlSetPinToDriveAction + (*VehicleControlResetPinToDriveAction)(nil), // 58: CarServer.VehicleControlResetPinToDriveAction + (*HvacSeatHeaterActions_HvacSeatHeaterAction)(nil), // 59: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction + (*HvacSeatCoolerActions_HvacSeatCoolerAction)(nil), // 60: CarServer.HvacSeatCoolerActions.HvacSeatCoolerAction + (*HvacTemperatureAdjustmentAction_Temperature)(nil), // 61: CarServer.HvacTemperatureAdjustmentAction.Temperature + (*HvacTemperatureAdjustmentAction_HvacTemperatureZone)(nil), // 62: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone + (*AutoSeatClimateAction_CarSeat)(nil), // 63: CarServer.AutoSeatClimateAction.CarSeat + (*VehicleState_GuestMode)(nil), // 64: CarServer.VehicleState.GuestMode + (*ChargeSchedule)(nil), // 65: CarServer.ChargeSchedule + (*signatures.SessionInfo)(nil), // 66: Signatures.SessionInfo + (*Void)(nil), // 67: CarServer.Void + (*timestamppb.Timestamp)(nil), // 68: google.protobuf.Timestamp + (*LatLong)(nil), // 69: CarServer.LatLong + (*PreconditioningTimes)(nil), // 70: CarServer.PreconditioningTimes + (*OffPeakChargingTimes)(nil), // 71: CarServer.OffPeakChargingTimes + (ClimateState_CopActivationTemp)(0), // 72: CarServer.ClimateState.CopActivationTemp } var file_car_server_proto_depIdxs = []int32{ 7, // 0: CarServer.Action.vehicleAction:type_name -> CarServer.VehicleAction @@ -5525,78 +5709,81 @@ var file_car_server_proto_depIdxs = []int32{ 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 - 50, // 36: CarServer.VehicleAction.setCabinOverheatProtectionAction:type_name -> CarServer.SetCabinOverheatProtectionAction - 51, // 37: CarServer.VehicleAction.setVehicleNameAction:type_name -> CarServer.SetVehicleNameAction - 52, // 38: CarServer.VehicleAction.chargePortDoorClose:type_name -> CarServer.ChargePortDoorClose - 53, // 39: CarServer.VehicleAction.chargePortDoorOpen:type_name -> CarServer.ChargePortDoorOpen - 62, // 40: CarServer.VehicleAction.guestModeAction:type_name -> CarServer.VehicleState.GuestMode - 54, // 41: CarServer.VehicleAction.setCopTempAction:type_name -> CarServer.SetCopTempAction + 52, // 36: CarServer.VehicleAction.setCabinOverheatProtectionAction:type_name -> CarServer.SetCabinOverheatProtectionAction + 53, // 37: CarServer.VehicleAction.setVehicleNameAction:type_name -> CarServer.SetVehicleNameAction + 54, // 38: CarServer.VehicleAction.chargePortDoorClose:type_name -> CarServer.ChargePortDoorClose + 55, // 39: CarServer.VehicleAction.chargePortDoorOpen:type_name -> CarServer.ChargePortDoorOpen + 64, // 40: CarServer.VehicleAction.guestModeAction:type_name -> CarServer.VehicleState.GuestMode + 56, // 41: CarServer.VehicleAction.setCopTempAction:type_name -> CarServer.SetCopTempAction 8, // 42: CarServer.VehicleAction.eraseUserDataAction:type_name -> CarServer.EraseUserDataAction - 55, // 43: CarServer.VehicleAction.vehicleControlSetPinToDriveAction:type_name -> CarServer.VehicleControlSetPinToDriveAction - 56, // 44: CarServer.VehicleAction.vehicleControlResetPinToDriveAction:type_name -> CarServer.VehicleControlResetPinToDriveAction - 10, // 45: CarServer.Response.actionStatus:type_name -> CarServer.ActionStatus - 63, // 46: CarServer.Response.getSessionInfoResponse:type_name -> Signatures.SessionInfo - 25, // 47: CarServer.Response.getNearbyChargingSites:type_name -> CarServer.NearbyChargingSites - 45, // 48: CarServer.Response.ping:type_name -> CarServer.Ping - 0, // 49: CarServer.ActionStatus.result:type_name -> CarServer.OperationStatus_E - 11, // 50: CarServer.ActionStatus.result_reason:type_name -> CarServer.ResultReason - 64, // 51: CarServer.ChargingStartStopAction.unknown:type_name -> CarServer.Void - 64, // 52: CarServer.ChargingStartStopAction.start:type_name -> CarServer.Void - 64, // 53: CarServer.ChargingStartStopAction.start_standard:type_name -> CarServer.Void - 64, // 54: CarServer.ChargingStartStopAction.start_max_range:type_name -> CarServer.Void - 64, // 55: CarServer.ChargingStartStopAction.stop:type_name -> CarServer.Void - 57, // 56: CarServer.HvacSeatHeaterActions.hvacSeatHeaterAction:type_name -> CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction - 58, // 57: CarServer.HvacSeatCoolerActions.hvacSeatCoolerAction:type_name -> CarServer.HvacSeatCoolerActions.HvacSeatCoolerAction - 3, // 58: CarServer.HvacSetPreconditioningMaxAction.manual_override_mode:type_name -> CarServer.HvacSetPreconditioningMaxAction.ManualOverrideMode_E - 59, // 59: CarServer.HvacTemperatureAdjustmentAction.level:type_name -> CarServer.HvacTemperatureAdjustmentAction.Temperature - 60, // 60: CarServer.HvacTemperatureAdjustmentAction.hvac_temperature_zone:type_name -> CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone - 65, // 61: CarServer.NearbyChargingSites.timestamp:type_name -> google.protobuf.Timestamp - 26, // 62: CarServer.NearbyChargingSites.superchargers:type_name -> CarServer.Superchargers - 66, // 63: CarServer.Superchargers.location:type_name -> CarServer.LatLong - 64, // 64: CarServer.VehicleControlSunroofOpenCloseAction.vent:type_name -> CarServer.Void - 64, // 65: CarServer.VehicleControlSunroofOpenCloseAction.close:type_name -> CarServer.Void - 64, // 66: CarServer.VehicleControlSunroofOpenCloseAction.open:type_name -> CarServer.Void - 66, // 67: CarServer.VehicleControlTriggerHomelinkAction.location:type_name -> CarServer.LatLong - 64, // 68: CarServer.VehicleControlWindowAction.unknown:type_name -> CarServer.Void - 64, // 69: CarServer.VehicleControlWindowAction.vent:type_name -> CarServer.Void - 64, // 70: CarServer.VehicleControlWindowAction.close:type_name -> CarServer.Void - 61, // 71: CarServer.AutoSeatClimateAction.carseat:type_name -> CarServer.AutoSeatClimateAction.CarSeat - 65, // 72: CarServer.Ping.local_timestamp:type_name -> google.protobuf.Timestamp - 65, // 73: CarServer.Ping.last_remote_timestamp:type_name -> google.protobuf.Timestamp - 67, // 74: CarServer.ScheduledDepartureAction.preconditioning_times:type_name -> CarServer.PreconditioningTimes - 68, // 75: CarServer.ScheduledDepartureAction.off_peak_charging_times:type_name -> CarServer.OffPeakChargingTimes - 5, // 76: CarServer.HvacClimateKeeperAction.ClimateKeeperAction:type_name -> CarServer.HvacClimateKeeperAction.ClimateKeeperAction_E - 69, // 77: CarServer.SetCopTempAction.copActivationTemp:type_name -> CarServer.ClimateState.CopActivationTemp - 64, // 78: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_UNKNOWN:type_name -> CarServer.Void - 64, // 79: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_OFF:type_name -> CarServer.Void - 64, // 80: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_LOW:type_name -> CarServer.Void - 64, // 81: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_MED:type_name -> CarServer.Void - 64, // 82: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_HIGH:type_name -> CarServer.Void - 64, // 83: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_UNKNOWN:type_name -> CarServer.Void - 64, // 84: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_FRONT_LEFT:type_name -> CarServer.Void - 64, // 85: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_FRONT_RIGHT:type_name -> CarServer.Void - 64, // 86: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_LEFT:type_name -> CarServer.Void - 64, // 87: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_LEFT_BACK:type_name -> CarServer.Void - 64, // 88: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_CENTER:type_name -> CarServer.Void - 64, // 89: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_RIGHT:type_name -> CarServer.Void - 64, // 90: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_RIGHT_BACK:type_name -> CarServer.Void - 64, // 91: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_THIRD_ROW_LEFT:type_name -> CarServer.Void - 64, // 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 - 64, // 95: CarServer.HvacTemperatureAdjustmentAction.Temperature.TEMP_UNKNOWN:type_name -> CarServer.Void - 64, // 96: CarServer.HvacTemperatureAdjustmentAction.Temperature.TEMP_MIN:type_name -> CarServer.Void - 64, // 97: CarServer.HvacTemperatureAdjustmentAction.Temperature.TEMP_MAX:type_name -> CarServer.Void - 64, // 98: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone.TEMP_ZONE_UNKNOWN:type_name -> CarServer.Void - 64, // 99: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone.TEMP_ZONE_FRONT_LEFT:type_name -> CarServer.Void - 64, // 100: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone.TEMP_ZONE_FRONT_RIGHT:type_name -> CarServer.Void - 64, // 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 + 57, // 43: CarServer.VehicleAction.vehicleControlSetPinToDriveAction:type_name -> CarServer.VehicleControlSetPinToDriveAction + 58, // 44: CarServer.VehicleAction.vehicleControlResetPinToDriveAction:type_name -> CarServer.VehicleControlResetPinToDriveAction + 65, // 45: CarServer.VehicleAction.addChargeScheduleAction:type_name -> CarServer.ChargeSchedule + 50, // 46: CarServer.VehicleAction.removeChargeScheduleAction:type_name -> CarServer.RemoveChargeScheduleAction + 51, // 47: CarServer.VehicleAction.batchRemoveChargeSchedulesAction:type_name -> CarServer.BatchRemoveChargeSchedulesAction + 10, // 48: CarServer.Response.actionStatus:type_name -> CarServer.ActionStatus + 66, // 49: CarServer.Response.getSessionInfoResponse:type_name -> Signatures.SessionInfo + 25, // 50: CarServer.Response.getNearbyChargingSites:type_name -> CarServer.NearbyChargingSites + 45, // 51: CarServer.Response.ping:type_name -> CarServer.Ping + 0, // 52: CarServer.ActionStatus.result:type_name -> CarServer.OperationStatus_E + 11, // 53: CarServer.ActionStatus.result_reason:type_name -> CarServer.ResultReason + 67, // 54: CarServer.ChargingStartStopAction.unknown:type_name -> CarServer.Void + 67, // 55: CarServer.ChargingStartStopAction.start:type_name -> CarServer.Void + 67, // 56: CarServer.ChargingStartStopAction.start_standard:type_name -> CarServer.Void + 67, // 57: CarServer.ChargingStartStopAction.start_max_range:type_name -> CarServer.Void + 67, // 58: CarServer.ChargingStartStopAction.stop:type_name -> CarServer.Void + 59, // 59: CarServer.HvacSeatHeaterActions.hvacSeatHeaterAction:type_name -> CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction + 60, // 60: CarServer.HvacSeatCoolerActions.hvacSeatCoolerAction:type_name -> CarServer.HvacSeatCoolerActions.HvacSeatCoolerAction + 3, // 61: CarServer.HvacSetPreconditioningMaxAction.manual_override_mode:type_name -> CarServer.HvacSetPreconditioningMaxAction.ManualOverrideMode_E + 61, // 62: CarServer.HvacTemperatureAdjustmentAction.level:type_name -> CarServer.HvacTemperatureAdjustmentAction.Temperature + 62, // 63: CarServer.HvacTemperatureAdjustmentAction.hvac_temperature_zone:type_name -> CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone + 68, // 64: CarServer.NearbyChargingSites.timestamp:type_name -> google.protobuf.Timestamp + 26, // 65: CarServer.NearbyChargingSites.superchargers:type_name -> CarServer.Superchargers + 69, // 66: CarServer.Superchargers.location:type_name -> CarServer.LatLong + 67, // 67: CarServer.VehicleControlSunroofOpenCloseAction.vent:type_name -> CarServer.Void + 67, // 68: CarServer.VehicleControlSunroofOpenCloseAction.close:type_name -> CarServer.Void + 67, // 69: CarServer.VehicleControlSunroofOpenCloseAction.open:type_name -> CarServer.Void + 69, // 70: CarServer.VehicleControlTriggerHomelinkAction.location:type_name -> CarServer.LatLong + 67, // 71: CarServer.VehicleControlWindowAction.unknown:type_name -> CarServer.Void + 67, // 72: CarServer.VehicleControlWindowAction.vent:type_name -> CarServer.Void + 67, // 73: CarServer.VehicleControlWindowAction.close:type_name -> CarServer.Void + 63, // 74: CarServer.AutoSeatClimateAction.carseat:type_name -> CarServer.AutoSeatClimateAction.CarSeat + 68, // 75: CarServer.Ping.local_timestamp:type_name -> google.protobuf.Timestamp + 68, // 76: CarServer.Ping.last_remote_timestamp:type_name -> google.protobuf.Timestamp + 70, // 77: CarServer.ScheduledDepartureAction.preconditioning_times:type_name -> CarServer.PreconditioningTimes + 71, // 78: CarServer.ScheduledDepartureAction.off_peak_charging_times:type_name -> CarServer.OffPeakChargingTimes + 5, // 79: CarServer.HvacClimateKeeperAction.ClimateKeeperAction:type_name -> CarServer.HvacClimateKeeperAction.ClimateKeeperAction_E + 72, // 80: CarServer.SetCopTempAction.copActivationTemp:type_name -> CarServer.ClimateState.CopActivationTemp + 67, // 81: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_UNKNOWN:type_name -> CarServer.Void + 67, // 82: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_OFF:type_name -> CarServer.Void + 67, // 83: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_LOW:type_name -> CarServer.Void + 67, // 84: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_MED:type_name -> CarServer.Void + 67, // 85: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.SEAT_HEATER_HIGH:type_name -> CarServer.Void + 67, // 86: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_UNKNOWN:type_name -> CarServer.Void + 67, // 87: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_FRONT_LEFT:type_name -> CarServer.Void + 67, // 88: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_FRONT_RIGHT:type_name -> CarServer.Void + 67, // 89: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_LEFT:type_name -> CarServer.Void + 67, // 90: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_LEFT_BACK:type_name -> CarServer.Void + 67, // 91: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_CENTER:type_name -> CarServer.Void + 67, // 92: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_RIGHT:type_name -> CarServer.Void + 67, // 93: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_REAR_RIGHT_BACK:type_name -> CarServer.Void + 67, // 94: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_THIRD_ROW_LEFT:type_name -> CarServer.Void + 67, // 95: CarServer.HvacSeatHeaterActions.HvacSeatHeaterAction.CAR_SEAT_THIRD_ROW_RIGHT:type_name -> CarServer.Void + 1, // 96: CarServer.HvacSeatCoolerActions.HvacSeatCoolerAction.seat_cooler_level:type_name -> CarServer.HvacSeatCoolerActions.HvacSeatCoolerLevel_E + 2, // 97: CarServer.HvacSeatCoolerActions.HvacSeatCoolerAction.seat_position:type_name -> CarServer.HvacSeatCoolerActions.HvacSeatCoolerPosition_E + 67, // 98: CarServer.HvacTemperatureAdjustmentAction.Temperature.TEMP_UNKNOWN:type_name -> CarServer.Void + 67, // 99: CarServer.HvacTemperatureAdjustmentAction.Temperature.TEMP_MIN:type_name -> CarServer.Void + 67, // 100: CarServer.HvacTemperatureAdjustmentAction.Temperature.TEMP_MAX:type_name -> CarServer.Void + 67, // 101: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone.TEMP_ZONE_UNKNOWN:type_name -> CarServer.Void + 67, // 102: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone.TEMP_ZONE_FRONT_LEFT:type_name -> CarServer.Void + 67, // 103: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone.TEMP_ZONE_FRONT_RIGHT:type_name -> CarServer.Void + 67, // 104: CarServer.HvacTemperatureAdjustmentAction.HvacTemperatureZone.TEMP_ZONE_REAR:type_name -> CarServer.Void + 4, // 105: CarServer.AutoSeatClimateAction.CarSeat.seat_position:type_name -> CarServer.AutoSeatClimateAction.AutoSeatPosition_E + 106, // [106:106] is the sub-list for method output_type + 106, // [106:106] is the sub-list for method input_type + 106, // [106:106] is the sub-list for extension type_name + 106, // [106:106] is the sub-list for extension extendee + 0, // [0:106] is the sub-list for field type_name } func init() { file_car_server_proto_init() } @@ -6136,7 +6323,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SetCabinOverheatProtectionAction); i { + switch v := v.(*RemoveChargeScheduleAction); i { case 0: return &v.state case 1: @@ -6148,7 +6335,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SetVehicleNameAction); i { + switch v := v.(*BatchRemoveChargeSchedulesAction); i { case 0: return &v.state case 1: @@ -6160,7 +6347,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ChargePortDoorClose); i { + switch v := v.(*SetCabinOverheatProtectionAction); i { case 0: return &v.state case 1: @@ -6172,7 +6359,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ChargePortDoorOpen); i { + switch v := v.(*SetVehicleNameAction); i { case 0: return &v.state case 1: @@ -6184,7 +6371,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SetCopTempAction); i { + switch v := v.(*ChargePortDoorClose); i { case 0: return &v.state case 1: @@ -6196,7 +6383,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VehicleControlSetPinToDriveAction); i { + switch v := v.(*ChargePortDoorOpen); i { case 0: return &v.state case 1: @@ -6208,7 +6395,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VehicleControlResetPinToDriveAction); i { + switch v := v.(*SetCopTempAction); i { case 0: return &v.state case 1: @@ -6220,7 +6407,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*HvacSeatHeaterActions_HvacSeatHeaterAction); i { + switch v := v.(*VehicleControlSetPinToDriveAction); i { case 0: return &v.state case 1: @@ -6232,7 +6419,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*HvacSeatCoolerActions_HvacSeatCoolerAction); i { + switch v := v.(*VehicleControlResetPinToDriveAction); i { case 0: return &v.state case 1: @@ -6244,7 +6431,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*HvacTemperatureAdjustmentAction_Temperature); i { + switch v := v.(*HvacSeatHeaterActions_HvacSeatHeaterAction); i { case 0: return &v.state case 1: @@ -6256,7 +6443,7 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*HvacTemperatureAdjustmentAction_HvacTemperatureZone); i { + switch v := v.(*HvacSeatCoolerActions_HvacSeatCoolerAction); i { case 0: return &v.state case 1: @@ -6268,6 +6455,30 @@ func file_car_server_proto_init() { } } file_car_server_proto_msgTypes[55].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[56].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[57].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AutoSeatClimateAction_CarSeat); i { case 0: return &v.state @@ -6328,6 +6539,9 @@ func file_car_server_proto_init() { (*VehicleAction_EraseUserDataAction)(nil), (*VehicleAction_VehicleControlSetPinToDriveAction)(nil), (*VehicleAction_VehicleControlResetPinToDriveAction)(nil), + (*VehicleAction_AddChargeScheduleAction)(nil), + (*VehicleAction_RemoveChargeScheduleAction)(nil), + (*VehicleAction_BatchRemoveChargeSchedulesAction)(nil), } file_car_server_proto_msgTypes[3].OneofWrappers = []interface{}{ (*Response_GetSessionInfoResponse)(nil), @@ -6360,7 +6574,7 @@ func file_car_server_proto_init() { (*VehicleControlWindowAction_Vent)(nil), (*VehicleControlWindowAction_Close)(nil), } - file_car_server_proto_msgTypes[51].OneofWrappers = []interface{}{ + file_car_server_proto_msgTypes[53].OneofWrappers = []interface{}{ (*HvacSeatHeaterActions_HvacSeatHeaterAction_SEAT_HEATER_UNKNOWN)(nil), (*HvacSeatHeaterActions_HvacSeatHeaterAction_SEAT_HEATER_OFF)(nil), (*HvacSeatHeaterActions_HvacSeatHeaterAction_SEAT_HEATER_LOW)(nil), @@ -6377,12 +6591,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[53].OneofWrappers = []interface{}{ + file_car_server_proto_msgTypes[55].OneofWrappers = []interface{}{ (*HvacTemperatureAdjustmentAction_Temperature_TEMP_UNKNOWN)(nil), (*HvacTemperatureAdjustmentAction_Temperature_TEMP_MIN)(nil), (*HvacTemperatureAdjustmentAction_Temperature_TEMP_MAX)(nil), } - file_car_server_proto_msgTypes[54].OneofWrappers = []interface{}{ + file_car_server_proto_msgTypes[56].OneofWrappers = []interface{}{ (*HvacTemperatureAdjustmentAction_HvacTemperatureZone_TEMP_ZONE_UNKNOWN)(nil), (*HvacTemperatureAdjustmentAction_HvacTemperatureZone_TEMP_ZONE_FRONT_LEFT)(nil), (*HvacTemperatureAdjustmentAction_HvacTemperatureZone_TEMP_ZONE_FRONT_RIGHT)(nil), @@ -6394,7 +6608,7 @@ func file_car_server_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_car_server_proto_rawDesc, NumEnums: 6, - NumMessages: 56, + NumMessages: 58, NumExtensions: 0, NumServices: 0, }, diff --git a/pkg/protocol/protobuf/carserver/common.pb.go b/pkg/protocol/protobuf/carserver/common.pb.go index aeebd4e..2e3eb51 100644 --- a/pkg/protocol/protobuf/carserver/common.pb.go +++ b/pkg/protocol/protobuf/carserver/common.pb.go @@ -316,6 +316,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 +571,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 +632,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 +708,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 +747,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/vehicle/charge.go b/pkg/vehicle/charge.go index 61ffe08..5505deb 100644 --- a/pkg/vehicle/charge.go +++ b/pkg/vehicle/charge.go @@ -18,6 +18,47 @@ const ( ChargingPolicyWeekdays ) +type ChargeSchedule = carserver.ChargeSchedule + +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) ChangeChargeLimit(ctx context.Context, chargeLimitPercent int32) error { return v.executeCarServerAction(ctx, &carserver.Action_VehicleAction{