|
|
|
@ -12,6 +12,8 @@ It has these top-level messages:
|
|
|
|
|
ListReleasesRequest
|
|
|
|
|
ListSort
|
|
|
|
|
ListReleasesResponse
|
|
|
|
|
SummarizeReleasesRequest
|
|
|
|
|
SummarizeReleasesResponse
|
|
|
|
|
GetReleaseStatusRequest
|
|
|
|
|
GetReleaseStatusResponse
|
|
|
|
|
GetReleaseContentRequest
|
|
|
|
@ -138,6 +140,55 @@ func (m *ListReleasesRequest) String() string { return proto.CompactT
|
|
|
|
|
func (*ListReleasesRequest) ProtoMessage() {}
|
|
|
|
|
func (*ListReleasesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
|
|
|
|
|
|
func (m *ListReleasesRequest) GetLimit() int64 {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Limit
|
|
|
|
|
}
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *ListReleasesRequest) GetOffset() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Offset
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *ListReleasesRequest) GetSortBy() ListSort_SortBy {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.SortBy
|
|
|
|
|
}
|
|
|
|
|
return ListSort_UNKNOWN
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *ListReleasesRequest) GetFilter() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Filter
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *ListReleasesRequest) GetSortOrder() ListSort_SortOrder {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.SortOrder
|
|
|
|
|
}
|
|
|
|
|
return ListSort_ASC
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *ListReleasesRequest) GetStatusCodes() []hapi_release3.Status_Code {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.StatusCodes
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *ListReleasesRequest) GetNamespace() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Namespace
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ListSort defines sorting fields on a release list.
|
|
|
|
|
type ListSort struct {
|
|
|
|
|
}
|
|
|
|
@ -165,6 +216,27 @@ func (m *ListReleasesResponse) String() string { return proto.Compact
|
|
|
|
|
func (*ListReleasesResponse) ProtoMessage() {}
|
|
|
|
|
func (*ListReleasesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
|
|
|
|
|
|
|
|
|
func (m *ListReleasesResponse) GetCount() int64 {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Count
|
|
|
|
|
}
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *ListReleasesResponse) GetNext() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Next
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *ListReleasesResponse) GetTotal() int64 {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Total
|
|
|
|
|
}
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *ListReleasesResponse) GetReleases() []*hapi_release5.Release {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Releases
|
|
|
|
@ -172,6 +244,81 @@ func (m *ListReleasesResponse) GetReleases() []*hapi_release5.Release {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SummarizeReleasesRequest requests a list of release summaries.
|
|
|
|
|
//
|
|
|
|
|
// Releases can be sorted according to a few pre-determined sort stategies.
|
|
|
|
|
type SummarizeReleasesRequest struct {
|
|
|
|
|
// SortBy is the sort field that the ListReleases server should sort data before returning.
|
|
|
|
|
SortBy ListSort_SortBy `protobuf:"varint,1,opt,name=sort_by,json=sortBy,enum=hapi.services.tiller.ListSort_SortBy" json:"sort_by,omitempty"`
|
|
|
|
|
// Filter is a regular expression used to filter which releases should be listed.
|
|
|
|
|
//
|
|
|
|
|
// Anything that matches the regexp will be included in the results.
|
|
|
|
|
Filter string `protobuf:"bytes,2,opt,name=filter" json:"filter,omitempty"`
|
|
|
|
|
// SortOrder is the ordering directive used for sorting.
|
|
|
|
|
SortOrder ListSort_SortOrder `protobuf:"varint,3,opt,name=sort_order,json=sortOrder,enum=hapi.services.tiller.ListSort_SortOrder" json:"sort_order,omitempty"`
|
|
|
|
|
StatusCodes []hapi_release3.Status_Code `protobuf:"varint,6,rep,packed,name=status_codes,json=statusCodes,enum=hapi.release.Status_Code" json:"status_codes,omitempty"`
|
|
|
|
|
// Namespace is the filter to select releases only from a specific namespace.
|
|
|
|
|
Namespace string `protobuf:"bytes,4,opt,name=namespace" json:"namespace,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *SummarizeReleasesRequest) Reset() { *m = SummarizeReleasesRequest{} }
|
|
|
|
|
func (m *SummarizeReleasesRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*SummarizeReleasesRequest) ProtoMessage() {}
|
|
|
|
|
func (*SummarizeReleasesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
|
|
|
|
|
|
|
|
|
func (m *SummarizeReleasesRequest) GetSortBy() ListSort_SortBy {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.SortBy
|
|
|
|
|
}
|
|
|
|
|
return ListSort_UNKNOWN
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *SummarizeReleasesRequest) GetFilter() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Filter
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *SummarizeReleasesRequest) GetSortOrder() ListSort_SortOrder {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.SortOrder
|
|
|
|
|
}
|
|
|
|
|
return ListSort_ASC
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *SummarizeReleasesRequest) GetStatusCodes() []hapi_release3.Status_Code {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.StatusCodes
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *SummarizeReleasesRequest) GetNamespace() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Namespace
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SummarizeReleasesResponse is a list of release summaries.
|
|
|
|
|
type SummarizeReleasesResponse struct {
|
|
|
|
|
// Releases is the list of found release objects.
|
|
|
|
|
Releases []*hapi_release5.ReleaseSummary `protobuf:"bytes,1,rep,name=releases" json:"releases,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *SummarizeReleasesResponse) Reset() { *m = SummarizeReleasesResponse{} }
|
|
|
|
|
func (m *SummarizeReleasesResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*SummarizeReleasesResponse) ProtoMessage() {}
|
|
|
|
|
func (*SummarizeReleasesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
|
|
|
|
|
|
|
|
|
|
func (m *SummarizeReleasesResponse) GetReleases() []*hapi_release5.ReleaseSummary {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Releases
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetReleaseStatusRequest is a request to get the status of a release.
|
|
|
|
|
type GetReleaseStatusRequest struct {
|
|
|
|
|
// Name is the name of the release
|
|
|
|
@ -183,7 +330,21 @@ type GetReleaseStatusRequest struct {
|
|
|
|
|
func (m *GetReleaseStatusRequest) Reset() { *m = GetReleaseStatusRequest{} }
|
|
|
|
|
func (m *GetReleaseStatusRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*GetReleaseStatusRequest) ProtoMessage() {}
|
|
|
|
|
func (*GetReleaseStatusRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
|
|
|
|
func (*GetReleaseStatusRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
|
|
|
|
|
|
|
|
|
|
func (m *GetReleaseStatusRequest) GetName() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Name
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *GetReleaseStatusRequest) GetVersion() int32 {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Version
|
|
|
|
|
}
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetReleaseStatusResponse is the response indicating the status of the named release.
|
|
|
|
|
type GetReleaseStatusResponse struct {
|
|
|
|
@ -198,7 +359,14 @@ type GetReleaseStatusResponse struct {
|
|
|
|
|
func (m *GetReleaseStatusResponse) Reset() { *m = GetReleaseStatusResponse{} }
|
|
|
|
|
func (m *GetReleaseStatusResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*GetReleaseStatusResponse) ProtoMessage() {}
|
|
|
|
|
func (*GetReleaseStatusResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
|
|
|
|
|
func (*GetReleaseStatusResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
|
|
|
|
|
|
|
|
|
|
func (m *GetReleaseStatusResponse) GetName() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Name
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *GetReleaseStatusResponse) GetInfo() *hapi_release4.Info {
|
|
|
|
|
if m != nil {
|
|
|
|
@ -207,6 +375,13 @@ func (m *GetReleaseStatusResponse) GetInfo() *hapi_release4.Info {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *GetReleaseStatusResponse) GetNamespace() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Namespace
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetReleaseContentRequest is a request to get the contents of a release.
|
|
|
|
|
type GetReleaseContentRequest struct {
|
|
|
|
|
// The name of the release
|
|
|
|
@ -218,7 +393,21 @@ type GetReleaseContentRequest struct {
|
|
|
|
|
func (m *GetReleaseContentRequest) Reset() { *m = GetReleaseContentRequest{} }
|
|
|
|
|
func (m *GetReleaseContentRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*GetReleaseContentRequest) ProtoMessage() {}
|
|
|
|
|
func (*GetReleaseContentRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
|
|
|
|
|
func (*GetReleaseContentRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
|
|
|
|
|
|
|
|
|
|
func (m *GetReleaseContentRequest) GetName() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Name
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *GetReleaseContentRequest) GetVersion() int32 {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Version
|
|
|
|
|
}
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetReleaseContentResponse is a response containing the contents of a release.
|
|
|
|
|
type GetReleaseContentResponse struct {
|
|
|
|
@ -229,7 +418,7 @@ type GetReleaseContentResponse struct {
|
|
|
|
|
func (m *GetReleaseContentResponse) Reset() { *m = GetReleaseContentResponse{} }
|
|
|
|
|
func (m *GetReleaseContentResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*GetReleaseContentResponse) ProtoMessage() {}
|
|
|
|
|
func (*GetReleaseContentResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
|
|
|
|
|
func (*GetReleaseContentResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
|
|
|
|
|
|
|
|
|
|
func (m *GetReleaseContentResponse) GetRelease() *hapi_release5.Release {
|
|
|
|
|
if m != nil {
|
|
|
|
@ -264,7 +453,14 @@ type UpdateReleaseRequest struct {
|
|
|
|
|
func (m *UpdateReleaseRequest) Reset() { *m = UpdateReleaseRequest{} }
|
|
|
|
|
func (m *UpdateReleaseRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*UpdateReleaseRequest) ProtoMessage() {}
|
|
|
|
|
func (*UpdateReleaseRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
|
|
|
|
|
func (*UpdateReleaseRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
|
|
|
|
|
|
|
|
|
|
func (m *UpdateReleaseRequest) GetName() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Name
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *UpdateReleaseRequest) GetChart() *hapi_chart3.Chart {
|
|
|
|
|
if m != nil {
|
|
|
|
@ -280,6 +476,48 @@ func (m *UpdateReleaseRequest) GetValues() *hapi_chart.Config {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *UpdateReleaseRequest) GetDryRun() bool {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.DryRun
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *UpdateReleaseRequest) GetDisableHooks() bool {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.DisableHooks
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *UpdateReleaseRequest) GetRecreate() bool {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Recreate
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *UpdateReleaseRequest) GetTimeout() int64 {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Timeout
|
|
|
|
|
}
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *UpdateReleaseRequest) GetResetValues() bool {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.ResetValues
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *UpdateReleaseRequest) GetWait() bool {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Wait
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// UpdateReleaseResponse is the response to an update request.
|
|
|
|
|
type UpdateReleaseResponse struct {
|
|
|
|
|
Release *hapi_release5.Release `protobuf:"bytes,1,opt,name=release" json:"release,omitempty"`
|
|
|
|
@ -288,7 +526,7 @@ type UpdateReleaseResponse struct {
|
|
|
|
|
func (m *UpdateReleaseResponse) Reset() { *m = UpdateReleaseResponse{} }
|
|
|
|
|
func (m *UpdateReleaseResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*UpdateReleaseResponse) ProtoMessage() {}
|
|
|
|
|
func (*UpdateReleaseResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
|
|
|
|
|
func (*UpdateReleaseResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
|
|
|
|
|
|
|
|
|
|
func (m *UpdateReleaseResponse) GetRelease() *hapi_release5.Release {
|
|
|
|
|
if m != nil {
|
|
|
|
@ -318,7 +556,56 @@ type RollbackReleaseRequest struct {
|
|
|
|
|
func (m *RollbackReleaseRequest) Reset() { *m = RollbackReleaseRequest{} }
|
|
|
|
|
func (m *RollbackReleaseRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*RollbackReleaseRequest) ProtoMessage() {}
|
|
|
|
|
func (*RollbackReleaseRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
|
|
|
|
|
func (*RollbackReleaseRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
|
|
|
|
|
|
|
|
|
|
func (m *RollbackReleaseRequest) GetName() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Name
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *RollbackReleaseRequest) GetDryRun() bool {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.DryRun
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *RollbackReleaseRequest) GetDisableHooks() bool {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.DisableHooks
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *RollbackReleaseRequest) GetVersion() int32 {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Version
|
|
|
|
|
}
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *RollbackReleaseRequest) GetRecreate() bool {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Recreate
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *RollbackReleaseRequest) GetTimeout() int64 {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Timeout
|
|
|
|
|
}
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *RollbackReleaseRequest) GetWait() bool {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Wait
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RollbackReleaseResponse is the response to an update request.
|
|
|
|
|
type RollbackReleaseResponse struct {
|
|
|
|
@ -328,7 +615,7 @@ type RollbackReleaseResponse struct {
|
|
|
|
|
func (m *RollbackReleaseResponse) Reset() { *m = RollbackReleaseResponse{} }
|
|
|
|
|
func (m *RollbackReleaseResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*RollbackReleaseResponse) ProtoMessage() {}
|
|
|
|
|
func (*RollbackReleaseResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
|
|
|
|
|
func (*RollbackReleaseResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
|
|
|
|
|
|
|
|
|
|
func (m *RollbackReleaseResponse) GetRelease() *hapi_release5.Release {
|
|
|
|
|
if m != nil {
|
|
|
|
@ -367,7 +654,7 @@ type InstallReleaseRequest struct {
|
|
|
|
|
func (m *InstallReleaseRequest) Reset() { *m = InstallReleaseRequest{} }
|
|
|
|
|
func (m *InstallReleaseRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*InstallReleaseRequest) ProtoMessage() {}
|
|
|
|
|
func (*InstallReleaseRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
|
|
|
|
|
func (*InstallReleaseRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
|
|
|
|
|
|
|
|
|
|
func (m *InstallReleaseRequest) GetChart() *hapi_chart3.Chart {
|
|
|
|
|
if m != nil {
|
|
|
|
@ -383,6 +670,55 @@ func (m *InstallReleaseRequest) GetValues() *hapi_chart.Config {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *InstallReleaseRequest) GetDryRun() bool {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.DryRun
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *InstallReleaseRequest) GetName() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Name
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *InstallReleaseRequest) GetDisableHooks() bool {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.DisableHooks
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *InstallReleaseRequest) GetNamespace() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Namespace
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *InstallReleaseRequest) GetReuseName() bool {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.ReuseName
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *InstallReleaseRequest) GetTimeout() int64 {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Timeout
|
|
|
|
|
}
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *InstallReleaseRequest) GetWait() bool {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Wait
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// InstallReleaseResponse is the response from a release installation.
|
|
|
|
|
type InstallReleaseResponse struct {
|
|
|
|
|
Release *hapi_release5.Release `protobuf:"bytes,1,opt,name=release" json:"release,omitempty"`
|
|
|
|
@ -391,7 +727,7 @@ type InstallReleaseResponse struct {
|
|
|
|
|
func (m *InstallReleaseResponse) Reset() { *m = InstallReleaseResponse{} }
|
|
|
|
|
func (m *InstallReleaseResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*InstallReleaseResponse) ProtoMessage() {}
|
|
|
|
|
func (*InstallReleaseResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
|
|
|
|
|
func (*InstallReleaseResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
|
|
|
|
|
|
|
|
|
|
func (m *InstallReleaseResponse) GetRelease() *hapi_release5.Release {
|
|
|
|
|
if m != nil {
|
|
|
|
@ -415,7 +751,35 @@ type UninstallReleaseRequest struct {
|
|
|
|
|
func (m *UninstallReleaseRequest) Reset() { *m = UninstallReleaseRequest{} }
|
|
|
|
|
func (m *UninstallReleaseRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*UninstallReleaseRequest) ProtoMessage() {}
|
|
|
|
|
func (*UninstallReleaseRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
|
|
|
|
|
func (*UninstallReleaseRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} }
|
|
|
|
|
|
|
|
|
|
func (m *UninstallReleaseRequest) GetName() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Name
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *UninstallReleaseRequest) GetDisableHooks() bool {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.DisableHooks
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *UninstallReleaseRequest) GetPurge() bool {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Purge
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *UninstallReleaseRequest) GetTimeout() int64 {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Timeout
|
|
|
|
|
}
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// UninstallReleaseResponse represents a successful response to an uninstall request.
|
|
|
|
|
type UninstallReleaseResponse struct {
|
|
|
|
@ -428,7 +792,7 @@ type UninstallReleaseResponse struct {
|
|
|
|
|
func (m *UninstallReleaseResponse) Reset() { *m = UninstallReleaseResponse{} }
|
|
|
|
|
func (m *UninstallReleaseResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*UninstallReleaseResponse) ProtoMessage() {}
|
|
|
|
|
func (*UninstallReleaseResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
|
|
|
|
|
func (*UninstallReleaseResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} }
|
|
|
|
|
|
|
|
|
|
func (m *UninstallReleaseResponse) GetRelease() *hapi_release5.Release {
|
|
|
|
|
if m != nil {
|
|
|
|
@ -437,6 +801,13 @@ func (m *UninstallReleaseResponse) GetRelease() *hapi_release5.Release {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *UninstallReleaseResponse) GetInfo() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Info
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetVersionRequest requests for version information.
|
|
|
|
|
type GetVersionRequest struct {
|
|
|
|
|
}
|
|
|
|
@ -444,7 +815,7 @@ type GetVersionRequest struct {
|
|
|
|
|
func (m *GetVersionRequest) Reset() { *m = GetVersionRequest{} }
|
|
|
|
|
func (m *GetVersionRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*GetVersionRequest) ProtoMessage() {}
|
|
|
|
|
func (*GetVersionRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} }
|
|
|
|
|
func (*GetVersionRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} }
|
|
|
|
|
|
|
|
|
|
type GetVersionResponse struct {
|
|
|
|
|
Version *hapi_version.Version `protobuf:"bytes,1,opt,name=Version" json:"Version,omitempty"`
|
|
|
|
@ -453,7 +824,7 @@ type GetVersionResponse struct {
|
|
|
|
|
func (m *GetVersionResponse) Reset() { *m = GetVersionResponse{} }
|
|
|
|
|
func (m *GetVersionResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*GetVersionResponse) ProtoMessage() {}
|
|
|
|
|
func (*GetVersionResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} }
|
|
|
|
|
func (*GetVersionResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} }
|
|
|
|
|
|
|
|
|
|
func (m *GetVersionResponse) GetVersion() *hapi_version.Version {
|
|
|
|
|
if m != nil {
|
|
|
|
@ -473,7 +844,21 @@ type GetHistoryRequest struct {
|
|
|
|
|
func (m *GetHistoryRequest) Reset() { *m = GetHistoryRequest{} }
|
|
|
|
|
func (m *GetHistoryRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*GetHistoryRequest) ProtoMessage() {}
|
|
|
|
|
func (*GetHistoryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} }
|
|
|
|
|
func (*GetHistoryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} }
|
|
|
|
|
|
|
|
|
|
func (m *GetHistoryRequest) GetName() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Name
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *GetHistoryRequest) GetMax() int32 {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Max
|
|
|
|
|
}
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetHistoryResponse is received in response to a GetHistory rpc.
|
|
|
|
|
type GetHistoryResponse struct {
|
|
|
|
@ -483,7 +868,7 @@ type GetHistoryResponse struct {
|
|
|
|
|
func (m *GetHistoryResponse) Reset() { *m = GetHistoryResponse{} }
|
|
|
|
|
func (m *GetHistoryResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*GetHistoryResponse) ProtoMessage() {}
|
|
|
|
|
func (*GetHistoryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} }
|
|
|
|
|
func (*GetHistoryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} }
|
|
|
|
|
|
|
|
|
|
func (m *GetHistoryResponse) GetReleases() []*hapi_release5.Release {
|
|
|
|
|
if m != nil {
|
|
|
|
@ -505,7 +890,28 @@ type TestReleaseRequest struct {
|
|
|
|
|
func (m *TestReleaseRequest) Reset() { *m = TestReleaseRequest{} }
|
|
|
|
|
func (m *TestReleaseRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*TestReleaseRequest) ProtoMessage() {}
|
|
|
|
|
func (*TestReleaseRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} }
|
|
|
|
|
func (*TestReleaseRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} }
|
|
|
|
|
|
|
|
|
|
func (m *TestReleaseRequest) GetName() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Name
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *TestReleaseRequest) GetTimeout() int64 {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Timeout
|
|
|
|
|
}
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *TestReleaseRequest) GetCleanup() bool {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Cleanup
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TestReleaseResponse represents a message from executing a test
|
|
|
|
|
type TestReleaseResponse struct {
|
|
|
|
@ -515,12 +921,21 @@ type TestReleaseResponse struct {
|
|
|
|
|
func (m *TestReleaseResponse) Reset() { *m = TestReleaseResponse{} }
|
|
|
|
|
func (m *TestReleaseResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
func (*TestReleaseResponse) ProtoMessage() {}
|
|
|
|
|
func (*TestReleaseResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} }
|
|
|
|
|
func (*TestReleaseResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} }
|
|
|
|
|
|
|
|
|
|
func (m *TestReleaseResponse) GetMsg() string {
|
|
|
|
|
if m != nil {
|
|
|
|
|
return m.Msg
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
proto.RegisterType((*ListReleasesRequest)(nil), "hapi.services.tiller.ListReleasesRequest")
|
|
|
|
|
proto.RegisterType((*ListSort)(nil), "hapi.services.tiller.ListSort")
|
|
|
|
|
proto.RegisterType((*ListReleasesResponse)(nil), "hapi.services.tiller.ListReleasesResponse")
|
|
|
|
|
proto.RegisterType((*SummarizeReleasesRequest)(nil), "hapi.services.tiller.SummarizeReleasesRequest")
|
|
|
|
|
proto.RegisterType((*SummarizeReleasesResponse)(nil), "hapi.services.tiller.SummarizeReleasesResponse")
|
|
|
|
|
proto.RegisterType((*GetReleaseStatusRequest)(nil), "hapi.services.tiller.GetReleaseStatusRequest")
|
|
|
|
|
proto.RegisterType((*GetReleaseStatusResponse)(nil), "hapi.services.tiller.GetReleaseStatusResponse")
|
|
|
|
|
proto.RegisterType((*GetReleaseContentRequest)(nil), "hapi.services.tiller.GetReleaseContentRequest")
|
|
|
|
@ -549,7 +964,7 @@ var _ grpc.ClientConn
|
|
|
|
|
|
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
|
// is compatible with the grpc package it is being compiled against.
|
|
|
|
|
const _ = grpc.SupportPackageIsVersion3
|
|
|
|
|
const _ = grpc.SupportPackageIsVersion4
|
|
|
|
|
|
|
|
|
|
// Client API for ReleaseService service
|
|
|
|
|
|
|
|
|
@ -559,6 +974,11 @@ type ReleaseServiceClient interface {
|
|
|
|
|
// release status. By default, ListAllReleases returns the releases who
|
|
|
|
|
// current status is "Active".
|
|
|
|
|
ListReleases(ctx context.Context, in *ListReleasesRequest, opts ...grpc.CallOption) (ReleaseService_ListReleasesClient, error)
|
|
|
|
|
// SummarizeReleases retrieves summary of release history.
|
|
|
|
|
// TODO: Allow filtering the set of releases by
|
|
|
|
|
// release status. By default, SummarizeReleases returns the releases who
|
|
|
|
|
// current status is "Active".
|
|
|
|
|
SummarizeReleases(ctx context.Context, in *SummarizeReleasesRequest, opts ...grpc.CallOption) (*SummarizeReleasesResponse, error)
|
|
|
|
|
// GetReleasesStatus retrieves status information for the specified release.
|
|
|
|
|
GetReleaseStatus(ctx context.Context, in *GetReleaseStatusRequest, opts ...grpc.CallOption) (*GetReleaseStatusResponse, error)
|
|
|
|
|
// GetReleaseContent retrieves the release content (chart + value) for the specified release.
|
|
|
|
@ -619,6 +1039,15 @@ func (x *releaseServiceListReleasesClient) Recv() (*ListReleasesResponse, error)
|
|
|
|
|
return m, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *releaseServiceClient) SummarizeReleases(ctx context.Context, in *SummarizeReleasesRequest, opts ...grpc.CallOption) (*SummarizeReleasesResponse, error) {
|
|
|
|
|
out := new(SummarizeReleasesResponse)
|
|
|
|
|
err := grpc.Invoke(ctx, "/hapi.services.tiller.ReleaseService/SummarizeReleases", in, out, c.cc, opts...)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
return out, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *releaseServiceClient) GetReleaseStatus(ctx context.Context, in *GetReleaseStatusRequest, opts ...grpc.CallOption) (*GetReleaseStatusResponse, error) {
|
|
|
|
|
out := new(GetReleaseStatusResponse)
|
|
|
|
|
err := grpc.Invoke(ctx, "/hapi.services.tiller.ReleaseService/GetReleaseStatus", in, out, c.cc, opts...)
|
|
|
|
@ -731,6 +1160,11 @@ type ReleaseServiceServer interface {
|
|
|
|
|
// release status. By default, ListAllReleases returns the releases who
|
|
|
|
|
// current status is "Active".
|
|
|
|
|
ListReleases(*ListReleasesRequest, ReleaseService_ListReleasesServer) error
|
|
|
|
|
// SummarizeReleases retrieves summary of release history.
|
|
|
|
|
// TODO: Allow filtering the set of releases by
|
|
|
|
|
// release status. By default, SummarizeReleases returns the releases who
|
|
|
|
|
// current status is "Active".
|
|
|
|
|
SummarizeReleases(context.Context, *SummarizeReleasesRequest) (*SummarizeReleasesResponse, error)
|
|
|
|
|
// GetReleasesStatus retrieves status information for the specified release.
|
|
|
|
|
GetReleaseStatus(context.Context, *GetReleaseStatusRequest) (*GetReleaseStatusResponse, error)
|
|
|
|
|
// GetReleaseContent retrieves the release content (chart + value) for the specified release.
|
|
|
|
@ -776,6 +1210,24 @@ func (x *releaseServiceListReleasesServer) Send(m *ListReleasesResponse) error {
|
|
|
|
|
return x.ServerStream.SendMsg(m)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func _ReleaseService_SummarizeReleases_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
|
in := new(SummarizeReleasesRequest)
|
|
|
|
|
if err := dec(in); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
if interceptor == nil {
|
|
|
|
|
return srv.(ReleaseServiceServer).SummarizeReleases(ctx, in)
|
|
|
|
|
}
|
|
|
|
|
info := &grpc.UnaryServerInfo{
|
|
|
|
|
Server: srv,
|
|
|
|
|
FullMethod: "/hapi.services.tiller.ReleaseService/SummarizeReleases",
|
|
|
|
|
}
|
|
|
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
|
return srv.(ReleaseServiceServer).SummarizeReleases(ctx, req.(*SummarizeReleasesRequest))
|
|
|
|
|
}
|
|
|
|
|
return interceptor(ctx, in, info, handler)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func _ReleaseService_GetReleaseStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
|
in := new(GetReleaseStatusRequest)
|
|
|
|
|
if err := dec(in); err != nil {
|
|
|
|
@ -945,6 +1397,10 @@ var _ReleaseService_serviceDesc = grpc.ServiceDesc{
|
|
|
|
|
ServiceName: "hapi.services.tiller.ReleaseService",
|
|
|
|
|
HandlerType: (*ReleaseServiceServer)(nil),
|
|
|
|
|
Methods: []grpc.MethodDesc{
|
|
|
|
|
{
|
|
|
|
|
MethodName: "SummarizeReleases",
|
|
|
|
|
Handler: _ReleaseService_SummarizeReleases_Handler,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
MethodName: "GetReleaseStatus",
|
|
|
|
|
Handler: _ReleaseService_GetReleaseStatus_Handler,
|
|
|
|
@ -990,84 +1446,89 @@ var _ReleaseService_serviceDesc = grpc.ServiceDesc{
|
|
|
|
|
ServerStreams: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
Metadata: fileDescriptor0,
|
|
|
|
|
Metadata: "hapi/services/tiller.proto",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func init() { proto.RegisterFile("hapi/services/tiller.proto", fileDescriptor0) }
|
|
|
|
|
|
|
|
|
|
var fileDescriptor0 = []byte{
|
|
|
|
|
// 1162 bytes of a gzipped FileDescriptorProto
|
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x9c, 0x57, 0xdd, 0x6e, 0xe3, 0xc4,
|
|
|
|
|
0x17, 0xaf, 0xe3, 0x7c, 0x9e, 0x76, 0xfb, 0x4f, 0xa7, 0x5f, 0xae, 0xf5, 0x07, 0x15, 0x23, 0x68,
|
|
|
|
|
0x76, 0x61, 0x53, 0x08, 0x57, 0x48, 0x08, 0xa9, 0xdb, 0x8d, 0xda, 0x42, 0xe9, 0x4a, 0xce, 0x76,
|
|
|
|
|
0x91, 0x10, 0x22, 0x72, 0x93, 0x49, 0x6b, 0xd6, 0xf1, 0x04, 0xcf, 0xb8, 0x6c, 0x6f, 0xb9, 0xe3,
|
|
|
|
|
0x51, 0xe0, 0x29, 0x78, 0x02, 0x5e, 0x80, 0x97, 0x41, 0x9e, 0x0f, 0xd7, 0xe3, 0xda, 0xad, 0xe9,
|
|
|
|
|
0x4d, 0x3c, 0x33, 0xe7, 0xcc, 0xf9, 0xf8, 0x9d, 0x33, 0xbf, 0x99, 0x80, 0x7d, 0xe5, 0x2d, 0xfc,
|
|
|
|
|
0x7d, 0x8a, 0xa3, 0x6b, 0x7f, 0x82, 0xe9, 0x3e, 0xf3, 0x83, 0x00, 0x47, 0xfd, 0x45, 0x44, 0x18,
|
|
|
|
|
0x41, 0x1b, 0x89, 0xac, 0xaf, 0x64, 0x7d, 0x21, 0xb3, 0xb7, 0xf8, 0x8e, 0xc9, 0x95, 0x17, 0x31,
|
|
|
|
|
0xf1, 0x2b, 0xb4, 0xed, 0xed, 0xec, 0x3a, 0x09, 0x67, 0xfe, 0xa5, 0x14, 0x08, 0x17, 0x11, 0x0e,
|
|
|
|
|
0xb0, 0x47, 0xb1, 0xfa, 0x6a, 0x9b, 0x94, 0xcc, 0x0f, 0x67, 0x44, 0x0a, 0x76, 0x34, 0x01, 0x65,
|
|
|
|
|
0x1e, 0x8b, 0xa9, 0x66, 0xef, 0x1a, 0x47, 0xd4, 0x27, 0xa1, 0xfa, 0x0a, 0x99, 0xf3, 0x57, 0x0d,
|
|
|
|
|
0xd6, 0x4f, 0x7d, 0xca, 0x5c, 0xb1, 0x91, 0xba, 0xf8, 0x97, 0x18, 0x53, 0x86, 0x36, 0xa0, 0x11,
|
|
|
|
|
0xf8, 0x73, 0x9f, 0x59, 0xc6, 0xae, 0xd1, 0x33, 0x5d, 0x31, 0x41, 0x5b, 0xd0, 0x24, 0xb3, 0x19,
|
|
|
|
|
0xc5, 0xcc, 0xaa, 0xed, 0x1a, 0xbd, 0x8e, 0x2b, 0x67, 0xe8, 0x6b, 0x68, 0x51, 0x12, 0xb1, 0xf1,
|
|
|
|
|
0xc5, 0x8d, 0x65, 0xee, 0x1a, 0xbd, 0xd5, 0xc1, 0x47, 0xfd, 0x22, 0x28, 0xfa, 0x89, 0xa7, 0x11,
|
|
|
|
|
0x89, 0x58, 0x3f, 0xf9, 0x79, 0x71, 0xe3, 0x36, 0x29, 0xff, 0x26, 0x76, 0x67, 0x7e, 0xc0, 0x70,
|
|
|
|
|
0x64, 0xd5, 0x85, 0x5d, 0x31, 0x43, 0x47, 0x00, 0xdc, 0x2e, 0x89, 0xa6, 0x38, 0xb2, 0x1a, 0xdc,
|
|
|
|
|
0x74, 0xaf, 0x82, 0xe9, 0x57, 0x89, 0xbe, 0xdb, 0xa1, 0x6a, 0x88, 0xbe, 0x82, 0x15, 0x01, 0xc9,
|
|
|
|
|
0x78, 0x42, 0xa6, 0x98, 0x5a, 0xcd, 0x5d, 0xb3, 0xb7, 0x3a, 0xd8, 0x11, 0xa6, 0x14, 0xc2, 0x23,
|
|
|
|
|
0x01, 0xda, 0x21, 0x99, 0x62, 0x77, 0x59, 0xa8, 0x27, 0x63, 0x8a, 0xfe, 0x0f, 0x9d, 0xd0, 0x9b,
|
|
|
|
|
0x63, 0xba, 0xf0, 0x26, 0xd8, 0x6a, 0xf1, 0x08, 0x6f, 0x17, 0x9c, 0x9f, 0xa0, 0xad, 0x9c, 0x3b,
|
|
|
|
|
0x03, 0x68, 0x8a, 0xd4, 0xd0, 0x32, 0xb4, 0xce, 0xcf, 0xbe, 0x3d, 0x7b, 0xf5, 0xfd, 0x59, 0x77,
|
|
|
|
|
0x09, 0xb5, 0xa1, 0x7e, 0x76, 0xf0, 0xdd, 0xb0, 0x6b, 0xa0, 0x35, 0x78, 0x72, 0x7a, 0x30, 0x7a,
|
|
|
|
|
0x3d, 0x76, 0x87, 0xa7, 0xc3, 0x83, 0xd1, 0xf0, 0x65, 0xb7, 0xe6, 0xbc, 0x0f, 0x9d, 0x34, 0x66,
|
|
|
|
|
0xd4, 0x02, 0xf3, 0x60, 0x74, 0x28, 0xb6, 0xbc, 0x1c, 0x8e, 0x0e, 0xbb, 0x86, 0xf3, 0xbb, 0x01,
|
|
|
|
|
0x1b, 0x7a, 0x89, 0xe8, 0x82, 0x84, 0x14, 0x27, 0x35, 0x9a, 0x90, 0x38, 0x4c, 0x6b, 0xc4, 0x27,
|
|
|
|
|
0x08, 0x41, 0x3d, 0xc4, 0xef, 0x54, 0x85, 0xf8, 0x38, 0xd1, 0x64, 0x84, 0x79, 0x01, 0xaf, 0x8e,
|
|
|
|
|
0xe9, 0x8a, 0x09, 0xfa, 0x1c, 0xda, 0x32, 0x75, 0x6a, 0xd5, 0x77, 0xcd, 0xde, 0xf2, 0x60, 0x53,
|
|
|
|
|
0x07, 0x44, 0x7a, 0x74, 0x53, 0x35, 0xe7, 0x08, 0xb6, 0x8f, 0xb0, 0x8a, 0x44, 0xe0, 0xa5, 0x3a,
|
|
|
|
|
0x26, 0xf1, 0xeb, 0xcd, 0x31, 0x0f, 0x26, 0xf1, 0xeb, 0xcd, 0x31, 0xb2, 0xa0, 0x25, 0xdb, 0x8d,
|
|
|
|
|
0x87, 0xd3, 0x70, 0xd5, 0xd4, 0x61, 0x60, 0xdd, 0x35, 0x24, 0xf3, 0x2a, 0xb2, 0xf4, 0x31, 0xd4,
|
|
|
|
|
0x93, 0x66, 0xe7, 0x66, 0x96, 0x07, 0x48, 0x8f, 0xf3, 0x24, 0x9c, 0x11, 0x97, 0xcb, 0xf5, 0x52,
|
|
|
|
|
0x99, 0xf9, 0x52, 0x1d, 0x67, 0xbd, 0x1e, 0x92, 0x90, 0xe1, 0x90, 0x3d, 0x2e, 0xfe, 0x53, 0xd8,
|
|
|
|
|
0x29, 0xb0, 0x24, 0x13, 0xd8, 0x87, 0x96, 0x0c, 0x8d, 0x5b, 0x2b, 0xc5, 0x55, 0x69, 0x39, 0x7f,
|
|
|
|
|
0xd6, 0x60, 0xe3, 0x7c, 0x31, 0xf5, 0x18, 0x56, 0xa2, 0x7b, 0x82, 0xda, 0x83, 0x06, 0x27, 0x0d,
|
|
|
|
|
0x89, 0xc5, 0x9a, 0xb0, 0x2d, 0x98, 0xe5, 0x30, 0xf9, 0x75, 0x85, 0x1c, 0x3d, 0x83, 0xe6, 0xb5,
|
|
|
|
|
0x17, 0xc4, 0x98, 0x72, 0x20, 0x52, 0xd4, 0xa4, 0x26, 0x67, 0x1c, 0x57, 0x6a, 0xa0, 0x6d, 0x68,
|
|
|
|
|
0x4d, 0xa3, 0x9b, 0x71, 0x14, 0x87, 0xfc, 0x08, 0xb6, 0xdd, 0xe6, 0x34, 0xba, 0x71, 0xe3, 0x10,
|
|
|
|
|
0x7d, 0x08, 0x4f, 0xa6, 0x3e, 0xf5, 0x2e, 0x02, 0x3c, 0xbe, 0x22, 0xe4, 0x2d, 0xe5, 0xa7, 0xb0,
|
|
|
|
|
0xed, 0xae, 0xc8, 0xc5, 0xe3, 0x64, 0x0d, 0xd9, 0x49, 0x27, 0x4d, 0x22, 0xec, 0x31, 0x6c, 0x35,
|
|
|
|
|
0xb9, 0x3c, 0x9d, 0x27, 0x18, 0x32, 0x7f, 0x8e, 0x49, 0xcc, 0xf8, 0xd1, 0x31, 0x5d, 0x35, 0x45,
|
|
|
|
|
0x1f, 0xc0, 0x4a, 0x84, 0x29, 0x66, 0x63, 0x19, 0x65, 0x9b, 0xef, 0x5c, 0xe6, 0x6b, 0x6f, 0x44,
|
|
|
|
|
0x58, 0x08, 0xea, 0xbf, 0x7a, 0x3e, 0xb3, 0x3a, 0x5c, 0xc4, 0xc7, 0xce, 0x31, 0x6c, 0xe6, 0xb0,
|
|
|
|
|
0x7a, 0x2c, 0xec, 0x7f, 0x1b, 0xb0, 0xe5, 0x92, 0x20, 0xb8, 0xf0, 0x26, 0x6f, 0x2b, 0x00, 0x9f,
|
|
|
|
|
0xc1, 0xa8, 0x76, 0x3f, 0x46, 0x66, 0x01, 0x46, 0x99, 0x5e, 0xaa, 0x6b, 0xbd, 0xa4, 0xa1, 0xd7,
|
|
|
|
|
0x28, 0x47, 0xaf, 0xa9, 0xa3, 0xa7, 0xa0, 0x69, 0x65, 0xa0, 0xf9, 0x06, 0xb6, 0xef, 0xe4, 0xf3,
|
|
|
|
|
0x58, 0x70, 0xfe, 0xa8, 0xc1, 0xe6, 0x49, 0x48, 0x99, 0x17, 0x04, 0x39, 0x6c, 0xd2, 0x06, 0x34,
|
|
|
|
|
0x2a, 0x37, 0x60, 0xed, 0xbf, 0x34, 0xa0, 0xa9, 0x81, 0xab, 0x2a, 0x51, 0xcf, 0x54, 0xa2, 0x52,
|
|
|
|
|
0x53, 0x6a, 0x54, 0xd0, 0xcc, 0x51, 0x01, 0x7a, 0x0f, 0x20, 0xc2, 0x31, 0xc5, 0x63, 0x6e, 0x5c,
|
|
|
|
|
0x80, 0xd8, 0xe1, 0x2b, 0x67, 0xf2, 0xe4, 0x2b, 0xdc, 0xdb, 0xc5, 0xb8, 0x67, 0x5b, 0xf2, 0x04,
|
|
|
|
|
0xb6, 0xf2, 0x50, 0x3d, 0x16, 0xf6, 0xdf, 0x0c, 0xd8, 0x3e, 0x0f, 0xfd, 0x42, 0xe0, 0x8b, 0x9a,
|
|
|
|
|
0xf2, 0x0e, 0x14, 0xb5, 0x02, 0x28, 0x36, 0xa0, 0xb1, 0x88, 0xa3, 0x4b, 0x2c, 0xa1, 0x15, 0x93,
|
|
|
|
|
0x6c, 0x8e, 0x75, 0x2d, 0x47, 0x67, 0x0c, 0xd6, 0xdd, 0x18, 0x1e, 0x99, 0x51, 0x12, 0x75, 0x4a,
|
|
|
|
|
0xdd, 0x1d, 0x41, 0xd3, 0xce, 0x3a, 0xac, 0x1d, 0x61, 0xf6, 0x46, 0x1c, 0x00, 0x99, 0x9e, 0x33,
|
|
|
|
|
0x04, 0x94, 0x5d, 0xbc, 0xf5, 0x27, 0x97, 0x74, 0x7f, 0xea, 0x1d, 0xa3, 0xf4, 0x95, 0x96, 0xf3,
|
|
|
|
|
0x25, 0xb7, 0x7d, 0xec, 0x53, 0x46, 0xa2, 0x9b, 0xfb, 0xa0, 0xeb, 0x82, 0x39, 0xf7, 0xde, 0x49,
|
|
|
|
|
0x66, 0x4f, 0x86, 0xce, 0x11, 0x8f, 0x20, 0xdd, 0x2a, 0x23, 0xc8, 0xde, 0x93, 0x46, 0xb5, 0x7b,
|
|
|
|
|
0xf2, 0x47, 0x40, 0xaf, 0x71, 0x7a, 0x65, 0x3f, 0x70, 0xc5, 0xa8, 0x22, 0xd4, 0xf4, 0x46, 0xb3,
|
|
|
|
|
0xa0, 0x35, 0x09, 0xb0, 0x17, 0xc6, 0x0b, 0x59, 0x36, 0x35, 0x75, 0xf6, 0x60, 0x5d, 0xb3, 0x2e,
|
|
|
|
|
0xe3, 0x4c, 0xf2, 0xa1, 0x97, 0xd2, 0x7a, 0x32, 0x1c, 0xfc, 0xd3, 0x86, 0x55, 0x75, 0xc7, 0x8a,
|
|
|
|
|
0xf7, 0x12, 0xf2, 0x61, 0x25, 0xfb, 0x98, 0x40, 0x4f, 0xcb, 0x9f, 0x53, 0xb9, 0x37, 0xa1, 0xfd,
|
|
|
|
|
0xac, 0x8a, 0xaa, 0x88, 0xc5, 0x59, 0xfa, 0xcc, 0x40, 0x14, 0xba, 0xf9, 0x3b, 0x1e, 0x3d, 0x2f,
|
|
|
|
|
0xb6, 0x51, 0xf2, 0xa8, 0xb0, 0xfb, 0x55, 0xd5, 0x95, 0x5b, 0x74, 0xcd, 0xab, 0xaf, 0x5f, 0xcc,
|
|
|
|
|
0xe8, 0x41, 0x33, 0xfa, 0x5b, 0xc0, 0xde, 0xaf, 0xac, 0x9f, 0xfa, 0xfd, 0x19, 0x9e, 0x68, 0xb7,
|
|
|
|
|
0x12, 0x2a, 0x41, 0xab, 0xe8, 0x9a, 0xb7, 0x3f, 0xa9, 0xa4, 0x9b, 0xfa, 0x9a, 0xc3, 0xaa, 0x4e,
|
|
|
|
|
0x37, 0xa8, 0xc4, 0x40, 0x21, 0x7f, 0xdb, 0x9f, 0x56, 0x53, 0x4e, 0xdd, 0x51, 0xe8, 0xe6, 0xd9,
|
|
|
|
|
0xa0, 0xac, 0x8e, 0x25, 0xcc, 0x55, 0x56, 0xc7, 0x32, 0x92, 0x71, 0x96, 0x90, 0x07, 0x70, 0x4b,
|
|
|
|
|
0x06, 0x68, 0xaf, 0xb4, 0x20, 0x3a, 0x87, 0xd8, 0xbd, 0x87, 0x15, 0x53, 0x17, 0x0b, 0xf8, 0x5f,
|
|
|
|
|
0xee, 0xb6, 0x44, 0x25, 0xd0, 0x14, 0x3f, 0x12, 0xec, 0xe7, 0x15, 0xb5, 0x73, 0x49, 0x49, 0x7e,
|
|
|
|
|
0xb9, 0x27, 0x29, 0x9d, 0xbc, 0xee, 0x49, 0x2a, 0x47, 0x55, 0xce, 0x12, 0xf2, 0x61, 0xd5, 0x8d,
|
|
|
|
|
0x43, 0xe9, 0x3a, 0x61, 0x09, 0x54, 0xb2, 0xfb, 0x2e, 0x3f, 0xd9, 0x4f, 0x2b, 0x68, 0xde, 0x9e,
|
|
|
|
|
0xef, 0x17, 0xf0, 0x43, 0x5b, 0xa9, 0x5e, 0x34, 0xf9, 0xdf, 0xc9, 0x2f, 0xfe, 0x0d, 0x00, 0x00,
|
|
|
|
|
0xff, 0xff, 0xf9, 0x32, 0x44, 0xf7, 0x1f, 0x0f, 0x00, 0x00,
|
|
|
|
|
// 1236 bytes of a gzipped FileDescriptorProto
|
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xdd, 0x6e, 0xe3, 0x44,
|
|
|
|
|
0x14, 0xae, 0xe3, 0xfc, 0x9e, 0x76, 0x4b, 0x3a, 0xdb, 0x6d, 0x5d, 0x6b, 0x41, 0xc5, 0x08, 0x9a,
|
|
|
|
|
0x5d, 0xd8, 0x94, 0x0d, 0x37, 0x20, 0x21, 0xa4, 0x6e, 0x37, 0x6a, 0x0b, 0xa5, 0x2b, 0x39, 0xdb,
|
|
|
|
|
0x45, 0x42, 0x88, 0xc8, 0x4d, 0x26, 0xad, 0x59, 0xc7, 0x0e, 0x9e, 0x71, 0xd9, 0x70, 0xc9, 0x1d,
|
|
|
|
|
0x4f, 0xc0, 0x33, 0xc0, 0x53, 0xf0, 0x04, 0xdc, 0xf0, 0x42, 0xc8, 0xf3, 0xe3, 0x7a, 0x1c, 0x3b,
|
|
|
|
|
0x35, 0xe5, 0x86, 0x9b, 0x64, 0x66, 0xce, 0x99, 0xf3, 0xf3, 0x9d, 0x93, 0x6f, 0x8e, 0x02, 0xe6,
|
|
|
|
|
0x95, 0x33, 0x73, 0xf7, 0x09, 0x0e, 0xaf, 0xdd, 0x11, 0x26, 0xfb, 0xd4, 0xf5, 0x3c, 0x1c, 0x76,
|
|
|
|
|
0x67, 0x61, 0x40, 0x03, 0xb4, 0x19, 0xcb, 0xba, 0x52, 0xd6, 0xe5, 0x32, 0x73, 0x8b, 0xdd, 0x18,
|
|
|
|
|
0x5d, 0x39, 0x21, 0xe5, 0x9f, 0x5c, 0xdb, 0xdc, 0x4e, 0x9f, 0x07, 0xfe, 0xc4, 0xbd, 0x14, 0x02,
|
|
|
|
|
0xee, 0x22, 0xc4, 0x1e, 0x76, 0x08, 0x96, 0xdf, 0xca, 0x25, 0x29, 0x73, 0xfd, 0x49, 0x20, 0x04,
|
|
|
|
|
0x3b, 0x8a, 0x80, 0x50, 0x87, 0x46, 0x44, 0xb1, 0x77, 0x8d, 0x43, 0xe2, 0x06, 0xbe, 0xfc, 0xe6,
|
|
|
|
|
0x32, 0xeb, 0xcf, 0x0a, 0xdc, 0x3f, 0x75, 0x09, 0xb5, 0xf9, 0x45, 0x62, 0xe3, 0x1f, 0x23, 0x4c,
|
|
|
|
|
0x28, 0xda, 0x84, 0x9a, 0xe7, 0x4e, 0x5d, 0x6a, 0x68, 0xbb, 0x5a, 0x47, 0xb7, 0xf9, 0x06, 0x6d,
|
|
|
|
|
0x41, 0x3d, 0x98, 0x4c, 0x08, 0xa6, 0x46, 0x65, 0x57, 0xeb, 0xb4, 0x6c, 0xb1, 0x43, 0x5f, 0x40,
|
|
|
|
|
0x83, 0x04, 0x21, 0x1d, 0x5e, 0xcc, 0x0d, 0x7d, 0x57, 0xeb, 0xac, 0xf7, 0xde, 0xef, 0xe6, 0x41,
|
|
|
|
|
0xd1, 0x8d, 0x3d, 0x0d, 0x82, 0x90, 0x76, 0xe3, 0x8f, 0x67, 0x73, 0xbb, 0x4e, 0xd8, 0x77, 0x6c,
|
|
|
|
|
0x77, 0xe2, 0x7a, 0x14, 0x87, 0x46, 0x95, 0xdb, 0xe5, 0x3b, 0x74, 0x04, 0xc0, 0xec, 0x06, 0xe1,
|
|
|
|
|
0x18, 0x87, 0x46, 0x8d, 0x99, 0xee, 0x94, 0x30, 0xfd, 0x22, 0xd6, 0xb7, 0x5b, 0x44, 0x2e, 0xd1,
|
|
|
|
|
0xe7, 0xb0, 0xc6, 0x21, 0x19, 0x8e, 0x82, 0x31, 0x26, 0x46, 0x7d, 0x57, 0xef, 0xac, 0xf7, 0x76,
|
|
|
|
|
0xb8, 0x29, 0x89, 0xf0, 0x80, 0x83, 0x76, 0x18, 0x8c, 0xb1, 0xbd, 0xca, 0xd5, 0xe3, 0x35, 0x41,
|
|
|
|
|
0x0f, 0xa1, 0xe5, 0x3b, 0x53, 0x4c, 0x66, 0xce, 0x08, 0x1b, 0x0d, 0x16, 0xe1, 0xcd, 0x81, 0xf5,
|
|
|
|
|
0x3d, 0x34, 0xa5, 0x73, 0xab, 0x07, 0x75, 0x9e, 0x1a, 0x5a, 0x85, 0xc6, 0xf9, 0xd9, 0x57, 0x67,
|
|
|
|
|
0x2f, 0xbe, 0x39, 0x6b, 0xaf, 0xa0, 0x26, 0x54, 0xcf, 0x0e, 0xbe, 0xee, 0xb7, 0x35, 0xb4, 0x01,
|
|
|
|
|
0xf7, 0x4e, 0x0f, 0x06, 0x2f, 0x87, 0x76, 0xff, 0xb4, 0x7f, 0x30, 0xe8, 0x3f, 0x6f, 0x57, 0xac,
|
|
|
|
|
0x77, 0xa0, 0x95, 0xc4, 0x8c, 0x1a, 0xa0, 0x1f, 0x0c, 0x0e, 0xf9, 0x95, 0xe7, 0xfd, 0xc1, 0x61,
|
|
|
|
|
0x5b, 0xb3, 0x7e, 0xd5, 0x60, 0x53, 0x2d, 0x11, 0x99, 0x05, 0x3e, 0xc1, 0x71, 0x8d, 0x46, 0x41,
|
|
|
|
|
0xe4, 0x27, 0x35, 0x62, 0x1b, 0x84, 0xa0, 0xea, 0xe3, 0x37, 0xb2, 0x42, 0x6c, 0x1d, 0x6b, 0xd2,
|
|
|
|
|
0x80, 0x3a, 0x1e, 0xab, 0x8e, 0x6e, 0xf3, 0x0d, 0x7a, 0x0a, 0x4d, 0x91, 0x3a, 0x31, 0xaa, 0xbb,
|
|
|
|
|
0x7a, 0x67, 0xb5, 0xf7, 0x40, 0x05, 0x44, 0x78, 0xb4, 0x13, 0x35, 0xeb, 0xb7, 0x0a, 0x18, 0x83,
|
|
|
|
|
0x68, 0x3a, 0x75, 0x42, 0xf7, 0x67, 0x9c, 0xed, 0x99, 0x54, 0x17, 0x68, 0xff, 0xad, 0x0b, 0x2a,
|
|
|
|
|
0x4b, 0xba, 0x40, 0xff, 0x5f, 0x74, 0x41, 0x35, 0xdb, 0x05, 0xe7, 0xb0, 0x93, 0x03, 0x8c, 0xa8,
|
|
|
|
|
0xd4, 0xa7, 0x29, 0xa4, 0x35, 0x86, 0xf4, 0xc3, 0x5c, 0xa4, 0xb9, 0x85, 0x79, 0x0a, 0xf0, 0x23,
|
|
|
|
|
0xd8, 0x3e, 0xc2, 0xb2, 0xf4, 0x3c, 0x34, 0x09, 0x77, 0x5c, 0x68, 0x67, 0x8a, 0x19, 0xd6, 0x71,
|
|
|
|
|
0xa1, 0x9d, 0x29, 0x46, 0x06, 0x34, 0xc4, 0xef, 0x9b, 0x61, 0x58, 0xb3, 0xe5, 0xd6, 0xa2, 0x60,
|
|
|
|
|
0x2c, 0x1a, 0x12, 0xe1, 0xe5, 0x59, 0xfa, 0x00, 0xaa, 0x31, 0xbb, 0x30, 0x33, 0xab, 0x3d, 0xa4,
|
|
|
|
|
0x86, 0x7b, 0xe2, 0x4f, 0x02, 0x9b, 0xc9, 0x55, 0x54, 0xf4, 0x2c, 0x2a, 0xc7, 0x69, 0xaf, 0x87,
|
|
|
|
|
0x81, 0x4f, 0xb1, 0x4f, 0xef, 0x16, 0xff, 0x29, 0xec, 0xe4, 0x58, 0x12, 0x09, 0xec, 0x43, 0x43,
|
|
|
|
|
0x84, 0xc6, 0xac, 0x15, 0x36, 0xb2, 0xd4, 0xb2, 0xfe, 0xa8, 0xc0, 0xe6, 0xf9, 0x6c, 0xec, 0x50,
|
|
|
|
|
0x59, 0xab, 0x65, 0x41, 0xed, 0x41, 0x8d, 0xb1, 0xb4, 0xc0, 0x62, 0x83, 0xdb, 0xe6, 0x54, 0x7e,
|
|
|
|
|
0x18, 0x7f, 0xda, 0x5c, 0x8e, 0x1e, 0x43, 0xfd, 0xda, 0xf1, 0x22, 0x4c, 0x18, 0x10, 0x09, 0x6a,
|
|
|
|
|
0x42, 0x93, 0x51, 0xbc, 0x2d, 0x34, 0xd0, 0x36, 0x34, 0xc6, 0xe1, 0x7c, 0x18, 0x46, 0x3e, 0xeb,
|
|
|
|
|
0xa5, 0xa6, 0x5d, 0x1f, 0x87, 0x73, 0x3b, 0xf2, 0xd1, 0x7b, 0x70, 0x6f, 0xec, 0x12, 0xe7, 0xc2,
|
|
|
|
|
0xc3, 0xc3, 0xab, 0x20, 0x78, 0x4d, 0x18, 0xed, 0x35, 0xed, 0x35, 0x71, 0x78, 0x1c, 0x9f, 0x21,
|
|
|
|
|
0x33, 0x6e, 0xa8, 0x51, 0x88, 0x1d, 0x8a, 0x8d, 0x3a, 0x93, 0x27, 0xfb, 0x18, 0x43, 0xea, 0x4e,
|
|
|
|
|
0x71, 0x10, 0x51, 0xc6, 0x55, 0xba, 0x2d, 0xb7, 0xe8, 0x5d, 0x58, 0x0b, 0x31, 0xc1, 0x74, 0x28,
|
|
|
|
|
0xa2, 0x6c, 0xb2, 0x9b, 0xab, 0xec, 0xec, 0x15, 0x0f, 0x0b, 0x41, 0xf5, 0x27, 0xc7, 0xa5, 0x46,
|
|
|
|
|
0x8b, 0x89, 0xd8, 0xda, 0x3a, 0x86, 0x07, 0x19, 0xac, 0xee, 0x0a, 0xfb, 0x5f, 0x1a, 0x6c, 0xd9,
|
|
|
|
|
0x81, 0xe7, 0x5d, 0x38, 0xa3, 0xd7, 0x25, 0x80, 0x4f, 0x61, 0x54, 0x59, 0x8e, 0x91, 0x9e, 0x83,
|
|
|
|
|
0x51, 0xaa, 0x97, 0xaa, 0x4a, 0x2f, 0x29, 0xe8, 0xd5, 0x8a, 0xd1, 0xab, 0xab, 0xe8, 0x49, 0x68,
|
|
|
|
|
0x1a, 0x29, 0x68, 0xbe, 0x84, 0xed, 0x85, 0x7c, 0xee, 0x0a, 0xce, 0xef, 0x15, 0x78, 0x70, 0xe2,
|
|
|
|
|
0x13, 0xea, 0x78, 0x5e, 0x06, 0x9b, 0xa4, 0x01, 0xb5, 0xd2, 0x0d, 0x58, 0xf9, 0x37, 0x0d, 0xa8,
|
|
|
|
|
0x2b, 0xe0, 0xca, 0x4a, 0x54, 0x53, 0x95, 0x28, 0xd5, 0x94, 0x0a, 0x15, 0xd4, 0x33, 0x54, 0x80,
|
|
|
|
|
0xde, 0x06, 0x08, 0x71, 0x44, 0xf0, 0x90, 0x19, 0xe7, 0x20, 0xb6, 0xd8, 0xc9, 0x99, 0xf8, 0xe5,
|
|
|
|
|
0x4b, 0xdc, 0x9b, 0xf9, 0xb8, 0xa7, 0x5b, 0xf2, 0x04, 0xb6, 0xb2, 0x50, 0xdd, 0x15, 0xf6, 0x5f,
|
|
|
|
|
0x34, 0xd8, 0x3e, 0xf7, 0xdd, 0x5c, 0xe0, 0xf3, 0x9a, 0x72, 0x01, 0x8a, 0x4a, 0x0e, 0x14, 0x9b,
|
|
|
|
|
0x50, 0x9b, 0x45, 0xe1, 0x25, 0x16, 0xd0, 0xf2, 0x4d, 0x3a, 0xc7, 0xaa, 0x92, 0xa3, 0x35, 0x04,
|
|
|
|
|
0x63, 0x31, 0x86, 0x3b, 0x66, 0x14, 0x47, 0x9d, 0x50, 0x77, 0x8b, 0xd3, 0xb4, 0x75, 0x1f, 0x36,
|
|
|
|
|
0x8e, 0x30, 0x7d, 0xc5, 0x7f, 0x00, 0x22, 0x3d, 0xab, 0x0f, 0x28, 0x7d, 0x78, 0xe3, 0x4f, 0x1c,
|
|
|
|
|
0xa9, 0xfe, 0xe4, 0xe0, 0x28, 0xf5, 0xa5, 0x96, 0xf5, 0x19, 0xb3, 0x7d, 0xec, 0x12, 0x1a, 0x84,
|
|
|
|
|
0xf3, 0x65, 0xd0, 0xb5, 0x41, 0x9f, 0x3a, 0x6f, 0x04, 0xb3, 0xc7, 0x4b, 0xeb, 0x88, 0x45, 0x90,
|
|
|
|
|
0x5c, 0x15, 0x11, 0x3c, 0x5d, 0x78, 0x2e, 0x6f, 0x1d, 0x4c, 0xbe, 0x03, 0xf4, 0x12, 0x27, 0x33,
|
|
|
|
|
0xd2, 0x2d, 0x4f, 0x8c, 0x2c, 0x42, 0x45, 0x6d, 0x34, 0x03, 0x1a, 0x23, 0x0f, 0x3b, 0x7e, 0x34,
|
|
|
|
|
0x13, 0x65, 0x93, 0x5b, 0x6b, 0x0f, 0xee, 0x2b, 0xd6, 0x45, 0x9c, 0x71, 0x3e, 0xe4, 0x52, 0x58,
|
|
|
|
|
0x8f, 0x97, 0xbd, 0xbf, 0x5b, 0xb0, 0x2e, 0xdf, 0x58, 0x3e, 0x9a, 0x20, 0x17, 0xd6, 0xd2, 0xd3,
|
|
|
|
|
0x1b, 0x7a, 0x54, 0x3c, 0xb9, 0x64, 0x06, 0x2a, 0xf3, 0x71, 0x19, 0x55, 0x1e, 0x8b, 0xb5, 0xf2,
|
|
|
|
|
0xb1, 0x86, 0xae, 0x61, 0x63, 0x61, 0x06, 0x41, 0xdd, 0x7c, 0x23, 0x45, 0x53, 0x9c, 0xb9, 0x5f,
|
|
|
|
|
0x5a, 0x5f, 0x7a, 0x46, 0x04, 0xda, 0xd9, 0xd9, 0x02, 0x3d, 0xc9, 0x37, 0x53, 0x30, 0xcc, 0x98,
|
|
|
|
|
0xdd, 0xb2, 0xea, 0x89, 0xd3, 0x6b, 0xd6, 0x75, 0xea, 0x40, 0x80, 0x6e, 0x35, 0xa3, 0xce, 0x20,
|
|
|
|
|
0x45, 0xc9, 0x16, 0x4e, 0x1a, 0xd6, 0x0a, 0xfa, 0x01, 0xee, 0x29, 0xaf, 0x21, 0x2a, 0xa8, 0x52,
|
|
|
|
|
0xde, 0x78, 0x61, 0x7e, 0x58, 0x4a, 0x37, 0xf1, 0x35, 0x85, 0x75, 0x95, 0xe6, 0x50, 0x81, 0x81,
|
|
|
|
|
0xdc, 0x77, 0xc3, 0xfc, 0xa8, 0x9c, 0x72, 0xba, 0x8e, 0x59, 0x16, 0x2a, 0xaa, 0x63, 0x01, 0x63,
|
|
|
|
|
0x16, 0xd5, 0xb1, 0x88, 0xdc, 0xac, 0x15, 0xe4, 0x00, 0xdc, 0x90, 0x10, 0xda, 0x2b, 0x2c, 0x88,
|
|
|
|
|
0xca, 0x5d, 0x66, 0xe7, 0x76, 0xc5, 0xc4, 0xc5, 0x0c, 0xde, 0xca, 0xbc, 0xd2, 0xa8, 0x00, 0x9a,
|
|
|
|
|
0xfc, 0xe1, 0xc4, 0x7c, 0x52, 0x52, 0x3b, 0x93, 0x94, 0xe0, 0xb5, 0x25, 0x49, 0xa9, 0xa4, 0xb9,
|
|
|
|
|
0x24, 0xa9, 0x0c, 0x45, 0x5a, 0x2b, 0xc8, 0x85, 0x75, 0x3b, 0xf2, 0x85, 0xeb, 0x98, 0x9d, 0x50,
|
|
|
|
|
0xc1, 0xed, 0x45, 0x5e, 0x34, 0x1f, 0x95, 0xd0, 0xbc, 0xe1, 0x95, 0x67, 0xf0, 0x6d, 0x53, 0xaa,
|
|
|
|
|
0x5e, 0xd4, 0xd9, 0xff, 0x06, 0x9f, 0xfc, 0x13, 0x00, 0x00, 0xff, 0xff, 0x36, 0x74, 0x25, 0x9d,
|
|
|
|
|
0x08, 0x11, 0x00, 0x00,
|
|
|
|
|
}
|
|
|
|
|