basicAuth
- BasicAuth
+github.com/argoproj/argo-events/pkg/apis/common.BasicAuth
|
(Optional)
diff --git a/eventsources/sources/nats/start.go b/eventsources/sources/nats/start.go
index 6a75e2063d..8850aaca87 100644
--- a/eventsources/sources/nats/start.go
+++ b/eventsources/sources/nats/start.go
@@ -70,39 +70,42 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt
}
opt = append(opt, natslib.Secure(tlsConfig))
}
- switch natsEventSource.Auth {
- case v1alpha1.NATSAuthBasic:
- username, err := common.GetSecretFromVolume(natsEventSource.Username)
- if err != nil {
- return err
- }
- password, err := common.GetSecretFromVolume(natsEventSource.Password)
- if err != nil {
- return err
- }
- opt = append(opt, natslib.UserInfo(username, password))
- case v1alpha1.NATSAuthToken:
- token, err := common.GetSecretFromVolume(natsEventSource.Token)
- if err != nil {
- return err
- }
- opt = append(opt, natslib.Token(token))
- case v1alpha1.NATSAuthNKEY:
- nkeyFile, err := common.GetSecretVolumePath(natsEventSource.NKey)
- if err != nil {
- return err
- }
- o, err := natslib.NkeyOptionFromSeed(nkeyFile)
- if err != nil {
- return errors.Wrap(err, "failed to get NKey")
- }
- opt = append(opt, o)
- case v1alpha1.NATSAuthCredential:
- cFile, err := common.GetSecretVolumePath(natsEventSource.Credential)
- if err != nil {
- return err
+
+ if natsEventSource.Auth != nil {
+ switch {
+ case natsEventSource.Auth.Basic != nil:
+ username, err := common.GetSecretFromVolume(natsEventSource.Auth.Basic.Username)
+ if err != nil {
+ return err
+ }
+ password, err := common.GetSecretFromVolume(natsEventSource.Auth.Basic.Password)
+ if err != nil {
+ return err
+ }
+ opt = append(opt, natslib.UserInfo(username, password))
+ case natsEventSource.Auth.Token != nil:
+ token, err := common.GetSecretFromVolume(natsEventSource.Auth.Token)
+ if err != nil {
+ return err
+ }
+ opt = append(opt, natslib.Token(token))
+ case natsEventSource.Auth.NKey != nil:
+ nkeyFile, err := common.GetSecretVolumePath(natsEventSource.Auth.NKey)
+ if err != nil {
+ return err
+ }
+ o, err := natslib.NkeyOptionFromSeed(nkeyFile)
+ if err != nil {
+ return errors.Wrap(err, "failed to get NKey")
+ }
+ opt = append(opt, o)
+ case natsEventSource.Auth.Credential != nil:
+ cFile, err := common.GetSecretVolumePath(natsEventSource.Auth.Credential)
+ if err != nil {
+ return err
+ }
+ opt = append(opt, natslib.UserCredentials(cFile))
}
- opt = append(opt, natslib.UserCredentials(cFile))
}
var conn *natslib.Conn
diff --git a/eventsources/sources/nats/validate.go b/eventsources/sources/nats/validate.go
index 68c5e9f7d5..cbccf2a868 100644
--- a/eventsources/sources/nats/validate.go
+++ b/eventsources/sources/nats/validate.go
@@ -44,23 +44,5 @@ func validate(eventSource *v1alpha1.NATSEventsSource) error {
if eventSource.TLS != nil {
return apicommon.ValidateTLSConfig(eventSource.TLS)
}
- switch eventSource.Auth {
- case v1alpha1.NATSAuthBasic:
- if eventSource.Username == nil || eventSource.Password == nil {
- return errors.New("Username and Password secrets must be specified")
- }
- case v1alpha1.NATSAuthToken:
- if eventSource.Token == nil {
- return errors.New("Token secret must be specified")
- }
- case v1alpha1.NATSAuthNKEY:
- if eventSource.NKey == nil {
- return errors.New("NKey secret must be specified")
- }
- case v1alpha1.NATSAuthCredential:
- if eventSource.Credential == nil {
- return errors.New("Credential secret must be specified")
- }
- }
return nil
}
diff --git a/eventsources/sources/nats/validate_test.go b/eventsources/sources/nats/validate_test.go
index 18b8cedd6a..48d4bd87b7 100644
--- a/eventsources/sources/nats/validate_test.go
+++ b/eventsources/sources/nats/validate_test.go
@@ -52,28 +52,3 @@ func TestValidateEventSource(t *testing.T) {
assert.NoError(t, err)
}
}
-
-func TestValidateEventSourceMissingAuthSecret(t *testing.T) {
- listener := &EventListener{}
-
- err := listener.ValidateEventSource(context.Background())
- assert.Error(t, err)
- assert.Equal(t, "url must be specified", err.Error())
-
- content, err := ioutil.ReadFile(fmt.Sprintf("%s/%s", sources.EventSourceDir, "nats.yaml"))
- assert.Nil(t, err)
-
- var eventSource *v1alpha1.EventSource
- err = yaml.Unmarshal(content, &eventSource)
- assert.Nil(t, err)
- assert.NotNil(t, eventSource.Spec.NATS)
-
- for _, value := range eventSource.Spec.NATS {
- value.Auth = v1alpha1.NATSAuthToken
- l := &EventListener{
- NATSEventSource: value,
- }
- err := l.ValidateEventSource(context.Background())
- assert.Equal(t, err.Error(), "Token secret must be specified")
- }
-}
diff --git a/pkg/apis/common/backoff.go b/pkg/apis/common/backoff.go
deleted file mode 100644
index bbb8b57624..0000000000
--- a/pkg/apis/common/backoff.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package common
-
-import (
- "time"
-)
-
-// Backoff for an operation
-type Backoff struct {
- // Duration is the duration in nanoseconds
- Duration time.Duration `json:"duration" protobuf:"varint,1,opt,name=duration,casttype=time.Duration"`
- // Duration is multiplied by factor each iteration
- Factor Amount `json:"factor" protobuf:"bytes,2,opt,name=factor"`
- // The amount of jitter applied each iteration
- Jitter *Amount `json:"jitter,omitempty" protobuf:"bytes,3,opt,name=jitter"`
- // Exit with error after this many steps
- Steps int32 `json:"steps,omitempty" protobuf:"varint,4,opt,name=steps"`
-}
-
-func (b Backoff) GetSteps() int {
- return int(b.Steps)
-}
diff --git a/pkg/apis/common/common.go b/pkg/apis/common/common.go
index f468bf6656..3b48d8401f 100644
--- a/pkg/apis/common/common.go
+++ b/pkg/apis/common/common.go
@@ -16,6 +16,13 @@ limitations under the License.
package common
+import (
+ "errors"
+ "time"
+
+ corev1 "k8s.io/api/core/v1"
+)
+
// EventSourceType is the type of event source supported by the gateway
type EventSourceType string
@@ -77,3 +84,68 @@ type EventBusType string
var (
EventBusNATS EventBusType = "nats"
)
+
+// BasicAuth contains the reference to K8s secrets that holds the username and password
+type BasicAuth struct {
+ // Username refers to the Kubernetes secret that holds the username required for basic auth.
+ Username *corev1.SecretKeySelector `json:"username,omitempty" protobuf:"bytes,1,opt,name=username"`
+ // Password refers to the Kubernetes secret that holds the password required for basic auth.
+ Password *corev1.SecretKeySelector `json:"password,omitempty" protobuf:"bytes,2,opt,name=password"`
+}
+
+// TLSConfig refers to TLS configuration for a client.
+type TLSConfig struct {
+ // CACertSecret refers to the secret that contains the CA cert
+ CACertSecret *corev1.SecretKeySelector `json:"caCertSecret,omitempty" protobuf:"bytes,1,opt,name=caCertSecret"`
+ // ClientCertSecret refers to the secret that contains the client cert
+ ClientCertSecret *corev1.SecretKeySelector `json:"clientCertSecret,omitempty" protobuf:"bytes,2,opt,name=clientCertSecret"`
+ // ClientKeySecret refers to the secret that contains the client key
+ ClientKeySecret *corev1.SecretKeySelector `json:"clientKeySecret,omitempty" protobuf:"bytes,3,opt,name=clientKeySecret"`
+
+ // DeprecatedCACertPath refers the file path that contains the CA cert.
+ // Deprecated: use CACertSecret instead
+ DeprecatedCACertPath string `json:"caCertPath" protobuf:"bytes,4,opt,name=caCertPath"`
+ // DeprecatedClientCertPath refers the file path that contains client cert.
+ // Deprecated: use ClientCertSecret instead
+ DeprecatedClientCertPath string `json:"clientCertPath" protobuf:"bytes,5,opt,name=clientCertPath"`
+ // DeprecatedClientKeyPath refers the file path that contains client key.
+ // Deprecated: use ClientKeySecret instead
+ DeprecatedClientKeyPath string `json:"clientKeyPath" protobuf:"bytes,6,opt,name=clientKeyPath"`
+}
+
+// ValidateTLSConfig validates a TLS configuration.
+func ValidateTLSConfig(tlsConfig *TLSConfig) error {
+ if tlsConfig == nil {
+ return nil
+ }
+ if tlsConfig.ClientKeySecret != nil && tlsConfig.ClientCertSecret != nil && tlsConfig.CACertSecret != nil {
+ return nil
+ }
+ // DEPRECATED.
+ if tlsConfig.DeprecatedClientCertPath != "" && tlsConfig.DeprecatedClientKeyPath != "" && tlsConfig.DeprecatedCACertPath != "" {
+ return nil
+ }
+ return errors.New("invalid tls config, please configure caCertSecret, clientCertSecret and clientKeySecret")
+}
+
+// Backoff for an operation
+type Backoff struct {
+ // Duration is the duration in nanoseconds
+ Duration time.Duration `json:"duration" protobuf:"varint,1,opt,name=duration,casttype=time.Duration"`
+ // Duration is multiplied by factor each iteration
+ Factor Amount `json:"factor" protobuf:"bytes,2,opt,name=factor"`
+ // The amount of jitter applied each iteration
+ Jitter *Amount `json:"jitter,omitempty" protobuf:"bytes,3,opt,name=jitter"`
+ // Exit with error after this many steps
+ Steps int32 `json:"steps,omitempty" protobuf:"varint,4,opt,name=steps"`
+}
+
+func (b Backoff) GetSteps() int {
+ return int(b.Steps)
+}
+
+// Metadata holds the annotations and labels of an event source pod
+type Metadata struct {
+ Annotations map[string]string `json:"annotations,omitempty" protobuf:"bytes,1,rep,name=annotations"`
+ Labels map[string]string `json:"labels,omitempty" protobuf:"bytes,2,rep,name=labels"`
+}
diff --git a/pkg/apis/common/deepcopy_generated.go b/pkg/apis/common/deepcopy_generated.go
index 4f3d1c96e3..d5a4fcf74c 100644
--- a/pkg/apis/common/deepcopy_generated.go
+++ b/pkg/apis/common/deepcopy_generated.go
@@ -67,6 +67,32 @@ func (in *Backoff) DeepCopy() *Backoff {
return out
}
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
+func (in *BasicAuth) DeepCopyInto(out *BasicAuth) {
+ *out = *in
+ if in.Username != nil {
+ in, out := &in.Username, &out.Username
+ *out = new(v1.SecretKeySelector)
+ (*in).DeepCopyInto(*out)
+ }
+ if in.Password != nil {
+ in, out := &in.Password, &out.Password
+ *out = new(v1.SecretKeySelector)
+ (*in).DeepCopyInto(*out)
+ }
+ return
+}
+
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BasicAuth.
+func (in *BasicAuth) DeepCopy() *BasicAuth {
+ if in == nil {
+ return nil
+ }
+ out := new(BasicAuth)
+ in.DeepCopyInto(out)
+ return out
+}
+
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Condition) DeepCopyInto(out *Condition) {
*out = *in
diff --git a/pkg/apis/common/generated.pb.go b/pkg/apis/common/generated.pb.go
index 66c31ec170..fdf5ddb086 100644
--- a/pkg/apis/common/generated.pb.go
+++ b/pkg/apis/common/generated.pb.go
@@ -31,7 +31,7 @@ import (
proto "github.com/gogo/protobuf/proto"
github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys"
k8s_io_api_core_v1 "k8s.io/api/core/v1"
- v11 "k8s.io/api/core/v1"
+ v1 "k8s.io/api/core/v1"
)
// Reference imports to suppress errors if they are not otherwise used.
@@ -102,10 +102,38 @@ func (m *Backoff) XXX_DiscardUnknown() {
var xxx_messageInfo_Backoff proto.InternalMessageInfo
+func (m *BasicAuth) Reset() { *m = BasicAuth{} }
+func (*BasicAuth) ProtoMessage() {}
+func (*BasicAuth) Descriptor() ([]byte, []int) {
+ return fileDescriptor_02aae6165a434fa7, []int{2}
+}
+func (m *BasicAuth) XXX_Unmarshal(b []byte) error {
+ return m.Unmarshal(b)
+}
+func (m *BasicAuth) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ b = b[:cap(b)]
+ n, err := m.MarshalToSizedBuffer(b)
+ if err != nil {
+ return nil, err
+ }
+ return b[:n], nil
+}
+func (m *BasicAuth) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_BasicAuth.Merge(m, src)
+}
+func (m *BasicAuth) XXX_Size() int {
+ return m.Size()
+}
+func (m *BasicAuth) XXX_DiscardUnknown() {
+ xxx_messageInfo_BasicAuth.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_BasicAuth proto.InternalMessageInfo
+
func (m *Condition) Reset() { *m = Condition{} }
func (*Condition) ProtoMessage() {}
func (*Condition) Descriptor() ([]byte, []int) {
- return fileDescriptor_02aae6165a434fa7, []int{2}
+ return fileDescriptor_02aae6165a434fa7, []int{3}
}
func (m *Condition) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -133,7 +161,7 @@ var xxx_messageInfo_Condition proto.InternalMessageInfo
func (m *Metadata) Reset() { *m = Metadata{} }
func (*Metadata) ProtoMessage() {}
func (*Metadata) Descriptor() ([]byte, []int) {
- return fileDescriptor_02aae6165a434fa7, []int{3}
+ return fileDescriptor_02aae6165a434fa7, []int{4}
}
func (m *Metadata) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -161,7 +189,7 @@ var xxx_messageInfo_Metadata proto.InternalMessageInfo
func (m *Resource) Reset() { *m = Resource{} }
func (*Resource) ProtoMessage() {}
func (*Resource) Descriptor() ([]byte, []int) {
- return fileDescriptor_02aae6165a434fa7, []int{4}
+ return fileDescriptor_02aae6165a434fa7, []int{5}
}
func (m *Resource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -189,7 +217,7 @@ var xxx_messageInfo_Resource proto.InternalMessageInfo
func (m *S3Artifact) Reset() { *m = S3Artifact{} }
func (*S3Artifact) ProtoMessage() {}
func (*S3Artifact) Descriptor() ([]byte, []int) {
- return fileDescriptor_02aae6165a434fa7, []int{5}
+ return fileDescriptor_02aae6165a434fa7, []int{6}
}
func (m *S3Artifact) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -217,7 +245,7 @@ var xxx_messageInfo_S3Artifact proto.InternalMessageInfo
func (m *S3Bucket) Reset() { *m = S3Bucket{} }
func (*S3Bucket) ProtoMessage() {}
func (*S3Bucket) Descriptor() ([]byte, []int) {
- return fileDescriptor_02aae6165a434fa7, []int{6}
+ return fileDescriptor_02aae6165a434fa7, []int{7}
}
func (m *S3Bucket) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -245,7 +273,7 @@ var xxx_messageInfo_S3Bucket proto.InternalMessageInfo
func (m *S3Filter) Reset() { *m = S3Filter{} }
func (*S3Filter) ProtoMessage() {}
func (*S3Filter) Descriptor() ([]byte, []int) {
- return fileDescriptor_02aae6165a434fa7, []int{7}
+ return fileDescriptor_02aae6165a434fa7, []int{8}
}
func (m *S3Filter) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -273,7 +301,7 @@ var xxx_messageInfo_S3Filter proto.InternalMessageInfo
func (m *Status) Reset() { *m = Status{} }
func (*Status) ProtoMessage() {}
func (*Status) Descriptor() ([]byte, []int) {
- return fileDescriptor_02aae6165a434fa7, []int{8}
+ return fileDescriptor_02aae6165a434fa7, []int{9}
}
func (m *Status) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -301,7 +329,7 @@ var xxx_messageInfo_Status proto.InternalMessageInfo
func (m *TLSConfig) Reset() { *m = TLSConfig{} }
func (*TLSConfig) ProtoMessage() {}
func (*TLSConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_02aae6165a434fa7, []int{9}
+ return fileDescriptor_02aae6165a434fa7, []int{10}
}
func (m *TLSConfig) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -329,6 +357,7 @@ var xxx_messageInfo_TLSConfig proto.InternalMessageInfo
func init() {
proto.RegisterType((*Amount)(nil), "github.com.argoproj.argo_events.pkg.apis.common.Amount")
proto.RegisterType((*Backoff)(nil), "github.com.argoproj.argo_events.pkg.apis.common.Backoff")
+ proto.RegisterType((*BasicAuth)(nil), "github.com.argoproj.argo_events.pkg.apis.common.BasicAuth")
proto.RegisterType((*Condition)(nil), "github.com.argoproj.argo_events.pkg.apis.common.Condition")
proto.RegisterType((*Metadata)(nil), "github.com.argoproj.argo_events.pkg.apis.common.Metadata")
proto.RegisterMapType((map[string]string)(nil), "github.com.argoproj.argo_events.pkg.apis.common.Metadata.AnnotationsEntry")
@@ -347,78 +376,81 @@ func init() {
}
var fileDescriptor_02aae6165a434fa7 = []byte{
- // 1124 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x96, 0x4b, 0x6f, 0xdb, 0x46,
- 0x10, 0xc7, 0x4d, 0xc9, 0xa2, 0xa5, 0x91, 0x9d, 0x08, 0x9b, 0x00, 0x15, 0x84, 0x46, 0x54, 0x55,
- 0xb4, 0x70, 0xda, 0x84, 0x42, 0x9c, 0x00, 0x4d, 0xd2, 0x17, 0x4c, 0xc5, 0x41, 0x13, 0x3b, 0x45,
- 0xb0, 0x32, 0x7a, 0x48, 0x50, 0x04, 0x6b, 0x6a, 0x45, 0x33, 0x12, 0x1f, 0x20, 0x57, 0x6e, 0x74,
- 0x6b, 0x2f, 0x3d, 0xf7, 0x7b, 0xf4, 0x8b, 0xf8, 0xe8, 0x5b, 0x73, 0x12, 0x6a, 0xf6, 0x4b, 0x14,
- 0x39, 0x15, 0xfb, 0xe0, 0x43, 0x8a, 0x81, 0x56, 0xee, 0x6d, 0x35, 0x3b, 0xf3, 0xfb, 0x0f, 0x67,
- 0x67, 0x76, 0x05, 0xdf, 0x3a, 0x2e, 0x3b, 0x9e, 0x1e, 0x99, 0x76, 0xe0, 0xf5, 0x48, 0xe4, 0x04,
- 0x61, 0x14, 0xbc, 0x16, 0x8b, 0xdb, 0xf4, 0x84, 0xfa, 0x2c, 0xee, 0x85, 0x63, 0xa7, 0x47, 0x42,
- 0x37, 0xee, 0xd9, 0x81, 0xe7, 0x05, 0x7e, 0xcf, 0xa1, 0x3e, 0x8d, 0x08, 0xa3, 0x43, 0x33, 0x8c,
- 0x02, 0x16, 0xa0, 0x5e, 0x0e, 0x30, 0x53, 0x80, 0x58, 0xbc, 0x92, 0x00, 0x33, 0x1c, 0x3b, 0x26,
- 0x07, 0x98, 0x12, 0xd0, 0xba, 0x5d, 0x50, 0x74, 0x02, 0x27, 0xe8, 0x09, 0xce, 0xd1, 0x74, 0x24,
- 0x7e, 0x89, 0x1f, 0x62, 0x25, 0xf9, 0xad, 0xee, 0xf8, 0x7e, 0x6c, 0xba, 0x01, 0xcf, 0xa1, 0x67,
- 0x07, 0x11, 0xed, 0x9d, 0xdc, 0x59, 0xce, 0xa1, 0x75, 0x2f, 0xf7, 0xf1, 0x88, 0x7d, 0xec, 0xfa,
- 0x34, 0x9a, 0xe5, 0x89, 0x7b, 0x94, 0x91, 0x0b, 0xa2, 0xba, 0x37, 0x41, 0xdf, 0xf5, 0x82, 0xa9,
- 0xcf, 0x90, 0x01, 0x95, 0x13, 0x32, 0x99, 0xd2, 0xa6, 0xd6, 0xd1, 0xb6, 0x37, 0xad, 0x5a, 0x32,
- 0x37, 0x2a, 0x3f, 0x70, 0x03, 0x96, 0xf6, 0xee, 0xef, 0x25, 0xd8, 0xb0, 0x88, 0x3d, 0x0e, 0x46,
- 0x23, 0xf4, 0x35, 0x54, 0x87, 0xd3, 0x88, 0x30, 0x37, 0xf0, 0x85, 0x7f, 0xd9, 0xfa, 0xe8, 0x74,
- 0x6e, 0xac, 0x25, 0x73, 0xa3, 0xfa, 0x48, 0xd9, 0xdf, 0xcd, 0x8d, 0x2d, 0xe6, 0x7a, 0xd4, 0x4c,
- 0x0d, 0x38, 0x0b, 0x41, 0xaf, 0x40, 0x1f, 0x11, 0x9b, 0x05, 0x51, 0xb3, 0xd4, 0xd1, 0xb6, 0xeb,
- 0x3b, 0x5f, 0x98, 0x2b, 0x16, 0xd0, 0x94, 0x49, 0x5b, 0x57, 0x94, 0xaa, 0xfe, 0x58, 0xe0, 0xb0,
- 0xc2, 0xa2, 0x97, 0xa0, 0xbf, 0x76, 0x19, 0xa3, 0x51, 0xb3, 0xfc, 0xff, 0x04, 0x80, 0xc3, 0x9f,
- 0x0a, 0x14, 0x56, 0x48, 0xf4, 0x31, 0x54, 0x62, 0x46, 0xc3, 0xb8, 0xb9, 0xde, 0xd1, 0xb6, 0x2b,
- 0xd6, 0x96, 0xca, 0xa1, 0x32, 0xe0, 0x46, 0x2c, 0xf7, 0xba, 0x7f, 0x94, 0xa0, 0xd6, 0x0f, 0xfc,
- 0xa1, 0x2b, 0x3e, 0xf8, 0x0e, 0xac, 0xb3, 0x59, 0x28, 0x6b, 0x5b, 0xb3, 0x6e, 0xa8, 0x88, 0xf5,
- 0xc3, 0x59, 0x48, 0x79, 0x9d, 0x32, 0x47, 0x6e, 0xc0, 0xc2, 0x15, 0x1d, 0x80, 0x1e, 0x33, 0xc2,
- 0xa6, 0xb1, 0xa8, 0x51, 0xcd, 0xba, 0x97, 0x7e, 0xea, 0x40, 0x58, 0xdf, 0xcd, 0x8d, 0x0b, 0xba,
- 0xc2, 0xcc, 0x48, 0xd2, 0x0b, 0x2b, 0x06, 0x3a, 0x01, 0x34, 0x21, 0x31, 0x3b, 0x8c, 0x88, 0x1f,
- 0x4b, 0x25, 0xd7, 0xa3, 0xaa, 0x38, 0x9f, 0x99, 0x12, 0x64, 0x16, 0x5b, 0x27, 0x2f, 0x08, 0x6f,
- 0x1d, 0xf3, 0xe4, 0x8e, 0xc9, 0x23, 0xac, 0x96, 0xca, 0x02, 0x1d, 0xbc, 0x47, 0xc3, 0x17, 0x28,
- 0xa0, 0x4f, 0x41, 0x8f, 0x28, 0x89, 0x03, 0x5f, 0x14, 0xab, 0x96, 0x1f, 0x18, 0x16, 0x56, 0xac,
- 0x76, 0xd1, 0x4d, 0xd8, 0xf0, 0x68, 0x1c, 0x13, 0x87, 0x36, 0x2b, 0xc2, 0xf1, 0xaa, 0x72, 0xdc,
- 0x78, 0x26, 0xcd, 0x38, 0xdd, 0xef, 0xfe, 0x5d, 0x82, 0xea, 0x33, 0xca, 0xc8, 0x90, 0x30, 0x82,
- 0x7e, 0xd1, 0xa0, 0x4e, 0x7c, 0x3f, 0x60, 0xa2, 0xb1, 0xe2, 0xa6, 0xd6, 0x29, 0x6f, 0xd7, 0x77,
- 0x9e, 0xae, 0x7c, 0xdc, 0x29, 0xd0, 0xdc, 0xcd, 0x61, 0x7b, 0x3e, 0x8b, 0x66, 0xd6, 0x35, 0x95,
- 0x48, 0xbd, 0xb0, 0x83, 0x8b, 0x9a, 0xc8, 0x03, 0x7d, 0x42, 0x8e, 0xe8, 0x84, 0x9f, 0x14, 0x57,
- 0xdf, 0xbb, 0xbc, 0xfa, 0x81, 0xe0, 0x48, 0xe1, 0xac, 0x54, 0xd2, 0x88, 0x95, 0x48, 0xeb, 0x1b,
- 0x68, 0x2c, 0x27, 0x89, 0x1a, 0x50, 0x1e, 0xd3, 0x99, 0x6c, 0x2f, 0xcc, 0x97, 0xe8, 0x7a, 0x3a,
- 0xce, 0xa2, 0x7b, 0xd4, 0x0c, 0x3f, 0x2c, 0xdd, 0xd7, 0x5a, 0x0f, 0xa0, 0x5e, 0x90, 0x59, 0x25,
- 0xb4, 0xfb, 0x39, 0x54, 0x31, 0x8d, 0x83, 0x69, 0x64, 0xd3, 0x7f, 0xbf, 0x2f, 0xce, 0x2a, 0x00,
- 0x83, 0xbb, 0xbb, 0x11, 0x73, 0xf9, 0x50, 0xa2, 0x5b, 0x50, 0xa5, 0xfe, 0x30, 0x0c, 0x5c, 0x9f,
- 0xa9, 0x31, 0x68, 0xa4, 0x57, 0xc6, 0x9e, 0xb2, 0xe3, 0xcc, 0x03, 0xfd, 0x08, 0xfa, 0xd1, 0xd4,
- 0x1e, 0x53, 0xa6, 0x6e, 0x88, 0x07, 0x2b, 0xd7, 0x74, 0x70, 0xd7, 0x12, 0x00, 0x39, 0xc2, 0x72,
- 0x8d, 0x15, 0x54, 0xb6, 0xa5, 0xc3, 0x6f, 0xaf, 0xf2, 0x72, 0x5b, 0x72, 0x2b, 0x56, 0xbb, 0x3c,
- 0x69, 0xd7, 0x8f, 0xa9, 0x3d, 0x8d, 0xa8, 0x68, 0xe0, 0x6a, 0x9e, 0xf4, 0x13, 0x65, 0xc7, 0x99,
- 0x07, 0xc2, 0x50, 0x23, 0xb6, 0x4d, 0xe3, 0x78, 0x9f, 0xce, 0x44, 0x1b, 0xd7, 0x77, 0x3e, 0x29,
- 0xcc, 0x96, 0xc9, 0x87, 0x94, 0x4f, 0xd2, 0x80, 0xda, 0x11, 0x65, 0xfb, 0x74, 0x36, 0xa0, 0x13,
- 0xca, 0xef, 0x2b, 0x6b, 0x2b, 0x99, 0x1b, 0xb5, 0xdd, 0x34, 0x16, 0xe7, 0x18, 0xce, 0x8c, 0x53,
- 0xf7, 0xa6, 0xbe, 0x32, 0x33, 0x33, 0xe3, 0x1c, 0x83, 0xba, 0xa0, 0xcb, 0xa2, 0x35, 0x37, 0x3a,
- 0xe5, 0xed, 0x9a, 0xac, 0xd0, 0x9e, 0xb0, 0x60, 0xb5, 0xc3, 0x0f, 0x60, 0xe4, 0x4e, 0xf8, 0x0d,
- 0x5a, 0xbd, 0xf4, 0x01, 0x3c, 0x16, 0x00, 0x89, 0x97, 0x6b, 0xac, 0xa0, 0xe8, 0x27, 0xa8, 0x7a,
- 0xaa, 0xe9, 0x9b, 0x35, 0x31, 0x35, 0x4f, 0x2e, 0x21, 0x90, 0x36, 0x57, 0x36, 0x40, 0x72, 0x72,
- 0xb2, 0x33, 0x4a, 0xcd, 0x38, 0x13, 0x6b, 0x7d, 0x09, 0x5b, 0x0b, 0xce, 0x2b, 0xf5, 0xff, 0x3e,
- 0x54, 0xd3, 0xb6, 0x42, 0x37, 0x0a, 0x71, 0x56, 0x5d, 0x29, 0x96, 0x79, 0xa5, 0x05, 0xa4, 0x03,
- 0xeb, 0x3e, 0xf1, 0x14, 0xc3, 0xda, 0x4c, 0x6f, 0xfc, 0xef, 0x89, 0x47, 0xb1, 0xd8, 0xe9, 0xbe,
- 0xe0, 0x30, 0x59, 0x16, 0xde, 0x8f, 0x61, 0x44, 0x47, 0xee, 0x1b, 0xc5, 0xcb, 0xfa, 0xf1, 0xb9,
- 0xb0, 0x62, 0xb5, 0xcb, 0xfd, 0xe2, 0xe9, 0x88, 0xfb, 0x95, 0x16, 0xfd, 0x06, 0xc2, 0x8a, 0xd5,
- 0x6e, 0xf7, 0x0d, 0xa8, 0x67, 0x02, 0xf9, 0x00, 0x76, 0xfa, 0x26, 0xa4, 0xd7, 0xe3, 0xc3, 0x95,
- 0x4b, 0x9d, 0x3d, 0x2b, 0x16, 0x52, 0x8a, 0x90, 0x99, 0x62, 0x5c, 0x50, 0xe8, 0xfe, 0xba, 0x0e,
- 0xb5, 0xc3, 0x83, 0x41, 0x3f, 0xf0, 0x47, 0xae, 0x83, 0x5e, 0xc2, 0xa6, 0x4d, 0xfa, 0x34, 0x62,
- 0xb2, 0x0f, 0xc5, 0xd7, 0xfd, 0xe7, 0x06, 0x6e, 0x24, 0x73, 0x63, 0xb3, 0xbf, 0x9b, 0x87, 0xe3,
- 0x05, 0x18, 0x72, 0xa0, 0x61, 0x4f, 0x5c, 0xea, 0xb3, 0x82, 0x40, 0x69, 0x15, 0x81, 0xeb, 0xc9,
- 0xdc, 0x68, 0xf4, 0x97, 0x10, 0xf8, 0x3d, 0x28, 0x1a, 0xc2, 0x55, 0x69, 0x13, 0xc1, 0x42, 0xa7,
- 0xbc, 0x8a, 0xce, 0xb5, 0x64, 0x6e, 0x5c, 0xed, 0x2f, 0x12, 0xf0, 0x32, 0x12, 0x7d, 0x05, 0x20,
- 0x3f, 0xef, 0x39, 0x61, 0xc7, 0xea, 0xb9, 0xfc, 0x50, 0x55, 0xfb, 0xfa, 0x23, 0x1a, 0x46, 0xd4,
- 0xe6, 0x7f, 0xdc, 0x64, 0x41, 0xb8, 0x0f, 0x2e, 0xf8, 0xa3, 0xef, 0xe0, 0x4a, 0x9e, 0xb7, 0x20,
- 0xc8, 0x77, 0xb4, 0xa3, 0x08, 0xcd, 0x02, 0x61, 0xc1, 0x0f, 0x2f, 0xc5, 0xa1, 0x3d, 0xd8, 0xca,
- 0x52, 0x13, 0x20, 0x5d, 0x80, 0x0c, 0x05, 0xfa, 0x60, 0x19, 0xa4, 0xdc, 0xf0, 0x62, 0x94, 0x75,
- 0xeb, 0xf4, 0xbc, 0xbd, 0x76, 0x76, 0xde, 0x5e, 0x7b, 0x7b, 0xde, 0x5e, 0xfb, 0x39, 0x69, 0x6b,
- 0xa7, 0x49, 0x5b, 0x3b, 0x4b, 0xda, 0xda, 0xdb, 0xa4, 0xad, 0xfd, 0x99, 0xb4, 0xb5, 0xdf, 0xfe,
- 0x6a, 0xaf, 0xbd, 0xd0, 0x65, 0x83, 0xfd, 0x13, 0x00, 0x00, 0xff, 0xff, 0x61, 0x28, 0x33, 0x6b,
- 0x83, 0x0b, 0x00, 0x00,
+ // 1174 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x96, 0xdd, 0x6f, 0x1b, 0x45,
+ 0x10, 0xc0, 0x73, 0x76, 0x7c, 0xb1, 0xc7, 0x49, 0x63, 0x6d, 0x23, 0x61, 0x59, 0xd4, 0x36, 0x46,
+ 0xa0, 0x14, 0xda, 0xb3, 0x92, 0x56, 0xa2, 0x2d, 0x5f, 0xf2, 0xb9, 0xa9, 0x68, 0x93, 0x42, 0xb4,
+ 0x0e, 0x3c, 0xb4, 0x42, 0xd5, 0xe6, 0xbc, 0x76, 0xae, 0xf6, 0x7d, 0xe8, 0x76, 0x2f, 0xad, 0xdf,
+ 0xe0, 0x85, 0x67, 0xfe, 0x0f, 0xc4, 0xff, 0x91, 0xc7, 0xbc, 0xd1, 0x27, 0x8b, 0x98, 0x7f, 0x02,
+ 0xf5, 0x09, 0xed, 0xc7, 0x9d, 0x3f, 0x1a, 0x09, 0x1c, 0xde, 0xd6, 0xb3, 0x33, 0xbf, 0x99, 0x9b,
+ 0x99, 0x9d, 0x31, 0x7c, 0xdd, 0x77, 0xf9, 0x49, 0x7c, 0x6c, 0x39, 0x81, 0xd7, 0x24, 0x51, 0x3f,
+ 0x08, 0xa3, 0xe0, 0xa5, 0x3c, 0xdc, 0xa6, 0xa7, 0xd4, 0xe7, 0xac, 0x19, 0x0e, 0xfa, 0x4d, 0x12,
+ 0xba, 0xac, 0xe9, 0x04, 0x9e, 0x17, 0xf8, 0xcd, 0x3e, 0xf5, 0x69, 0x44, 0x38, 0xed, 0x5a, 0x61,
+ 0x14, 0xf0, 0x00, 0x35, 0xa7, 0x00, 0x2b, 0x01, 0xc8, 0xc3, 0x0b, 0x05, 0xb0, 0xc2, 0x41, 0xdf,
+ 0x12, 0x00, 0x4b, 0x01, 0x2a, 0xb7, 0x67, 0x3c, 0xf6, 0x83, 0x7e, 0xd0, 0x94, 0x9c, 0xe3, 0xb8,
+ 0x27, 0x7f, 0xc9, 0x1f, 0xf2, 0xa4, 0xf8, 0x95, 0xc6, 0xe0, 0x1e, 0xb3, 0xdc, 0x40, 0xc4, 0xd0,
+ 0x74, 0x82, 0x88, 0x36, 0x4f, 0x77, 0x16, 0x63, 0xa8, 0xdc, 0x9d, 0xea, 0x78, 0xc4, 0x39, 0x71,
+ 0x7d, 0x1a, 0x8d, 0xa6, 0x81, 0x7b, 0x94, 0x93, 0x4b, 0xac, 0x1a, 0x37, 0xc1, 0x6c, 0x79, 0x41,
+ 0xec, 0x73, 0x54, 0x83, 0xdc, 0x29, 0x19, 0xc6, 0xb4, 0x6c, 0xd4, 0x8d, 0xed, 0x75, 0xbb, 0x30,
+ 0x19, 0xd7, 0x72, 0x3f, 0x08, 0x01, 0x56, 0xf2, 0xc6, 0x6f, 0x19, 0x58, 0xb3, 0x89, 0x33, 0x08,
+ 0x7a, 0x3d, 0xf4, 0x25, 0xe4, 0xbb, 0x71, 0x44, 0xb8, 0x1b, 0xf8, 0x52, 0x3f, 0x6b, 0x7f, 0x70,
+ 0x36, 0xae, 0xad, 0x4c, 0xc6, 0xb5, 0xfc, 0x43, 0x2d, 0x7f, 0x3b, 0xae, 0x6d, 0x70, 0xd7, 0xa3,
+ 0x56, 0x22, 0xc0, 0xa9, 0x09, 0x7a, 0x01, 0x66, 0x8f, 0x38, 0x3c, 0x88, 0xca, 0x99, 0xba, 0xb1,
+ 0x5d, 0xdc, 0xfd, 0xcc, 0x5a, 0x32, 0x81, 0x96, 0x0a, 0xda, 0xbe, 0xa6, 0xbd, 0x9a, 0x8f, 0x24,
+ 0x0e, 0x6b, 0x2c, 0x7a, 0x0e, 0xe6, 0x4b, 0x97, 0x73, 0x1a, 0x95, 0xb3, 0xff, 0xcf, 0x01, 0x08,
+ 0xf8, 0x13, 0x89, 0xc2, 0x1a, 0x89, 0x3e, 0x84, 0x1c, 0xe3, 0x34, 0x64, 0xe5, 0xd5, 0xba, 0xb1,
+ 0x9d, 0xb3, 0x37, 0x74, 0x0c, 0xb9, 0x8e, 0x10, 0x62, 0x75, 0xd7, 0xf8, 0xdd, 0x80, 0x82, 0x4d,
+ 0x98, 0xeb, 0xb4, 0x62, 0x7e, 0x82, 0xbe, 0x83, 0x7c, 0xcc, 0x68, 0xe4, 0x13, 0x4f, 0xe5, 0xb7,
+ 0xb8, 0xfb, 0x91, 0xa5, 0xea, 0x25, 0x9c, 0x5a, 0xa2, 0xa6, 0xd6, 0xe9, 0x8e, 0xd5, 0xa1, 0x4e,
+ 0x44, 0xf9, 0x3e, 0x1d, 0x75, 0xe8, 0x90, 0x8a, 0x0f, 0xb1, 0xd7, 0x45, 0x4a, 0xbf, 0xd7, 0xa6,
+ 0x38, 0x85, 0x08, 0x60, 0x48, 0x18, 0x7b, 0x15, 0x44, 0x5d, 0x9d, 0xc3, 0x65, 0x80, 0x87, 0xda,
+ 0x14, 0xa7, 0x90, 0xc6, 0x1f, 0x19, 0x28, 0xb4, 0x03, 0xbf, 0xeb, 0xca, 0x02, 0xed, 0xc0, 0x2a,
+ 0x1f, 0x85, 0x2a, 0xd6, 0x82, 0x7d, 0x43, 0x7f, 0xe1, 0xea, 0xd1, 0x28, 0xa4, 0xa2, 0xae, 0xa9,
+ 0xa2, 0x10, 0x60, 0xa9, 0x8a, 0x0e, 0xc0, 0x64, 0x9c, 0xf0, 0x98, 0xc9, 0x78, 0x0a, 0xf6, 0xdd,
+ 0xa4, 0x34, 0x1d, 0x29, 0x7d, 0x3b, 0xae, 0x5d, 0xd2, 0xc5, 0x56, 0x4a, 0x52, 0x5a, 0x58, 0x33,
+ 0xd0, 0x29, 0xa0, 0x21, 0x61, 0xfc, 0x28, 0x22, 0x3e, 0x53, 0x9e, 0x5c, 0x8f, 0xea, 0x62, 0x7e,
+ 0x32, 0xf3, 0xa5, 0x69, 0xab, 0x4f, 0x0b, 0x28, 0x5a, 0x5d, 0x7c, 0xbb, 0xb0, 0xb0, 0x2b, 0x3a,
+ 0x0a, 0x74, 0xf0, 0x0e, 0x0d, 0x5f, 0xe2, 0x01, 0x7d, 0x0c, 0x66, 0x44, 0x09, 0x0b, 0x7c, 0x59,
+ 0xdc, 0xc2, 0xb4, 0xc1, 0xb0, 0x94, 0x62, 0x7d, 0x8b, 0x6e, 0xc2, 0x9a, 0x47, 0x19, 0x23, 0x7d,
+ 0x5a, 0xce, 0x49, 0xc5, 0x4d, 0xad, 0xb8, 0xf6, 0x54, 0x89, 0x71, 0x72, 0xdf, 0xf8, 0x3b, 0x03,
+ 0xf9, 0xa7, 0x94, 0x93, 0x2e, 0xe1, 0x04, 0xfd, 0x6c, 0x40, 0x91, 0xf8, 0x7e, 0xc0, 0xe5, 0x43,
+ 0x60, 0x65, 0xa3, 0x9e, 0xdd, 0x2e, 0xee, 0x3e, 0x59, 0xba, 0x3d, 0x13, 0xa0, 0xd5, 0x9a, 0xc2,
+ 0xf6, 0x7c, 0x1e, 0x8d, 0xec, 0xeb, 0x3a, 0x90, 0xe2, 0xcc, 0x0d, 0x9e, 0xf5, 0x89, 0x3c, 0x30,
+ 0x87, 0xe4, 0x98, 0x0e, 0x45, 0xa5, 0x84, 0xf7, 0xbd, 0xab, 0x7b, 0x3f, 0x90, 0x1c, 0xe5, 0x38,
+ 0x4d, 0x95, 0x12, 0x62, 0xed, 0xa4, 0xf2, 0x15, 0x94, 0x16, 0x83, 0x44, 0x25, 0xc8, 0x0e, 0xe8,
+ 0x48, 0xb5, 0x17, 0x16, 0x47, 0xb4, 0x95, 0x8c, 0x1f, 0xd9, 0x3d, 0x7a, 0xe6, 0x3c, 0xc8, 0xdc,
+ 0x33, 0x2a, 0xf7, 0xa1, 0x38, 0xe3, 0x66, 0x19, 0xd3, 0xc6, 0xa7, 0x90, 0xc7, 0x94, 0x05, 0x71,
+ 0xe4, 0xd0, 0x7f, 0x9f, 0x6f, 0xe7, 0x39, 0x80, 0xce, 0x9d, 0x56, 0xc4, 0x5d, 0x31, 0x44, 0xd0,
+ 0x2d, 0xc8, 0x53, 0xbf, 0x1b, 0x06, 0xae, 0xcf, 0xf5, 0x33, 0x28, 0x25, 0x23, 0x6e, 0x4f, 0xcb,
+ 0x71, 0xaa, 0x81, 0x7e, 0x04, 0xf3, 0x38, 0x76, 0x06, 0x94, 0xeb, 0xd7, 0x78, 0x7f, 0xe9, 0x9c,
+ 0x76, 0xee, 0xd8, 0x12, 0xa0, 0x46, 0x8e, 0x3a, 0x63, 0x0d, 0x55, 0x6d, 0xd9, 0x17, 0xd3, 0x36,
+ 0xbb, 0xd8, 0x96, 0x42, 0x8a, 0xf5, 0xad, 0x08, 0xda, 0xf5, 0x19, 0x75, 0xe2, 0x88, 0xca, 0x06,
+ 0xce, 0x4f, 0x83, 0x7e, 0xac, 0xe5, 0x38, 0xd5, 0x40, 0x18, 0x0a, 0xc4, 0x71, 0x28, 0x63, 0xfb,
+ 0x74, 0x24, 0xdb, 0xf8, 0x3f, 0x4f, 0x91, 0x8d, 0xc9, 0xb8, 0x56, 0x68, 0x25, 0xb6, 0x78, 0x8a,
+ 0x11, 0x4c, 0x96, 0xa8, 0x97, 0xcd, 0xa5, 0x99, 0xa9, 0x18, 0x4f, 0x31, 0xa8, 0x01, 0xa6, 0x4a,
+ 0x5a, 0x79, 0xad, 0x9e, 0xdd, 0x2e, 0xa8, 0x0c, 0xed, 0x49, 0x09, 0xd6, 0x37, 0xa2, 0x00, 0x3d,
+ 0x77, 0x28, 0x26, 0x7e, 0xfe, 0xca, 0x05, 0x78, 0x24, 0x01, 0x0a, 0xaf, 0xce, 0x58, 0x43, 0xd1,
+ 0x2b, 0xc8, 0x7b, 0xba, 0xe9, 0xcb, 0x05, 0xf9, 0x6a, 0x1e, 0x5f, 0xc1, 0x41, 0xd2, 0x5c, 0xe9,
+ 0x03, 0x52, 0x2f, 0x27, 0xad, 0x51, 0x22, 0xc6, 0xa9, 0xb3, 0xca, 0xe7, 0xb0, 0x31, 0xa7, 0xbc,
+ 0x54, 0xff, 0xef, 0x43, 0x3e, 0x69, 0x2b, 0x74, 0x63, 0xc6, 0xce, 0x2e, 0x6a, 0x8f, 0x59, 0x91,
+ 0x69, 0x09, 0xa9, 0xc3, 0xaa, 0xdc, 0x4e, 0x6a, 0x78, 0xaf, 0x27, 0x13, 0xff, 0x5b, 0xb1, 0x76,
+ 0xe4, 0x4d, 0xe3, 0x99, 0x80, 0xa9, 0xb4, 0x88, 0x7e, 0x0c, 0x23, 0xda, 0x73, 0x5f, 0x6b, 0x5e,
+ 0xda, 0x8f, 0x87, 0x52, 0x8a, 0xf5, 0xad, 0xd0, 0x63, 0x71, 0x4f, 0xe8, 0x65, 0xe6, 0xf5, 0x3a,
+ 0x52, 0x8a, 0xf5, 0x6d, 0xe3, 0x35, 0xe8, 0x35, 0x81, 0x7c, 0x00, 0x27, 0xd9, 0x09, 0xc9, 0x78,
+ 0x7c, 0xb0, 0x74, 0xaa, 0xd3, 0xb5, 0x62, 0x23, 0xed, 0x11, 0x52, 0x11, 0xc3, 0x33, 0x1e, 0x1a,
+ 0xbf, 0xac, 0x42, 0xe1, 0xe8, 0xa0, 0xd3, 0x0e, 0xfc, 0x9e, 0xdb, 0x47, 0xcf, 0x61, 0xdd, 0x21,
+ 0x6d, 0x1a, 0x71, 0xd5, 0x87, 0xcb, 0xed, 0xea, 0xd2, 0x64, 0x5c, 0x5b, 0x6f, 0xb7, 0xa6, 0xe6,
+ 0x78, 0x0e, 0x86, 0xfa, 0x50, 0x72, 0x86, 0x2e, 0xf5, 0xf9, 0x8c, 0x83, 0xa5, 0x76, 0xf7, 0xd6,
+ 0x64, 0x5c, 0x2b, 0xb5, 0x17, 0x10, 0xf8, 0x1d, 0x28, 0xea, 0xc2, 0xa6, 0x92, 0x49, 0x63, 0xe9,
+ 0x27, 0xbb, 0x8c, 0x9f, 0xeb, 0x93, 0x71, 0x6d, 0xb3, 0x3d, 0x4f, 0xc0, 0x8b, 0x48, 0xf4, 0x05,
+ 0x80, 0xfa, 0xbc, 0x43, 0xc2, 0x4f, 0xf4, 0xba, 0x7c, 0x5f, 0x67, 0x7b, 0xeb, 0x21, 0x0d, 0x23,
+ 0xea, 0x88, 0x3f, 0x9a, 0x2a, 0x21, 0x42, 0x07, 0xcf, 0xe8, 0xa3, 0x6f, 0xe0, 0xda, 0x34, 0x6e,
+ 0x49, 0x50, 0x7b, 0xb4, 0xae, 0x09, 0xe5, 0x19, 0xc2, 0x9c, 0x1e, 0x5e, 0xb0, 0x43, 0x7b, 0xb0,
+ 0x91, 0x86, 0x26, 0x41, 0xa6, 0x04, 0xd5, 0x34, 0xe8, 0xbd, 0x45, 0x90, 0x56, 0xc3, 0xf3, 0x56,
+ 0xf6, 0xad, 0xb3, 0x8b, 0xea, 0xca, 0xf9, 0x45, 0x75, 0xe5, 0xcd, 0x45, 0x75, 0xe5, 0xa7, 0x49,
+ 0xd5, 0x38, 0x9b, 0x54, 0x8d, 0xf3, 0x49, 0xd5, 0x78, 0x33, 0xa9, 0x1a, 0x7f, 0x4e, 0xaa, 0xc6,
+ 0xaf, 0x7f, 0x55, 0x57, 0x9e, 0x99, 0xaa, 0xc1, 0xfe, 0x09, 0x00, 0x00, 0xff, 0xff, 0xc1, 0x6c,
+ 0xf6, 0xcc, 0x33, 0x0c, 0x00, 0x00,
}
func (m *Amount) Marshal() (dAtA []byte, err error) {
@@ -502,6 +534,53 @@ func (m *Backoff) MarshalToSizedBuffer(dAtA []byte) (int, error) {
return len(dAtA) - i, nil
}
+func (m *BasicAuth) Marshal() (dAtA []byte, err error) {
+ size := m.Size()
+ dAtA = make([]byte, size)
+ n, err := m.MarshalToSizedBuffer(dAtA[:size])
+ if err != nil {
+ return nil, err
+ }
+ return dAtA[:n], nil
+}
+
+func (m *BasicAuth) MarshalTo(dAtA []byte) (int, error) {
+ size := m.Size()
+ return m.MarshalToSizedBuffer(dAtA[:size])
+}
+
+func (m *BasicAuth) MarshalToSizedBuffer(dAtA []byte) (int, error) {
+ i := len(dAtA)
+ _ = i
+ var l int
+ _ = l
+ if m.Password != nil {
+ {
+ size, err := m.Password.MarshalToSizedBuffer(dAtA[:i])
+ if err != nil {
+ return 0, err
+ }
+ i -= size
+ i = encodeVarintGenerated(dAtA, i, uint64(size))
+ }
+ i--
+ dAtA[i] = 0x12
+ }
+ if m.Username != nil {
+ {
+ size, err := m.Username.MarshalToSizedBuffer(dAtA[:i])
+ if err != nil {
+ return 0, err
+ }
+ i -= size
+ i = encodeVarintGenerated(dAtA, i, uint64(size))
+ }
+ i--
+ dAtA[i] = 0xa
+ }
+ return len(dAtA) - i, nil
+}
+
func (m *Condition) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
@@ -996,6 +1075,23 @@ func (m *Backoff) Size() (n int) {
return n
}
+func (m *BasicAuth) Size() (n int) {
+ if m == nil {
+ return 0
+ }
+ var l int
+ _ = l
+ if m.Username != nil {
+ l = m.Username.Size()
+ n += 1 + l + sovGenerated(uint64(l))
+ }
+ if m.Password != nil {
+ l = m.Password.Size()
+ n += 1 + l + sovGenerated(uint64(l))
+ }
+ return n
+}
+
func (m *Condition) Size() (n int) {
if m == nil {
return 0
@@ -1194,6 +1290,17 @@ func (this *Backoff) String() string {
}, "")
return s
}
+func (this *BasicAuth) String() string {
+ if this == nil {
+ return "nil"
+ }
+ s := strings.Join([]string{`&BasicAuth{`,
+ `Username:` + strings.Replace(fmt.Sprintf("%v", this.Username), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
+ `Password:` + strings.Replace(fmt.Sprintf("%v", this.Password), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
+ `}`,
+ }, "")
+ return s
+}
func (this *Condition) String() string {
if this == nil {
return "nil"
@@ -1201,7 +1308,7 @@ func (this *Condition) String() string {
s := strings.Join([]string{`&Condition{`,
`Type:` + fmt.Sprintf("%v", this.Type) + `,`,
`Status:` + fmt.Sprintf("%v", this.Status) + `,`,
- `LastTransitionTime:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.LastTransitionTime), "Time", "v1.Time", 1), `&`, ``, 1) + `,`,
+ `LastTransitionTime:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.LastTransitionTime), "Time", "v11.Time", 1), `&`, ``, 1) + `,`,
`Reason:` + fmt.Sprintf("%v", this.Reason) + `,`,
`Message:` + fmt.Sprintf("%v", this.Message) + `,`,
`}`,
@@ -1268,8 +1375,8 @@ func (this *S3Artifact) String() string {
`Bucket:` + strings.Replace(this.Bucket.String(), "S3Bucket", "S3Bucket", 1) + `,`,
`Region:` + fmt.Sprintf("%v", this.Region) + `,`,
`Insecure:` + fmt.Sprintf("%v", this.Insecure) + `,`,
- `AccessKey:` + strings.Replace(fmt.Sprintf("%v", this.AccessKey), "SecretKeySelector", "v11.SecretKeySelector", 1) + `,`,
- `SecretKey:` + strings.Replace(fmt.Sprintf("%v", this.SecretKey), "SecretKeySelector", "v11.SecretKeySelector", 1) + `,`,
+ `AccessKey:` + strings.Replace(fmt.Sprintf("%v", this.AccessKey), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
+ `SecretKey:` + strings.Replace(fmt.Sprintf("%v", this.SecretKey), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
`Events:` + fmt.Sprintf("%v", this.Events) + `,`,
`Filter:` + strings.Replace(this.Filter.String(), "S3Filter", "S3Filter", 1) + `,`,
`Metadata:` + mapStringForMetadata + `,`,
@@ -1319,9 +1426,9 @@ func (this *TLSConfig) String() string {
return "nil"
}
s := strings.Join([]string{`&TLSConfig{`,
- `CACertSecret:` + strings.Replace(fmt.Sprintf("%v", this.CACertSecret), "SecretKeySelector", "v11.SecretKeySelector", 1) + `,`,
- `ClientCertSecret:` + strings.Replace(fmt.Sprintf("%v", this.ClientCertSecret), "SecretKeySelector", "v11.SecretKeySelector", 1) + `,`,
- `ClientKeySecret:` + strings.Replace(fmt.Sprintf("%v", this.ClientKeySecret), "SecretKeySelector", "v11.SecretKeySelector", 1) + `,`,
+ `CACertSecret:` + strings.Replace(fmt.Sprintf("%v", this.CACertSecret), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
+ `ClientCertSecret:` + strings.Replace(fmt.Sprintf("%v", this.ClientCertSecret), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
+ `ClientKeySecret:` + strings.Replace(fmt.Sprintf("%v", this.ClientKeySecret), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
`DeprecatedCACertPath:` + fmt.Sprintf("%v", this.DeprecatedCACertPath) + `,`,
`DeprecatedClientCertPath:` + fmt.Sprintf("%v", this.DeprecatedClientCertPath) + `,`,
`DeprecatedClientKeyPath:` + fmt.Sprintf("%v", this.DeprecatedClientKeyPath) + `,`,
@@ -1584,6 +1691,131 @@ func (m *Backoff) Unmarshal(dAtA []byte) error {
}
return nil
}
+func (m *BasicAuth) Unmarshal(dAtA []byte) error {
+ l := len(dAtA)
+ iNdEx := 0
+ for iNdEx < l {
+ preIndex := iNdEx
+ var wire uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ wire |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ fieldNum := int32(wire >> 3)
+ wireType := int(wire & 0x7)
+ if wireType == 4 {
+ return fmt.Errorf("proto: BasicAuth: wiretype end group for non-group")
+ }
+ if fieldNum <= 0 {
+ return fmt.Errorf("proto: BasicAuth: illegal tag %d (wire type %d)", fieldNum, wire)
+ }
+ switch fieldNum {
+ case 1:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Username", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ if msglen < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ if m.Username == nil {
+ m.Username = &v1.SecretKeySelector{}
+ }
+ if err := m.Username.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ return err
+ }
+ iNdEx = postIndex
+ case 2:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Password", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ if msglen < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ if m.Password == nil {
+ m.Password = &v1.SecretKeySelector{}
+ }
+ if err := m.Password.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ return err
+ }
+ iNdEx = postIndex
+ default:
+ iNdEx = preIndex
+ skippy, err := skipGenerated(dAtA[iNdEx:])
+ if err != nil {
+ return err
+ }
+ if skippy < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ if (iNdEx + skippy) < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ if (iNdEx + skippy) > l {
+ return io.ErrUnexpectedEOF
+ }
+ iNdEx += skippy
+ }
+ }
+
+ if iNdEx > l {
+ return io.ErrUnexpectedEOF
+ }
+ return nil
+}
func (m *Condition) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
@@ -2371,7 +2603,7 @@ func (m *S3Artifact) Unmarshal(dAtA []byte) error {
return io.ErrUnexpectedEOF
}
if m.AccessKey == nil {
- m.AccessKey = &v11.SecretKeySelector{}
+ m.AccessKey = &v1.SecretKeySelector{}
}
if err := m.AccessKey.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
@@ -2407,7 +2639,7 @@ func (m *S3Artifact) Unmarshal(dAtA []byte) error {
return io.ErrUnexpectedEOF
}
if m.SecretKey == nil {
- m.SecretKey = &v11.SecretKeySelector{}
+ m.SecretKey = &v1.SecretKeySelector{}
}
if err := m.SecretKey.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
@@ -3012,7 +3244,7 @@ func (m *TLSConfig) Unmarshal(dAtA []byte) error {
return io.ErrUnexpectedEOF
}
if m.CACertSecret == nil {
- m.CACertSecret = &v11.SecretKeySelector{}
+ m.CACertSecret = &v1.SecretKeySelector{}
}
if err := m.CACertSecret.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
@@ -3048,7 +3280,7 @@ func (m *TLSConfig) Unmarshal(dAtA []byte) error {
return io.ErrUnexpectedEOF
}
if m.ClientCertSecret == nil {
- m.ClientCertSecret = &v11.SecretKeySelector{}
+ m.ClientCertSecret = &v1.SecretKeySelector{}
}
if err := m.ClientCertSecret.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
@@ -3084,7 +3316,7 @@ func (m *TLSConfig) Unmarshal(dAtA []byte) error {
return io.ErrUnexpectedEOF
}
if m.ClientKeySecret == nil {
- m.ClientKeySecret = &v11.SecretKeySelector{}
+ m.ClientKeySecret = &v1.SecretKeySelector{}
}
if err := m.ClientKeySecret.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
diff --git a/pkg/apis/common/generated.proto b/pkg/apis/common/generated.proto
index 7f4b9a1e83..89e114c419 100644
--- a/pkg/apis/common/generated.proto
+++ b/pkg/apis/common/generated.proto
@@ -46,6 +46,15 @@ message Backoff {
optional int32 steps = 4;
}
+// BasicAuth contains the reference to K8s secrets that holds the username and password
+message BasicAuth {
+ // Username refers to the Kubernetes secret that holds the username required for basic auth.
+ optional k8s.io.api.core.v1.SecretKeySelector username = 1;
+
+ // Password refers to the Kubernetes secret that holds the password required for basic auth.
+ optional k8s.io.api.core.v1.SecretKeySelector password = 2;
+}
+
// Condition contains details about resource state
message Condition {
// Condition type.
diff --git a/pkg/apis/common/metadata.go b/pkg/apis/common/metadata.go
deleted file mode 100644
index cc5040db3c..0000000000
--- a/pkg/apis/common/metadata.go
+++ /dev/null
@@ -1,7 +0,0 @@
-package common
-
-// Metadata holds the annotations and labels of an event source pod
-type Metadata struct {
- Annotations map[string]string `json:"annotations,omitempty" protobuf:"bytes,1,rep,name=annotations"`
- Labels map[string]string `json:"labels,omitempty" protobuf:"bytes,2,rep,name=labels"`
-}
diff --git a/pkg/apis/common/openapi_generated.go b/pkg/apis/common/openapi_generated.go
index 95f2895385..1ce78f3dd8 100644
--- a/pkg/apis/common/openapi_generated.go
+++ b/pkg/apis/common/openapi_generated.go
@@ -31,6 +31,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA
return map[string]common.OpenAPIDefinition{
"github.com/argoproj/argo-events/pkg/apis/common.Amount": schema_argo_events_pkg_apis_common_Amount(ref),
"github.com/argoproj/argo-events/pkg/apis/common.Backoff": schema_argo_events_pkg_apis_common_Backoff(ref),
+ "github.com/argoproj/argo-events/pkg/apis/common.BasicAuth": schema_argo_events_pkg_apis_common_BasicAuth(ref),
"github.com/argoproj/argo-events/pkg/apis/common.Condition": schema_argo_events_pkg_apis_common_Condition(ref),
"github.com/argoproj/argo-events/pkg/apis/common.Metadata": schema_argo_events_pkg_apis_common_Metadata(ref),
"github.com/argoproj/argo-events/pkg/apis/common.Resource": schema_argo_events_pkg_apis_common_Resource(ref),
@@ -96,6 +97,33 @@ func schema_argo_events_pkg_apis_common_Backoff(ref common.ReferenceCallback) co
}
}
+func schema_argo_events_pkg_apis_common_BasicAuth(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "BasicAuth contains the reference to K8s secrets that holds the username and password",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "username": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Username refers to the Kubernetes secret that holds the username required for basic auth.",
+ Ref: ref("k8s.io/api/core/v1.SecretKeySelector"),
+ },
+ },
+ "password": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Password refers to the Kubernetes secret that holds the password required for basic auth.",
+ Ref: ref("k8s.io/api/core/v1.SecretKeySelector"),
+ },
+ },
+ },
+ },
+ },
+ Dependencies: []string{
+ "k8s.io/api/core/v1.SecretKeySelector"},
+ }
+}
+
func schema_argo_events_pkg_apis_common_Condition(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
diff --git a/pkg/apis/common/tlsconfig.go b/pkg/apis/common/tlsconfig.go
deleted file mode 100644
index 7754e1e76c..0000000000
--- a/pkg/apis/common/tlsconfig.go
+++ /dev/null
@@ -1,23 +0,0 @@
-package common
-
-import corev1 "k8s.io/api/core/v1"
-
-// TLSConfig refers to TLS configuration for a client.
-type TLSConfig struct {
- // CACertSecret refers to the secret that contains the CA cert
- CACertSecret *corev1.SecretKeySelector `json:"caCertSecret,omitempty" protobuf:"bytes,1,opt,name=caCertSecret"`
- // ClientCertSecret refers to the secret that contains the client cert
- ClientCertSecret *corev1.SecretKeySelector `json:"clientCertSecret,omitempty" protobuf:"bytes,2,opt,name=clientCertSecret"`
- // ClientKeySecret refers to the secret that contains the client key
- ClientKeySecret *corev1.SecretKeySelector `json:"clientKeySecret,omitempty" protobuf:"bytes,3,opt,name=clientKeySecret"`
-
- // DeprecatedCACertPath refers the file path that contains the CA cert.
- // Deprecated: use CACertSecret instead
- DeprecatedCACertPath string `json:"caCertPath" protobuf:"bytes,4,opt,name=caCertPath"`
- // DeprecatedClientCertPath refers the file path that contains client cert.
- // Deprecated: use ClientCertSecret instead
- DeprecatedClientCertPath string `json:"clientCertPath" protobuf:"bytes,5,opt,name=clientCertPath"`
- // DeprecatedClientKeyPath refers the file path that contains client key.
- // Deprecated: use ClientKeySecret instead
- DeprecatedClientKeyPath string `json:"clientKeyPath" protobuf:"bytes,6,opt,name=clientKeyPath"`
-}
diff --git a/pkg/apis/common/validate.go b/pkg/apis/common/validate.go
deleted file mode 100644
index e09db6049c..0000000000
--- a/pkg/apis/common/validate.go
+++ /dev/null
@@ -1,18 +0,0 @@
-package common
-
-import "errors"
-
-// ValidateTLSConfig validates a TLS configuration.
-func ValidateTLSConfig(tlsConfig *TLSConfig) error {
- if tlsConfig == nil {
- return nil
- }
- if tlsConfig.ClientKeySecret != nil && tlsConfig.ClientCertSecret != nil && tlsConfig.CACertSecret != nil {
- return nil
- }
- // DEPRECATED.
- if tlsConfig.DeprecatedClientCertPath != "" && tlsConfig.DeprecatedClientKeyPath != "" && tlsConfig.DeprecatedCACertPath != "" {
- return nil
- }
- return errors.New("invalid tls config, please configure caCertSecret, clientCertSecret and clientKeySecret")
-}
diff --git a/pkg/apis/eventsource/v1alpha1/generated.pb.go b/pkg/apis/eventsource/v1alpha1/generated.pb.go
index f9574a0f83..776ccef476 100644
--- a/pkg/apis/eventsource/v1alpha1/generated.pb.go
+++ b/pkg/apis/eventsource/v1alpha1/generated.pb.go
@@ -690,10 +690,38 @@ func (m *MQTTEventSource) XXX_DiscardUnknown() {
var xxx_messageInfo_MQTTEventSource proto.InternalMessageInfo
+func (m *NATSAuth) Reset() { *m = NATSAuth{} }
+func (*NATSAuth) ProtoMessage() {}
+func (*NATSAuth) Descriptor() ([]byte, []int) {
+ return fileDescriptor_c9ac5d6cd016403b, []int{23}
+}
+func (m *NATSAuth) XXX_Unmarshal(b []byte) error {
+ return m.Unmarshal(b)
+}
+func (m *NATSAuth) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ b = b[:cap(b)]
+ n, err := m.MarshalToSizedBuffer(b)
+ if err != nil {
+ return nil, err
+ }
+ return b[:n], nil
+}
+func (m *NATSAuth) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_NATSAuth.Merge(m, src)
+}
+func (m *NATSAuth) XXX_Size() int {
+ return m.Size()
+}
+func (m *NATSAuth) XXX_DiscardUnknown() {
+ xxx_messageInfo_NATSAuth.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_NATSAuth proto.InternalMessageInfo
+
func (m *NATSEventsSource) Reset() { *m = NATSEventsSource{} }
func (*NATSEventsSource) ProtoMessage() {}
func (*NATSEventsSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{23}
+ return fileDescriptor_c9ac5d6cd016403b, []int{24}
}
func (m *NATSEventsSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -721,7 +749,7 @@ var xxx_messageInfo_NATSEventsSource proto.InternalMessageInfo
func (m *NSQEventSource) Reset() { *m = NSQEventSource{} }
func (*NSQEventSource) ProtoMessage() {}
func (*NSQEventSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{24}
+ return fileDescriptor_c9ac5d6cd016403b, []int{25}
}
func (m *NSQEventSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -749,7 +777,7 @@ var xxx_messageInfo_NSQEventSource proto.InternalMessageInfo
func (m *PubSubEventSource) Reset() { *m = PubSubEventSource{} }
func (*PubSubEventSource) ProtoMessage() {}
func (*PubSubEventSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{25}
+ return fileDescriptor_c9ac5d6cd016403b, []int{26}
}
func (m *PubSubEventSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -777,7 +805,7 @@ var xxx_messageInfo_PubSubEventSource proto.InternalMessageInfo
func (m *PulsarEventSource) Reset() { *m = PulsarEventSource{} }
func (*PulsarEventSource) ProtoMessage() {}
func (*PulsarEventSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{26}
+ return fileDescriptor_c9ac5d6cd016403b, []int{27}
}
func (m *PulsarEventSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -805,7 +833,7 @@ var xxx_messageInfo_PulsarEventSource proto.InternalMessageInfo
func (m *RedisEventSource) Reset() { *m = RedisEventSource{} }
func (*RedisEventSource) ProtoMessage() {}
func (*RedisEventSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{27}
+ return fileDescriptor_c9ac5d6cd016403b, []int{28}
}
func (m *RedisEventSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -833,7 +861,7 @@ var xxx_messageInfo_RedisEventSource proto.InternalMessageInfo
func (m *ResourceEventSource) Reset() { *m = ResourceEventSource{} }
func (*ResourceEventSource) ProtoMessage() {}
func (*ResourceEventSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{28}
+ return fileDescriptor_c9ac5d6cd016403b, []int{29}
}
func (m *ResourceEventSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -861,7 +889,7 @@ var xxx_messageInfo_ResourceEventSource proto.InternalMessageInfo
func (m *ResourceFilter) Reset() { *m = ResourceFilter{} }
func (*ResourceFilter) ProtoMessage() {}
func (*ResourceFilter) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{29}
+ return fileDescriptor_c9ac5d6cd016403b, []int{30}
}
func (m *ResourceFilter) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -889,7 +917,7 @@ var xxx_messageInfo_ResourceFilter proto.InternalMessageInfo
func (m *SNSEventSource) Reset() { *m = SNSEventSource{} }
func (*SNSEventSource) ProtoMessage() {}
func (*SNSEventSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{30}
+ return fileDescriptor_c9ac5d6cd016403b, []int{31}
}
func (m *SNSEventSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -917,7 +945,7 @@ var xxx_messageInfo_SNSEventSource proto.InternalMessageInfo
func (m *SQSEventSource) Reset() { *m = SQSEventSource{} }
func (*SQSEventSource) ProtoMessage() {}
func (*SQSEventSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{31}
+ return fileDescriptor_c9ac5d6cd016403b, []int{32}
}
func (m *SQSEventSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -945,7 +973,7 @@ var xxx_messageInfo_SQSEventSource proto.InternalMessageInfo
func (m *Selector) Reset() { *m = Selector{} }
func (*Selector) ProtoMessage() {}
func (*Selector) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{32}
+ return fileDescriptor_c9ac5d6cd016403b, []int{33}
}
func (m *Selector) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -973,7 +1001,7 @@ var xxx_messageInfo_Selector proto.InternalMessageInfo
func (m *Service) Reset() { *m = Service{} }
func (*Service) ProtoMessage() {}
func (*Service) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{33}
+ return fileDescriptor_c9ac5d6cd016403b, []int{34}
}
func (m *Service) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1001,7 +1029,7 @@ var xxx_messageInfo_Service proto.InternalMessageInfo
func (m *SlackEventSource) Reset() { *m = SlackEventSource{} }
func (*SlackEventSource) ProtoMessage() {}
func (*SlackEventSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{34}
+ return fileDescriptor_c9ac5d6cd016403b, []int{35}
}
func (m *SlackEventSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1029,7 +1057,7 @@ var xxx_messageInfo_SlackEventSource proto.InternalMessageInfo
func (m *StorageGridEventSource) Reset() { *m = StorageGridEventSource{} }
func (*StorageGridEventSource) ProtoMessage() {}
func (*StorageGridEventSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{35}
+ return fileDescriptor_c9ac5d6cd016403b, []int{36}
}
func (m *StorageGridEventSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1057,7 +1085,7 @@ var xxx_messageInfo_StorageGridEventSource proto.InternalMessageInfo
func (m *StorageGridFilter) Reset() { *m = StorageGridFilter{} }
func (*StorageGridFilter) ProtoMessage() {}
func (*StorageGridFilter) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{36}
+ return fileDescriptor_c9ac5d6cd016403b, []int{37}
}
func (m *StorageGridFilter) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1085,7 +1113,7 @@ var xxx_messageInfo_StorageGridFilter proto.InternalMessageInfo
func (m *StripeEventSource) Reset() { *m = StripeEventSource{} }
func (*StripeEventSource) ProtoMessage() {}
func (*StripeEventSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{37}
+ return fileDescriptor_c9ac5d6cd016403b, []int{38}
}
func (m *StripeEventSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1113,7 +1141,7 @@ var xxx_messageInfo_StripeEventSource proto.InternalMessageInfo
func (m *Template) Reset() { *m = Template{} }
func (*Template) ProtoMessage() {}
func (*Template) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{38}
+ return fileDescriptor_c9ac5d6cd016403b, []int{39}
}
func (m *Template) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1141,7 +1169,7 @@ var xxx_messageInfo_Template proto.InternalMessageInfo
func (m *WatchPathConfig) Reset() { *m = WatchPathConfig{} }
func (*WatchPathConfig) ProtoMessage() {}
func (*WatchPathConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{39}
+ return fileDescriptor_c9ac5d6cd016403b, []int{40}
}
func (m *WatchPathConfig) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1169,7 +1197,7 @@ var xxx_messageInfo_WatchPathConfig proto.InternalMessageInfo
func (m *WebhookContext) Reset() { *m = WebhookContext{} }
func (*WebhookContext) ProtoMessage() {}
func (*WebhookContext) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9ac5d6cd016403b, []int{40}
+ return fileDescriptor_c9ac5d6cd016403b, []int{41}
}
func (m *WebhookContext) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1253,6 +1281,7 @@ func init() {
proto.RegisterMapType((map[string]string)(nil), "github.com.argoproj.argo_events.pkg.apis.eventsource.v1alpha1.KafkaEventSource.MetadataEntry")
proto.RegisterType((*MQTTEventSource)(nil), "github.com.argoproj.argo_events.pkg.apis.eventsource.v1alpha1.MQTTEventSource")
proto.RegisterMapType((map[string]string)(nil), "github.com.argoproj.argo_events.pkg.apis.eventsource.v1alpha1.MQTTEventSource.MetadataEntry")
+ proto.RegisterType((*NATSAuth)(nil), "github.com.argoproj.argo_events.pkg.apis.eventsource.v1alpha1.NATSAuth")
proto.RegisterType((*NATSEventsSource)(nil), "github.com.argoproj.argo_events.pkg.apis.eventsource.v1alpha1.NATSEventsSource")
proto.RegisterMapType((map[string]string)(nil), "github.com.argoproj.argo_events.pkg.apis.eventsource.v1alpha1.NATSEventsSource.MetadataEntry")
proto.RegisterType((*NSQEventSource)(nil), "github.com.argoproj.argo_events.pkg.apis.eventsource.v1alpha1.NSQEventSource")
@@ -1291,351 +1320,352 @@ func init() {
}
var fileDescriptor_c9ac5d6cd016403b = []byte{
- // 5491 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3d, 0x4b, 0x6c, 0x23, 0x47,
- 0x76, 0xa6, 0x48, 0x51, 0xe4, 0xd3, 0xbf, 0x66, 0x6c, 0xd3, 0xda, 0xf5, 0xcc, 0x44, 0xc6, 0x0e,
- 0x3c, 0x59, 0xaf, 0x14, 0x4f, 0xb2, 0x89, 0x63, 0x63, 0xbd, 0x10, 0x25, 0x8d, 0x46, 0xd6, 0x67,
- 0xa4, 0x47, 0x69, 0xc6, 0x5e, 0xff, 0xb6, 0xd9, 0x2c, 0x92, 0x6d, 0x35, 0xbb, 0xa9, 0xee, 0xa6,
- 0x66, 0x64, 0x20, 0xbb, 0x46, 0x80, 0x7c, 0x76, 0x1d, 0x27, 0x6b, 0x64, 0xf3, 0x41, 0xf6, 0x96,
- 0xcb, 0x02, 0xc9, 0x31, 0x40, 0xee, 0xb9, 0x19, 0xc8, 0xc5, 0xb9, 0x2d, 0xb0, 0xc0, 0xc4, 0x56,
- 0x82, 0xdc, 0x72, 0x49, 0x2e, 0x89, 0x83, 0x00, 0x41, 0x7d, 0xba, 0xba, 0xba, 0xd9, 0xd2, 0x88,
- 0x43, 0x52, 0x73, 0xc9, 0x69, 0xc4, 0xf7, 0x5e, 0xbd, 0xf7, 0xba, 0xfb, 0x7d, 0xea, 0x55, 0xbd,
- 0xaa, 0x81, 0xad, 0x86, 0x15, 0x34, 0x3b, 0xd5, 0x05, 0xd3, 0x6d, 0x2d, 0x1a, 0x5e, 0xc3, 0x6d,
- 0x7b, 0xee, 0x07, 0xfc, 0x8f, 0x6f, 0xd1, 0x23, 0xea, 0x04, 0xfe, 0x62, 0xfb, 0xa0, 0xb1, 0x68,
- 0xb4, 0x2d, 0x7f, 0x51, 0xfc, 0x76, 0x3b, 0x9e, 0x49, 0x17, 0x8f, 0x5e, 0x36, 0xec, 0x76, 0xd3,
- 0x78, 0x79, 0xb1, 0x41, 0x1d, 0xea, 0x19, 0x01, 0xad, 0x2d, 0xb4, 0x3d, 0x37, 0x70, 0xc9, 0x77,
- 0x22, 0x76, 0x0b, 0x21, 0x3b, 0xfe, 0xc7, 0xfb, 0x62, 0xf8, 0x42, 0xfb, 0xa0, 0xb1, 0xc0, 0xd8,
- 0x2d, 0x68, 0xec, 0x16, 0x42, 0x76, 0x73, 0xdf, 0x3d, 0xb7, 0x36, 0xa6, 0xdb, 0x6a, 0xb9, 0x4e,
- 0x52, 0xfe, 0xdc, 0xb7, 0x34, 0x06, 0x0d, 0xb7, 0xe1, 0x2e, 0x72, 0x70, 0xb5, 0x53, 0xe7, 0xbf,
- 0xf8, 0x0f, 0xfe, 0x97, 0x24, 0x9f, 0x3f, 0x78, 0xc5, 0x5f, 0xb0, 0x5c, 0xc6, 0x72, 0xd1, 0x74,
- 0x3d, 0xf6, 0x60, 0x5d, 0x2c, 0x7f, 0x23, 0xa2, 0x69, 0x19, 0x66, 0xd3, 0x72, 0xa8, 0x77, 0x1c,
- 0xe9, 0xd1, 0xa2, 0x81, 0x91, 0x36, 0x6a, 0xf1, 0xb4, 0x51, 0x5e, 0xc7, 0x09, 0xac, 0x16, 0xed,
- 0x1a, 0xf0, 0x9b, 0x8f, 0x1a, 0xe0, 0x9b, 0x4d, 0xda, 0x32, 0x92, 0xe3, 0xe6, 0xff, 0x3b, 0x03,
- 0xb3, 0x4b, 0x5b, 0xbb, 0x3b, 0xcb, 0xae, 0xe3, 0x77, 0x5a, 0x74, 0xd9, 0x75, 0xea, 0x56, 0x83,
- 0x7c, 0x1b, 0xc6, 0x4d, 0x01, 0xf0, 0xf6, 0x8c, 0x46, 0x29, 0x73, 0x2d, 0xf3, 0x62, 0xb1, 0x7c,
- 0xe9, 0xb3, 0x87, 0x57, 0x9f, 0x3a, 0x79, 0x78, 0x75, 0x7c, 0x39, 0x42, 0xa1, 0x4e, 0x47, 0x6e,
- 0xc0, 0x98, 0xd1, 0x09, 0xdc, 0x25, 0xf3, 0xa0, 0x34, 0x72, 0x2d, 0xf3, 0x62, 0xa1, 0x3c, 0x2d,
- 0x87, 0x8c, 0x2d, 0x09, 0x30, 0x86, 0x78, 0xb2, 0x08, 0x45, 0xfa, 0xc0, 0xb4, 0x3b, 0xbe, 0x75,
- 0x44, 0x4b, 0x59, 0x4e, 0x3c, 0x2b, 0x89, 0x8b, 0xab, 0x21, 0x02, 0x23, 0x1a, 0xc6, 0xdb, 0x71,
- 0x37, 0x5d, 0xd3, 0xb0, 0x4b, 0xb9, 0x38, 0xef, 0x6d, 0x01, 0xc6, 0x10, 0x4f, 0xae, 0x43, 0xde,
- 0x71, 0xef, 0x19, 0x56, 0x50, 0x1a, 0xe5, 0x94, 0x53, 0x92, 0x32, 0xbf, 0xcd, 0xa1, 0x28, 0xb1,
- 0xf3, 0x9f, 0x15, 0x61, 0x9a, 0x3d, 0xfb, 0x2a, 0x33, 0x8e, 0x0a, 0xb7, 0x25, 0xf2, 0x3c, 0x64,
- 0x3b, 0x9e, 0x2d, 0x9f, 0x78, 0x5c, 0x0e, 0xcc, 0xee, 0xe3, 0x26, 0x32, 0x38, 0x79, 0x05, 0x26,
- 0xe8, 0x03, 0xb3, 0x69, 0x38, 0x0d, 0xba, 0x6d, 0xb4, 0x28, 0x7f, 0xcc, 0x62, 0xf9, 0xb2, 0xa4,
- 0x9b, 0x58, 0xd5, 0x70, 0x18, 0xa3, 0xd4, 0x47, 0xee, 0x1d, 0xb7, 0xc5, 0x33, 0xa7, 0x8c, 0x64,
- 0x38, 0x8c, 0x51, 0x92, 0x9b, 0x00, 0x9e, 0xdb, 0x09, 0x2c, 0xa7, 0xb1, 0x41, 0x8f, 0xf9, 0xc3,
- 0x17, 0xcb, 0x44, 0x8e, 0x03, 0x54, 0x18, 0xd4, 0xa8, 0xc8, 0xef, 0xc0, 0xac, 0xe9, 0x3a, 0x0e,
- 0x35, 0x03, 0xcb, 0x75, 0xca, 0x86, 0x79, 0xe0, 0xd6, 0xeb, 0xfc, 0x6d, 0x8c, 0xdf, 0x7c, 0x65,
- 0xe1, 0xdc, 0x4e, 0x26, 0xbc, 0x64, 0x41, 0x8e, 0x2f, 0x3f, 0x7d, 0xf2, 0xf0, 0xea, 0xec, 0x72,
- 0x92, 0x2d, 0x76, 0x4b, 0x22, 0x2f, 0x41, 0xe1, 0x03, 0xdf, 0x75, 0xca, 0x6e, 0xed, 0xb8, 0x94,
- 0xe7, 0xdf, 0x60, 0x46, 0x2a, 0x5c, 0x78, 0xa3, 0x72, 0x67, 0x9b, 0xc1, 0x51, 0x51, 0x90, 0x7d,
- 0xc8, 0x06, 0xb6, 0x5f, 0x1a, 0xe3, 0xea, 0xbd, 0xda, 0xb3, 0x7a, 0x7b, 0x9b, 0x15, 0x61, 0xb6,
- 0xe5, 0x31, 0xf6, 0xad, 0xf6, 0x36, 0x2b, 0xc8, 0xf8, 0x91, 0x1f, 0x67, 0xa0, 0xc0, 0xfc, 0xab,
- 0x66, 0x04, 0x46, 0xa9, 0x70, 0x2d, 0xfb, 0xe2, 0xf8, 0xcd, 0x77, 0x16, 0xfa, 0x0a, 0x30, 0x0b,
- 0x09, 0x6b, 0x59, 0xd8, 0x92, 0xec, 0x57, 0x9d, 0xc0, 0x3b, 0x8e, 0x9e, 0x31, 0x04, 0xa3, 0x92,
- 0x4f, 0xfe, 0x22, 0x03, 0xd3, 0xe1, 0x57, 0x5d, 0xa1, 0xa6, 0x6d, 0x78, 0xb4, 0x54, 0xe4, 0x0f,
- 0xfc, 0xe6, 0x20, 0x74, 0x8a, 0x73, 0x96, 0xaf, 0xe3, 0xd2, 0xc9, 0xc3, 0xab, 0xd3, 0x09, 0x14,
- 0x26, 0xb5, 0x20, 0x1f, 0x67, 0x60, 0xe2, 0xb0, 0x43, 0x3b, 0x4a, 0x2d, 0xe0, 0x6a, 0xed, 0x0f,
- 0x40, 0xad, 0x5d, 0x8d, 0xad, 0xd4, 0x69, 0x86, 0x19, 0xbb, 0x0e, 0xc7, 0x98, 0x70, 0xf2, 0x43,
- 0x28, 0xf2, 0xdf, 0x65, 0xcb, 0xa9, 0x95, 0xc6, 0xb9, 0x26, 0x38, 0x28, 0x4d, 0x18, 0x4f, 0xa9,
- 0xc6, 0x24, 0x8b, 0x33, 0x0a, 0x88, 0x91, 0x4c, 0x72, 0x1f, 0xc6, 0x64, 0x48, 0x2b, 0x4d, 0x70,
- 0xf1, 0x3b, 0x03, 0x10, 0x1f, 0x8b, 0xae, 0xe5, 0x71, 0x16, 0xb5, 0x24, 0x08, 0x43, 0x69, 0x73,
- 0xaf, 0xc1, 0x64, 0xcc, 0x9c, 0xc8, 0x0c, 0x64, 0x0f, 0xe8, 0xb1, 0x08, 0x45, 0xc8, 0xfe, 0x24,
- 0x97, 0x61, 0xf4, 0xc8, 0xb0, 0x3b, 0x32, 0xec, 0xa0, 0xf8, 0xf1, 0xea, 0xc8, 0x2b, 0x99, 0xf9,
- 0xcf, 0x33, 0xf0, 0xdc, 0xa9, 0x86, 0xc0, 0x62, 0x67, 0xad, 0xe3, 0x19, 0x55, 0x9b, 0x72, 0x6e,
- 0x5a, 0xec, 0x5c, 0x11, 0x60, 0x0c, 0xf1, 0x2c, 0xd8, 0xb0, 0x10, 0xbd, 0x42, 0x6d, 0x1a, 0x50,
- 0x19, 0xc5, 0x55, 0xb0, 0x59, 0x52, 0x18, 0xd4, 0xa8, 0x98, 0xb7, 0x5b, 0x4e, 0x40, 0x3d, 0xc7,
- 0xb0, 0x65, 0x28, 0x57, 0x9e, 0xb0, 0x2e, 0xe1, 0xa8, 0x28, 0xb4, 0xe8, 0x9c, 0x3b, 0x33, 0x3a,
- 0x7f, 0x07, 0x2e, 0xa5, 0x7c, 0x39, 0x6d, 0x78, 0xe6, 0xcc, 0xe1, 0xff, 0x91, 0x81, 0x67, 0xd2,
- 0x6d, 0x90, 0x5c, 0x83, 0x9c, 0xc3, 0x82, 0xb7, 0x08, 0xf2, 0x13, 0x92, 0x41, 0x8e, 0x07, 0x6d,
- 0x8e, 0xd1, 0x5f, 0xd8, 0x48, 0x4f, 0x2f, 0x2c, 0x7b, 0xae, 0x17, 0x16, 0x4b, 0x7e, 0xb9, 0x73,
- 0x24, 0xbf, 0xf3, 0x66, 0xb4, 0x9f, 0xe6, 0xe0, 0xb9, 0xa5, 0x0f, 0x3b, 0x1e, 0xe5, 0x41, 0xca,
- 0xbf, 0xdd, 0xa9, 0xea, 0xb9, 0xed, 0x1a, 0xe4, 0xea, 0x87, 0x35, 0x27, 0xf9, 0xdc, 0xb7, 0x76,
- 0x57, 0xb6, 0x91, 0x63, 0x48, 0x1b, 0x2e, 0xf9, 0x4d, 0xc3, 0xa3, 0xb5, 0x25, 0xd3, 0xa4, 0xbe,
- 0xbf, 0x41, 0x8f, 0x55, 0x96, 0x1b, 0xbf, 0xf9, 0x8d, 0x05, 0x31, 0xc7, 0x60, 0xb6, 0xbe, 0xc0,
- 0xa6, 0x3b, 0x0b, 0x47, 0x2f, 0x2f, 0x54, 0xa8, 0xe9, 0xd1, 0x60, 0x83, 0x1e, 0x57, 0xa8, 0x4d,
- 0xcd, 0xc0, 0xf5, 0xca, 0xcf, 0x9e, 0x3c, 0xbc, 0x7a, 0xa9, 0xd2, 0xcd, 0x05, 0xd3, 0x58, 0x93,
- 0x1a, 0x4c, 0x27, 0xc0, 0xfc, 0x1d, 0x9e, 0x5b, 0x1a, 0x8f, 0x71, 0x09, 0x69, 0x98, 0x64, 0xc9,
- 0xbe, 0x67, 0xb3, 0x53, 0xe5, 0xcf, 0x22, 0xf2, 0xa7, 0xfa, 0x9e, 0xb7, 0x05, 0x18, 0x43, 0x3c,
- 0xf9, 0xa9, 0x9e, 0x35, 0x46, 0x79, 0xd6, 0xa8, 0xf7, 0x1b, 0x01, 0x4e, 0xfb, 0x22, 0xe7, 0xcf,
- 0x1f, 0xfd, 0x45, 0x87, 0xff, 0xcd, 0xc1, 0xa5, 0x65, 0xc3, 0xa6, 0x4e, 0xcd, 0xf0, 0x74, 0x83,
- 0x78, 0x09, 0x0a, 0x6c, 0x5a, 0x58, 0xeb, 0xd8, 0xa1, 0x33, 0x28, 0x15, 0x2a, 0x12, 0x8e, 0x8a,
- 0x42, 0xb9, 0xf9, 0x91, 0x61, 0xcb, 0x79, 0x4f, 0xdc, 0xcd, 0x8f, 0x94, 0x9b, 0x1f, 0x19, 0x36,
- 0x79, 0x15, 0xa6, 0xa4, 0xfd, 0xba, 0xce, 0x8a, 0x11, 0x50, 0xbf, 0x94, 0xbd, 0x96, 0x65, 0x33,
- 0x97, 0x93, 0x87, 0x57, 0xa7, 0x56, 0x63, 0x18, 0x4c, 0x50, 0x32, 0x49, 0x6c, 0xce, 0xfa, 0xa1,
- 0xeb, 0x84, 0xdf, 0x4b, 0x49, 0xda, 0x93, 0x70, 0x54, 0x14, 0x64, 0x0b, 0xc6, 0x3b, 0x3e, 0xf5,
- 0x76, 0x8c, 0x63, 0xdb, 0x35, 0x6a, 0xdc, 0x43, 0x26, 0xca, 0xdf, 0x64, 0x13, 0xd5, 0xfd, 0x08,
- 0xfc, 0xd5, 0xc3, 0xab, 0x25, 0xea, 0x98, 0x6e, 0xcd, 0x72, 0x1a, 0x8b, 0x6c, 0xe6, 0xb1, 0x80,
- 0xc6, 0xfd, 0x2d, 0xea, 0xfb, 0x46, 0x83, 0xa2, 0x3e, 0x9e, 0xfc, 0xb1, 0x6e, 0x00, 0x79, 0x6e,
- 0x00, 0xdf, 0xef, 0xd3, 0x00, 0x52, 0xde, 0x7d, 0x0f, 0x53, 0x87, 0xdf, 0xcd, 0xc0, 0x78, 0x9b,
- 0x7a, 0xbe, 0xe5, 0x07, 0xd4, 0x31, 0xa9, 0x9c, 0x27, 0xdd, 0xe9, 0x53, 0x27, 0xae, 0xcb, 0x4e,
- 0xc4, 0xb6, 0x3c, 0xcd, 0xde, 0x98, 0x06, 0x40, 0x5d, 0x68, 0x7f, 0xf6, 0xf7, 0x00, 0x2e, 0x2f,
- 0x1b, 0x81, 0xd9, 0xec, 0xb4, 0x45, 0x04, 0xee, 0x78, 0x06, 0x9b, 0x2d, 0x32, 0xb7, 0xa4, 0x0e,
- 0x8b, 0xa2, 0xb5, 0x64, 0x5e, 0x5a, 0x15, 0x60, 0x0c, 0xf1, 0xac, 0x22, 0x69, 0x19, 0x0f, 0x56,
- 0xe4, 0x48, 0x69, 0x7f, 0xaa, 0x22, 0xd9, 0x8a, 0x50, 0xa8, 0xd3, 0xcd, 0xff, 0x00, 0x2e, 0x0b,
- 0x91, 0x5b, 0x46, 0x5b, 0x7b, 0xb6, 0x73, 0xa4, 0x80, 0x15, 0x98, 0x31, 0x3d, 0x6a, 0x04, 0x74,
- 0xbd, 0xbe, 0xed, 0x06, 0xab, 0x0f, 0x2c, 0x3f, 0x90, 0xb9, 0xa0, 0x24, 0xa9, 0x67, 0x96, 0x13,
- 0x78, 0xec, 0x1a, 0x31, 0xff, 0x57, 0x79, 0x20, 0xab, 0x2d, 0x2b, 0x08, 0x68, 0xcc, 0xf1, 0xae,
- 0x43, 0xbe, 0xea, 0xb9, 0x07, 0xd4, 0x93, 0x0a, 0xa8, 0x78, 0x5e, 0xe6, 0x50, 0x94, 0x58, 0x96,
- 0x5c, 0x58, 0x3e, 0x77, 0xa8, 0xcd, 0x02, 0xe3, 0x48, 0x7c, 0xea, 0xbf, 0xac, 0x30, 0xa8, 0x51,
- 0xf1, 0xda, 0x4d, 0xfc, 0xe2, 0xf1, 0x2e, 0x9b, 0xa8, 0xdd, 0x22, 0x14, 0xea, 0x74, 0xe4, 0x0e,
- 0x14, 0x98, 0x17, 0x38, 0x61, 0x8c, 0x3c, 0x77, 0x04, 0x9e, 0x60, 0x66, 0xbb, 0x2f, 0x87, 0xa2,
- 0x62, 0xc2, 0x18, 0xb6, 0x0d, 0xdf, 0xbf, 0xef, 0x7a, 0x35, 0x59, 0x79, 0xf4, 0xc2, 0x70, 0x47,
- 0x0e, 0x45, 0xc5, 0x24, 0xbd, 0xa6, 0xc9, 0x3f, 0x91, 0x9a, 0x66, 0xec, 0xbc, 0x35, 0x4d, 0x61,
- 0xc0, 0x35, 0xcd, 0x27, 0x7a, 0x70, 0x2a, 0xf2, 0xe0, 0xf4, 0x7e, 0xbf, 0x81, 0xa0, 0xcb, 0x3c,
- 0x2f, 0x2a, 0x2d, 0x7d, 0x3a, 0x02, 0x33, 0xc9, 0x30, 0x44, 0x3e, 0x84, 0x31, 0x53, 0xc4, 0x0a,
- 0xce, 0x64, 0xfc, 0x66, 0xa5, 0xef, 0xe0, 0xdb, 0x1d, 0x79, 0xe4, 0x14, 0x5c, 0x60, 0x30, 0x14,
- 0x48, 0x3e, 0xca, 0x40, 0xd1, 0x0c, 0xc3, 0x85, 0x9c, 0xf5, 0xf4, 0x2d, 0x3e, 0x25, 0xfc, 0x88,
- 0xf2, 0x43, 0x61, 0x30, 0x12, 0x3a, 0xff, 0xcb, 0x11, 0x18, 0xd7, 0x23, 0xc5, 0xf7, 0xb5, 0xef,
- 0x2d, 0xde, 0xc7, 0xaf, 0x69, 0x5e, 0xa4, 0x96, 0x7a, 0x22, 0x25, 0x18, 0x35, 0xf3, 0xab, 0x3b,
- 0xd5, 0x0f, 0xa8, 0x19, 0xb0, 0x8f, 0x13, 0x45, 0x8c, 0x08, 0xa6, 0xa5, 0x97, 0x36, 0xe4, 0xfc,
- 0x36, 0x35, 0xe5, 0xe3, 0x6e, 0x0f, 0x22, 0xad, 0x08, 0xdd, 0x2b, 0x6d, 0x6a, 0x46, 0xa1, 0x95,
- 0xfd, 0x42, 0x2e, 0x89, 0x3c, 0x80, 0xbc, 0x1f, 0x18, 0x41, 0xc7, 0x97, 0x53, 0xbd, 0x9d, 0x01,
- 0xca, 0xe4, 0x7c, 0xa3, 0x78, 0x2a, 0x7e, 0xa3, 0x94, 0x37, 0xff, 0x45, 0x06, 0xa6, 0x35, 0xea,
- 0x4d, 0xcb, 0x0f, 0xc8, 0x3b, 0x5d, 0x6f, 0x78, 0xe1, 0x7c, 0x6f, 0x98, 0x8d, 0xe6, 0xef, 0x57,
- 0x39, 0x48, 0x08, 0xd1, 0xde, 0xae, 0x0b, 0xa3, 0x56, 0x40, 0x5b, 0x7e, 0x69, 0x84, 0x3b, 0xeb,
- 0x1b, 0x83, 0x7b, 0xd4, 0xf2, 0xa4, 0x14, 0x3b, 0xba, 0xce, 0x04, 0xa0, 0x90, 0x33, 0xff, 0x6f,
- 0xdf, 0x8e, 0x3d, 0x22, 0x7b, 0xed, 0x7c, 0xed, 0x89, 0x81, 0xca, 0x1d, 0x7f, 0x3b, 0xca, 0x7a,
- 0xd1, 0xda, 0x93, 0x86, 0xc3, 0x18, 0x25, 0x39, 0x84, 0x42, 0x40, 0x5b, 0x6d, 0xdb, 0x08, 0xc2,
- 0x2a, 0x60, 0xad, 0xcf, 0x27, 0xd8, 0x93, 0xec, 0x44, 0x98, 0x0f, 0x7f, 0xa1, 0x12, 0x43, 0x5a,
- 0x30, 0xe6, 0x53, 0xef, 0xc8, 0x32, 0xa9, 0x34, 0x8f, 0x5b, 0x7d, 0x4a, 0xac, 0x08, 0x6e, 0xc2,
- 0xe7, 0xe5, 0x0f, 0x0c, 0x65, 0x90, 0x6f, 0xc0, 0x98, 0x47, 0xdb, 0xb6, 0x65, 0x1a, 0x3c, 0xed,
- 0x8d, 0x0a, 0x32, 0x14, 0x20, 0x0c, 0x71, 0xe4, 0x07, 0x30, 0xda, 0xb2, 0x1c, 0xcb, 0x95, 0x25,
- 0xc1, 0x5b, 0x83, 0x75, 0x93, 0x85, 0x2d, 0xc6, 0x5b, 0x84, 0x5b, 0xf5, 0x59, 0x39, 0x0c, 0x85,
- 0x58, 0xbe, 0x98, 0x65, 0xca, 0x69, 0xa4, 0x9c, 0x95, 0xbe, 0x33, 0x60, 0x1d, 0xd4, 0x2c, 0x35,
- 0x1e, 0xf5, 0x43, 0x30, 0x2a, 0xf9, 0xe4, 0x43, 0xc8, 0xd5, 0x2d, 0x9b, 0xcd, 0x44, 0xb3, 0x03,
- 0x58, 0xc0, 0x4a, 0xea, 0x71, 0xcb, 0xb2, 0xa9, 0xd0, 0x21, 0x2a, 0x51, 0x2d, 0x9b, 0x22, 0x97,
- 0xc9, 0x5f, 0x84, 0x47, 0x05, 0x8f, 0x01, 0xad, 0xea, 0x25, 0x15, 0x40, 0xc9, 0x3e, 0xf1, 0x22,
- 0x42, 0x30, 0x2a, 0xf9, 0xe4, 0xf7, 0x33, 0x30, 0x76, 0x9f, 0x56, 0x9b, 0xae, 0x7b, 0x20, 0xb3,
- 0xf1, 0xdb, 0x03, 0xd6, 0xe5, 0x9e, 0xe0, 0x2e, 0x54, 0x51, 0xd3, 0x63, 0x09, 0xc5, 0x50, 0x38,
- 0xfb, 0x22, 0x46, 0xeb, 0xb0, 0x5d, 0x82, 0xa1, 0x7c, 0x91, 0xa5, 0xd6, 0x61, 0x3b, 0xf1, 0x45,
- 0x96, 0xb6, 0x76, 0x77, 0x90, 0xcb, 0x64, 0xae, 0x71, 0x60, 0xd4, 0x0f, 0x8c, 0xd2, 0xf8, 0x50,
- 0x5c, 0x63, 0x83, 0xf1, 0x4e, 0xb8, 0x06, 0x87, 0xa1, 0x10, 0xcb, 0x9e, 0xbd, 0x75, 0x18, 0x04,
- 0xa5, 0x89, 0xa1, 0x3c, 0xfb, 0xd6, 0x61, 0x10, 0x24, 0x9e, 0x7d, 0x6b, 0x77, 0x6f, 0x0f, 0xb9,
- 0x4c, 0x26, 0xdb, 0x31, 0x02, 0xbf, 0x34, 0x39, 0x14, 0xd9, 0xdb, 0x46, 0xe0, 0x27, 0x64, 0x6f,
- 0x2f, 0xed, 0x55, 0x90, 0xcb, 0x24, 0x47, 0x90, 0xf5, 0x1d, 0xbf, 0x34, 0xc5, 0x45, 0xdf, 0x1b,
- 0xb0, 0xe8, 0x8a, 0x23, 0x25, 0xab, 0x3d, 0x90, 0xca, 0x76, 0x05, 0x99, 0x40, 0x2e, 0xf7, 0xd0,
- 0x2f, 0x4d, 0x0f, 0x47, 0xee, 0x61, 0x97, 0xdc, 0x5d, 0x26, 0xf7, 0xd0, 0x67, 0x75, 0x70, 0xbe,
- 0xdd, 0xa9, 0x56, 0x3a, 0xd5, 0xd2, 0x0c, 0x97, 0xfd, 0xbd, 0x01, 0xcb, 0xde, 0xe1, 0xcc, 0x85,
- 0x78, 0x35, 0x83, 0x10, 0x40, 0x94, 0x92, 0xb9, 0x12, 0x42, 0x6a, 0x69, 0x76, 0x28, 0x4a, 0xac,
- 0x71, 0x6e, 0x09, 0x25, 0x04, 0x10, 0xa5, 0xe4, 0x50, 0x09, 0xdb, 0xa8, 0x96, 0xc8, 0xb0, 0x94,
- 0xb0, 0x8d, 0x14, 0x25, 0x6c, 0x43, 0x28, 0x61, 0x1b, 0x55, 0x66, 0xfa, 0xcd, 0x5a, 0xdd, 0x2f,
- 0x5d, 0x1a, 0x8a, 0xe9, 0xdf, 0xae, 0xd5, 0x93, 0xa6, 0x7f, 0x7b, 0xe5, 0x56, 0x05, 0xb9, 0x4c,
- 0x16, 0x72, 0x7c, 0xdb, 0x30, 0x0f, 0x4a, 0x97, 0x87, 0x12, 0x72, 0x2a, 0x8c, 0x77, 0x22, 0xe4,
- 0x70, 0x18, 0x0a, 0xb1, 0xe4, 0xcf, 0x33, 0x30, 0xee, 0x07, 0xae, 0x67, 0x34, 0xe8, 0x9a, 0x67,
- 0xd5, 0x4a, 0x4f, 0x0f, 0xa6, 0x12, 0x4b, 0xaa, 0x11, 0x49, 0x10, 0xca, 0xa8, 0x2a, 0x5e, 0xc3,
- 0xa0, 0xae, 0x08, 0xf9, 0xeb, 0x0c, 0x4c, 0x19, 0xb1, 0xe5, 0xc6, 0xd2, 0x33, 0x5c, 0xb7, 0xea,
- 0xa0, 0x53, 0x42, 0x7c, 0x4d, 0x93, 0xab, 0xf7, 0x8c, 0x54, 0x6f, 0x2a, 0x8e, 0xc4, 0x84, 0x46,
- 0xdc, 0x7c, 0xfd, 0xc0, 0xb3, 0xda, 0xb4, 0xf4, 0xec, 0x50, 0xcc, 0xb7, 0xc2, 0x99, 0x27, 0xcc,
- 0x57, 0x00, 0x51, 0x4a, 0xe6, 0xa9, 0x9b, 0x8a, 0xd2, 0xb7, 0x54, 0x1a, 0x4a, 0xea, 0x0e, 0x0b,
- 0xeb, 0x78, 0xea, 0x96, 0x50, 0x0c, 0x85, 0x33, 0x5b, 0xf6, 0x68, 0xcd, 0xf2, 0x4b, 0xcf, 0x0d,
- 0xc5, 0x96, 0x91, 0xf1, 0x4e, 0xd8, 0x32, 0x87, 0xa1, 0x10, 0xcb, 0xc2, 0xb9, 0xe3, 0x1f, 0x96,
- 0xe6, 0x86, 0x12, 0xce, 0xb7, 0xfd, 0xc3, 0x44, 0x38, 0xdf, 0xae, 0xec, 0x22, 0x13, 0x28, 0xc3,
- 0xb9, 0xed, 0x1b, 0x5e, 0xe9, 0x6b, 0x43, 0x0a, 0xe7, 0x8c, 0x79, 0x57, 0x38, 0x67, 0x40, 0x94,
- 0x92, 0xb9, 0x15, 0xf0, 0x96, 0x08, 0xcb, 0x2c, 0x7d, 0x7d, 0x28, 0x56, 0xb0, 0x26, 0xb8, 0x27,
- 0xac, 0x40, 0x42, 0x31, 0x14, 0x3e, 0xd7, 0x01, 0x88, 0x6a, 0x80, 0x94, 0x55, 0x94, 0x5d, 0x7d,
- 0x15, 0x65, 0xfc, 0xe6, 0x6b, 0x3d, 0xaf, 0x28, 0x55, 0x7e, 0x7d, 0xc9, 0x0b, 0xac, 0xba, 0x61,
- 0x06, 0xda, 0x12, 0xcc, 0xdc, 0x9f, 0x64, 0x60, 0x32, 0x36, 0xef, 0x4f, 0x11, 0xdd, 0x8c, 0x8b,
- 0xc6, 0xc1, 0x2f, 0x86, 0xeb, 0x1a, 0xfd, 0x41, 0x06, 0x8a, 0xaa, 0x02, 0x48, 0xd1, 0xa6, 0x16,
- 0xd7, 0xa6, 0xdf, 0xf5, 0x0a, 0x2e, 0x2a, 0x5d, 0x13, 0xf6, 0x6e, 0x62, 0xa5, 0xc0, 0xf0, 0xdf,
- 0x8d, 0x12, 0x97, 0xae, 0xd1, 0x8f, 0x32, 0x30, 0xa1, 0x17, 0x04, 0x29, 0x0a, 0x99, 0x71, 0x85,
- 0xb6, 0xfa, 0x54, 0x48, 0x4a, 0x5b, 0x76, 0x9d, 0x80, 0x3e, 0x08, 0x92, 0xdf, 0x49, 0xd5, 0x05,
- 0xc3, 0xff, 0x4e, 0x89, 0xce, 0x8b, 0xc4, 0x5b, 0x81, 0xa8, 0x48, 0x48, 0x51, 0x85, 0xc6, 0x55,
- 0xe9, 0x77, 0xe7, 0x44, 0xc8, 0x3a, 0xdd, 0x7a, 0x55, 0xc5, 0x30, 0xfc, 0xb7, 0xc2, 0x2a, 0x91,
- 0x53, 0x34, 0xf9, 0xc3, 0x0c, 0x14, 0x55, 0xfd, 0x30, 0xfc, 0x97, 0xc2, 0xea, 0x12, 0x91, 0xe1,
- 0xbb, 0x55, 0xf9, 0xbd, 0x0c, 0x14, 0xc2, 0x7a, 0x62, 0xf8, 0x26, 0x5b, 0xd9, 0xae, 0x9c, 0xf2,
- 0x4a, 0xb8, 0x1e, 0x87, 0x17, 0xa6, 0xc7, 0xee, 0x69, 0x7a, 0x7c, 0x9c, 0x81, 0x71, 0xad, 0xd6,
- 0x48, 0x51, 0xa5, 0x1e, 0x57, 0xa5, 0xdf, 0x05, 0x52, 0x29, 0xec, 0x74, 0x6d, 0xb4, 0xa2, 0x63,
- 0xf8, 0xda, 0x48, 0x61, 0x67, 0x6a, 0x13, 0x56, 0x1f, 0x17, 0xa2, 0x0d, 0x13, 0x76, 0xba, 0x3b,
- 0xab, 0x4a, 0x64, 0xf8, 0xee, 0xcc, 0x2a, 0x9c, 0x33, 0x82, 0x5c, 0x54, 0x96, 0x0c, 0xdf, 0x9f,
- 0x85, 0xac, 0x74, 0x5d, 0xfe, 0x2c, 0x03, 0x33, 0xc9, 0xda, 0x24, 0x45, 0xa3, 0x83, 0xb8, 0x46,
- 0xfd, 0x36, 0x94, 0xe9, 0x12, 0xd3, 0xf5, 0xfa, 0x59, 0x06, 0x2e, 0xa5, 0xd4, 0x25, 0x29, 0xaa,
- 0x39, 0x71, 0xd5, 0xde, 0x1c, 0x56, 0x83, 0x47, 0xd2, 0xb2, 0xb5, 0xc2, 0x64, 0xf8, 0x96, 0x2d,
- 0x85, 0xa5, 0x6b, 0xf3, 0x49, 0x06, 0x26, 0xf4, 0x02, 0x25, 0x45, 0x9d, 0x46, 0x5c, 0x9d, 0xdd,
- 0x81, 0xef, 0x33, 0x26, 0xed, 0x3b, 0x2a, 0x55, 0x86, 0x6f, 0xdf, 0x42, 0xd6, 0xe9, 0x79, 0x22,
- 0x2c, 0x5c, 0x86, 0x9f, 0x27, 0xb6, 0x2b, 0xbb, 0x67, 0xe6, 0x09, 0x55, 0xc4, 0x5c, 0x44, 0x9e,
- 0xe0, 0xc2, 0x4e, 0xb7, 0x18, 0xbd, 0x98, 0x19, 0xbe, 0xc5, 0x84, 0xd2, 0x52, 0xf5, 0x99, 0x0f,
- 0x60, 0xb6, 0x6b, 0xe3, 0x8f, 0xbc, 0xaf, 0xb6, 0x16, 0xc5, 0x56, 0xde, 0x6f, 0xf5, 0x5e, 0x27,
- 0x9d, 0xbd, 0x83, 0xf8, 0x8f, 0x59, 0x98, 0x4e, 0xd4, 0x0c, 0xbc, 0x9d, 0x8f, 0xfd, 0xe4, 0x7d,
- 0xdd, 0x62, 0x6f, 0x2d, 0x6a, 0xe7, 0x0b, 0x11, 0x18, 0xd1, 0x90, 0x4f, 0x33, 0x30, 0x7d, 0xdf,
- 0x08, 0xcc, 0xe6, 0x8e, 0x11, 0x34, 0xc5, 0x36, 0xf0, 0x80, 0x32, 0xc8, 0xbd, 0x38, 0xd7, 0xf2,
- 0xb3, 0x52, 0x8f, 0xe9, 0x04, 0x02, 0x93, 0xf2, 0xc9, 0x0d, 0x18, 0x6b, 0xbb, 0xb6, 0x6d, 0x39,
- 0x0d, 0xd9, 0xc4, 0xa8, 0x6a, 0xd5, 0x1d, 0x01, 0xc6, 0x10, 0x1f, 0x6f, 0xac, 0xce, 0x0d, 0x64,
- 0x0b, 0x26, 0xf1, 0x4a, 0x2f, 0xaa, 0x03, 0xe1, 0x97, 0x59, 0x20, 0xdd, 0x56, 0xf6, 0xa8, 0x43,
- 0x00, 0xd7, 0x21, 0x6f, 0x46, 0x1f, 0x4d, 0xeb, 0xde, 0x91, 0xef, 0x56, 0x62, 0x45, 0xc3, 0x9c,
- 0x4f, 0xcd, 0x8e, 0x47, 0xbb, 0xfb, 0x62, 0x05, 0x1c, 0x15, 0x45, 0xac, 0xbf, 0x24, 0xf7, 0xc8,
- 0xfe, 0x92, 0x4f, 0xba, 0xdb, 0x14, 0xdf, 0x1f, 0xb8, 0xbb, 0xf5, 0xd0, 0xa4, 0xb6, 0xcf, 0xdb,
- 0x60, 0x9b, 0xa2, 0x9b, 0x47, 0x76, 0xe5, 0x9c, 0xb3, 0xdf, 0x67, 0x4a, 0x76, 0xca, 0xca, 0xc1,
- 0xa8, 0x31, 0xea, 0xef, 0xeb, 0xfe, 0xd7, 0x18, 0xcc, 0x76, 0x4d, 0x36, 0xc9, 0x1c, 0x8c, 0x58,
- 0xa2, 0xdf, 0x2c, 0x5b, 0x06, 0xf9, 0x44, 0x23, 0xeb, 0x2b, 0x38, 0x62, 0xd5, 0x48, 0x10, 0x6d,
- 0xe7, 0x0d, 0xa3, 0x7e, 0x16, 0x7b, 0xcb, 0x5d, 0x9b, 0x77, 0x2f, 0xc0, 0xa8, 0x7b, 0xdf, 0xa1,
- 0x9e, 0xec, 0xd5, 0x52, 0xcb, 0x74, 0x77, 0x18, 0x10, 0x05, 0x8e, 0x9f, 0x02, 0xa1, 0x6d, 0xd7,
- 0xb7, 0x02, 0xd7, 0xeb, 0x3e, 0x05, 0xa2, 0x30, 0xa8, 0x51, 0x91, 0x79, 0xc8, 0x0b, 0xad, 0xb8,
- 0x85, 0x14, 0xcb, 0xc0, 0x8c, 0x54, 0xcc, 0x53, 0x50, 0x62, 0xc8, 0x1d, 0x28, 0x18, 0x6d, 0x6b,
- 0xcf, 0x3d, 0xa0, 0x4e, 0x6f, 0x9f, 0x8d, 0xef, 0xdf, 0x2f, 0xed, 0xac, 0xf3, 0xa1, 0xa8, 0x98,
- 0x90, 0xf7, 0x60, 0x52, 0x3e, 0x98, 0x34, 0x86, 0xb1, 0x5e, 0xb8, 0xce, 0x9e, 0x3c, 0xbc, 0x3a,
- 0x79, 0x4f, 0x1f, 0x8f, 0x71, 0x76, 0x31, 0xaf, 0x2a, 0x3c, 0xd2, 0xab, 0xae, 0x43, 0xde, 0x30,
- 0x03, 0xeb, 0x48, 0x9c, 0xb6, 0xd0, 0x3a, 0xa7, 0x97, 0x38, 0x14, 0x25, 0x56, 0x9e, 0x78, 0x0a,
- 0xc2, 0x28, 0x0e, 0x5d, 0x27, 0x9e, 0x42, 0x14, 0xea, 0x74, 0xe4, 0x35, 0x98, 0x14, 0x06, 0x52,
- 0x36, 0x7c, 0xba, 0x8f, 0x9b, 0xfc, 0xc8, 0x42, 0xb1, 0xfc, 0xb4, 0x1c, 0x38, 0xb9, 0xa6, 0x23,
- 0x31, 0x4e, 0x4b, 0x96, 0x60, 0x5a, 0x00, 0xf6, 0xdb, 0xb6, 0x6b, 0xd4, 0xd8, 0xf0, 0x09, 0x3e,
- 0x5c, 0x45, 0xed, 0xb5, 0x38, 0x1a, 0x93, 0xf4, 0xe4, 0x0d, 0x20, 0x35, 0xde, 0x53, 0x7e, 0xdb,
- 0x75, 0x0f, 0xee, 0x38, 0xb7, 0x2c, 0xc7, 0xf2, 0x9b, 0xa5, 0x49, 0xfe, 0xa8, 0x73, 0x92, 0x0b,
- 0x59, 0xe9, 0xa2, 0xc0, 0x94, 0x51, 0xe4, 0x8f, 0xf4, 0x90, 0x22, 0x76, 0x15, 0xdf, 0x1b, 0x74,
- 0xa9, 0x77, 0x51, 0x81, 0xfd, 0x64, 0x94, 0xbb, 0x7e, 0xbc, 0xb2, 0xd3, 0xdd, 0x3b, 0x73, 0x71,
- 0xee, 0xbd, 0x08, 0x45, 0xc6, 0x96, 0x9a, 0xc1, 0xfa, 0x8a, 0xcc, 0x18, 0x6a, 0x7a, 0xb0, 0x13,
- 0x22, 0x30, 0xa2, 0xd1, 0xdc, 0x36, 0x7b, 0xaa, 0xdb, 0xbe, 0x09, 0xe3, 0x06, 0x6f, 0x6f, 0x17,
- 0x9e, 0xdb, 0x53, 0xc7, 0x26, 0xef, 0xf4, 0x5d, 0x8a, 0x46, 0xa3, 0xce, 0x8a, 0x54, 0xe0, 0x69,
- 0xd1, 0x74, 0x5b, 0xa9, 0x6c, 0xde, 0xa5, 0x9e, 0x55, 0xb7, 0x4c, 0xd1, 0x73, 0x2b, 0x8e, 0x1e,
- 0x3c, 0x2f, 0x55, 0x7f, 0x7a, 0x35, 0x8d, 0x08, 0xd3, 0xc7, 0x4a, 0x3f, 0xb1, 0x0d, 0xe5, 0x27,
- 0xf9, 0x2e, 0x3f, 0x89, 0x90, 0x18, 0xa7, 0x3d, 0xc5, 0xc8, 0x0b, 0xfd, 0x1b, 0x79, 0x71, 0x50,
- 0x46, 0x1e, 0xb7, 0xb3, 0x8b, 0x32, 0xf2, 0x9f, 0x17, 0x60, 0x3a, 0xb1, 0x64, 0x90, 0x3a, 0xb5,
- 0xcc, 0x3c, 0xe1, 0xa9, 0xe5, 0x35, 0xc8, 0x05, 0x2c, 0xa8, 0x8e, 0xc4, 0x9b, 0xad, 0x79, 0x34,
- 0xe5, 0x18, 0x66, 0x1e, 0x66, 0x93, 0x9a, 0x07, 0xe1, 0x39, 0x02, 0x99, 0x09, 0x95, 0x79, 0x2c,
- 0xeb, 0x48, 0x8c, 0xd3, 0x92, 0x6f, 0x42, 0xd1, 0xa8, 0xd5, 0x3c, 0xea, 0xfb, 0xd4, 0xe7, 0xd3,
- 0xd1, 0xa2, 0xe8, 0xaf, 0x5c, 0x0a, 0x81, 0x18, 0xe1, 0x59, 0xf6, 0x68, 0xd6, 0xea, 0xfe, 0xbe,
- 0x4f, 0x3d, 0x6e, 0xd0, 0xda, 0xd1, 0x02, 0xf6, 0x2a, 0x19, 0x1c, 0x15, 0x05, 0xa9, 0xc1, 0xf4,
- 0x81, 0x57, 0x5d, 0x5e, 0x36, 0xcc, 0x26, 0x7d, 0x9c, 0xa9, 0x0d, 0x3f, 0x9d, 0xb2, 0x11, 0xe7,
- 0x80, 0x49, 0x96, 0x52, 0xca, 0x06, 0x3d, 0x0e, 0x8c, 0xea, 0xe3, 0xe4, 0xcc, 0x50, 0x8a, 0xce,
- 0x01, 0x93, 0x2c, 0x59, 0x86, 0x3b, 0xf0, 0xaa, 0x61, 0xa3, 0x36, 0x77, 0x1f, 0x2d, 0xc3, 0x6d,
- 0x44, 0x28, 0xd4, 0xe9, 0xd8, 0x0b, 0x3b, 0xf0, 0xaa, 0x48, 0x0d, 0xbb, 0xc5, 0x53, 0xa8, 0xf6,
- 0xc2, 0x36, 0x24, 0x1c, 0x15, 0x05, 0x69, 0x03, 0x61, 0x4f, 0xc7, 0xbf, 0xbb, 0xea, 0x6f, 0x95,
- 0x27, 0x0a, 0x5f, 0x4c, 0x7b, 0x1a, 0x45, 0xa4, 0x3f, 0xd0, 0x33, 0xcc, 0xa1, 0x37, 0xba, 0xf8,
- 0x60, 0x0a, 0x6f, 0xf2, 0x16, 0x3c, 0x7b, 0xe0, 0x55, 0x65, 0x5b, 0xdf, 0x8e, 0x67, 0x39, 0xa6,
- 0xd5, 0x36, 0x44, 0xeb, 0xbb, 0xc8, 0xc5, 0x57, 0xa5, 0xba, 0xcf, 0x6e, 0xa4, 0x93, 0xe1, 0x69,
- 0xe3, 0xe3, 0x75, 0xce, 0xc4, 0x40, 0xea, 0x9c, 0x84, 0xbb, 0x5e, 0x54, 0xa4, 0xf8, 0xfb, 0x0c,
- 0x10, 0xbe, 0x6d, 0x11, 0x1e, 0xdd, 0x5e, 0xf3, 0xdc, 0x4e, 0x9b, 0x65, 0xa6, 0x06, 0xfb, 0x43,
- 0x6b, 0x0a, 0x55, 0x99, 0x69, 0x2d, 0x44, 0x60, 0x44, 0xc3, 0x66, 0x53, 0xae, 0x5d, 0xa3, 0xea,
- 0x28, 0x84, 0x9a, 0x4d, 0xdd, 0xe1, 0x50, 0x94, 0x58, 0xb2, 0x06, 0xb3, 0x1e, 0xad, 0x1a, 0xb6,
- 0xe1, 0xb0, 0xca, 0xdc, 0x33, 0x02, 0xda, 0x38, 0x96, 0x3e, 0xfd, 0x9c, 0x1c, 0x32, 0x8b, 0x49,
- 0x02, 0xec, 0x1e, 0x33, 0xff, 0x45, 0x1e, 0x66, 0x92, 0xfb, 0x2d, 0x8f, 0x2a, 0xcf, 0x58, 0xbe,
- 0x35, 0xbc, 0xc0, 0xd2, 0x0e, 0x8a, 0x44, 0xf9, 0x36, 0x44, 0x60, 0x44, 0xc3, 0xe6, 0xdf, 0x81,
- 0xdb, 0xb6, 0xcc, 0xe4, 0xfc, 0x7b, 0x8f, 0x01, 0x51, 0xe0, 0xd2, 0x4f, 0x1f, 0xe4, 0x2e, 0xec,
- 0xf4, 0x81, 0x3c, 0x4f, 0x30, 0x3a, 0xe0, 0xf3, 0x04, 0xbd, 0x1d, 0xd4, 0xfe, 0x58, 0x77, 0x08,
- 0xd1, 0xfc, 0xf9, 0xee, 0x80, 0x37, 0xd3, 0x7a, 0x28, 0x39, 0x7f, 0x9c, 0x81, 0x49, 0x53, 0xb7,
- 0x67, 0x79, 0xda, 0x62, 0x77, 0x10, 0x2a, 0xc5, 0x1c, 0x45, 0x54, 0x25, 0x31, 0x10, 0xc6, 0x45,
- 0x93, 0x1d, 0xb8, 0x6c, 0x5b, 0x2d, 0x2b, 0x10, 0xd3, 0xb4, 0x1d, 0xea, 0x55, 0xa8, 0xe9, 0x3a,
- 0x35, 0x1e, 0x32, 0xb3, 0xe5, 0xaf, 0xcb, 0xc7, 0xb8, 0xbc, 0x99, 0x42, 0x83, 0xa9, 0x23, 0xc9,
- 0x0d, 0x18, 0x3b, 0xa2, 0x9e, 0xcf, 0x8c, 0x18, 0xe2, 0x67, 0x16, 0xef, 0x0a, 0x30, 0x86, 0xf8,
- 0xfe, 0x62, 0xc3, 0x3f, 0xe5, 0x60, 0x3a, 0xb1, 0x8f, 0xf8, 0x28, 0x0f, 0x53, 0x0e, 0x33, 0x72,
- 0x86, 0xc3, 0xbc, 0x04, 0x05, 0xd3, 0xb6, 0xa8, 0x13, 0xac, 0xd7, 0xa4, 0x63, 0x45, 0x2d, 0xc5,
- 0x02, 0xbe, 0x82, 0x8a, 0xe2, 0x49, 0xbb, 0x97, 0xee, 0x07, 0xa3, 0xe7, 0x3d, 0xdc, 0x93, 0x1f,
- 0xe6, 0x85, 0x05, 0x63, 0x03, 0xc9, 0x37, 0x89, 0x0f, 0x7b, 0x51, 0xf9, 0xe6, 0x9f, 0xc7, 0x60,
- 0x26, 0xb9, 0x23, 0xfc, 0x28, 0xa3, 0xba, 0x01, 0x63, 0x7e, 0x87, 0x1f, 0x50, 0x91, 0x66, 0xa5,
- 0xec, 0xbd, 0x22, 0xc0, 0x18, 0xe2, 0xd3, 0x8d, 0x25, 0xfb, 0x44, 0x8c, 0x25, 0x77, 0x5e, 0x63,
- 0x19, 0x74, 0xe4, 0xfe, 0xb8, 0xfb, 0x98, 0xea, 0xbb, 0x03, 0xde, 0xc3, 0xef, 0x21, 0x16, 0xbf,
- 0x04, 0x39, 0xa3, 0x13, 0x34, 0xf9, 0xbc, 0xb5, 0xa8, 0x4e, 0x48, 0xe6, 0x96, 0x3a, 0x41, 0xf3,
- 0xab, 0x87, 0x57, 0x0b, 0x8c, 0x33, 0xfb, 0x1b, 0x39, 0x55, 0xec, 0xac, 0x61, 0x61, 0xd0, 0x67,
- 0x0d, 0x8b, 0x83, 0x38, 0x6b, 0x78, 0x8b, 0x45, 0x38, 0x56, 0x58, 0x43, 0x2f, 0xdc, 0x8a, 0x22,
- 0x08, 0xb2, 0x92, 0x5a, 0x0c, 0x27, 0xcb, 0x90, 0x73, 0x98, 0xd7, 0x8c, 0xf7, 0xc2, 0xa6, 0xc0,
- 0x1b, 0xbd, 0x37, 0xe8, 0x31, 0xf2, 0xc1, 0x64, 0x1f, 0xc0, 0xf4, 0x68, 0x8d, 0x3a, 0x81, 0x65,
- 0xd8, 0xf2, 0x56, 0x8a, 0x5e, 0xd6, 0x56, 0x97, 0xd5, 0x60, 0xd4, 0x18, 0xf5, 0xe7, 0xe1, 0xff,
- 0x9a, 0x83, 0xa9, 0xf8, 0xce, 0x15, 0x2b, 0x30, 0x9a, 0xae, 0x1f, 0xc8, 0xb2, 0x2b, 0x79, 0x69,
- 0xd0, 0xed, 0x08, 0x85, 0x3a, 0xdd, 0xf9, 0x92, 0xc9, 0x0d, 0x18, 0x93, 0x87, 0x55, 0x65, 0x2e,
- 0x51, 0xc1, 0x41, 0x1e, 0x68, 0xc5, 0x10, 0xff, 0xff, 0x99, 0xc4, 0xf6, 0xc9, 0x8f, 0xba, 0x33,
- 0xc9, 0xdb, 0x03, 0xdd, 0xa6, 0xbc, 0xb0, 0x9b, 0x0b, 0x46, 0x61, 0xb6, 0xab, 0x7b, 0x25, 0xbe,
- 0xa2, 0x96, 0x39, 0xc7, 0x8a, 0xda, 0xeb, 0x30, 0xc5, 0xed, 0x68, 0x27, 0xb1, 0x0e, 0xa7, 0x3a,
- 0x96, 0xf7, 0x62, 0x58, 0x4c, 0x50, 0x9f, 0xaf, 0x42, 0x78, 0x1d, 0xa6, 0xfc, 0x4e, 0xd5, 0x37,
- 0x3d, 0xab, 0xcd, 0x0c, 0x62, 0x7d, 0x45, 0xae, 0xd2, 0x2b, 0x21, 0x95, 0x18, 0x16, 0x13, 0xd4,
- 0xa4, 0xc1, 0x4f, 0x9c, 0x4b, 0xef, 0x94, 0xeb, 0x00, 0x3d, 0x1d, 0x9c, 0xbe, 0x2c, 0x0f, 0xa5,
- 0xc7, 0x58, 0x60, 0x17, 0x53, 0x52, 0x85, 0x39, 0xb1, 0x32, 0xa6, 0x2b, 0xa4, 0xd6, 0xd5, 0x44,
- 0x19, 0x30, 0x2f, 0x95, 0x9e, 0x5b, 0x39, 0x95, 0x12, 0xcf, 0xe0, 0xd2, 0xe3, 0x69, 0xe9, 0x0d,
- 0x98, 0x8e, 0xb4, 0xf4, 0x6f, 0x59, 0x76, 0xb8, 0x3e, 0xf1, 0x2b, 0x72, 0xd0, 0x73, 0x2b, 0xb4,
- 0xed, 0x51, 0xd3, 0x08, 0x68, 0x6d, 0x39, 0x4e, 0x88, 0xc9, 0x91, 0xc3, 0x58, 0xe2, 0xeb, 0x32,
- 0xc1, 0x8b, 0xb2, 0xff, 0x7f, 0xcf, 0x33, 0xfb, 0x4f, 0xec, 0xca, 0x93, 0x79, 0xc8, 0x73, 0x93,
- 0x63, 0x41, 0x56, 0x2d, 0x10, 0x73, 0x5b, 0xf4, 0x51, 0x62, 0xce, 0xb1, 0xe8, 0x26, 0xe7, 0x63,
- 0xd9, 0x53, 0xe6, 0x63, 0x6d, 0xb8, 0x14, 0xd8, 0xfe, 0x9e, 0xd7, 0xf1, 0x83, 0x65, 0xea, 0x05,
- 0xbe, 0xb4, 0xc8, 0x5c, 0xcf, 0x77, 0xc1, 0xec, 0x6d, 0x56, 0x92, 0x5c, 0x30, 0x8d, 0x35, 0xb3,
- 0xcb, 0xc0, 0xf6, 0x97, 0x6c, 0xdb, 0xbd, 0x1f, 0xee, 0xe4, 0x44, 0x21, 0x57, 0x06, 0x53, 0x65,
- 0x97, 0x7b, 0x9b, 0x95, 0x53, 0x28, 0xf1, 0x0c, 0x2e, 0x64, 0x8b, 0x3f, 0xd5, 0x5d, 0xc3, 0xb6,
- 0x6a, 0x46, 0x40, 0x59, 0x52, 0xe2, 0xb3, 0x10, 0x61, 0xf4, 0x5f, 0x93, 0xcc, 0x99, 0xca, 0x49,
- 0x12, 0x4c, 0x1b, 0x37, 0xac, 0xab, 0xcb, 0x52, 0x73, 0x58, 0xe1, 0x89, 0xe4, 0xb0, 0xe2, 0x23,
- 0x9d, 0x37, 0xe6, 0x6f, 0x30, 0x20, 0x7f, 0x4b, 0x98, 0xfc, 0x45, 0xf9, 0xdb, 0xdf, 0xe5, 0x60,
- 0x26, 0xd9, 0x1a, 0xf4, 0xb8, 0x13, 0x1b, 0x7d, 0x52, 0x3a, 0x32, 0x88, 0x49, 0xe9, 0x22, 0x14,
- 0x99, 0xd1, 0xf9, 0x6d, 0xc3, 0x0c, 0xef, 0xf5, 0x50, 0x69, 0x6f, 0x3b, 0x44, 0x60, 0x44, 0x43,
- 0xe6, 0x60, 0xa4, 0x56, 0x95, 0xc7, 0x9a, 0xd5, 0x56, 0xf7, 0x4a, 0x19, 0x47, 0x6a, 0x55, 0xf2,
- 0x22, 0x14, 0xe4, 0x8c, 0x29, 0xdc, 0x1d, 0xe6, 0x62, 0xe5, 0x74, 0xca, 0x47, 0x85, 0x1d, 0xd6,
- 0x1c, 0x65, 0x08, 0x8b, 0x49, 0xc9, 0x2f, 0x77, 0x61, 0x6d, 0x24, 0x39, 0xb8, 0x94, 0xd2, 0xba,
- 0x1f, 0xff, 0x60, 0x99, 0x73, 0x7c, 0xb0, 0x43, 0xc8, 0xd7, 0x2d, 0x3b, 0xa0, 0xde, 0x80, 0xda,
- 0x0f, 0x42, 0xa5, 0x6e, 0x71, 0xa6, 0x22, 0x4f, 0x88, 0xbf, 0x51, 0x0a, 0x62, 0xde, 0x7b, 0x99,
- 0x2f, 0xf0, 0x86, 0xab, 0x4a, 0xe1, 0xd9, 0xea, 0xac, 0xfc, 0xde, 0xe7, 0xba, 0x0b, 0x61, 0x2d,
- 0x85, 0x43, 0xb4, 0xea, 0x95, 0x86, 0xc5, 0x54, 0xa9, 0x64, 0x19, 0x40, 0xf5, 0x49, 0x85, 0xbb,
- 0x39, 0x2f, 0xb0, 0x22, 0x46, 0x35, 0x52, 0xf9, 0x5f, 0xf1, 0xc5, 0x63, 0xed, 0x6d, 0xf3, 0x9c,
- 0xa6, 0x0d, 0x8b, 0x5f, 0xe1, 0x34, 0x3a, 0x90, 0x2b, 0x9c, 0x52, 0x3e, 0xef, 0x45, 0x59, 0xd7,
- 0xdf, 0x66, 0x61, 0x2a, 0xfe, 0x21, 0xc9, 0x75, 0xc8, 0xb7, 0x3d, 0x5a, 0xb7, 0x1e, 0x24, 0xef,
- 0x0f, 0xda, 0xe1, 0x50, 0x94, 0x58, 0xe2, 0x42, 0xde, 0x36, 0xaa, 0xcc, 0xc5, 0xc5, 0xf5, 0x13,
- 0x6b, 0x7d, 0x5f, 0xa5, 0x10, 0xd6, 0x95, 0xa1, 0xc0, 0x4d, 0xce, 0x1e, 0xa5, 0x18, 0x26, 0xb0,
- 0x6e, 0x51, 0xbb, 0x26, 0xb6, 0xae, 0x87, 0x21, 0xf0, 0x16, 0x67, 0x8f, 0x52, 0x0c, 0x79, 0x1b,
- 0x8a, 0xe2, 0xd2, 0xa5, 0x5a, 0xf9, 0x58, 0xce, 0x4d, 0x7e, 0xf5, 0x7c, 0x26, 0xbb, 0x67, 0xb5,
- 0x68, 0xe4, 0x8e, 0xcb, 0x21, 0x13, 0x8c, 0xf8, 0xf1, 0xbb, 0xfd, 0xea, 0x01, 0xf5, 0x2a, 0x81,
- 0xe1, 0x85, 0x57, 0xef, 0x45, 0x77, 0xfb, 0x29, 0x0c, 0x6a, 0x54, 0xf3, 0xff, 0x30, 0x0a, 0x53,
- 0xf1, 0x23, 0x08, 0x4f, 0xa8, 0xed, 0xe0, 0x25, 0x28, 0xf0, 0xa9, 0xe0, 0x92, 0xe7, 0x24, 0xaf,
- 0x6b, 0xdb, 0x93, 0x70, 0x54, 0x14, 0x04, 0xa1, 0x68, 0x3c, 0xde, 0x0d, 0x7c, 0x62, 0xaf, 0x55,
- 0xdd, 0xbd, 0x17, 0xb1, 0x61, 0x3c, 0xfd, 0x90, 0xbc, 0xb7, 0x79, 0x23, 0xe7, 0xa9, 0xc0, 0x18,
- 0xb1, 0x61, 0x96, 0xef, 0xd1, 0x46, 0x38, 0x1f, 0xd4, 0x2c, 0x1f, 0x39, 0x14, 0x25, 0x96, 0xdc,
- 0x80, 0x31, 0xcf, 0xb5, 0xe9, 0x12, 0x6e, 0xcb, 0x56, 0x03, 0xb5, 0x60, 0x80, 0x02, 0x8c, 0x21,
- 0x7e, 0x18, 0xc5, 0x72, 0xdc, 0x00, 0x7a, 0x58, 0x47, 0x5b, 0x83, 0xd9, 0x23, 0x39, 0xc7, 0xac,
- 0x58, 0x0d, 0xc7, 0x08, 0xa2, 0x2e, 0x27, 0xb5, 0x71, 0x76, 0x37, 0x49, 0x80, 0xdd, 0x63, 0xfa,
- 0x8b, 0x38, 0x7f, 0xc3, 0x6c, 0x38, 0x76, 0x7c, 0x25, 0x6e, 0x1f, 0x99, 0x21, 0xd8, 0xc7, 0xc8,
- 0xa0, 0xed, 0x23, 0x7b, 0xa6, 0x7d, 0xbc, 0x00, 0xa3, 0xfc, 0xce, 0x57, 0x59, 0xa3, 0xab, 0x8a,
- 0x9e, 0x5f, 0x17, 0x8a, 0x02, 0x47, 0x96, 0x60, 0xfa, 0xbe, 0x61, 0x05, 0x2c, 0x52, 0x88, 0x4d,
- 0x19, 0xb1, 0x8c, 0x9b, 0xd5, 0x7b, 0x1f, 0x62, 0x68, 0x4c, 0xd2, 0xf7, 0x62, 0x87, 0xbd, 0x95,
- 0xcc, 0xaf, 0xc3, 0x14, 0x57, 0x72, 0xc9, 0x34, 0xdd, 0x0e, 0xdf, 0x64, 0x29, 0xc4, 0x57, 0x1b,
- 0x76, 0x75, 0xec, 0x0a, 0x26, 0xa8, 0xe3, 0x56, 0x3f, 0x98, 0xbb, 0x4b, 0xe2, 0x26, 0x73, 0x51,
- 0xe9, 0xf1, 0x87, 0x50, 0x08, 0xed, 0x82, 0x95, 0xb4, 0x6a, 0x5c, 0x54, 0xd2, 0x32, 0x13, 0xe1,
- 0x4c, 0x16, 0xa1, 0xe8, 0xb6, 0x69, 0xec, 0x0a, 0x41, 0x95, 0x00, 0xee, 0x84, 0x08, 0x8c, 0x68,
- 0x98, 0x95, 0x08, 0xa9, 0x89, 0x75, 0x9f, 0xbb, 0x0c, 0x28, 0x95, 0x98, 0xff, 0x28, 0x03, 0xe1,
- 0xb5, 0x42, 0x64, 0x05, 0x46, 0xdb, 0xae, 0x17, 0x88, 0xc2, 0x7c, 0xfc, 0xe6, 0xd5, 0x74, 0x73,
- 0x16, 0xbd, 0x06, 0xae, 0x17, 0x44, 0x1c, 0xd9, 0x2f, 0x1f, 0xc5, 0x60, 0xa6, 0xa7, 0x69, 0x77,
- 0xfc, 0x80, 0x7a, 0xeb, 0x3b, 0x49, 0x3d, 0x97, 0x43, 0x04, 0x46, 0x34, 0xf3, 0xff, 0x93, 0x85,
- 0x99, 0xe4, 0x89, 0x1d, 0xf2, 0x1e, 0x4c, 0xfa, 0x56, 0xc3, 0xb1, 0x9c, 0x86, 0x2c, 0xdd, 0x33,
- 0x3d, 0x37, 0x62, 0x56, 0xf4, 0xf1, 0x18, 0x67, 0x17, 0xad, 0x91, 0x8f, 0xf4, 0xb7, 0x46, 0xae,
- 0xa5, 0xc7, 0xec, 0xc5, 0xa5, 0xc7, 0x8f, 0xbb, 0x9b, 0xd8, 0xdf, 0x1d, 0xf0, 0x99, 0xa9, 0x8b,
- 0xf2, 0x80, 0xff, 0x1c, 0x85, 0x67, 0xd2, 0x4f, 0x47, 0x3d, 0xa1, 0xa9, 0x47, 0xd4, 0xc0, 0x38,
- 0x72, 0x6a, 0x03, 0x63, 0xa0, 0x4a, 0x9d, 0xec, 0x80, 0x4e, 0x3b, 0xa9, 0x17, 0x70, 0x46, 0xb5,
- 0xa3, 0x4f, 0x8a, 0x72, 0x8f, 0x9c, 0x14, 0x5d, 0x87, 0x7c, 0xb5, 0x63, 0x1e, 0xc8, 0x75, 0x58,
- 0xfd, 0x9a, 0x4e, 0x0e, 0x45, 0x89, 0xd5, 0x92, 0x4e, 0xfe, 0xcc, 0xa4, 0xc3, 0x92, 0x68, 0x27,
- 0x68, 0x8a, 0x96, 0xcd, 0xb1, 0xde, 0x93, 0x68, 0x38, 0x16, 0x23, 0x36, 0xbc, 0xc1, 0xb9, 0x6d,
- 0xed, 0xe3, 0xa6, 0x8c, 0xff, 0x51, 0x83, 0xf3, 0xce, 0xfa, 0x3e, 0x6e, 0xa2, 0xc4, 0x92, 0x4f,
- 0xbb, 0xe3, 0xbd, 0x39, 0x94, 0x13, 0x79, 0x17, 0x65, 0xf5, 0x26, 0xcc, 0x76, 0x7d, 0xf3, 0x73,
- 0x17, 0x46, 0xd7, 0x21, 0xef, 0x77, 0xea, 0x8c, 0x2e, 0x71, 0x84, 0xa3, 0xc2, 0xa1, 0x28, 0xb1,
- 0xf3, 0x3f, 0xc9, 0x31, 0x29, 0x89, 0x73, 0x74, 0x4f, 0xc8, 0xab, 0x5e, 0x83, 0x49, 0x51, 0x9a,
- 0xdc, 0xd3, 0x8e, 0x28, 0x14, 0xb4, 0x26, 0x49, 0x1d, 0x89, 0x71, 0x5a, 0xb2, 0xce, 0xcd, 0xa4,
- 0xe7, 0xc9, 0x3d, 0x48, 0x4b, 0x62, 0x29, 0x54, 0x32, 0x20, 0x2f, 0xc3, 0x38, 0x7f, 0x08, 0xf1,
- 0xca, 0x65, 0x8d, 0xce, 0x7b, 0x8a, 0x57, 0x23, 0x30, 0xea, 0x34, 0xf1, 0x25, 0xc2, 0xd1, 0x81,
- 0x2c, 0x11, 0x76, 0x7d, 0x95, 0x8b, 0xb2, 0xbb, 0x9f, 0x8d, 0x81, 0xba, 0xb6, 0x90, 0x98, 0x5d,
- 0x97, 0x47, 0xfe, 0x76, 0xcf, 0x0b, 0x64, 0xa1, 0x2a, 0x62, 0x01, 0x2e, 0xa5, 0x28, 0x78, 0x03,
- 0x88, 0xbc, 0xad, 0x50, 0x4e, 0xdf, 0xb4, 0xff, 0x7a, 0x44, 0xf5, 0x3f, 0x57, 0xba, 0x28, 0x30,
- 0x65, 0x14, 0x79, 0x83, 0xdf, 0x70, 0x1a, 0x18, 0x96, 0xa3, 0x22, 0xef, 0xf3, 0xa7, 0xf4, 0x65,
- 0x0a, 0x22, 0x75, 0x57, 0xa9, 0xf8, 0x89, 0xd1, 0x70, 0xb2, 0x0a, 0x63, 0x47, 0xae, 0xdd, 0x69,
- 0xc9, 0x85, 0x9a, 0xf1, 0x9b, 0x73, 0x69, 0x9c, 0xee, 0x72, 0x12, 0xad, 0x7b, 0x49, 0x0c, 0xc1,
- 0x70, 0x2c, 0xa1, 0x30, 0xcd, 0x97, 0xe9, 0xad, 0xe0, 0x58, 0x3a, 0x80, 0xdc, 0xf6, 0xba, 0x9e,
- 0xc6, 0x6e, 0xc7, 0xad, 0x55, 0xe2, 0xd4, 0xf2, 0x0e, 0xf8, 0x38, 0x10, 0x93, 0x3c, 0xc9, 0x2d,
- 0x28, 0x18, 0xf5, 0xba, 0xe5, 0x58, 0xc1, 0xb1, 0x5c, 0xcb, 0xfc, 0x7a, 0x1a, 0xff, 0x25, 0x49,
- 0x23, 0xcf, 0xb7, 0xc8, 0x5f, 0xa8, 0xc6, 0x92, 0x7d, 0x18, 0x0f, 0x5c, 0x5b, 0xce, 0x10, 0x7d,
- 0x59, 0x30, 0x5e, 0x49, 0x63, 0xb5, 0xa7, 0xc8, 0xa2, 0xd5, 0xe2, 0x08, 0xe6, 0xa3, 0xce, 0x87,
- 0xfc, 0x69, 0x06, 0x26, 0x1c, 0xb7, 0x46, 0x43, 0xd7, 0x93, 0x77, 0x1b, 0xbe, 0x35, 0xa0, 0xeb,
- 0x36, 0x17, 0xb6, 0x35, 0xde, 0xc2, 0x43, 0xd4, 0xfd, 0x9f, 0x3a, 0x0a, 0x63, 0x4a, 0x10, 0x07,
- 0x66, 0xac, 0x96, 0xd1, 0xa0, 0x3b, 0x1d, 0x5b, 0xee, 0x1e, 0xfa, 0x32, 0x79, 0xa4, 0x76, 0xf3,
- 0xf2, 0xff, 0x7f, 0x47, 0xdc, 0x32, 0x8b, 0xb4, 0x4e, 0x3d, 0x7e, 0xd9, 0xad, 0xba, 0x2f, 0x7b,
- 0x3d, 0xc1, 0x09, 0xbb, 0x78, 0xcf, 0x7d, 0x17, 0x66, 0xbb, 0x14, 0xed, 0xc9, 0x3b, 0xff, 0x32,
- 0x03, 0xc9, 0x86, 0x74, 0x36, 0x9d, 0xae, 0x59, 0x1e, 0x67, 0x78, 0x9c, 0x5c, 0x86, 0x5d, 0x09,
- 0x11, 0x18, 0xd1, 0x90, 0x6b, 0x90, 0x6b, 0x1b, 0x41, 0x33, 0xb9, 0x77, 0xc6, 0x58, 0x22, 0xc7,
- 0x90, 0x9b, 0x00, 0xec, 0x5f, 0xa4, 0x0d, 0xfa, 0xa0, 0x2d, 0xab, 0x03, 0xb5, 0x32, 0xb4, 0xa3,
- 0x30, 0xa8, 0x51, 0xcd, 0xff, 0x3c, 0x0f, 0x53, 0xf1, 0x40, 0xcf, 0xa6, 0x23, 0xd4, 0xa9, 0xb5,
- 0x5d, 0xcb, 0x09, 0x92, 0x17, 0xf0, 0xaf, 0x4a, 0x38, 0x2a, 0x0a, 0x96, 0xb4, 0x5a, 0x34, 0x68,
- 0xba, 0xb5, 0x64, 0xd2, 0xda, 0xe2, 0x50, 0x94, 0x58, 0xae, 0xbe, 0xeb, 0x05, 0x52, 0xad, 0x48,
- 0x7d, 0xd7, 0x0b, 0x90, 0x63, 0xc2, 0xad, 0xbf, 0xdc, 0x29, 0x5b, 0x7f, 0x0d, 0x98, 0x61, 0xa1,
- 0x83, 0x7a, 0xcb, 0xd4, 0x0b, 0x1e, 0x7b, 0x27, 0xba, 0x92, 0x60, 0x81, 0x5d, 0x4c, 0xf9, 0xff,
- 0xfe, 0xc0, 0x61, 0x7c, 0xf0, 0x63, 0xf6, 0xd7, 0x57, 0xe2, 0x1c, 0x30, 0xc9, 0x72, 0x18, 0x0b,
- 0x3c, 0xf1, 0xef, 0xf8, 0xd8, 0xe7, 0x24, 0x0b, 0x03, 0x3a, 0x27, 0x49, 0x6e, 0xc3, 0x54, 0xf4,
- 0x72, 0x99, 0xfd, 0xc9, 0x5e, 0xfd, 0x6b, 0x52, 0x95, 0x52, 0xb4, 0x7f, 0x5e, 0x89, 0xd1, 0x61,
- 0x62, 0x1c, 0x59, 0x85, 0x49, 0xf5, 0xfe, 0x38, 0x23, 0x88, 0x77, 0xd1, 0x27, 0x19, 0x49, 0x32,
- 0x8c, 0x8f, 0xea, 0x2b, 0xc5, 0x96, 0x17, 0x3e, 0xfb, 0xf2, 0xca, 0x53, 0x9f, 0x7f, 0x79, 0xe5,
- 0xa9, 0x5f, 0x7c, 0x79, 0xe5, 0xa9, 0x8f, 0x4e, 0xae, 0x64, 0x3e, 0x3b, 0xb9, 0x92, 0xf9, 0xfc,
- 0xe4, 0x4a, 0xe6, 0x17, 0x27, 0x57, 0x32, 0x5f, 0x9c, 0x5c, 0xc9, 0xfc, 0xe4, 0x5f, 0xae, 0x3c,
- 0xf5, 0xbd, 0x42, 0xf8, 0x35, 0xfe, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x9b, 0xf5, 0x45, 0xcf, 0x86,
- 0x6e, 0x00, 0x00,
+ // 5509 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x4d, 0x6c, 0x23, 0x47,
+ 0x76, 0xb0, 0x29, 0x52, 0x14, 0xf9, 0xf4, 0x5f, 0x33, 0xb6, 0x69, 0xad, 0x3d, 0x33, 0x9f, 0x8c,
+ 0x1d, 0x78, 0xbe, 0xf5, 0x4a, 0xf1, 0x24, 0x9b, 0x38, 0x36, 0xd6, 0x0b, 0x51, 0xd2, 0x68, 0x64,
+ 0xfd, 0x8c, 0xf4, 0x28, 0xcd, 0xd8, 0xeb, 0xbf, 0x6d, 0x36, 0x8b, 0x64, 0x5b, 0xcd, 0x6e, 0xaa,
+ 0xbb, 0xa9, 0x19, 0x19, 0xc8, 0xae, 0x11, 0x20, 0x3f, 0xbb, 0x8e, 0x93, 0x75, 0xb2, 0xf9, 0x41,
+ 0xf6, 0x96, 0xcb, 0x02, 0xc9, 0x31, 0x40, 0xee, 0xb9, 0x19, 0xd8, 0x8b, 0x73, 0x5b, 0x60, 0x81,
+ 0x81, 0xad, 0x04, 0xb9, 0xe5, 0x92, 0x5c, 0x92, 0x0d, 0x02, 0x04, 0xf5, 0xd3, 0xd5, 0xd5, 0xcd,
+ 0x96, 0x46, 0x1c, 0x92, 0x9a, 0x4b, 0x4e, 0x23, 0xbe, 0xf7, 0xea, 0xbd, 0xd7, 0xdd, 0xef, 0xa7,
+ 0x5e, 0xd5, 0xab, 0x1a, 0xd8, 0x6a, 0x58, 0x41, 0xb3, 0x53, 0x5d, 0x30, 0xdd, 0xd6, 0xa2, 0xe1,
+ 0x35, 0xdc, 0xb6, 0xe7, 0x7e, 0xc8, 0xff, 0xf8, 0x26, 0x3d, 0xa2, 0x4e, 0xe0, 0x2f, 0xb6, 0x0f,
+ 0x1a, 0x8b, 0x46, 0xdb, 0xf2, 0x17, 0xc5, 0x6f, 0xb7, 0xe3, 0x99, 0x74, 0xf1, 0xe8, 0x15, 0xc3,
+ 0x6e, 0x37, 0x8d, 0x57, 0x16, 0x1b, 0xd4, 0xa1, 0x9e, 0x11, 0xd0, 0xda, 0x42, 0xdb, 0x73, 0x03,
+ 0x97, 0x7c, 0x3b, 0x62, 0xb7, 0x10, 0xb2, 0xe3, 0x7f, 0x7c, 0x20, 0x86, 0x2f, 0xb4, 0x0f, 0x1a,
+ 0x0b, 0x8c, 0xdd, 0x82, 0xc6, 0x6e, 0x21, 0x64, 0x37, 0xf7, 0x9d, 0x73, 0x6b, 0x63, 0xba, 0xad,
+ 0x96, 0xeb, 0x24, 0xe5, 0xcf, 0x7d, 0x53, 0x63, 0xd0, 0x70, 0x1b, 0xee, 0x22, 0x07, 0x57, 0x3b,
+ 0x75, 0xfe, 0x8b, 0xff, 0xe0, 0x7f, 0x49, 0xf2, 0xf9, 0x83, 0x57, 0xfd, 0x05, 0xcb, 0x65, 0x2c,
+ 0x17, 0x4d, 0xd7, 0x63, 0x0f, 0xd6, 0xc5, 0xf2, 0x37, 0x22, 0x9a, 0x96, 0x61, 0x36, 0x2d, 0x87,
+ 0x7a, 0xc7, 0x91, 0x1e, 0x2d, 0x1a, 0x18, 0x69, 0xa3, 0x16, 0x4f, 0x1b, 0xe5, 0x75, 0x9c, 0xc0,
+ 0x6a, 0xd1, 0xae, 0x01, 0xbf, 0xf9, 0xa8, 0x01, 0xbe, 0xd9, 0xa4, 0x2d, 0x23, 0x39, 0x6e, 0xfe,
+ 0xbf, 0x32, 0x30, 0xbb, 0xb4, 0xb5, 0xbb, 0xb3, 0xec, 0x3a, 0x7e, 0xa7, 0x45, 0x97, 0x5d, 0xa7,
+ 0x6e, 0x35, 0xc8, 0xb7, 0x60, 0xdc, 0x14, 0x00, 0x6f, 0xcf, 0x68, 0x94, 0x32, 0xd7, 0x32, 0x2f,
+ 0x15, 0xcb, 0x97, 0x3e, 0x7f, 0x78, 0xf5, 0xa9, 0x93, 0x87, 0x57, 0xc7, 0x97, 0x23, 0x14, 0xea,
+ 0x74, 0xe4, 0x06, 0x8c, 0x19, 0x9d, 0xc0, 0x5d, 0x32, 0x0f, 0x4a, 0x23, 0xd7, 0x32, 0x2f, 0x15,
+ 0xca, 0xd3, 0x72, 0xc8, 0xd8, 0x92, 0x00, 0x63, 0x88, 0x27, 0x8b, 0x50, 0xa4, 0x0f, 0x4c, 0xbb,
+ 0xe3, 0x5b, 0x47, 0xb4, 0x94, 0xe5, 0xc4, 0xb3, 0x92, 0xb8, 0xb8, 0x1a, 0x22, 0x30, 0xa2, 0x61,
+ 0xbc, 0x1d, 0x77, 0xd3, 0x35, 0x0d, 0xbb, 0x94, 0x8b, 0xf3, 0xde, 0x16, 0x60, 0x0c, 0xf1, 0xe4,
+ 0x3a, 0xe4, 0x1d, 0xf7, 0x9e, 0x61, 0x05, 0xa5, 0x51, 0x4e, 0x39, 0x25, 0x29, 0xf3, 0xdb, 0x1c,
+ 0x8a, 0x12, 0x3b, 0xff, 0x79, 0x11, 0xa6, 0xd9, 0xb3, 0xaf, 0x32, 0xe3, 0xa8, 0x70, 0x5b, 0x22,
+ 0x2f, 0x40, 0xb6, 0xe3, 0xd9, 0xf2, 0x89, 0xc7, 0xe5, 0xc0, 0xec, 0x3e, 0x6e, 0x22, 0x83, 0x93,
+ 0x57, 0x61, 0x82, 0x3e, 0x30, 0x9b, 0x86, 0xd3, 0xa0, 0xdb, 0x46, 0x8b, 0xf2, 0xc7, 0x2c, 0x96,
+ 0x2f, 0x4b, 0xba, 0x89, 0x55, 0x0d, 0x87, 0x31, 0x4a, 0x7d, 0xe4, 0xde, 0x71, 0x5b, 0x3c, 0x73,
+ 0xca, 0x48, 0x86, 0xc3, 0x18, 0x25, 0xb9, 0x09, 0xe0, 0xb9, 0x9d, 0xc0, 0x72, 0x1a, 0x1b, 0xf4,
+ 0x98, 0x3f, 0x7c, 0xb1, 0x4c, 0xe4, 0x38, 0x40, 0x85, 0x41, 0x8d, 0x8a, 0xfc, 0x0e, 0xcc, 0x9a,
+ 0xae, 0xe3, 0x50, 0x33, 0xb0, 0x5c, 0xa7, 0x6c, 0x98, 0x07, 0x6e, 0xbd, 0xce, 0xdf, 0xc6, 0xf8,
+ 0xcd, 0x57, 0x17, 0xce, 0xed, 0x64, 0xc2, 0x4b, 0x16, 0xe4, 0xf8, 0xf2, 0xd3, 0x27, 0x0f, 0xaf,
+ 0xce, 0x2e, 0x27, 0xd9, 0x62, 0xb7, 0x24, 0xf2, 0x32, 0x14, 0x3e, 0xf4, 0x5d, 0xa7, 0xec, 0xd6,
+ 0x8e, 0x4b, 0x79, 0xfe, 0x0d, 0x66, 0xa4, 0xc2, 0x85, 0x37, 0x2b, 0x77, 0xb6, 0x19, 0x1c, 0x15,
+ 0x05, 0xd9, 0x87, 0x6c, 0x60, 0xfb, 0xa5, 0x31, 0xae, 0xde, 0x6b, 0x3d, 0xab, 0xb7, 0xb7, 0x59,
+ 0x11, 0x66, 0x5b, 0x1e, 0x63, 0xdf, 0x6a, 0x6f, 0xb3, 0x82, 0x8c, 0x1f, 0xf9, 0x51, 0x06, 0x0a,
+ 0xcc, 0xbf, 0x6a, 0x46, 0x60, 0x94, 0x0a, 0xd7, 0xb2, 0x2f, 0x8d, 0xdf, 0x7c, 0x77, 0xa1, 0xaf,
+ 0x00, 0xb3, 0x90, 0xb0, 0x96, 0x85, 0x2d, 0xc9, 0x7e, 0xd5, 0x09, 0xbc, 0xe3, 0xe8, 0x19, 0x43,
+ 0x30, 0x2a, 0xf9, 0xe4, 0x2f, 0x33, 0x30, 0x1d, 0x7e, 0xd5, 0x15, 0x6a, 0xda, 0x86, 0x47, 0x4b,
+ 0x45, 0xfe, 0xc0, 0x6f, 0x0d, 0x42, 0xa7, 0x38, 0x67, 0xf9, 0x3a, 0x2e, 0x9d, 0x3c, 0xbc, 0x3a,
+ 0x9d, 0x40, 0x61, 0x52, 0x0b, 0xf2, 0x49, 0x06, 0x26, 0x0e, 0x3b, 0xb4, 0xa3, 0xd4, 0x02, 0xae,
+ 0xd6, 0xfe, 0x00, 0xd4, 0xda, 0xd5, 0xd8, 0x4a, 0x9d, 0x66, 0x98, 0xb1, 0xeb, 0x70, 0x8c, 0x09,
+ 0x27, 0x3f, 0x80, 0x22, 0xff, 0x5d, 0xb6, 0x9c, 0x5a, 0x69, 0x9c, 0x6b, 0x82, 0x83, 0xd2, 0x84,
+ 0xf1, 0x94, 0x6a, 0x4c, 0xb2, 0x38, 0xa3, 0x80, 0x18, 0xc9, 0x24, 0xf7, 0x61, 0x4c, 0x86, 0xb4,
+ 0xd2, 0x04, 0x17, 0xbf, 0x33, 0x00, 0xf1, 0xb1, 0xe8, 0x5a, 0x1e, 0x67, 0x51, 0x4b, 0x82, 0x30,
+ 0x94, 0x36, 0xf7, 0x3a, 0x4c, 0xc6, 0xcc, 0x89, 0xcc, 0x40, 0xf6, 0x80, 0x1e, 0x8b, 0x50, 0x84,
+ 0xec, 0x4f, 0x72, 0x19, 0x46, 0x8f, 0x0c, 0xbb, 0x23, 0xc3, 0x0e, 0x8a, 0x1f, 0xaf, 0x8d, 0xbc,
+ 0x9a, 0x99, 0xff, 0x22, 0x03, 0xcf, 0x9d, 0x6a, 0x08, 0x2c, 0x76, 0xd6, 0x3a, 0x9e, 0x51, 0xb5,
+ 0x29, 0xe7, 0xa6, 0xc5, 0xce, 0x15, 0x01, 0xc6, 0x10, 0xcf, 0x82, 0x0d, 0x0b, 0xd1, 0x2b, 0xd4,
+ 0xa6, 0x01, 0x95, 0x51, 0x5c, 0x05, 0x9b, 0x25, 0x85, 0x41, 0x8d, 0x8a, 0x79, 0xbb, 0xe5, 0x04,
+ 0xd4, 0x73, 0x0c, 0x5b, 0x86, 0x72, 0xe5, 0x09, 0xeb, 0x12, 0x8e, 0x8a, 0x42, 0x8b, 0xce, 0xb9,
+ 0x33, 0xa3, 0xf3, 0xb7, 0xe1, 0x52, 0xca, 0x97, 0xd3, 0x86, 0x67, 0xce, 0x1c, 0xfe, 0xef, 0x19,
+ 0x78, 0x26, 0xdd, 0x06, 0xc9, 0x35, 0xc8, 0x39, 0x2c, 0x78, 0x8b, 0x20, 0x3f, 0x21, 0x19, 0xe4,
+ 0x78, 0xd0, 0xe6, 0x18, 0xfd, 0x85, 0x8d, 0xf4, 0xf4, 0xc2, 0xb2, 0xe7, 0x7a, 0x61, 0xb1, 0xe4,
+ 0x97, 0x3b, 0x47, 0xf2, 0x3b, 0x6f, 0x46, 0xfb, 0x49, 0x0e, 0x9e, 0x5b, 0xfa, 0xa8, 0xe3, 0x51,
+ 0x1e, 0xa4, 0xfc, 0xdb, 0x9d, 0xaa, 0x9e, 0xdb, 0xae, 0x41, 0xae, 0x7e, 0x58, 0x73, 0x92, 0xcf,
+ 0x7d, 0x6b, 0x77, 0x65, 0x1b, 0x39, 0x86, 0xb4, 0xe1, 0x92, 0xdf, 0x34, 0x3c, 0x5a, 0x5b, 0x32,
+ 0x4d, 0xea, 0xfb, 0x1b, 0xf4, 0x58, 0x65, 0xb9, 0xf1, 0x9b, 0x5f, 0x5f, 0x10, 0x73, 0x0c, 0x66,
+ 0xeb, 0x0b, 0x6c, 0xba, 0xb3, 0x70, 0xf4, 0xca, 0x42, 0x85, 0x9a, 0x1e, 0x0d, 0x36, 0xe8, 0x71,
+ 0x85, 0xda, 0xd4, 0x0c, 0x5c, 0xaf, 0xfc, 0xec, 0xc9, 0xc3, 0xab, 0x97, 0x2a, 0xdd, 0x5c, 0x30,
+ 0x8d, 0x35, 0xa9, 0xc1, 0x74, 0x02, 0xcc, 0xdf, 0xe1, 0xb9, 0xa5, 0xf1, 0x18, 0x97, 0x90, 0x86,
+ 0x49, 0x96, 0xec, 0x7b, 0x36, 0x3b, 0x55, 0xfe, 0x2c, 0x22, 0x7f, 0xaa, 0xef, 0x79, 0x5b, 0x80,
+ 0x31, 0xc4, 0x93, 0x9f, 0xe8, 0x59, 0x63, 0x94, 0x67, 0x8d, 0x7a, 0xbf, 0x11, 0xe0, 0xb4, 0x2f,
+ 0x72, 0xfe, 0xfc, 0xd1, 0x5f, 0x74, 0xf8, 0x9f, 0x1c, 0x5c, 0x5a, 0x36, 0x6c, 0xea, 0xd4, 0x0c,
+ 0x4f, 0x37, 0x88, 0x97, 0xa1, 0xc0, 0xa6, 0x85, 0xb5, 0x8e, 0x1d, 0x3a, 0x83, 0x52, 0xa1, 0x22,
+ 0xe1, 0xa8, 0x28, 0x94, 0x9b, 0x1f, 0x19, 0xb6, 0x9c, 0xf7, 0xc4, 0xdd, 0xfc, 0x48, 0xb9, 0xf9,
+ 0x91, 0x61, 0x93, 0xd7, 0x60, 0x4a, 0xda, 0xaf, 0xeb, 0xac, 0x18, 0x01, 0xf5, 0x4b, 0xd9, 0x6b,
+ 0x59, 0x36, 0x73, 0x39, 0x79, 0x78, 0x75, 0x6a, 0x35, 0x86, 0xc1, 0x04, 0x25, 0x93, 0xc4, 0xe6,
+ 0xac, 0x1f, 0xb9, 0x4e, 0xf8, 0xbd, 0x94, 0xa4, 0x3d, 0x09, 0x47, 0x45, 0x41, 0xb6, 0x60, 0xbc,
+ 0xe3, 0x53, 0x6f, 0xc7, 0x38, 0xb6, 0x5d, 0xa3, 0xc6, 0x3d, 0x64, 0xa2, 0xfc, 0x0d, 0x36, 0x51,
+ 0xdd, 0x8f, 0xc0, 0xbf, 0x7a, 0x78, 0xb5, 0x44, 0x1d, 0xd3, 0xad, 0x59, 0x4e, 0x63, 0x91, 0xcd,
+ 0x3c, 0x16, 0xd0, 0xb8, 0xbf, 0x45, 0x7d, 0xdf, 0x68, 0x50, 0xd4, 0xc7, 0x93, 0x3f, 0xd6, 0x0d,
+ 0x20, 0xcf, 0x0d, 0xe0, 0x7b, 0x7d, 0x1a, 0x40, 0xca, 0xbb, 0xef, 0x61, 0xea, 0xf0, 0xbb, 0x19,
+ 0x18, 0x6f, 0x53, 0xcf, 0xb7, 0xfc, 0x80, 0x3a, 0x26, 0x95, 0xf3, 0xa4, 0x3b, 0x7d, 0xea, 0xc4,
+ 0x75, 0xd9, 0x89, 0xd8, 0x96, 0xa7, 0xd9, 0x1b, 0xd3, 0x00, 0xa8, 0x0b, 0xed, 0xcf, 0xfe, 0x1e,
+ 0xc0, 0xe5, 0x65, 0x23, 0x30, 0x9b, 0x9d, 0xb6, 0x88, 0xc0, 0x1d, 0xcf, 0x60, 0xb3, 0x45, 0xe6,
+ 0x96, 0xd4, 0x61, 0x51, 0xb4, 0x96, 0xcc, 0x4b, 0xab, 0x02, 0x8c, 0x21, 0x9e, 0x55, 0x24, 0x2d,
+ 0xe3, 0xc1, 0x8a, 0x1c, 0x29, 0xed, 0x4f, 0x55, 0x24, 0x5b, 0x11, 0x0a, 0x75, 0xba, 0xf9, 0xef,
+ 0xc3, 0x65, 0x21, 0x72, 0xcb, 0x68, 0x6b, 0xcf, 0x76, 0x8e, 0x14, 0xb0, 0x02, 0x33, 0xa6, 0x47,
+ 0x8d, 0x80, 0xae, 0xd7, 0xb7, 0xdd, 0x60, 0xf5, 0x81, 0xe5, 0x07, 0x32, 0x17, 0x94, 0x24, 0xf5,
+ 0xcc, 0x72, 0x02, 0x8f, 0x5d, 0x23, 0xe6, 0xff, 0x3a, 0x0f, 0x64, 0xb5, 0x65, 0x05, 0x01, 0x8d,
+ 0x39, 0xde, 0x75, 0xc8, 0x57, 0x3d, 0xf7, 0x80, 0x7a, 0x52, 0x01, 0x15, 0xcf, 0xcb, 0x1c, 0x8a,
+ 0x12, 0xcb, 0x92, 0x0b, 0xcb, 0xe7, 0x0e, 0xb5, 0x59, 0x60, 0x1c, 0x89, 0x4f, 0xfd, 0x97, 0x15,
+ 0x06, 0x35, 0x2a, 0x5e, 0xbb, 0x89, 0x5f, 0x3c, 0xde, 0x65, 0x13, 0xb5, 0x5b, 0x84, 0x42, 0x9d,
+ 0x8e, 0xdc, 0x81, 0x02, 0xf3, 0x02, 0x27, 0x8c, 0x91, 0xe7, 0x8e, 0xc0, 0x13, 0xcc, 0x6c, 0xf7,
+ 0xe5, 0x50, 0x54, 0x4c, 0x18, 0xc3, 0xb6, 0xe1, 0xfb, 0xf7, 0x5d, 0xaf, 0x26, 0x2b, 0x8f, 0x5e,
+ 0x18, 0xee, 0xc8, 0xa1, 0xa8, 0x98, 0xa4, 0xd7, 0x34, 0xf9, 0x27, 0x52, 0xd3, 0x8c, 0x9d, 0xb7,
+ 0xa6, 0x29, 0x0c, 0xb8, 0xa6, 0xf9, 0x54, 0x0f, 0x4e, 0x45, 0x1e, 0x9c, 0x3e, 0xe8, 0x37, 0x10,
+ 0x74, 0x99, 0xe7, 0x45, 0xa5, 0xa5, 0xcf, 0x46, 0x60, 0x26, 0x19, 0x86, 0xc8, 0x47, 0x30, 0x66,
+ 0x8a, 0x58, 0xc1, 0x99, 0x8c, 0xdf, 0xac, 0xf4, 0x1d, 0x7c, 0xbb, 0x23, 0x8f, 0x9c, 0x82, 0x0b,
+ 0x0c, 0x86, 0x02, 0xc9, 0xc7, 0x19, 0x28, 0x9a, 0x61, 0xb8, 0x90, 0xb3, 0x9e, 0xbe, 0xc5, 0xa7,
+ 0x84, 0x1f, 0x51, 0x7e, 0x28, 0x0c, 0x46, 0x42, 0xe7, 0x7f, 0x39, 0x02, 0xe3, 0x7a, 0xa4, 0xf8,
+ 0x9e, 0xf6, 0xbd, 0xc5, 0xfb, 0xf8, 0x35, 0xcd, 0x8b, 0xd4, 0x52, 0x4f, 0xa4, 0x04, 0xa3, 0x66,
+ 0x7e, 0x75, 0xa7, 0xfa, 0x21, 0x35, 0x03, 0xf6, 0x71, 0xa2, 0x88, 0x11, 0xc1, 0xb4, 0xf4, 0xd2,
+ 0x86, 0x9c, 0xdf, 0xa6, 0xa6, 0x7c, 0xdc, 0xed, 0x41, 0xa4, 0x15, 0xa1, 0x7b, 0xa5, 0x4d, 0xcd,
+ 0x28, 0xb4, 0xb2, 0x5f, 0xc8, 0x25, 0x91, 0x07, 0x90, 0xf7, 0x03, 0x23, 0xe8, 0xf8, 0x72, 0xaa,
+ 0xb7, 0x33, 0x40, 0x99, 0x9c, 0x6f, 0x14, 0x4f, 0xc5, 0x6f, 0x94, 0xf2, 0xe6, 0xbf, 0xcc, 0xc0,
+ 0xb4, 0x46, 0xbd, 0x69, 0xf9, 0x01, 0x79, 0xb7, 0xeb, 0x0d, 0x2f, 0x9c, 0xef, 0x0d, 0xb3, 0xd1,
+ 0xfc, 0xfd, 0x2a, 0x07, 0x09, 0x21, 0xda, 0xdb, 0x75, 0x61, 0xd4, 0x0a, 0x68, 0xcb, 0x2f, 0x8d,
+ 0x70, 0x67, 0x7d, 0x73, 0x70, 0x8f, 0x5a, 0x9e, 0x94, 0x62, 0x47, 0xd7, 0x99, 0x00, 0x14, 0x72,
+ 0xe6, 0xff, 0xf5, 0x5b, 0xb1, 0x47, 0x64, 0xaf, 0x9d, 0xaf, 0x3d, 0x31, 0x50, 0xb9, 0xe3, 0x6f,
+ 0x47, 0x59, 0x2f, 0x5a, 0x7b, 0xd2, 0x70, 0x18, 0xa3, 0x24, 0x87, 0x50, 0x08, 0x68, 0xab, 0x6d,
+ 0x1b, 0x41, 0x58, 0x05, 0xac, 0xf5, 0xf9, 0x04, 0x7b, 0x92, 0x9d, 0x08, 0xf3, 0xe1, 0x2f, 0x54,
+ 0x62, 0x48, 0x0b, 0xc6, 0x7c, 0xea, 0x1d, 0x59, 0x26, 0x95, 0xe6, 0x71, 0xab, 0x4f, 0x89, 0x15,
+ 0xc1, 0x4d, 0xf8, 0xbc, 0xfc, 0x81, 0xa1, 0x0c, 0xf2, 0x75, 0x18, 0xf3, 0x68, 0xdb, 0xb6, 0x4c,
+ 0x83, 0xa7, 0xbd, 0x51, 0x41, 0x86, 0x02, 0x84, 0x21, 0x8e, 0x7c, 0x1f, 0x46, 0x5b, 0x96, 0x63,
+ 0xb9, 0xb2, 0x24, 0x78, 0x7b, 0xb0, 0x6e, 0xb2, 0xb0, 0xc5, 0x78, 0x8b, 0x70, 0xab, 0x3e, 0x2b,
+ 0x87, 0xa1, 0x10, 0xcb, 0x17, 0xb3, 0x4c, 0x39, 0x8d, 0x94, 0xb3, 0xd2, 0x77, 0x07, 0xac, 0x83,
+ 0x9a, 0xa5, 0xc6, 0xa3, 0x7e, 0x08, 0x46, 0x25, 0x9f, 0x7c, 0x04, 0xb9, 0xba, 0x65, 0xb3, 0x99,
+ 0x68, 0x76, 0x00, 0x0b, 0x58, 0x49, 0x3d, 0x6e, 0x59, 0x36, 0x15, 0x3a, 0x44, 0x25, 0xaa, 0x65,
+ 0x53, 0xe4, 0x32, 0xf9, 0x8b, 0xf0, 0xa8, 0xe0, 0x31, 0xa0, 0x55, 0xbd, 0xa4, 0x02, 0x28, 0xd9,
+ 0x27, 0x5e, 0x44, 0x08, 0x46, 0x25, 0x9f, 0xfc, 0x7e, 0x06, 0xc6, 0xee, 0xd3, 0x6a, 0xd3, 0x75,
+ 0x0f, 0x64, 0x36, 0x7e, 0x67, 0xc0, 0xba, 0xdc, 0x13, 0xdc, 0x85, 0x2a, 0x6a, 0x7a, 0x2c, 0xa1,
+ 0x18, 0x0a, 0x67, 0x5f, 0xc4, 0x68, 0x1d, 0xb6, 0x4b, 0x30, 0x94, 0x2f, 0xb2, 0xd4, 0x3a, 0x6c,
+ 0x27, 0xbe, 0xc8, 0xd2, 0xd6, 0xee, 0x0e, 0x72, 0x99, 0xcc, 0x35, 0x0e, 0x8c, 0xfa, 0x81, 0x51,
+ 0x1a, 0x1f, 0x8a, 0x6b, 0x6c, 0x30, 0xde, 0x09, 0xd7, 0xe0, 0x30, 0x14, 0x62, 0xd9, 0xb3, 0xb7,
+ 0x0e, 0x83, 0xa0, 0x34, 0x31, 0x94, 0x67, 0xdf, 0x3a, 0x0c, 0x82, 0xc4, 0xb3, 0x6f, 0xed, 0xee,
+ 0xed, 0x21, 0x97, 0xc9, 0x64, 0x3b, 0x46, 0xe0, 0x97, 0x26, 0x87, 0x22, 0x7b, 0xdb, 0x08, 0xfc,
+ 0x84, 0xec, 0xed, 0xa5, 0xbd, 0x0a, 0x72, 0x99, 0xe4, 0x08, 0xb2, 0xbe, 0xe3, 0x97, 0xa6, 0xb8,
+ 0xe8, 0x7b, 0x03, 0x16, 0x5d, 0x71, 0xa4, 0x64, 0xb5, 0x07, 0x52, 0xd9, 0xae, 0x20, 0x13, 0xc8,
+ 0xe5, 0x1e, 0xfa, 0xa5, 0xe9, 0xe1, 0xc8, 0x3d, 0xec, 0x92, 0xbb, 0xcb, 0xe4, 0x1e, 0xfa, 0xac,
+ 0x0e, 0xce, 0xb7, 0x3b, 0xd5, 0x4a, 0xa7, 0x5a, 0x9a, 0xe1, 0xb2, 0xbf, 0x3b, 0x60, 0xd9, 0x3b,
+ 0x9c, 0xb9, 0x10, 0xaf, 0x66, 0x10, 0x02, 0x88, 0x52, 0x32, 0x57, 0x42, 0x48, 0x2d, 0xcd, 0x0e,
+ 0x45, 0x89, 0x35, 0xce, 0x2d, 0xa1, 0x84, 0x00, 0xa2, 0x94, 0x1c, 0x2a, 0x61, 0x1b, 0xd5, 0x12,
+ 0x19, 0x96, 0x12, 0xb6, 0x91, 0xa2, 0x84, 0x6d, 0x08, 0x25, 0x6c, 0xa3, 0xca, 0x4c, 0xbf, 0x59,
+ 0xab, 0xfb, 0xa5, 0x4b, 0x43, 0x31, 0xfd, 0xdb, 0xb5, 0x7a, 0xd2, 0xf4, 0x6f, 0xaf, 0xdc, 0xaa,
+ 0x20, 0x97, 0xc9, 0x42, 0x8e, 0x6f, 0x1b, 0xe6, 0x41, 0xe9, 0xf2, 0x50, 0x42, 0x4e, 0x85, 0xf1,
+ 0x4e, 0x84, 0x1c, 0x0e, 0x43, 0x21, 0x96, 0xfc, 0x45, 0x06, 0xc6, 0xfd, 0xc0, 0xf5, 0x8c, 0x06,
+ 0x5d, 0xf3, 0xac, 0x5a, 0xe9, 0xe9, 0xc1, 0x54, 0x62, 0x49, 0x35, 0x22, 0x09, 0x42, 0x19, 0x55,
+ 0xc5, 0x6b, 0x18, 0xd4, 0x15, 0x21, 0x7f, 0x93, 0x81, 0x29, 0x23, 0xb6, 0xdc, 0x58, 0x7a, 0x86,
+ 0xeb, 0x56, 0x1d, 0x74, 0x4a, 0x88, 0xaf, 0x69, 0x72, 0xf5, 0x9e, 0x91, 0xea, 0x4d, 0xc5, 0x91,
+ 0x98, 0xd0, 0x88, 0x9b, 0xaf, 0x1f, 0x78, 0x56, 0x9b, 0x96, 0x9e, 0x1d, 0x8a, 0xf9, 0x56, 0x38,
+ 0xf3, 0x84, 0xf9, 0x0a, 0x20, 0x4a, 0xc9, 0x3c, 0x75, 0x53, 0x51, 0xfa, 0x96, 0x4a, 0x43, 0x49,
+ 0xdd, 0x61, 0x61, 0x1d, 0x4f, 0xdd, 0x12, 0x8a, 0xa1, 0x70, 0x66, 0xcb, 0x1e, 0xad, 0x59, 0x7e,
+ 0xe9, 0xb9, 0xa1, 0xd8, 0x32, 0x32, 0xde, 0x09, 0x5b, 0xe6, 0x30, 0x14, 0x62, 0x59, 0x38, 0x77,
+ 0xfc, 0xc3, 0xd2, 0xdc, 0x50, 0xc2, 0xf9, 0xb6, 0x7f, 0x98, 0x08, 0xe7, 0xdb, 0x95, 0x5d, 0x64,
+ 0x02, 0x65, 0x38, 0xb7, 0x7d, 0xc3, 0x2b, 0x7d, 0x6d, 0x48, 0xe1, 0x9c, 0x31, 0xef, 0x0a, 0xe7,
+ 0x0c, 0x88, 0x52, 0x32, 0xb7, 0x02, 0xde, 0x12, 0x61, 0x99, 0xa5, 0xe7, 0x87, 0x62, 0x05, 0x6b,
+ 0x82, 0x7b, 0xc2, 0x0a, 0x24, 0x14, 0x43, 0xe1, 0x73, 0x1d, 0x80, 0xa8, 0x06, 0x48, 0x59, 0x45,
+ 0xd9, 0xd5, 0x57, 0x51, 0xc6, 0x6f, 0xbe, 0xde, 0xf3, 0x8a, 0x52, 0xe5, 0xd7, 0x97, 0xbc, 0xc0,
+ 0xaa, 0x1b, 0x66, 0xa0, 0x2d, 0xc1, 0xcc, 0xfd, 0x49, 0x06, 0x26, 0x63, 0xf3, 0xfe, 0x14, 0xd1,
+ 0xcd, 0xb8, 0x68, 0x1c, 0xfc, 0x62, 0xb8, 0xae, 0xd1, 0x1f, 0x64, 0xa0, 0xa8, 0x2a, 0x80, 0x14,
+ 0x6d, 0x6a, 0x71, 0x6d, 0xfa, 0x5d, 0xaf, 0xe0, 0xa2, 0xd2, 0x35, 0x61, 0xef, 0x26, 0x56, 0x0a,
+ 0x0c, 0xff, 0xdd, 0x28, 0x71, 0xe9, 0x1a, 0xfd, 0x30, 0x03, 0x13, 0x7a, 0x41, 0x90, 0xa2, 0x90,
+ 0x19, 0x57, 0x68, 0xab, 0x4f, 0x85, 0xa4, 0xb4, 0x65, 0xd7, 0x09, 0xe8, 0x83, 0x20, 0xf9, 0x9d,
+ 0x54, 0x5d, 0x30, 0xfc, 0xef, 0x94, 0xe8, 0xbc, 0x48, 0xbc, 0x15, 0x88, 0x8a, 0x84, 0x14, 0x55,
+ 0x68, 0x5c, 0x95, 0x7e, 0x77, 0x4e, 0x84, 0xac, 0xd3, 0xad, 0x57, 0x55, 0x0c, 0xc3, 0x7f, 0x2b,
+ 0xac, 0x12, 0x39, 0x45, 0x93, 0x3f, 0xcc, 0x40, 0x51, 0xd5, 0x0f, 0xc3, 0x7f, 0x29, 0xac, 0x2e,
+ 0x11, 0x19, 0xbe, 0x5b, 0x95, 0xdf, 0xcb, 0x40, 0x21, 0xac, 0x27, 0x86, 0x6f, 0xb2, 0x95, 0xed,
+ 0xca, 0x29, 0xaf, 0x84, 0xeb, 0x71, 0x78, 0x61, 0x7a, 0xec, 0x9e, 0xa6, 0xc7, 0x27, 0x19, 0x18,
+ 0xd7, 0x6a, 0x8d, 0x14, 0x55, 0xea, 0x71, 0x55, 0xfa, 0x5d, 0x20, 0x95, 0xc2, 0x4e, 0xd7, 0x46,
+ 0x2b, 0x3a, 0x86, 0xaf, 0x8d, 0x14, 0x76, 0xa6, 0x36, 0x61, 0xf5, 0x71, 0x21, 0xda, 0x30, 0x61,
+ 0xa7, 0xbb, 0xb3, 0xaa, 0x44, 0x86, 0xef, 0xce, 0xac, 0xc2, 0x39, 0x23, 0xc8, 0x45, 0x65, 0xc9,
+ 0xf0, 0xfd, 0x59, 0xc8, 0x4a, 0xd7, 0xe5, 0xcf, 0x33, 0x30, 0x93, 0xac, 0x4d, 0x52, 0x34, 0x3a,
+ 0x88, 0x6b, 0xd4, 0x6f, 0x43, 0x99, 0x2e, 0x31, 0x5d, 0xaf, 0x9f, 0x66, 0xe0, 0x52, 0x4a, 0x5d,
+ 0x92, 0xa2, 0x9a, 0x13, 0x57, 0xed, 0xad, 0x61, 0x35, 0x78, 0x24, 0x2d, 0x5b, 0x2b, 0x4c, 0x86,
+ 0x6f, 0xd9, 0x52, 0x58, 0xba, 0x36, 0x9f, 0x66, 0x60, 0x42, 0x2f, 0x50, 0x52, 0xd4, 0x69, 0xc4,
+ 0xd5, 0xd9, 0x1d, 0xf8, 0x3e, 0x63, 0xd2, 0xbe, 0xa3, 0x52, 0x65, 0xf8, 0xf6, 0x2d, 0x64, 0x9d,
+ 0x9e, 0x27, 0xc2, 0xc2, 0x65, 0xf8, 0x79, 0x62, 0xbb, 0xb2, 0x7b, 0x66, 0x9e, 0x50, 0x45, 0xcc,
+ 0x45, 0xe4, 0x09, 0x2e, 0xec, 0x74, 0x8b, 0xd1, 0x8b, 0x99, 0xe1, 0x5b, 0x4c, 0x28, 0x2d, 0x55,
+ 0x9f, 0xf9, 0x00, 0x66, 0xbb, 0x36, 0xfe, 0xc8, 0x07, 0x6a, 0x6b, 0x51, 0x6c, 0xe5, 0xfd, 0x56,
+ 0xef, 0x75, 0xd2, 0xd9, 0x3b, 0x88, 0x3f, 0xcf, 0xc2, 0x74, 0xa2, 0x66, 0xe0, 0xed, 0x7c, 0xec,
+ 0x27, 0xef, 0xeb, 0x16, 0x7b, 0x6b, 0x51, 0x3b, 0x5f, 0x88, 0xc0, 0x88, 0x86, 0x7c, 0x96, 0x81,
+ 0xe9, 0xfb, 0x46, 0x60, 0x36, 0x77, 0x8c, 0xa0, 0x29, 0xb6, 0x81, 0x07, 0x94, 0x41, 0xee, 0xc5,
+ 0xb9, 0x96, 0x9f, 0x95, 0x7a, 0x4c, 0x27, 0x10, 0x98, 0x94, 0x4f, 0x6e, 0xc0, 0x58, 0xdb, 0xb5,
+ 0x6d, 0xcb, 0x69, 0xc8, 0x26, 0x46, 0x55, 0xab, 0xee, 0x08, 0x30, 0x86, 0xf8, 0x78, 0x63, 0x75,
+ 0x6e, 0x20, 0x5b, 0x30, 0x89, 0x57, 0x7a, 0x51, 0x1d, 0x08, 0xbf, 0xcc, 0x02, 0xe9, 0xb6, 0xb2,
+ 0x47, 0x1d, 0x02, 0xb8, 0x0e, 0x79, 0x33, 0xfa, 0x68, 0x5a, 0xf7, 0x8e, 0x7c, 0xb7, 0x12, 0x2b,
+ 0x1a, 0xe6, 0x7c, 0x6a, 0x76, 0x3c, 0xda, 0xdd, 0x17, 0x2b, 0xe0, 0xa8, 0x28, 0x62, 0xfd, 0x25,
+ 0xb9, 0x47, 0xf6, 0x97, 0x7c, 0xda, 0xdd, 0xa6, 0xf8, 0xc1, 0xc0, 0xdd, 0xad, 0x87, 0x26, 0xb5,
+ 0x7d, 0xde, 0x06, 0xdb, 0x14, 0xdd, 0x3c, 0xb2, 0x2b, 0xe7, 0x9c, 0xfd, 0x3e, 0x53, 0xb2, 0x53,
+ 0x56, 0x0e, 0x46, 0x8d, 0x51, 0x7f, 0x5f, 0xf7, 0x3f, 0xc7, 0x60, 0xb6, 0x6b, 0xb2, 0x49, 0xe6,
+ 0x60, 0xc4, 0x12, 0xfd, 0x66, 0xd9, 0x32, 0xc8, 0x27, 0x1a, 0x59, 0x5f, 0xc1, 0x11, 0xab, 0x46,
+ 0x82, 0x68, 0x3b, 0x6f, 0x18, 0xf5, 0xb3, 0xd8, 0x5b, 0xee, 0xda, 0xbc, 0x7b, 0x11, 0x46, 0xdd,
+ 0xfb, 0x0e, 0xf5, 0x64, 0xaf, 0x96, 0x5a, 0xa6, 0xbb, 0xc3, 0x80, 0x28, 0x70, 0xfc, 0x14, 0x08,
+ 0x6d, 0xbb, 0xbe, 0x15, 0xb8, 0x5e, 0xf7, 0x29, 0x10, 0x85, 0x41, 0x8d, 0x8a, 0xcc, 0x43, 0x5e,
+ 0x68, 0xc5, 0x2d, 0xa4, 0x58, 0x06, 0x66, 0xa4, 0x62, 0x9e, 0x82, 0x12, 0x43, 0xee, 0x40, 0xc1,
+ 0x68, 0x5b, 0x7b, 0xee, 0x01, 0x75, 0x7a, 0xfb, 0x6c, 0x7c, 0xff, 0x7e, 0x69, 0x67, 0x9d, 0x0f,
+ 0x45, 0xc5, 0x84, 0xbc, 0x0f, 0x93, 0xf2, 0xc1, 0xa4, 0x31, 0x8c, 0xf5, 0xc2, 0x75, 0xf6, 0xe4,
+ 0xe1, 0xd5, 0xc9, 0x7b, 0xfa, 0x78, 0x8c, 0xb3, 0x8b, 0x79, 0x55, 0xe1, 0x91, 0x5e, 0x75, 0x1d,
+ 0xf2, 0x86, 0x19, 0x58, 0x47, 0xe2, 0xb4, 0x85, 0xd6, 0x39, 0xbd, 0xc4, 0xa1, 0x28, 0xb1, 0xf2,
+ 0xc4, 0x53, 0x10, 0x46, 0x71, 0xe8, 0x3a, 0xf1, 0x14, 0xa2, 0x50, 0xa7, 0x23, 0xaf, 0xc3, 0xa4,
+ 0x30, 0x90, 0xb2, 0xe1, 0xd3, 0x7d, 0xdc, 0xe4, 0x47, 0x16, 0x8a, 0xe5, 0xa7, 0xe5, 0xc0, 0xc9,
+ 0x35, 0x1d, 0x89, 0x71, 0x5a, 0xb2, 0x04, 0xd3, 0x02, 0xb0, 0xdf, 0xb6, 0x5d, 0xa3, 0xc6, 0x86,
+ 0x4f, 0xf0, 0xe1, 0x2a, 0x6a, 0xaf, 0xc5, 0xd1, 0x98, 0xa4, 0x27, 0x6f, 0x02, 0xa9, 0xf1, 0x9e,
+ 0xf2, 0xdb, 0xae, 0x7b, 0x70, 0xc7, 0xb9, 0x65, 0x39, 0x96, 0xdf, 0x2c, 0x4d, 0xf2, 0x47, 0x9d,
+ 0x93, 0x5c, 0xc8, 0x4a, 0x17, 0x05, 0xa6, 0x8c, 0x22, 0x7f, 0xa4, 0x87, 0x14, 0xb1, 0xab, 0xf8,
+ 0xfe, 0xa0, 0x4b, 0xbd, 0x8b, 0x0a, 0xec, 0x27, 0xa3, 0xdc, 0xf5, 0xe3, 0x95, 0x9d, 0xee, 0xde,
+ 0x99, 0x8b, 0x73, 0xef, 0x45, 0x28, 0x32, 0xb6, 0xd4, 0x0c, 0xd6, 0x57, 0x64, 0xc6, 0x50, 0xd3,
+ 0x83, 0x9d, 0x10, 0x81, 0x11, 0x8d, 0xe6, 0xb6, 0xd9, 0x53, 0xdd, 0xf6, 0x2d, 0x18, 0x37, 0x78,
+ 0x7b, 0xbb, 0xf0, 0xdc, 0x9e, 0x3a, 0x36, 0x79, 0xa7, 0xef, 0x52, 0x34, 0x1a, 0x75, 0x56, 0xa4,
+ 0x02, 0x4f, 0x8b, 0xa6, 0xdb, 0x4a, 0x65, 0xf3, 0x2e, 0xf5, 0xac, 0xba, 0x65, 0x8a, 0x9e, 0x5b,
+ 0x71, 0xf4, 0xe0, 0x05, 0xa9, 0xfa, 0xd3, 0xab, 0x69, 0x44, 0x98, 0x3e, 0x56, 0xfa, 0x89, 0x6d,
+ 0x28, 0x3f, 0xc9, 0x77, 0xf9, 0x49, 0x84, 0xc4, 0x38, 0xed, 0x29, 0x46, 0x5e, 0xe8, 0xdf, 0xc8,
+ 0x8b, 0x83, 0x32, 0xf2, 0xb8, 0x9d, 0x5d, 0x94, 0x91, 0xff, 0xac, 0x00, 0xd3, 0x89, 0x25, 0x83,
+ 0xd4, 0xa9, 0x65, 0xe6, 0x09, 0x4f, 0x2d, 0xaf, 0x41, 0x2e, 0x60, 0x41, 0x75, 0x24, 0xde, 0x6c,
+ 0xcd, 0xa3, 0x29, 0xc7, 0x30, 0xf3, 0x30, 0x9b, 0xd4, 0x3c, 0x08, 0xcf, 0x11, 0xc8, 0x4c, 0xa8,
+ 0xcc, 0x63, 0x59, 0x47, 0x62, 0x9c, 0x96, 0x7c, 0x03, 0x8a, 0x46, 0xad, 0xe6, 0x51, 0xdf, 0xa7,
+ 0x3e, 0x9f, 0x8e, 0x16, 0x45, 0x7f, 0xe5, 0x52, 0x08, 0xc4, 0x08, 0xcf, 0xb2, 0x47, 0xb3, 0x56,
+ 0xf7, 0xf7, 0x7d, 0xea, 0x71, 0x83, 0xd6, 0x8e, 0x16, 0xb0, 0x57, 0xc9, 0xe0, 0xa8, 0x28, 0x48,
+ 0x0d, 0xa6, 0x0f, 0xbc, 0xea, 0xf2, 0xb2, 0x61, 0x36, 0xe9, 0xe3, 0x4c, 0x6d, 0xf8, 0xe9, 0x94,
+ 0x8d, 0x38, 0x07, 0x4c, 0xb2, 0x94, 0x52, 0x36, 0xe8, 0x71, 0x60, 0x54, 0x1f, 0x27, 0x67, 0x86,
+ 0x52, 0x74, 0x0e, 0x98, 0x64, 0xc9, 0x32, 0xdc, 0x81, 0x57, 0x0d, 0x1b, 0xb5, 0xb9, 0xfb, 0x68,
+ 0x19, 0x6e, 0x23, 0x42, 0xa1, 0x4e, 0xc7, 0x5e, 0xd8, 0x81, 0x57, 0x45, 0x6a, 0xd8, 0x2d, 0x9e,
+ 0x42, 0xb5, 0x17, 0xb6, 0x21, 0xe1, 0xa8, 0x28, 0x48, 0x1b, 0x08, 0x7b, 0x3a, 0xfe, 0xdd, 0x55,
+ 0x7f, 0xab, 0x3c, 0x51, 0xf8, 0x52, 0xda, 0xd3, 0x28, 0x22, 0xfd, 0x81, 0x9e, 0x61, 0x0e, 0xbd,
+ 0xd1, 0xc5, 0x07, 0x53, 0x78, 0x93, 0xb7, 0xe1, 0xd9, 0x03, 0xaf, 0x2a, 0xdb, 0xfa, 0x76, 0x3c,
+ 0xcb, 0x31, 0xad, 0xb6, 0x21, 0x5a, 0xdf, 0x45, 0x2e, 0xbe, 0x2a, 0xd5, 0x7d, 0x76, 0x23, 0x9d,
+ 0x0c, 0x4f, 0x1b, 0x1f, 0xaf, 0x73, 0x26, 0x06, 0x52, 0xe7, 0x24, 0xdc, 0xf5, 0xa2, 0x22, 0xc5,
+ 0x3f, 0x64, 0x80, 0xf0, 0x6d, 0x8b, 0xf0, 0xe8, 0xf6, 0x9a, 0xe7, 0x76, 0xda, 0x2c, 0x33, 0x35,
+ 0xd8, 0x1f, 0x5a, 0x53, 0xa8, 0xca, 0x4c, 0x6b, 0x21, 0x02, 0x23, 0x1a, 0x36, 0x9b, 0x72, 0xed,
+ 0x1a, 0x55, 0x47, 0x21, 0xd4, 0x6c, 0xea, 0x0e, 0x87, 0xa2, 0xc4, 0x92, 0x35, 0x98, 0xf5, 0x68,
+ 0xd5, 0xb0, 0x0d, 0x87, 0x55, 0xe6, 0x9e, 0x11, 0xd0, 0xc6, 0xb1, 0xf4, 0xe9, 0xe7, 0xe4, 0x90,
+ 0x59, 0x4c, 0x12, 0x60, 0xf7, 0x98, 0xf9, 0x2f, 0xf3, 0x30, 0x93, 0xdc, 0x6f, 0x79, 0x54, 0x79,
+ 0xc6, 0xf2, 0xad, 0xe1, 0x05, 0x96, 0x76, 0x50, 0x24, 0xca, 0xb7, 0x21, 0x02, 0x23, 0x1a, 0x36,
+ 0xff, 0x0e, 0xdc, 0xb6, 0x65, 0x26, 0xe7, 0xdf, 0x7b, 0x0c, 0x88, 0x02, 0x97, 0x7e, 0xfa, 0x20,
+ 0x77, 0x61, 0xa7, 0x0f, 0xe4, 0x79, 0x82, 0xd1, 0x01, 0x9f, 0x27, 0xe8, 0xed, 0xa0, 0xf6, 0x27,
+ 0xba, 0x43, 0x88, 0xe6, 0xcf, 0xf7, 0x06, 0xbc, 0x99, 0xd6, 0x43, 0xc9, 0xf9, 0xa3, 0x0c, 0x4c,
+ 0x9a, 0xba, 0x3d, 0xcb, 0xd3, 0x16, 0xbb, 0x83, 0x50, 0x29, 0xe6, 0x28, 0xa2, 0x2a, 0x89, 0x81,
+ 0x30, 0x2e, 0x9a, 0xec, 0xc0, 0x65, 0xdb, 0x6a, 0x59, 0x81, 0x98, 0xa6, 0xed, 0x50, 0xaf, 0x42,
+ 0x4d, 0xd7, 0xa9, 0xf1, 0x90, 0x99, 0x2d, 0x3f, 0x2f, 0x1f, 0xe3, 0xf2, 0x66, 0x0a, 0x0d, 0xa6,
+ 0x8e, 0x24, 0x37, 0x60, 0xec, 0x88, 0x7a, 0x3e, 0x33, 0x62, 0x88, 0x9f, 0x59, 0xbc, 0x2b, 0xc0,
+ 0x18, 0xe2, 0xfb, 0x8b, 0x0d, 0xff, 0x94, 0x83, 0xe9, 0xc4, 0x3e, 0xe2, 0xa3, 0x3c, 0x4c, 0x39,
+ 0xcc, 0xc8, 0x19, 0x0e, 0xf3, 0x32, 0x14, 0x4c, 0xdb, 0xa2, 0x4e, 0xb0, 0x5e, 0x93, 0x8e, 0x15,
+ 0xb5, 0x14, 0x0b, 0xf8, 0x0a, 0x2a, 0x8a, 0x27, 0xed, 0x5e, 0xba, 0x1f, 0x8c, 0x9e, 0xf7, 0x70,
+ 0x4f, 0x7e, 0x98, 0x17, 0x16, 0x8c, 0x0d, 0x24, 0xdf, 0x24, 0x3e, 0xec, 0x45, 0xe5, 0x9b, 0x9f,
+ 0x8f, 0x40, 0x61, 0x7b, 0x69, 0xaf, 0xb2, 0xd4, 0x09, 0x9a, 0xe4, 0x1d, 0x18, 0xad, 0x1a, 0xbe,
+ 0x65, 0xca, 0x79, 0xe8, 0x6b, 0x8f, 0xf1, 0x39, 0x7d, 0xcb, 0x64, 0xac, 0xca, 0x45, 0x66, 0x65,
+ 0xfc, 0x27, 0x0a, 0x9e, 0xe4, 0x16, 0x33, 0x45, 0x56, 0x01, 0xf5, 0x74, 0x46, 0xb9, 0x28, 0xac,
+ 0x95, 0xd5, 0x3e, 0x62, 0x38, 0x59, 0x86, 0x9c, 0x73, 0xd0, 0xeb, 0xe1, 0xe3, 0x02, 0xef, 0xc8,
+ 0xdd, 0xa0, 0xc7, 0xc8, 0x07, 0x93, 0x7d, 0x00, 0xd3, 0xa3, 0x35, 0xea, 0x04, 0x96, 0xbc, 0xa6,
+ 0xa4, 0xb7, 0x45, 0xb0, 0x65, 0x35, 0x18, 0x35, 0x46, 0xf3, 0x7f, 0x3a, 0x0a, 0x33, 0xc9, 0xfd,
+ 0xf5, 0x47, 0xb9, 0xe8, 0x0d, 0x18, 0xf3, 0x3b, 0xfc, 0xb8, 0x8f, 0x74, 0x52, 0x15, 0x3d, 0x2a,
+ 0x02, 0x8c, 0x21, 0x3e, 0xdd, 0xf5, 0xb2, 0x4f, 0xc4, 0xf5, 0x72, 0xe7, 0x75, 0xbd, 0x41, 0xe7,
+ 0xc1, 0x4f, 0xba, 0x0f, 0xfd, 0xbe, 0x37, 0xe0, 0x8e, 0x88, 0x1e, 0x32, 0x1b, 0x85, 0x9c, 0xd1,
+ 0x09, 0x9a, 0xb2, 0x0a, 0x58, 0x1b, 0x80, 0x22, 0xdc, 0x7b, 0xb8, 0xb9, 0xb2, 0xbf, 0x90, 0xb3,
+ 0xef, 0xcf, 0xc5, 0xff, 0x25, 0x07, 0x53, 0xf1, 0xad, 0x2b, 0x56, 0x61, 0x34, 0x5d, 0x3f, 0x90,
+ 0x75, 0x57, 0xf2, 0xd6, 0xa0, 0xdb, 0x11, 0x0a, 0x75, 0xba, 0xf3, 0x65, 0x93, 0x1b, 0x30, 0x26,
+ 0x4f, 0xab, 0xca, 0x64, 0xa2, 0xec, 0x59, 0x9e, 0x68, 0xc5, 0x10, 0xff, 0x7f, 0xa9, 0xc4, 0xf6,
+ 0xc9, 0x0f, 0xbb, 0x53, 0xc9, 0x3b, 0x03, 0xdd, 0xa7, 0xbc, 0xb0, 0xab, 0x0b, 0x46, 0x61, 0xb6,
+ 0xab, 0x7d, 0x25, 0xbe, 0xa4, 0x96, 0x39, 0xc7, 0x92, 0xda, 0x1b, 0x30, 0xc5, 0xed, 0x68, 0x27,
+ 0xb1, 0x10, 0xa7, 0x5a, 0x96, 0xf7, 0x62, 0x58, 0x4c, 0x50, 0x9f, 0xaf, 0x44, 0x78, 0x03, 0xa6,
+ 0xfc, 0x4e, 0xd5, 0x37, 0x3d, 0xab, 0xcd, 0x0c, 0x62, 0x7d, 0x45, 0x2e, 0xd3, 0x2b, 0x21, 0x95,
+ 0x18, 0x16, 0x13, 0xd4, 0xa4, 0xc1, 0x8f, 0x9c, 0xcb, 0xa8, 0x2f, 0x17, 0x02, 0x7a, 0x3a, 0x39,
+ 0x7d, 0x59, 0x9e, 0x4a, 0x8f, 0xb1, 0xc0, 0x2e, 0xa6, 0xa4, 0x0a, 0x73, 0x62, 0x69, 0x4c, 0x57,
+ 0x48, 0x2d, 0xac, 0x89, 0x3a, 0x60, 0x5e, 0x2a, 0x3d, 0xb7, 0x72, 0x2a, 0x25, 0x9e, 0xc1, 0xa5,
+ 0xc7, 0xe3, 0xd2, 0x1b, 0x30, 0x1d, 0x69, 0xe9, 0xdf, 0xb2, 0xec, 0x70, 0x81, 0xe2, 0xff, 0xc9,
+ 0x41, 0xcf, 0xad, 0xd0, 0xb6, 0x47, 0x4d, 0x23, 0xa0, 0xb5, 0xe5, 0x38, 0x21, 0x26, 0x47, 0x0e,
+ 0x63, 0x8d, 0xaf, 0xcb, 0x04, 0x2f, 0xca, 0xfe, 0xff, 0x2d, 0xcf, 0xec, 0x3f, 0xb1, 0x2d, 0x4f,
+ 0xe6, 0x21, 0xcf, 0x4d, 0x8e, 0x05, 0x59, 0xb5, 0x42, 0xcc, 0x6d, 0xd1, 0x47, 0x89, 0x39, 0xc7,
+ 0xaa, 0x9b, 0x9c, 0x42, 0x64, 0x4f, 0x99, 0x42, 0xb4, 0xe1, 0x52, 0x60, 0xfb, 0x7b, 0x5e, 0xc7,
+ 0x0f, 0x96, 0xa9, 0x17, 0xf8, 0xd2, 0x22, 0x73, 0x3d, 0x5f, 0x06, 0xb3, 0xb7, 0x59, 0x49, 0x72,
+ 0xc1, 0x34, 0xd6, 0xcc, 0x2e, 0x03, 0xdb, 0x5f, 0xb2, 0x6d, 0xf7, 0x7e, 0xb8, 0x95, 0x13, 0x85,
+ 0x5c, 0x19, 0x4c, 0x95, 0x5d, 0xee, 0x6d, 0x56, 0x4e, 0xa1, 0xc4, 0x33, 0xb8, 0x90, 0x2d, 0xfe,
+ 0x54, 0x77, 0x0d, 0xdb, 0xaa, 0x19, 0x01, 0x65, 0x49, 0x89, 0x2f, 0x87, 0x09, 0xa3, 0xff, 0x9a,
+ 0x64, 0xce, 0x54, 0x4e, 0x92, 0x60, 0xda, 0xb8, 0x61, 0xdd, 0x5d, 0x96, 0x9a, 0xc3, 0x0a, 0x4f,
+ 0x24, 0x87, 0x15, 0x1f, 0xe9, 0xbc, 0x31, 0x7f, 0x83, 0x01, 0xf9, 0x5b, 0xc2, 0xe4, 0x2f, 0xca,
+ 0xdf, 0xfe, 0x3e, 0x07, 0x33, 0xc9, 0xde, 0xa0, 0xc7, 0x9d, 0xd8, 0xe8, 0x37, 0x60, 0x8c, 0x0c,
+ 0xe2, 0x06, 0x8c, 0x45, 0x28, 0x32, 0xa3, 0xf3, 0xdb, 0x86, 0x19, 0x5e, 0xec, 0xa1, 0xd2, 0xde,
+ 0x76, 0x88, 0xc0, 0x88, 0x86, 0xcc, 0xc1, 0x48, 0xad, 0x2a, 0xcf, 0x35, 0xab, 0xbd, 0xee, 0x95,
+ 0x32, 0x8e, 0xd4, 0xaa, 0xe4, 0x25, 0x28, 0xc8, 0x19, 0x53, 0xb8, 0x3d, 0xcc, 0xc5, 0xca, 0xe9,
+ 0x94, 0x8f, 0x0a, 0x3b, 0xac, 0x39, 0xca, 0x10, 0x56, 0x93, 0x92, 0x5f, 0xee, 0xc2, 0xfa, 0x48,
+ 0x72, 0x70, 0x29, 0xa5, 0x77, 0x3f, 0xfe, 0xc1, 0x32, 0xe7, 0xf8, 0x60, 0x87, 0x90, 0xaf, 0x5b,
+ 0x76, 0x40, 0xbd, 0x01, 0xf5, 0x1f, 0x84, 0x4a, 0xdd, 0xe2, 0x4c, 0x45, 0x9e, 0x10, 0x7f, 0xa3,
+ 0x14, 0xc4, 0xbc, 0xf7, 0x32, 0x5f, 0xe1, 0x0d, 0x97, 0x95, 0xc2, 0xc3, 0xd5, 0x59, 0xf9, 0xbd,
+ 0xcf, 0x75, 0x19, 0xc2, 0x5a, 0x0a, 0x87, 0x68, 0xd9, 0x2b, 0x0d, 0x8b, 0xa9, 0x52, 0xc9, 0x32,
+ 0x80, 0x6a, 0x94, 0x0a, 0xb7, 0x73, 0x5e, 0x64, 0xc5, 0xb1, 0xea, 0xa4, 0xf2, 0x7f, 0xc5, 0x57,
+ 0x8f, 0xb5, 0xb7, 0xcd, 0x73, 0x9a, 0x36, 0x2c, 0x7e, 0x87, 0xd3, 0xe8, 0x40, 0xee, 0x70, 0x4a,
+ 0xf9, 0xbc, 0x17, 0x65, 0x5d, 0x7f, 0x97, 0x85, 0xa9, 0xf8, 0x87, 0x24, 0xd7, 0x21, 0xdf, 0xf6,
+ 0x68, 0xdd, 0x7a, 0x90, 0xbc, 0x40, 0x68, 0x87, 0x43, 0x51, 0x62, 0x89, 0x0b, 0x79, 0xdb, 0xa8,
+ 0x32, 0x17, 0x17, 0xf7, 0x4f, 0xac, 0xf5, 0x7d, 0x97, 0x42, 0xb8, 0x5e, 0x11, 0x0a, 0xdc, 0xe4,
+ 0xec, 0x51, 0x8a, 0x61, 0x02, 0xeb, 0x16, 0xb5, 0x6b, 0x62, 0xef, 0x7a, 0x18, 0x02, 0x6f, 0x71,
+ 0xf6, 0x28, 0xc5, 0x90, 0x77, 0xa0, 0x28, 0x6e, 0x5d, 0xaa, 0x95, 0x8f, 0xe5, 0xdc, 0xe4, 0xff,
+ 0x9f, 0xcf, 0x64, 0xf7, 0xac, 0x16, 0x8d, 0xdc, 0x71, 0x39, 0x64, 0x82, 0x11, 0x3f, 0x7e, 0xb9,
+ 0x5f, 0x3d, 0xa0, 0x5e, 0x25, 0x30, 0xbc, 0xf0, 0xee, 0xbd, 0xe8, 0x72, 0x3f, 0x85, 0x41, 0x8d,
+ 0x6a, 0xfe, 0x1f, 0x47, 0x61, 0x2a, 0x7e, 0x06, 0xe1, 0x09, 0xf5, 0x1d, 0xbc, 0x0c, 0x05, 0x3e,
+ 0x15, 0x5c, 0xf2, 0x9c, 0xe4, 0x7d, 0x6d, 0x7b, 0x12, 0x8e, 0x8a, 0x82, 0x20, 0x14, 0x8d, 0xc7,
+ 0xbb, 0x82, 0x4f, 0x6c, 0xb6, 0xaa, 0xcb, 0xf7, 0x22, 0x36, 0x8c, 0xa7, 0x1f, 0x92, 0xf7, 0x36,
+ 0x6f, 0xe4, 0x3c, 0x15, 0x18, 0x23, 0x36, 0xcc, 0xf2, 0x3d, 0xda, 0x08, 0xe7, 0x83, 0x9a, 0xe5,
+ 0x23, 0x87, 0xa2, 0xc4, 0x92, 0x1b, 0x30, 0xe6, 0xb9, 0x36, 0x5d, 0xc2, 0x6d, 0xd9, 0x6b, 0xa0,
+ 0x16, 0x0c, 0x50, 0x80, 0x31, 0xc4, 0x0f, 0xa3, 0x58, 0x8e, 0x1b, 0x40, 0x0f, 0x4b, 0x3f, 0x6b,
+ 0x30, 0x7b, 0x24, 0xe7, 0x98, 0x15, 0xab, 0xe1, 0x18, 0x41, 0xd4, 0xe6, 0xa4, 0x76, 0xce, 0xee,
+ 0x26, 0x09, 0xb0, 0x7b, 0x4c, 0x7f, 0x11, 0xe7, 0x6f, 0x99, 0x0d, 0xc7, 0xce, 0xaf, 0xc4, 0xed,
+ 0x23, 0x33, 0x04, 0xfb, 0x18, 0x19, 0xb4, 0x7d, 0x64, 0xcf, 0xb4, 0x8f, 0x17, 0x61, 0x94, 0x5f,
+ 0xfa, 0x2a, 0x6b, 0x74, 0x55, 0xd1, 0xf3, 0xfb, 0x42, 0x51, 0xe0, 0xc8, 0x12, 0x4c, 0xdf, 0x37,
+ 0xac, 0x80, 0x45, 0x0a, 0xb1, 0x2b, 0x23, 0x56, 0x1e, 0xb3, 0x7a, 0xf3, 0x43, 0x0c, 0x8d, 0x49,
+ 0xfa, 0x5e, 0xec, 0xb0, 0xb7, 0x92, 0xf9, 0x0d, 0x98, 0xe2, 0x4a, 0x2e, 0x99, 0xa6, 0xdb, 0xe1,
+ 0xbb, 0x2c, 0x85, 0xf8, 0x6a, 0xc3, 0xae, 0x8e, 0x5d, 0xc1, 0x04, 0x75, 0xdc, 0xea, 0x07, 0x73,
+ 0x79, 0x49, 0xdc, 0x64, 0x2e, 0x2a, 0x3d, 0xfe, 0x00, 0x0a, 0xa1, 0x5d, 0xb0, 0x92, 0x56, 0x8d,
+ 0x8b, 0x4a, 0x5a, 0x66, 0x22, 0x9c, 0xc9, 0x22, 0x14, 0xdd, 0x36, 0x8d, 0xdd, 0x21, 0xa8, 0x12,
+ 0xc0, 0x9d, 0x10, 0x81, 0x11, 0x0d, 0xb3, 0x12, 0x21, 0x35, 0xb1, 0xee, 0x73, 0x97, 0x01, 0xa5,
+ 0x12, 0xf3, 0x1f, 0x67, 0x20, 0xbc, 0x57, 0x88, 0xac, 0xc0, 0x68, 0xdb, 0xf5, 0x02, 0x51, 0x98,
+ 0x8f, 0xdf, 0xbc, 0x9a, 0x6e, 0xce, 0xa2, 0xd9, 0xc0, 0xf5, 0x82, 0x88, 0x23, 0xfb, 0xe5, 0xa3,
+ 0x18, 0xcc, 0xf4, 0x34, 0xed, 0x8e, 0x1f, 0x50, 0x6f, 0x7d, 0x27, 0xa9, 0xe7, 0x72, 0x88, 0xc0,
+ 0x88, 0x66, 0xfe, 0xbf, 0xb3, 0x30, 0x93, 0x3c, 0xb2, 0x43, 0xde, 0x87, 0x49, 0xdf, 0x6a, 0x38,
+ 0x96, 0xd3, 0x90, 0xa5, 0x7b, 0xa6, 0xe7, 0x4e, 0xcc, 0x8a, 0x3e, 0x1e, 0xe3, 0xec, 0x06, 0xb6,
+ 0xf7, 0xa2, 0xa5, 0xc7, 0xec, 0xc5, 0xa5, 0xc7, 0x4f, 0xba, 0xbb, 0xd8, 0xdf, 0x1b, 0xf0, 0xa1,
+ 0xa9, 0x8b, 0xf2, 0x80, 0xff, 0x18, 0x85, 0x67, 0xd2, 0x8f, 0x47, 0x3d, 0xa1, 0xa9, 0x47, 0xd4,
+ 0xc1, 0x38, 0x72, 0x6a, 0x07, 0x63, 0xa0, 0x4a, 0x9d, 0xec, 0x80, 0x8e, 0x3b, 0xa9, 0x17, 0x70,
+ 0x46, 0xb5, 0xa3, 0x4f, 0x8a, 0x72, 0x8f, 0x9c, 0x14, 0x5d, 0x87, 0x7c, 0xb5, 0x63, 0x1e, 0xc8,
+ 0x75, 0x58, 0xfd, 0x9e, 0x4e, 0x0e, 0x45, 0x89, 0xd5, 0x92, 0x4e, 0xfe, 0xcc, 0xa4, 0xc3, 0x92,
+ 0x68, 0x27, 0x68, 0x8a, 0x9e, 0xcd, 0xb1, 0xde, 0x93, 0x68, 0x38, 0x16, 0x23, 0x36, 0xbc, 0xc3,
+ 0xb9, 0x6d, 0xed, 0xe3, 0xa6, 0x8c, 0xff, 0x51, 0x87, 0xf3, 0xce, 0xfa, 0x3e, 0x6e, 0xa2, 0xc4,
+ 0x92, 0xcf, 0xba, 0xe3, 0xbd, 0x39, 0x94, 0x23, 0x79, 0x17, 0x65, 0xf5, 0x26, 0xcc, 0x76, 0x7d,
+ 0xf3, 0x73, 0x17, 0x46, 0xd7, 0x21, 0xef, 0x77, 0xea, 0x8c, 0x2e, 0x71, 0x86, 0xa3, 0xc2, 0xa1,
+ 0x28, 0xb1, 0xf3, 0x3f, 0xce, 0x31, 0x29, 0x89, 0x83, 0x74, 0x4f, 0xc8, 0xab, 0x5e, 0x87, 0x49,
+ 0x51, 0x9a, 0xdc, 0xd3, 0xce, 0x28, 0x14, 0xb4, 0x2e, 0x49, 0x1d, 0x89, 0x71, 0x5a, 0xb2, 0xce,
+ 0xcd, 0xa4, 0xe7, 0xc9, 0x3d, 0x48, 0x4b, 0x62, 0x29, 0x54, 0x32, 0x20, 0xaf, 0xc0, 0x38, 0x7f,
+ 0x08, 0xf1, 0xca, 0x65, 0x8d, 0xce, 0x9b, 0x8a, 0x57, 0x23, 0x30, 0xea, 0x34, 0xf1, 0x25, 0xc2,
+ 0xd1, 0x81, 0x2c, 0x11, 0x76, 0x7d, 0x95, 0x8b, 0xb2, 0xbb, 0x9f, 0x8e, 0x81, 0xba, 0xb7, 0x90,
+ 0x98, 0x5d, 0xb7, 0x47, 0xfe, 0x76, 0xcf, 0x0b, 0x64, 0xa1, 0x2a, 0x62, 0x01, 0x2e, 0xa5, 0x28,
+ 0x78, 0x13, 0x88, 0xbc, 0xae, 0x50, 0x4e, 0xdf, 0xb4, 0xff, 0x7b, 0x44, 0x35, 0x40, 0x57, 0xba,
+ 0x28, 0x30, 0x65, 0x14, 0x79, 0x93, 0x5f, 0x71, 0x1a, 0x18, 0x96, 0xa3, 0x22, 0xef, 0x0b, 0xa7,
+ 0x34, 0x66, 0x0a, 0x22, 0x75, 0x59, 0xa9, 0xf8, 0x89, 0xd1, 0x70, 0xb2, 0x0a, 0x63, 0x47, 0xae,
+ 0xdd, 0x69, 0xc9, 0x85, 0x9a, 0xf1, 0x9b, 0x73, 0x69, 0x9c, 0xee, 0x72, 0x12, 0xad, 0x7d, 0x49,
+ 0x0c, 0xc1, 0x70, 0x2c, 0xa1, 0x30, 0xcd, 0x97, 0xe9, 0xad, 0xe0, 0x58, 0x3a, 0x80, 0xdc, 0xf6,
+ 0xba, 0x9e, 0xc6, 0x6e, 0xc7, 0xad, 0x55, 0xe2, 0xd4, 0xf2, 0x12, 0xf8, 0x38, 0x10, 0x93, 0x3c,
+ 0xc9, 0x2d, 0x28, 0x18, 0xf5, 0xba, 0xe5, 0x58, 0xc1, 0xb1, 0x5c, 0xcb, 0x7c, 0x3e, 0x8d, 0xff,
+ 0x92, 0xa4, 0x91, 0x07, 0x5c, 0xe4, 0x2f, 0x54, 0x63, 0xc9, 0x3e, 0x8c, 0x07, 0xae, 0x2d, 0x67,
+ 0x88, 0xbe, 0x2c, 0x18, 0xaf, 0xa4, 0xb1, 0xda, 0x53, 0x64, 0xd1, 0x6a, 0x71, 0x04, 0xf3, 0x51,
+ 0xe7, 0x43, 0xfe, 0x2c, 0x03, 0x13, 0x8e, 0x5b, 0xa3, 0xa1, 0xeb, 0xc9, 0xcb, 0x0d, 0xdf, 0x1e,
+ 0xd0, 0x7d, 0x9b, 0x0b, 0xdb, 0x1a, 0x6f, 0xe1, 0x21, 0xea, 0x02, 0x50, 0x1d, 0x85, 0x31, 0x25,
+ 0x88, 0x03, 0x33, 0x56, 0xcb, 0x68, 0xd0, 0x9d, 0x8e, 0x2d, 0x77, 0x0f, 0x7d, 0x99, 0x3c, 0x52,
+ 0xdb, 0x79, 0xf9, 0x7f, 0xc0, 0x23, 0xae, 0x99, 0x45, 0x5a, 0xa7, 0x1e, 0xbf, 0xed, 0x56, 0x5d,
+ 0x98, 0xbd, 0x9e, 0xe0, 0x84, 0x5d, 0xbc, 0xe7, 0xbe, 0x03, 0xb3, 0x5d, 0x8a, 0xf6, 0xe4, 0x9d,
+ 0x7f, 0x95, 0x81, 0x64, 0x47, 0x3a, 0x9b, 0x4e, 0xd7, 0x2c, 0x8f, 0x33, 0x3c, 0x4e, 0x2e, 0xc3,
+ 0xae, 0x84, 0x08, 0x8c, 0x68, 0xc8, 0x35, 0xc8, 0xb5, 0x8d, 0xa0, 0x99, 0xdc, 0x3b, 0x63, 0x2c,
+ 0x91, 0x63, 0xc8, 0x4d, 0x00, 0xf6, 0x2f, 0xd2, 0x06, 0x7d, 0xd0, 0x96, 0xd5, 0x81, 0x5a, 0x19,
+ 0xda, 0x51, 0x18, 0xd4, 0xa8, 0xe6, 0x7f, 0x96, 0x87, 0xa9, 0x78, 0xa0, 0x67, 0xd3, 0x11, 0xea,
+ 0xd4, 0xda, 0xae, 0xe5, 0x04, 0xc9, 0x1b, 0xf8, 0x57, 0x25, 0x1c, 0x15, 0x05, 0x4b, 0x5a, 0x2d,
+ 0x1a, 0x34, 0xdd, 0x5a, 0x32, 0x69, 0x6d, 0x71, 0x28, 0x4a, 0x2c, 0x57, 0xdf, 0xf5, 0x02, 0xa9,
+ 0x56, 0xa4, 0xbe, 0xeb, 0x05, 0xc8, 0x31, 0xe1, 0xd6, 0x5f, 0xee, 0x94, 0xad, 0xbf, 0x06, 0xcc,
+ 0xb0, 0xd0, 0x41, 0xbd, 0x65, 0xea, 0x05, 0x8f, 0xbd, 0x13, 0x5d, 0x49, 0xb0, 0xc0, 0x2e, 0xa6,
+ 0xfc, 0xbf, 0x7f, 0xe0, 0x30, 0x3e, 0xf8, 0x31, 0x1b, 0xec, 0x2b, 0x71, 0x0e, 0x98, 0x64, 0x39,
+ 0x8c, 0x05, 0x9e, 0xf8, 0x77, 0x7c, 0xec, 0x83, 0x92, 0x85, 0x01, 0x1d, 0x94, 0x24, 0xb7, 0x61,
+ 0x2a, 0x7a, 0xb9, 0xcc, 0xfe, 0x64, 0xb3, 0xfe, 0x35, 0xa9, 0x4a, 0x29, 0xda, 0x3f, 0xaf, 0xc4,
+ 0xe8, 0x30, 0x31, 0x8e, 0xac, 0xc2, 0xa4, 0x7a, 0x7f, 0x9c, 0x11, 0xc4, 0xdb, 0xe8, 0x93, 0x8c,
+ 0x24, 0x19, 0xc6, 0x47, 0xf5, 0x95, 0x62, 0xcb, 0x0b, 0x9f, 0x7f, 0x75, 0xe5, 0xa9, 0x2f, 0xbe,
+ 0xba, 0xf2, 0xd4, 0x2f, 0xbe, 0xba, 0xf2, 0xd4, 0xc7, 0x27, 0x57, 0x32, 0x9f, 0x9f, 0x5c, 0xc9,
+ 0x7c, 0x71, 0x72, 0x25, 0xf3, 0x8b, 0x93, 0x2b, 0x99, 0x2f, 0x4f, 0xae, 0x64, 0x7e, 0xfc, 0xcf,
+ 0x57, 0x9e, 0xfa, 0x6e, 0x21, 0xfc, 0x1a, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x54, 0xa4, 0x30,
+ 0x0d, 0x87, 0x6e, 0x00, 0x00,
}
func (m *AMQPConsumeConfig) Marshal() (dAtA []byte, err error) {
@@ -4097,7 +4127,7 @@ func (m *MQTTEventSource) MarshalToSizedBuffer(dAtA []byte) (int, error) {
return len(dAtA) - i, nil
}
-func (m *NATSEventsSource) Marshal() (dAtA []byte, err error) {
+func (m *NATSAuth) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
@@ -4107,12 +4137,12 @@ func (m *NATSEventsSource) Marshal() (dAtA []byte, err error) {
return dAtA[:n], nil
}
-func (m *NATSEventsSource) MarshalTo(dAtA []byte) (int, error) {
+func (m *NATSAuth) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
-func (m *NATSEventsSource) MarshalToSizedBuffer(dAtA []byte) (int, error) {
+func (m *NATSAuth) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
@@ -4127,7 +4157,7 @@ func (m *NATSEventsSource) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i = encodeVarintGenerated(dAtA, i, uint64(size))
}
i--
- dAtA[i] = 0x62
+ dAtA[i] = 0x22
}
if m.NKey != nil {
{
@@ -4139,7 +4169,7 @@ func (m *NATSEventsSource) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i = encodeVarintGenerated(dAtA, i, uint64(size))
}
i--
- dAtA[i] = 0x5a
+ dAtA[i] = 0x1a
}
if m.Token != nil {
{
@@ -4151,11 +4181,11 @@ func (m *NATSEventsSource) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i = encodeVarintGenerated(dAtA, i, uint64(size))
}
i--
- dAtA[i] = 0x52
+ dAtA[i] = 0x12
}
- if m.Password != nil {
+ if m.Basic != nil {
{
- size, err := m.Password.MarshalToSizedBuffer(dAtA[:i])
+ size, err := m.Basic.MarshalToSizedBuffer(dAtA[:i])
if err != nil {
return 0, err
}
@@ -4163,11 +4193,34 @@ func (m *NATSEventsSource) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i = encodeVarintGenerated(dAtA, i, uint64(size))
}
i--
- dAtA[i] = 0x4a
+ dAtA[i] = 0xa
}
- if m.Username != nil {
+ return len(dAtA) - i, nil
+}
+
+func (m *NATSEventsSource) Marshal() (dAtA []byte, err error) {
+ size := m.Size()
+ dAtA = make([]byte, size)
+ n, err := m.MarshalToSizedBuffer(dAtA[:size])
+ if err != nil {
+ return nil, err
+ }
+ return dAtA[:n], nil
+}
+
+func (m *NATSEventsSource) MarshalTo(dAtA []byte) (int, error) {
+ size := m.Size()
+ return m.MarshalToSizedBuffer(dAtA[:size])
+}
+
+func (m *NATSEventsSource) MarshalToSizedBuffer(dAtA []byte) (int, error) {
+ i := len(dAtA)
+ _ = i
+ var l int
+ _ = l
+ if m.Auth != nil {
{
- size, err := m.Username.MarshalToSizedBuffer(dAtA[:i])
+ size, err := m.Auth.MarshalToSizedBuffer(dAtA[:i])
if err != nil {
return 0, err
}
@@ -4175,13 +4228,8 @@ func (m *NATSEventsSource) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i = encodeVarintGenerated(dAtA, i, uint64(size))
}
i--
- dAtA[i] = 0x42
+ dAtA[i] = 0x3a
}
- i -= len(m.Auth)
- copy(dAtA[i:], m.Auth)
- i = encodeVarintGenerated(dAtA, i, uint64(len(m.Auth)))
- i--
- dAtA[i] = 0x3a
if len(m.Metadata) > 0 {
keysForMetadata := make([]string, 0, len(m.Metadata))
for k := range m.Metadata {
@@ -6529,6 +6577,31 @@ func (m *MQTTEventSource) Size() (n int) {
return n
}
+func (m *NATSAuth) Size() (n int) {
+ if m == nil {
+ return 0
+ }
+ var l int
+ _ = l
+ if m.Basic != nil {
+ l = m.Basic.Size()
+ n += 1 + l + sovGenerated(uint64(l))
+ }
+ if m.Token != nil {
+ l = m.Token.Size()
+ n += 1 + l + sovGenerated(uint64(l))
+ }
+ if m.NKey != nil {
+ l = m.NKey.Size()
+ n += 1 + l + sovGenerated(uint64(l))
+ }
+ if m.Credential != nil {
+ l = m.Credential.Size()
+ n += 1 + l + sovGenerated(uint64(l))
+ }
+ return n
+}
+
func (m *NATSEventsSource) Size() (n int) {
if m == nil {
return 0
@@ -6556,26 +6629,8 @@ func (m *NATSEventsSource) Size() (n int) {
n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize))
}
}
- l = len(m.Auth)
- n += 1 + l + sovGenerated(uint64(l))
- if m.Username != nil {
- l = m.Username.Size()
- n += 1 + l + sovGenerated(uint64(l))
- }
- if m.Password != nil {
- l = m.Password.Size()
- n += 1 + l + sovGenerated(uint64(l))
- }
- if m.Token != nil {
- l = m.Token.Size()
- n += 1 + l + sovGenerated(uint64(l))
- }
- if m.NKey != nil {
- l = m.NKey.Size()
- n += 1 + l + sovGenerated(uint64(l))
- }
- if m.Credential != nil {
- l = m.Credential.Size()
+ if m.Auth != nil {
+ l = m.Auth.Size()
n += 1 + l + sovGenerated(uint64(l))
}
return n
@@ -7830,6 +7885,19 @@ func (this *MQTTEventSource) String() string {
}, "")
return s
}
+func (this *NATSAuth) String() string {
+ if this == nil {
+ return "nil"
+ }
+ s := strings.Join([]string{`&NATSAuth{`,
+ `Basic:` + strings.Replace(fmt.Sprintf("%v", this.Basic), "BasicAuth", "common.BasicAuth", 1) + `,`,
+ `Token:` + strings.Replace(fmt.Sprintf("%v", this.Token), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
+ `NKey:` + strings.Replace(fmt.Sprintf("%v", this.NKey), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
+ `Credential:` + strings.Replace(fmt.Sprintf("%v", this.Credential), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
+ `}`,
+ }, "")
+ return s
+}
func (this *NATSEventsSource) String() string {
if this == nil {
return "nil"
@@ -7851,12 +7919,7 @@ func (this *NATSEventsSource) String() string {
`JSONBody:` + fmt.Sprintf("%v", this.JSONBody) + `,`,
`TLS:` + strings.Replace(fmt.Sprintf("%v", this.TLS), "TLSConfig", "common.TLSConfig", 1) + `,`,
`Metadata:` + mapStringForMetadata + `,`,
- `Auth:` + fmt.Sprintf("%v", this.Auth) + `,`,
- `Username:` + strings.Replace(fmt.Sprintf("%v", this.Username), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
- `Password:` + strings.Replace(fmt.Sprintf("%v", this.Password), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
- `Token:` + strings.Replace(fmt.Sprintf("%v", this.Token), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
- `NKey:` + strings.Replace(fmt.Sprintf("%v", this.NKey), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
- `Credential:` + strings.Replace(fmt.Sprintf("%v", this.Credential), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
+ `Auth:` + strings.Replace(this.Auth.String(), "NATSAuth", "NATSAuth", 1) + `,`,
`}`,
}, "")
return s
@@ -17496,7 +17559,7 @@ func (m *MQTTEventSource) Unmarshal(dAtA []byte) error {
}
return nil
}
-func (m *NATSEventsSource) Unmarshal(dAtA []byte) error {
+func (m *NATSAuth) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
@@ -17519,17 +17582,17 @@ func (m *NATSEventsSource) Unmarshal(dAtA []byte) error {
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
- return fmt.Errorf("proto: NATSEventsSource: wiretype end group for non-group")
+ return fmt.Errorf("proto: NATSAuth: wiretype end group for non-group")
}
if fieldNum <= 0 {
- return fmt.Errorf("proto: NATSEventsSource: illegal tag %d (wire type %d)", fieldNum, wire)
+ return fmt.Errorf("proto: NATSAuth: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field URL", wireType)
+ return fmt.Errorf("proto: wrong wireType = %d for field Basic", wireType)
}
- var stringLen uint64
+ var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowGenerated
@@ -17539,29 +17602,33 @@ func (m *NATSEventsSource) Unmarshal(dAtA []byte) error {
}
b := dAtA[iNdEx]
iNdEx++
- stringLen |= uint64(b&0x7F) << shift
+ msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
- intStringLen := int(stringLen)
- if intStringLen < 0 {
+ if msglen < 0 {
return ErrInvalidLengthGenerated
}
- postIndex := iNdEx + intStringLen
+ postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthGenerated
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
- m.URL = string(dAtA[iNdEx:postIndex])
+ if m.Basic == nil {
+ m.Basic = &common.BasicAuth{}
+ }
+ if err := m.Basic.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ return err
+ }
iNdEx = postIndex
case 2:
if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Subject", wireType)
+ return fmt.Errorf("proto: wrong wireType = %d for field Token", wireType)
}
- var stringLen uint64
+ var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowGenerated
@@ -17571,27 +17638,31 @@ func (m *NATSEventsSource) Unmarshal(dAtA []byte) error {
}
b := dAtA[iNdEx]
iNdEx++
- stringLen |= uint64(b&0x7F) << shift
+ msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
- intStringLen := int(stringLen)
- if intStringLen < 0 {
+ if msglen < 0 {
return ErrInvalidLengthGenerated
}
- postIndex := iNdEx + intStringLen
+ postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthGenerated
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
- m.Subject = string(dAtA[iNdEx:postIndex])
+ if m.Token == nil {
+ m.Token = &v1.SecretKeySelector{}
+ }
+ if err := m.Token.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ return err
+ }
iNdEx = postIndex
case 3:
if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field ConnectionBackoff", wireType)
+ return fmt.Errorf("proto: wrong wireType = %d for field NKey", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
@@ -17618,36 +17689,16 @@ func (m *NATSEventsSource) Unmarshal(dAtA []byte) error {
if postIndex > l {
return io.ErrUnexpectedEOF
}
- if m.ConnectionBackoff == nil {
- m.ConnectionBackoff = &common.Backoff{}
+ if m.NKey == nil {
+ m.NKey = &v1.SecretKeySelector{}
}
- if err := m.ConnectionBackoff.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ if err := m.NKey.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
case 4:
- if wireType != 0 {
- return fmt.Errorf("proto: wrong wireType = %d for field JSONBody", wireType)
- }
- var v int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowGenerated
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- v |= int(b&0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- m.JSONBody = bool(v != 0)
- case 5:
if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field TLS", wireType)
+ return fmt.Errorf("proto: wrong wireType = %d for field Credential", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
@@ -17674,143 +17725,69 @@ func (m *NATSEventsSource) Unmarshal(dAtA []byte) error {
if postIndex > l {
return io.ErrUnexpectedEOF
}
- if m.TLS == nil {
- m.TLS = &common.TLSConfig{}
+ if m.Credential == nil {
+ m.Credential = &v1.SecretKeySelector{}
}
- if err := m.TLS.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ if err := m.Credential.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
- case 6:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType)
- }
- var msglen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowGenerated
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- msglen |= int(b&0x7F) << shift
- if b < 0x80 {
- break
- }
+ default:
+ iNdEx = preIndex
+ skippy, err := skipGenerated(dAtA[iNdEx:])
+ if err != nil {
+ return err
}
- if msglen < 0 {
+ if skippy < 0 {
return ErrInvalidLengthGenerated
}
- postIndex := iNdEx + msglen
- if postIndex < 0 {
+ if (iNdEx + skippy) < 0 {
return ErrInvalidLengthGenerated
}
- if postIndex > l {
+ if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
- if m.Metadata == nil {
- m.Metadata = make(map[string]string)
- }
- var mapkey string
- var mapvalue string
- for iNdEx < postIndex {
- entryPreIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowGenerated
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= uint64(b&0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- if fieldNum == 1 {
- var stringLenmapkey uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowGenerated
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- stringLenmapkey |= uint64(b&0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- intStringLenmapkey := int(stringLenmapkey)
- if intStringLenmapkey < 0 {
- return ErrInvalidLengthGenerated
- }
- postStringIndexmapkey := iNdEx + intStringLenmapkey
- if postStringIndexmapkey < 0 {
- return ErrInvalidLengthGenerated
- }
- if postStringIndexmapkey > l {
- return io.ErrUnexpectedEOF
- }
- mapkey = string(dAtA[iNdEx:postStringIndexmapkey])
- iNdEx = postStringIndexmapkey
- } else if fieldNum == 2 {
- var stringLenmapvalue uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowGenerated
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- stringLenmapvalue |= uint64(b&0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- intStringLenmapvalue := int(stringLenmapvalue)
- if intStringLenmapvalue < 0 {
- return ErrInvalidLengthGenerated
- }
- postStringIndexmapvalue := iNdEx + intStringLenmapvalue
- if postStringIndexmapvalue < 0 {
- return ErrInvalidLengthGenerated
- }
- if postStringIndexmapvalue > l {
- return io.ErrUnexpectedEOF
- }
- mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])
- iNdEx = postStringIndexmapvalue
- } else {
- iNdEx = entryPreIndex
- skippy, err := skipGenerated(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) > postIndex {
- return io.ErrUnexpectedEOF
- }
- iNdEx += skippy
- }
+ iNdEx += skippy
+ }
+ }
+
+ if iNdEx > l {
+ return io.ErrUnexpectedEOF
+ }
+ return nil
+}
+func (m *NATSEventsSource) Unmarshal(dAtA []byte) error {
+ l := len(dAtA)
+ iNdEx := 0
+ for iNdEx < l {
+ preIndex := iNdEx
+ var wire uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
}
- m.Metadata[mapkey] = mapvalue
- iNdEx = postIndex
- case 7:
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ wire |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ fieldNum := int32(wire >> 3)
+ wireType := int(wire & 0x7)
+ if wireType == 4 {
+ return fmt.Errorf("proto: NATSEventsSource: wiretype end group for non-group")
+ }
+ if fieldNum <= 0 {
+ return fmt.Errorf("proto: NATSEventsSource: illegal tag %d (wire type %d)", fieldNum, wire)
+ }
+ switch fieldNum {
+ case 1:
if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Auth", wireType)
+ return fmt.Errorf("proto: wrong wireType = %d for field URL", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
@@ -17838,13 +17815,13 @@ func (m *NATSEventsSource) Unmarshal(dAtA []byte) error {
if postIndex > l {
return io.ErrUnexpectedEOF
}
- m.Auth = NATSAuth(dAtA[iNdEx:postIndex])
+ m.URL = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
- case 8:
+ case 2:
if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Username", wireType)
+ return fmt.Errorf("proto: wrong wireType = %d for field Subject", wireType)
}
- var msglen int
+ var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowGenerated
@@ -17854,31 +17831,27 @@ func (m *NATSEventsSource) Unmarshal(dAtA []byte) error {
}
b := dAtA[iNdEx]
iNdEx++
- msglen |= int(b&0x7F) << shift
+ stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
- if msglen < 0 {
+ intStringLen := int(stringLen)
+ if intStringLen < 0 {
return ErrInvalidLengthGenerated
}
- postIndex := iNdEx + msglen
+ postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthGenerated
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
- if m.Username == nil {
- m.Username = &v1.SecretKeySelector{}
- }
- if err := m.Username.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
+ m.Subject = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
- case 9:
+ case 3:
if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Password", wireType)
+ return fmt.Errorf("proto: wrong wireType = %d for field ConnectionBackoff", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
@@ -17905,16 +17878,36 @@ func (m *NATSEventsSource) Unmarshal(dAtA []byte) error {
if postIndex > l {
return io.ErrUnexpectedEOF
}
- if m.Password == nil {
- m.Password = &v1.SecretKeySelector{}
+ if m.ConnectionBackoff == nil {
+ m.ConnectionBackoff = &common.Backoff{}
}
- if err := m.Password.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ if err := m.ConnectionBackoff.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
- case 10:
+ case 4:
+ if wireType != 0 {
+ return fmt.Errorf("proto: wrong wireType = %d for field JSONBody", wireType)
+ }
+ var v int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ v |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ m.JSONBody = bool(v != 0)
+ case 5:
if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Token", wireType)
+ return fmt.Errorf("proto: wrong wireType = %d for field TLS", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
@@ -17941,16 +17934,16 @@ func (m *NATSEventsSource) Unmarshal(dAtA []byte) error {
if postIndex > l {
return io.ErrUnexpectedEOF
}
- if m.Token == nil {
- m.Token = &v1.SecretKeySelector{}
+ if m.TLS == nil {
+ m.TLS = &common.TLSConfig{}
}
- if err := m.Token.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ if err := m.TLS.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
- case 11:
+ case 6:
if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field NKey", wireType)
+ return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
@@ -17977,16 +17970,107 @@ func (m *NATSEventsSource) Unmarshal(dAtA []byte) error {
if postIndex > l {
return io.ErrUnexpectedEOF
}
- if m.NKey == nil {
- m.NKey = &v1.SecretKeySelector{}
+ if m.Metadata == nil {
+ m.Metadata = make(map[string]string)
}
- if err := m.NKey.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
+ var mapkey string
+ var mapvalue string
+ for iNdEx < postIndex {
+ entryPreIndex := iNdEx
+ var wire uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ wire |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ fieldNum := int32(wire >> 3)
+ if fieldNum == 1 {
+ var stringLenmapkey uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLenmapkey |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLenmapkey := int(stringLenmapkey)
+ if intStringLenmapkey < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ postStringIndexmapkey := iNdEx + intStringLenmapkey
+ if postStringIndexmapkey < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ if postStringIndexmapkey > l {
+ return io.ErrUnexpectedEOF
+ }
+ mapkey = string(dAtA[iNdEx:postStringIndexmapkey])
+ iNdEx = postStringIndexmapkey
+ } else if fieldNum == 2 {
+ var stringLenmapvalue uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLenmapvalue |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLenmapvalue := int(stringLenmapvalue)
+ if intStringLenmapvalue < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ postStringIndexmapvalue := iNdEx + intStringLenmapvalue
+ if postStringIndexmapvalue < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ if postStringIndexmapvalue > l {
+ return io.ErrUnexpectedEOF
+ }
+ mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])
+ iNdEx = postStringIndexmapvalue
+ } else {
+ iNdEx = entryPreIndex
+ skippy, err := skipGenerated(dAtA[iNdEx:])
+ if err != nil {
+ return err
+ }
+ if skippy < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ if (iNdEx + skippy) > postIndex {
+ return io.ErrUnexpectedEOF
+ }
+ iNdEx += skippy
+ }
}
+ m.Metadata[mapkey] = mapvalue
iNdEx = postIndex
- case 12:
+ case 7:
if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Credential", wireType)
+ return fmt.Errorf("proto: wrong wireType = %d for field Auth", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
@@ -18013,10 +18097,10 @@ func (m *NATSEventsSource) Unmarshal(dAtA []byte) error {
if postIndex > l {
return io.ErrUnexpectedEOF
}
- if m.Credential == nil {
- m.Credential = &v1.SecretKeySelector{}
+ if m.Auth == nil {
+ m.Auth = &NATSAuth{}
}
- if err := m.Credential.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ if err := m.Auth.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
diff --git a/pkg/apis/eventsource/v1alpha1/generated.proto b/pkg/apis/eventsource/v1alpha1/generated.proto
index 7899b8ebfa..9720b68f7d 100644
--- a/pkg/apis/eventsource/v1alpha1/generated.proto
+++ b/pkg/apis/eventsource/v1alpha1/generated.proto
@@ -645,6 +645,25 @@ message MQTTEventSource {
map metadata = 7;
}
+// NATSAuth refers to the auth info for NATS EventSource
+message NATSAuth {
+ // Baisc auth with username and password
+ // +optional
+ optional github.com.argoproj.argo_events.pkg.apis.common.BasicAuth basic = 1;
+
+ // Token used to connect
+ // +optional
+ optional k8s.io.api.core.v1.SecretKeySelector token = 2;
+
+ // NKey used to connect
+ // +optional
+ optional k8s.io.api.core.v1.SecretKeySelector nkey = 3;
+
+ // credential used to connect
+ // +optional
+ optional k8s.io.api.core.v1.SecretKeySelector credential = 4;
+}
+
// NATSEventsSource refers to event-source for NATS related events
message NATSEventsSource {
// URL to connect to NATS cluster
@@ -669,33 +688,9 @@ message NATSEventsSource {
// +optional
map metadata = 6;
- // Auth strategy, defaults to none.
- // If "auth: basic" is used, "Username" and "Password" are required.
- // If "auth: token" is used, "Token" is required.
- // If "auth: nkey" is used, "NKey" is required.
- // If "auth: credential" is used, "Credential" is required.
- // +optional
- optional string auth = 7;
-
- // Username used to connect, use "username" and "password" together with "auth: basic"
- // +optional
- optional k8s.io.api.core.v1.SecretKeySelector username = 8;
-
- // Password used to connect, use "username" and "password" together with "auth: basic"
- // +optional
- optional k8s.io.api.core.v1.SecretKeySelector password = 9;
-
- // Token used to connect, use it together with "auth: token"
- // +optional
- optional k8s.io.api.core.v1.SecretKeySelector token = 10;
-
- // NKey used to connect, use it together with "auth: nkey"
- // +optional
- optional k8s.io.api.core.v1.SecretKeySelector nkey = 11;
-
- // credential used to connect, use it together with "auth: credential"
+ // Auth information
// +optional
- optional k8s.io.api.core.v1.SecretKeySelector credential = 12;
+ optional NATSAuth auth = 7;
}
// NSQEventSource describes the event source for NSQ PubSub
diff --git a/pkg/apis/eventsource/v1alpha1/openapi_generated.go b/pkg/apis/eventsource/v1alpha1/openapi_generated.go
index 426ebac932..0a19e9e634 100644
--- a/pkg/apis/eventsource/v1alpha1/openapi_generated.go
+++ b/pkg/apis/eventsource/v1alpha1/openapi_generated.go
@@ -52,6 +52,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA
"github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1.KafkaConsumerGroup": schema_pkg_apis_eventsource_v1alpha1_KafkaConsumerGroup(ref),
"github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1.KafkaEventSource": schema_pkg_apis_eventsource_v1alpha1_KafkaEventSource(ref),
"github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1.MQTTEventSource": schema_pkg_apis_eventsource_v1alpha1_MQTTEventSource(ref),
+ "github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1.NATSAuth": schema_pkg_apis_eventsource_v1alpha1_NATSAuth(ref),
"github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1.NATSEventsSource": schema_pkg_apis_eventsource_v1alpha1_NATSEventsSource(ref),
"github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1.NSQEventSource": schema_pkg_apis_eventsource_v1alpha1_NSQEventSource(ref),
"github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1.PubSubEventSource": schema_pkg_apis_eventsource_v1alpha1_PubSubEventSource(ref),
@@ -1778,6 +1779,45 @@ func schema_pkg_apis_eventsource_v1alpha1_MQTTEventSource(ref common.ReferenceCa
}
}
+func schema_pkg_apis_eventsource_v1alpha1_NATSAuth(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Description: "NATSAuth refers to the auth info for NATS EventSource",
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "basic": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Baisc auth with username and password",
+ Ref: ref("github.com/argoproj/argo-events/pkg/apis/common.BasicAuth"),
+ },
+ },
+ "token": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Token used to connect",
+ Ref: ref("k8s.io/api/core/v1.SecretKeySelector"),
+ },
+ },
+ "nkey": {
+ SchemaProps: spec.SchemaProps{
+ Description: "NKey used to connect",
+ Ref: ref("k8s.io/api/core/v1.SecretKeySelector"),
+ },
+ },
+ "credential": {
+ SchemaProps: spec.SchemaProps{
+ Description: "credential used to connect",
+ Ref: ref("k8s.io/api/core/v1.SecretKeySelector"),
+ },
+ },
+ },
+ },
+ },
+ Dependencies: []string{
+ "github.com/argoproj/argo-events/pkg/apis/common.BasicAuth", "k8s.io/api/core/v1.SecretKeySelector"},
+ }
+}
+
func schema_pkg_apis_eventsource_v1alpha1_NATSEventsSource(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
@@ -1835,39 +1875,8 @@ func schema_pkg_apis_eventsource_v1alpha1_NATSEventsSource(ref common.ReferenceC
},
"auth": {
SchemaProps: spec.SchemaProps{
- Description: "Auth strategy, defaults to none. If \"auth: basic\" is used, \"Username\" and \"Password\" are required. If \"auth: token\" is used, \"Token\" is required. If \"auth: nkey\" is used, \"NKey\" is required. If \"auth: credential\" is used, \"Credential\" is required.",
- Type: []string{"string"},
- Format: "",
- },
- },
- "username": {
- SchemaProps: spec.SchemaProps{
- Description: "Username used to connect, use \"username\" and \"password\" together with \"auth: basic\"",
- Ref: ref("k8s.io/api/core/v1.SecretKeySelector"),
- },
- },
- "password": {
- SchemaProps: spec.SchemaProps{
- Description: "Password used to connect, use \"username\" and \"password\" together with \"auth: basic\"",
- Ref: ref("k8s.io/api/core/v1.SecretKeySelector"),
- },
- },
- "token": {
- SchemaProps: spec.SchemaProps{
- Description: "Token used to connect, use it together with \"auth: token\"",
- Ref: ref("k8s.io/api/core/v1.SecretKeySelector"),
- },
- },
- "nkey": {
- SchemaProps: spec.SchemaProps{
- Description: "NKey used to connect, use it together with \"auth: nkey\"",
- Ref: ref("k8s.io/api/core/v1.SecretKeySelector"),
- },
- },
- "credential": {
- SchemaProps: spec.SchemaProps{
- Description: "credential used to connect, use it together with \"auth: credential\"",
- Ref: ref("k8s.io/api/core/v1.SecretKeySelector"),
+ Description: "Auth information",
+ Ref: ref("github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1.NATSAuth"),
},
},
},
@@ -1875,7 +1884,7 @@ func schema_pkg_apis_eventsource_v1alpha1_NATSEventsSource(ref common.ReferenceC
},
},
Dependencies: []string{
- "github.com/argoproj/argo-events/pkg/apis/common.Backoff", "github.com/argoproj/argo-events/pkg/apis/common.TLSConfig", "k8s.io/api/core/v1.SecretKeySelector"},
+ "github.com/argoproj/argo-events/pkg/apis/common.Backoff", "github.com/argoproj/argo-events/pkg/apis/common.TLSConfig", "github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1.NATSAuth"},
}
}
diff --git a/pkg/apis/eventsource/v1alpha1/types.go b/pkg/apis/eventsource/v1alpha1/types.go
index 0eecb7dcda..eb01c8cc05 100644
--- a/pkg/apis/eventsource/v1alpha1/types.go
+++ b/pkg/apis/eventsource/v1alpha1/types.go
@@ -481,18 +481,6 @@ type MQTTEventSource struct {
Metadata map[string]string `json:"metadata,omitempty" protobuf:"bytes,7,rep,name=metadata"`
}
-// NATSAuth is the auth strategy of NATS EventSource
-type NATSAuth string
-
-// possible auth strategies
-var (
- NATSAuthNone NATSAuth = ""
- NATSAuthBasic NATSAuth = "basic"
- NATSAuthToken NATSAuth = "token"
- NATSAuthNKEY NATSAuth = "nkey"
- NATSAuthCredential NATSAuth = "credential"
-)
-
// NATSEventsSource refers to event-source for NATS related events
type NATSEventsSource struct {
// URL to connect to NATS cluster
@@ -511,28 +499,25 @@ type NATSEventsSource struct {
// Metadata holds the user defined metadata which will passed along the event payload.
// +optional
Metadata map[string]string `json:"metadata,omitempty" protobuf:"bytes,6,rep,name=metadata"`
- // Auth strategy, defaults to none.
- // If "auth: basic" is used, "Username" and "Password" are required.
- // If "auth: token" is used, "Token" is required.
- // If "auth: nkey" is used, "NKey" is required.
- // If "auth: credential" is used, "Credential" is required.
- // +optional
- Auth NATSAuth `json:"auth,omitempty" protobuf:"bytes,7,rep,name=auth"`
- // Username used to connect, use "username" and "password" together with "auth: basic"
+ // Auth information
// +optional
- Username *corev1.SecretKeySelector `json:"username,omitempty" protobuf:"bytes,8,opt,name=username"`
- // Password used to connect, use "username" and "password" together with "auth: basic"
+ Auth *NATSAuth `json:"auth,omitempty" protobuf:"bytes,7,opt,name=auth"`
+}
+
+// NATSAuth refers to the auth info for NATS EventSource
+type NATSAuth struct {
+ // Baisc auth with username and password
// +optional
- Password *corev1.SecretKeySelector `json:"password,omitempty" protobuf:"bytes,9,opt,name=password"`
- // Token used to connect, use it together with "auth: token"
+ Basic *apicommon.BasicAuth `json:"basic,omitempty" protobuf:"bytes,1,opt,name=basic"`
+ // Token used to connect
// +optional
- Token *corev1.SecretKeySelector `json:"token,omitempty" protobuf:"bytes,10,opt,name=token"`
- // NKey used to connect, use it together with "auth: nkey"
+ Token *corev1.SecretKeySelector `json:"token,omitempty" protobuf:"bytes,2,opt,name=token"`
+ // NKey used to connect
// +optional
- NKey *corev1.SecretKeySelector `json:"nkey,omitempty" protobuf:"bytes,11,opt,name=nkey"`
- // credential used to connect, use it together with "auth: credential"
+ NKey *corev1.SecretKeySelector `json:"nkey,omitempty" protobuf:"bytes,3,opt,name=nkey"`
+ // credential used to connect
// +optional
- Credential *corev1.SecretKeySelector `json:"credential,omitempty" protobuf:"bytes,12,opt,name=credential"`
+ Credential *corev1.SecretKeySelector `json:"credential,omitempty" protobuf:"bytes,4,opt,name=credential"`
}
// SNSEventSource refers to event-source for AWS SNS related events
diff --git a/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go
index bb09505302..4596ba5813 100644
--- a/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go
+++ b/pkg/apis/eventsource/v1alpha1/zz_generated.deepcopy.go
@@ -858,6 +858,42 @@ func (in *MQTTEventSource) DeepCopy() *MQTTEventSource {
return out
}
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
+func (in *NATSAuth) DeepCopyInto(out *NATSAuth) {
+ *out = *in
+ if in.Basic != nil {
+ in, out := &in.Basic, &out.Basic
+ *out = new(common.BasicAuth)
+ (*in).DeepCopyInto(*out)
+ }
+ if in.Token != nil {
+ in, out := &in.Token, &out.Token
+ *out = new(v1.SecretKeySelector)
+ (*in).DeepCopyInto(*out)
+ }
+ if in.NKey != nil {
+ in, out := &in.NKey, &out.NKey
+ *out = new(v1.SecretKeySelector)
+ (*in).DeepCopyInto(*out)
+ }
+ if in.Credential != nil {
+ in, out := &in.Credential, &out.Credential
+ *out = new(v1.SecretKeySelector)
+ (*in).DeepCopyInto(*out)
+ }
+ return
+}
+
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NATSAuth.
+func (in *NATSAuth) DeepCopy() *NATSAuth {
+ if in == nil {
+ return nil
+ }
+ out := new(NATSAuth)
+ in.DeepCopyInto(out)
+ return out
+}
+
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *NATSEventsSource) DeepCopyInto(out *NATSEventsSource) {
*out = *in
@@ -878,29 +914,9 @@ func (in *NATSEventsSource) DeepCopyInto(out *NATSEventsSource) {
(*out)[key] = val
}
}
- if in.Username != nil {
- in, out := &in.Username, &out.Username
- *out = new(v1.SecretKeySelector)
- (*in).DeepCopyInto(*out)
- }
- if in.Password != nil {
- in, out := &in.Password, &out.Password
- *out = new(v1.SecretKeySelector)
- (*in).DeepCopyInto(*out)
- }
- if in.Token != nil {
- in, out := &in.Token, &out.Token
- *out = new(v1.SecretKeySelector)
- (*in).DeepCopyInto(*out)
- }
- if in.NKey != nil {
- in, out := &in.NKey, &out.NKey
- *out = new(v1.SecretKeySelector)
- (*in).DeepCopyInto(*out)
- }
- if in.Credential != nil {
- in, out := &in.Credential, &out.Credential
- *out = new(v1.SecretKeySelector)
+ if in.Auth != nil {
+ in, out := &in.Auth, &out.Auth
+ *out = new(NATSAuth)
(*in).DeepCopyInto(*out)
}
return
diff --git a/pkg/apis/sensor/v1alpha1/generated.pb.go b/pkg/apis/sensor/v1alpha1/generated.pb.go
index 2f93e18e6e..77efa2ef31 100644
--- a/pkg/apis/sensor/v1alpha1/generated.pb.go
+++ b/pkg/apis/sensor/v1alpha1/generated.pb.go
@@ -132,38 +132,10 @@ func (m *ArtifactLocation) XXX_DiscardUnknown() {
var xxx_messageInfo_ArtifactLocation proto.InternalMessageInfo
-func (m *BasicAuth) Reset() { *m = BasicAuth{} }
-func (*BasicAuth) ProtoMessage() {}
-func (*BasicAuth) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{3}
-}
-func (m *BasicAuth) XXX_Unmarshal(b []byte) error {
- return m.Unmarshal(b)
-}
-func (m *BasicAuth) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- b = b[:cap(b)]
- n, err := m.MarshalToSizedBuffer(b)
- if err != nil {
- return nil, err
- }
- return b[:n], nil
-}
-func (m *BasicAuth) XXX_Merge(src proto.Message) {
- xxx_messageInfo_BasicAuth.Merge(m, src)
-}
-func (m *BasicAuth) XXX_Size() int {
- return m.Size()
-}
-func (m *BasicAuth) XXX_DiscardUnknown() {
- xxx_messageInfo_BasicAuth.DiscardUnknown(m)
-}
-
-var xxx_messageInfo_BasicAuth proto.InternalMessageInfo
-
func (m *CustomTrigger) Reset() { *m = CustomTrigger{} }
func (*CustomTrigger) ProtoMessage() {}
func (*CustomTrigger) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{4}
+ return fileDescriptor_6c4bded897df1f16, []int{3}
}
func (m *CustomTrigger) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -191,7 +163,7 @@ var xxx_messageInfo_CustomTrigger proto.InternalMessageInfo
func (m *DataFilter) Reset() { *m = DataFilter{} }
func (*DataFilter) ProtoMessage() {}
func (*DataFilter) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{5}
+ return fileDescriptor_6c4bded897df1f16, []int{4}
}
func (m *DataFilter) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -219,7 +191,7 @@ var xxx_messageInfo_DataFilter proto.InternalMessageInfo
func (m *DependencyGroup) Reset() { *m = DependencyGroup{} }
func (*DependencyGroup) ProtoMessage() {}
func (*DependencyGroup) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{6}
+ return fileDescriptor_6c4bded897df1f16, []int{5}
}
func (m *DependencyGroup) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -247,7 +219,7 @@ var xxx_messageInfo_DependencyGroup proto.InternalMessageInfo
func (m *Event) Reset() { *m = Event{} }
func (*Event) ProtoMessage() {}
func (*Event) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{7}
+ return fileDescriptor_6c4bded897df1f16, []int{6}
}
func (m *Event) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -275,7 +247,7 @@ var xxx_messageInfo_Event proto.InternalMessageInfo
func (m *EventContext) Reset() { *m = EventContext{} }
func (*EventContext) ProtoMessage() {}
func (*EventContext) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{8}
+ return fileDescriptor_6c4bded897df1f16, []int{7}
}
func (m *EventContext) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -303,7 +275,7 @@ var xxx_messageInfo_EventContext proto.InternalMessageInfo
func (m *EventDependency) Reset() { *m = EventDependency{} }
func (*EventDependency) ProtoMessage() {}
func (*EventDependency) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{9}
+ return fileDescriptor_6c4bded897df1f16, []int{8}
}
func (m *EventDependency) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -331,7 +303,7 @@ var xxx_messageInfo_EventDependency proto.InternalMessageInfo
func (m *EventDependencyFilter) Reset() { *m = EventDependencyFilter{} }
func (*EventDependencyFilter) ProtoMessage() {}
func (*EventDependencyFilter) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{10}
+ return fileDescriptor_6c4bded897df1f16, []int{9}
}
func (m *EventDependencyFilter) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -359,7 +331,7 @@ var xxx_messageInfo_EventDependencyFilter proto.InternalMessageInfo
func (m *FileArtifact) Reset() { *m = FileArtifact{} }
func (*FileArtifact) ProtoMessage() {}
func (*FileArtifact) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{11}
+ return fileDescriptor_6c4bded897df1f16, []int{10}
}
func (m *FileArtifact) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -387,7 +359,7 @@ var xxx_messageInfo_FileArtifact proto.InternalMessageInfo
func (m *GitArtifact) Reset() { *m = GitArtifact{} }
func (*GitArtifact) ProtoMessage() {}
func (*GitArtifact) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{12}
+ return fileDescriptor_6c4bded897df1f16, []int{11}
}
func (m *GitArtifact) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -415,7 +387,7 @@ var xxx_messageInfo_GitArtifact proto.InternalMessageInfo
func (m *GitCreds) Reset() { *m = GitCreds{} }
func (*GitCreds) ProtoMessage() {}
func (*GitCreds) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{13}
+ return fileDescriptor_6c4bded897df1f16, []int{12}
}
func (m *GitCreds) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -443,7 +415,7 @@ var xxx_messageInfo_GitCreds proto.InternalMessageInfo
func (m *GitRemoteConfig) Reset() { *m = GitRemoteConfig{} }
func (*GitRemoteConfig) ProtoMessage() {}
func (*GitRemoteConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{14}
+ return fileDescriptor_6c4bded897df1f16, []int{13}
}
func (m *GitRemoteConfig) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -471,7 +443,7 @@ var xxx_messageInfo_GitRemoteConfig proto.InternalMessageInfo
func (m *HTTPTrigger) Reset() { *m = HTTPTrigger{} }
func (*HTTPTrigger) ProtoMessage() {}
func (*HTTPTrigger) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{15}
+ return fileDescriptor_6c4bded897df1f16, []int{14}
}
func (m *HTTPTrigger) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -499,7 +471,7 @@ var xxx_messageInfo_HTTPTrigger proto.InternalMessageInfo
func (m *K8SResourcePolicy) Reset() { *m = K8SResourcePolicy{} }
func (*K8SResourcePolicy) ProtoMessage() {}
func (*K8SResourcePolicy) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{16}
+ return fileDescriptor_6c4bded897df1f16, []int{15}
}
func (m *K8SResourcePolicy) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -527,7 +499,7 @@ var xxx_messageInfo_K8SResourcePolicy proto.InternalMessageInfo
func (m *KafkaTrigger) Reset() { *m = KafkaTrigger{} }
func (*KafkaTrigger) ProtoMessage() {}
func (*KafkaTrigger) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{17}
+ return fileDescriptor_6c4bded897df1f16, []int{16}
}
func (m *KafkaTrigger) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -555,7 +527,7 @@ var xxx_messageInfo_KafkaTrigger proto.InternalMessageInfo
func (m *LogTrigger) Reset() { *m = LogTrigger{} }
func (*LogTrigger) ProtoMessage() {}
func (*LogTrigger) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{18}
+ return fileDescriptor_6c4bded897df1f16, []int{17}
}
func (m *LogTrigger) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -583,7 +555,7 @@ var xxx_messageInfo_LogTrigger proto.InternalMessageInfo
func (m *NATSTrigger) Reset() { *m = NATSTrigger{} }
func (*NATSTrigger) ProtoMessage() {}
func (*NATSTrigger) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{19}
+ return fileDescriptor_6c4bded897df1f16, []int{18}
}
func (m *NATSTrigger) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -611,7 +583,7 @@ var xxx_messageInfo_NATSTrigger proto.InternalMessageInfo
func (m *OpenWhiskTrigger) Reset() { *m = OpenWhiskTrigger{} }
func (*OpenWhiskTrigger) ProtoMessage() {}
func (*OpenWhiskTrigger) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{20}
+ return fileDescriptor_6c4bded897df1f16, []int{19}
}
func (m *OpenWhiskTrigger) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -639,7 +611,7 @@ var xxx_messageInfo_OpenWhiskTrigger proto.InternalMessageInfo
func (m *Sensor) Reset() { *m = Sensor{} }
func (*Sensor) ProtoMessage() {}
func (*Sensor) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{21}
+ return fileDescriptor_6c4bded897df1f16, []int{20}
}
func (m *Sensor) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -667,7 +639,7 @@ var xxx_messageInfo_Sensor proto.InternalMessageInfo
func (m *SensorList) Reset() { *m = SensorList{} }
func (*SensorList) ProtoMessage() {}
func (*SensorList) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{22}
+ return fileDescriptor_6c4bded897df1f16, []int{21}
}
func (m *SensorList) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -695,7 +667,7 @@ var xxx_messageInfo_SensorList proto.InternalMessageInfo
func (m *SensorSpec) Reset() { *m = SensorSpec{} }
func (*SensorSpec) ProtoMessage() {}
func (*SensorSpec) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{23}
+ return fileDescriptor_6c4bded897df1f16, []int{22}
}
func (m *SensorSpec) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -723,7 +695,7 @@ var xxx_messageInfo_SensorSpec proto.InternalMessageInfo
func (m *SensorStatus) Reset() { *m = SensorStatus{} }
func (*SensorStatus) ProtoMessage() {}
func (*SensorStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{24}
+ return fileDescriptor_6c4bded897df1f16, []int{23}
}
func (m *SensorStatus) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -751,7 +723,7 @@ var xxx_messageInfo_SensorStatus proto.InternalMessageInfo
func (m *SlackTrigger) Reset() { *m = SlackTrigger{} }
func (*SlackTrigger) ProtoMessage() {}
func (*SlackTrigger) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{25}
+ return fileDescriptor_6c4bded897df1f16, []int{24}
}
func (m *SlackTrigger) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -779,7 +751,7 @@ var xxx_messageInfo_SlackTrigger proto.InternalMessageInfo
func (m *StandardK8STrigger) Reset() { *m = StandardK8STrigger{} }
func (*StandardK8STrigger) ProtoMessage() {}
func (*StandardK8STrigger) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{26}
+ return fileDescriptor_6c4bded897df1f16, []int{25}
}
func (m *StandardK8STrigger) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -807,7 +779,7 @@ var xxx_messageInfo_StandardK8STrigger proto.InternalMessageInfo
func (m *StatusPolicy) Reset() { *m = StatusPolicy{} }
func (*StatusPolicy) ProtoMessage() {}
func (*StatusPolicy) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{27}
+ return fileDescriptor_6c4bded897df1f16, []int{26}
}
func (m *StatusPolicy) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -835,7 +807,7 @@ var xxx_messageInfo_StatusPolicy proto.InternalMessageInfo
func (m *Template) Reset() { *m = Template{} }
func (*Template) ProtoMessage() {}
func (*Template) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{28}
+ return fileDescriptor_6c4bded897df1f16, []int{27}
}
func (m *Template) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -863,7 +835,7 @@ var xxx_messageInfo_Template proto.InternalMessageInfo
func (m *TimeFilter) Reset() { *m = TimeFilter{} }
func (*TimeFilter) ProtoMessage() {}
func (*TimeFilter) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{29}
+ return fileDescriptor_6c4bded897df1f16, []int{28}
}
func (m *TimeFilter) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -891,7 +863,7 @@ var xxx_messageInfo_TimeFilter proto.InternalMessageInfo
func (m *Trigger) Reset() { *m = Trigger{} }
func (*Trigger) ProtoMessage() {}
func (*Trigger) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{30}
+ return fileDescriptor_6c4bded897df1f16, []int{29}
}
func (m *Trigger) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -919,7 +891,7 @@ var xxx_messageInfo_Trigger proto.InternalMessageInfo
func (m *TriggerParameter) Reset() { *m = TriggerParameter{} }
func (*TriggerParameter) ProtoMessage() {}
func (*TriggerParameter) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{31}
+ return fileDescriptor_6c4bded897df1f16, []int{30}
}
func (m *TriggerParameter) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -947,7 +919,7 @@ var xxx_messageInfo_TriggerParameter proto.InternalMessageInfo
func (m *TriggerParameterSource) Reset() { *m = TriggerParameterSource{} }
func (*TriggerParameterSource) ProtoMessage() {}
func (*TriggerParameterSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{32}
+ return fileDescriptor_6c4bded897df1f16, []int{31}
}
func (m *TriggerParameterSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -975,7 +947,7 @@ var xxx_messageInfo_TriggerParameterSource proto.InternalMessageInfo
func (m *TriggerPolicy) Reset() { *m = TriggerPolicy{} }
func (*TriggerPolicy) ProtoMessage() {}
func (*TriggerPolicy) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{33}
+ return fileDescriptor_6c4bded897df1f16, []int{32}
}
func (m *TriggerPolicy) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1003,7 +975,7 @@ var xxx_messageInfo_TriggerPolicy proto.InternalMessageInfo
func (m *TriggerSwitch) Reset() { *m = TriggerSwitch{} }
func (*TriggerSwitch) ProtoMessage() {}
func (*TriggerSwitch) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{34}
+ return fileDescriptor_6c4bded897df1f16, []int{33}
}
func (m *TriggerSwitch) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1031,7 +1003,7 @@ var xxx_messageInfo_TriggerSwitch proto.InternalMessageInfo
func (m *TriggerTemplate) Reset() { *m = TriggerTemplate{} }
func (*TriggerTemplate) ProtoMessage() {}
func (*TriggerTemplate) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{35}
+ return fileDescriptor_6c4bded897df1f16, []int{34}
}
func (m *TriggerTemplate) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1059,7 +1031,7 @@ var xxx_messageInfo_TriggerTemplate proto.InternalMessageInfo
func (m *URLArtifact) Reset() { *m = URLArtifact{} }
func (*URLArtifact) ProtoMessage() {}
func (*URLArtifact) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{36}
+ return fileDescriptor_6c4bded897df1f16, []int{35}
}
func (m *URLArtifact) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1088,7 +1060,6 @@ func init() {
proto.RegisterType((*AWSLambdaTrigger)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.AWSLambdaTrigger")
proto.RegisterType((*ArgoWorkflowTrigger)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.ArgoWorkflowTrigger")
proto.RegisterType((*ArtifactLocation)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.ArtifactLocation")
- proto.RegisterType((*BasicAuth)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.BasicAuth")
proto.RegisterType((*CustomTrigger)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.CustomTrigger")
proto.RegisterMapType((map[string]string)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.CustomTrigger.SpecEntry")
proto.RegisterType((*DataFilter)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.DataFilter")
@@ -1133,233 +1104,233 @@ func init() {
}
var fileDescriptor_6c4bded897df1f16 = []byte{
- // 3614 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x3b, 0x4d, 0x6c, 0x1b, 0xc7,
- 0xd5, 0xe6, 0xaf, 0xc8, 0x27, 0xda, 0x92, 0x27, 0x76, 0x3e, 0x45, 0x5f, 0x22, 0x19, 0x0c, 0x9a,
- 0x3a, 0x41, 0x42, 0x25, 0x76, 0xda, 0x28, 0x6e, 0x91, 0x84, 0xa4, 0xe4, 0x3f, 0xd1, 0x96, 0x32,
- 0x4b, 0xd9, 0x40, 0x5b, 0x20, 0x59, 0x2d, 0x87, 0xe4, 0x46, 0xcb, 0xdd, 0xed, 0xce, 0x50, 0x2e,
- 0x0f, 0x6d, 0x03, 0xe4, 0x54, 0xa0, 0x68, 0x0a, 0xf4, 0xd2, 0x53, 0xdb, 0x4b, 0x6f, 0x2d, 0xd0,
- 0x7b, 0x81, 0x16, 0xe8, 0x29, 0xa7, 0x22, 0x2d, 0x50, 0x20, 0x87, 0x42, 0x68, 0x94, 0x43, 0x0f,
- 0x3d, 0x04, 0x01, 0x7a, 0xf2, 0xa5, 0xc5, 0xfc, 0xed, 0x1f, 0xe9, 0x58, 0x32, 0x05, 0x19, 0xbd,
- 0x71, 0xdf, 0x7b, 0xf3, 0xde, 0xcc, 0x9b, 0x37, 0xef, 0x67, 0xde, 0x10, 0xae, 0xf7, 0x6c, 0xd6,
- 0x1f, 0xee, 0xd4, 0x2c, 0x6f, 0xb0, 0x62, 0x06, 0x3d, 0xcf, 0x0f, 0xbc, 0xf7, 0xc4, 0x8f, 0x97,
- 0xc8, 0x1e, 0x71, 0x19, 0x5d, 0xf1, 0x77, 0x7b, 0x2b, 0xa6, 0x6f, 0xd3, 0x15, 0x4a, 0x5c, 0xea,
- 0x05, 0x2b, 0x7b, 0xaf, 0x98, 0x8e, 0xdf, 0x37, 0x5f, 0x59, 0xe9, 0x11, 0x97, 0x04, 0x26, 0x23,
- 0x9d, 0x9a, 0x1f, 0x78, 0xcc, 0x43, 0xab, 0x11, 0xa7, 0x9a, 0xe6, 0x24, 0x7e, 0xbc, 0x23, 0x39,
- 0xd5, 0xfc, 0xdd, 0x5e, 0x8d, 0x73, 0xaa, 0x49, 0x4e, 0x35, 0xcd, 0x69, 0xf1, 0xcd, 0x43, 0xcf,
- 0xc1, 0xf2, 0x06, 0x03, 0xcf, 0x4d, 0x8b, 0x5e, 0x7c, 0x29, 0xc6, 0xa0, 0xe7, 0xf5, 0xbc, 0x15,
- 0x01, 0xde, 0x19, 0x76, 0xc5, 0x97, 0xf8, 0x10, 0xbf, 0x14, 0x79, 0x75, 0x77, 0x95, 0xd6, 0x6c,
- 0x8f, 0xb3, 0x5c, 0xb1, 0xbc, 0x80, 0xac, 0xec, 0x8d, 0xad, 0x66, 0xf1, 0xd5, 0x88, 0x66, 0x60,
- 0x5a, 0x7d, 0xdb, 0x25, 0xc1, 0x28, 0x9a, 0xc7, 0x80, 0x30, 0x73, 0xd2, 0xa8, 0x95, 0x07, 0x8d,
- 0x0a, 0x86, 0x2e, 0xb3, 0x07, 0x64, 0x6c, 0xc0, 0xd7, 0x1f, 0x36, 0x80, 0x5a, 0x7d, 0x32, 0x30,
- 0xd3, 0xe3, 0xaa, 0x3f, 0xcb, 0xc3, 0x7c, 0xfd, 0xae, 0xd1, 0x32, 0x07, 0x3b, 0x1d, 0xb3, 0x1d,
- 0xd8, 0xbd, 0x1e, 0x09, 0xd0, 0x2a, 0x54, 0xba, 0x43, 0xd7, 0x62, 0xb6, 0xe7, 0xde, 0x36, 0x07,
- 0x64, 0x21, 0x73, 0x21, 0x73, 0xb1, 0xdc, 0x38, 0xf7, 0xd1, 0xfe, 0xf2, 0xa9, 0x83, 0xfd, 0xe5,
- 0xca, 0xd5, 0x18, 0x0e, 0x27, 0x28, 0x11, 0x86, 0xb2, 0x69, 0x59, 0x84, 0xd2, 0x0d, 0x32, 0x5a,
- 0xc8, 0x5e, 0xc8, 0x5c, 0x9c, 0xbd, 0xf4, 0x95, 0x9a, 0x9c, 0x1a, 0xdf, 0xb2, 0x1a, 0xd7, 0x52,
- 0x6d, 0xef, 0x95, 0x9a, 0x41, 0xac, 0x80, 0xb0, 0x0d, 0x32, 0x32, 0x88, 0x43, 0x2c, 0xe6, 0x05,
- 0x8d, 0xd3, 0x07, 0xfb, 0xcb, 0xe5, 0xba, 0x1e, 0x8b, 0x23, 0x36, 0x9c, 0x27, 0xd5, 0xe4, 0x0b,
- 0xb9, 0x23, 0xf3, 0x0c, 0xc1, 0x38, 0x62, 0x83, 0x9e, 0x83, 0x62, 0x40, 0x7a, 0xb6, 0xe7, 0x2e,
- 0xe4, 0xc5, 0xda, 0xce, 0xa8, 0xb5, 0x15, 0xb1, 0x80, 0x62, 0x85, 0x45, 0x43, 0x98, 0xf1, 0xcd,
- 0x91, 0xe3, 0x99, 0x9d, 0x85, 0xc2, 0x85, 0xdc, 0xc5, 0xd9, 0x4b, 0x37, 0x6b, 0x8f, 0x6a, 0x9d,
- 0x35, 0xa5, 0xdd, 0x2d, 0x33, 0x30, 0x07, 0x84, 0x91, 0xa0, 0x31, 0xa7, 0x84, 0xce, 0x6c, 0x49,
- 0x11, 0x58, 0xcb, 0x42, 0x3f, 0x00, 0xf0, 0x35, 0x19, 0x5d, 0x28, 0x1e, 0xbb, 0x64, 0xa4, 0x24,
- 0x43, 0x08, 0xa2, 0x38, 0x26, 0xb1, 0xba, 0x9f, 0x83, 0x27, 0xea, 0x41, 0xcf, 0xbb, 0xeb, 0x05,
- 0xbb, 0x5d, 0xc7, 0xbb, 0xa7, 0x0d, 0xc3, 0x85, 0x22, 0xf5, 0x86, 0x81, 0x25, 0x4d, 0x62, 0xaa,
- 0x39, 0xd5, 0x03, 0x66, 0x77, 0x4d, 0x8b, 0xb5, 0x3c, 0xcb, 0xe4, 0xe6, 0xd3, 0x00, 0xae, 0x7e,
- 0x43, 0x70, 0xc7, 0x4a, 0x0a, 0xba, 0x0e, 0x65, 0xcf, 0xe7, 0xf6, 0xca, 0x77, 0x2a, 0x2b, 0x76,
- 0xea, 0x05, 0x35, 0xf5, 0xf2, 0xa6, 0x46, 0xdc, 0xdf, 0x5f, 0x3e, 0x1f, 0x9f, 0x6c, 0x88, 0xc0,
- 0xd1, 0xe0, 0x94, 0x46, 0x73, 0x27, 0xad, 0x51, 0xf4, 0xe3, 0x0c, 0x9c, 0xeb, 0x05, 0xde, 0xd0,
- 0xbf, 0x43, 0x02, 0xca, 0xe7, 0x46, 0x94, 0x22, 0xf3, 0x42, 0x91, 0x57, 0x62, 0x06, 0x1d, 0x9e,
- 0xdf, 0x48, 0x3c, 0x77, 0x13, 0xdc, 0xc4, 0xaf, 0x4d, 0xe0, 0xd0, 0x78, 0x5a, 0x89, 0x3e, 0x37,
- 0x09, 0x8b, 0x27, 0x4a, 0xad, 0x7e, 0xc1, 0x8f, 0x7d, 0x6a, 0x07, 0x90, 0x01, 0x59, 0x7a, 0x59,
- 0xed, 0xec, 0x37, 0x0e, 0xaf, 0x1b, 0xe9, 0x4b, 0x6b, 0xc6, 0x65, 0xcd, 0xb0, 0x51, 0x3c, 0xd8,
- 0x5f, 0xce, 0x1a, 0x97, 0x71, 0x96, 0x5e, 0x46, 0x55, 0x28, 0xda, 0xae, 0x63, 0xbb, 0x44, 0xed,
- 0x9f, 0xd8, 0xe6, 0x1b, 0x02, 0x82, 0x15, 0x06, 0x75, 0x20, 0xdf, 0xb5, 0x1d, 0xa2, 0x0e, 0xf7,
- 0xd5, 0x47, 0xdf, 0x96, 0xab, 0xb6, 0x43, 0xc2, 0x59, 0x94, 0x0e, 0xf6, 0x97, 0xf3, 0x1c, 0x82,
- 0x05, 0x77, 0xf4, 0x2e, 0xe4, 0x86, 0x81, 0xa3, 0x14, 0xbe, 0xfe, 0xe8, 0x42, 0xb6, 0x71, 0x2b,
- 0x94, 0x31, 0x73, 0xb0, 0xbf, 0x9c, 0xdb, 0xc6, 0x2d, 0xcc, 0x59, 0xa3, 0x6d, 0x28, 0x5b, 0x9e,
- 0xdb, 0xb5, 0x7b, 0x03, 0xd3, 0x5f, 0x28, 0x08, 0x39, 0x17, 0x27, 0x79, 0xaa, 0xa6, 0x20, 0xba,
- 0x65, 0xfa, 0x63, 0xce, 0xaa, 0xa9, 0x87, 0xe3, 0x88, 0x13, 0x9f, 0x78, 0xcf, 0x66, 0x0b, 0xc5,
- 0x69, 0x27, 0x7e, 0xcd, 0x66, 0xc9, 0x89, 0x5f, 0xb3, 0x19, 0xe6, 0xac, 0x91, 0x05, 0xa5, 0x40,
- 0x1b, 0xe4, 0x8c, 0x10, 0xf3, 0xfa, 0x91, 0xf7, 0x3f, 0xb4, 0xc7, 0xca, 0xc1, 0xfe, 0x72, 0x29,
- 0xb4, 0xbf, 0x90, 0x71, 0xf5, 0xb7, 0x19, 0x28, 0x37, 0x4c, 0x6a, 0x5b, 0xf5, 0x21, 0xeb, 0xa3,
- 0x4d, 0x28, 0x0d, 0x29, 0x09, 0x5c, 0x1d, 0x5f, 0x0e, 0xed, 0xd4, 0x05, 0xfb, 0x6d, 0x35, 0x14,
- 0x87, 0x4c, 0x38, 0x43, 0xdf, 0xa4, 0xf4, 0x9e, 0x17, 0x74, 0x8e, 0x16, 0x79, 0x04, 0xc3, 0x2d,
- 0x35, 0x14, 0x87, 0x4c, 0xaa, 0xff, 0x2e, 0xc0, 0xe9, 0xe6, 0x90, 0x32, 0x6f, 0xa0, 0xdd, 0xdf,
- 0x0a, 0x8f, 0x44, 0xc1, 0x1e, 0x09, 0xb6, 0x71, 0x4b, 0x05, 0xc5, 0xb3, 0xda, 0x1d, 0x19, 0x1a,
- 0x81, 0x23, 0x1a, 0x1e, 0x66, 0x28, 0xb1, 0x86, 0x81, 0x34, 0xfe, 0x52, 0x14, 0x66, 0x0c, 0x01,
- 0xc5, 0x0a, 0x8b, 0xb6, 0x01, 0x2c, 0x12, 0x30, 0x39, 0xb7, 0xa3, 0xc5, 0xb8, 0x33, 0xdc, 0xe9,
- 0x34, 0xc3, 0xc1, 0x38, 0xc6, 0x08, 0xdd, 0x04, 0x24, 0xe7, 0xc2, 0x63, 0xf3, 0xe6, 0x1e, 0x09,
- 0x02, 0xbb, 0x43, 0x54, 0xc4, 0x5b, 0x54, 0x53, 0x41, 0xc6, 0x18, 0x05, 0x9e, 0x30, 0x0a, 0x51,
- 0xc8, 0x53, 0x9f, 0x58, 0x2a, 0x0c, 0xbe, 0xfd, 0xe8, 0x56, 0x98, 0x50, 0x69, 0xcd, 0xf0, 0x89,
- 0xb5, 0xee, 0xb2, 0x60, 0xd4, 0xa8, 0xa8, 0x09, 0xe5, 0x39, 0x08, 0x0b, 0x61, 0x8f, 0x3b, 0x0e,
- 0xc6, 0xc3, 0xff, 0xcc, 0x09, 0x86, 0xff, 0x06, 0x54, 0xf8, 0x2e, 0x72, 0xdf, 0xb5, 0x65, 0xb2,
- 0xfe, 0x42, 0x49, 0xec, 0xd8, 0x92, 0xa2, 0x7f, 0x72, 0x8d, 0xf8, 0x01, 0xb1, 0x78, 0x12, 0xd7,
- 0x8c, 0x51, 0xe1, 0xc4, 0x98, 0xc5, 0xd7, 0xa0, 0x1c, 0xea, 0x16, 0xcd, 0x43, 0x6e, 0x97, 0x8c,
- 0xa4, 0xc9, 0x62, 0xfe, 0x13, 0x9d, 0x83, 0xc2, 0x9e, 0xe9, 0x0c, 0x95, 0x57, 0xc6, 0xf2, 0xe3,
- 0x4a, 0x76, 0x35, 0x53, 0xfd, 0x63, 0x06, 0x60, 0xcd, 0x64, 0xe6, 0x55, 0xdb, 0x61, 0x24, 0x40,
- 0x17, 0x20, 0xef, 0xf3, 0x39, 0x48, 0x73, 0x0f, 0x37, 0x49, 0x48, 0x14, 0x18, 0xf4, 0x22, 0xe4,
- 0xd9, 0xc8, 0xd7, 0xfe, 0x7d, 0x41, 0x53, 0xb4, 0x47, 0x3e, 0xb9, 0xbf, 0xbf, 0x5c, 0xba, 0x69,
- 0x6c, 0xde, 0xe6, 0xbf, 0xb1, 0xa0, 0x42, 0xcb, 0x5a, 0x30, 0x8f, 0xc1, 0xe5, 0x46, 0xf9, 0x60,
- 0x7f, 0xb9, 0x70, 0x87, 0x03, 0xd4, 0x1c, 0xd0, 0x5b, 0x00, 0x96, 0x37, 0xe0, 0x9b, 0xc0, 0xbc,
- 0x40, 0x19, 0xeb, 0x05, 0xbd, 0x4f, 0xcd, 0x10, 0x73, 0x3f, 0xf1, 0x85, 0x63, 0x63, 0xaa, 0x36,
- 0xcc, 0xad, 0x11, 0x9f, 0xb8, 0x1d, 0xe2, 0x5a, 0x23, 0x11, 0x14, 0xf9, 0x2a, 0xdc, 0x28, 0x93,
- 0x0d, 0x57, 0x21, 0x32, 0x58, 0x81, 0x41, 0xaf, 0x42, 0xa5, 0xa3, 0x07, 0xd9, 0x84, 0x2e, 0x64,
- 0xc5, 0xf4, 0xe6, 0x79, 0xbe, 0xbb, 0x16, 0x83, 0xe3, 0x04, 0x55, 0xf5, 0x17, 0x19, 0x28, 0xac,
- 0xf3, 0x8d, 0x47, 0x03, 0x98, 0xb1, 0x3c, 0x97, 0x91, 0xef, 0x31, 0xe5, 0xce, 0xa6, 0x08, 0x63,
- 0x82, 0x63, 0x53, 0x72, 0x6b, 0xcc, 0x72, 0x13, 0x51, 0x1f, 0x58, 0xcb, 0x40, 0x4f, 0x43, 0xbe,
- 0x63, 0x32, 0x53, 0x28, 0xbd, 0x22, 0x43, 0x1d, 0xdf, 0x34, 0x2c, 0xa0, 0x57, 0x4a, 0x3f, 0xff,
- 0xd5, 0xf2, 0xa9, 0xf7, 0xff, 0x7e, 0xe1, 0x54, 0xf5, 0x8b, 0x2c, 0x54, 0xe2, 0xec, 0xd0, 0x22,
- 0x64, 0xed, 0x8e, 0xd2, 0x03, 0x28, 0x3d, 0x64, 0x6f, 0xac, 0xe1, 0xac, 0xdd, 0x11, 0xee, 0x4a,
- 0x06, 0x81, 0x6c, 0x32, 0x2b, 0x4e, 0xa5, 0x65, 0x5f, 0x83, 0x59, 0x7e, 0x3c, 0xf7, 0x64, 0x52,
- 0x21, 0xfc, 0x55, 0xb9, 0xf1, 0x84, 0x22, 0x9e, 0xe5, 0x66, 0xa7, 0xf3, 0x8d, 0x38, 0x1d, 0xdf,
- 0x04, 0x61, 0x28, 0xf9, 0xe4, 0x26, 0xc4, 0x8c, 0xa3, 0x0e, 0x73, 0x7c, 0xfe, 0x62, 0x91, 0x2e,
- 0x13, 0xc4, 0x05, 0x41, 0xfc, 0x7f, 0x8a, 0x78, 0x8e, 0x2f, 0xb2, 0x29, 0xd1, 0x62, 0x5c, 0x9a,
- 0x1e, 0x3d, 0x0f, 0x33, 0x74, 0xb8, 0xf3, 0x1e, 0xb1, 0x64, 0xc0, 0x2c, 0x47, 0xc7, 0xcc, 0x90,
- 0x60, 0xac, 0xf1, 0xa8, 0x05, 0x79, 0x5e, 0x1a, 0xa9, 0x88, 0xf7, 0xc2, 0xe1, 0x52, 0xb0, 0xb6,
- 0x3d, 0x20, 0xb1, 0xb9, 0xdb, 0xdc, 0x80, 0x38, 0x97, 0x98, 0xce, 0x7f, 0x99, 0x85, 0x39, 0xa1,
- 0xf3, 0xc8, 0x0a, 0x0f, 0x61, 0x80, 0x75, 0x98, 0x13, 0x76, 0x21, 0x75, 0x2d, 0xea, 0xae, 0x6c,
- 0x72, 0xed, 0xeb, 0x49, 0x34, 0x4e, 0xd3, 0xf3, 0xf8, 0x24, 0x40, 0x62, 0x70, 0x2e, 0x19, 0x9f,
- 0xd6, 0x35, 0x02, 0x47, 0x34, 0x68, 0x0f, 0x66, 0xba, 0xe2, 0x98, 0x53, 0x95, 0x16, 0x6d, 0x4e,
- 0x69, 0xb4, 0xd1, 0x8a, 0xa5, 0xfb, 0x90, 0xd6, 0x2b, 0x7f, 0x53, 0xac, 0x85, 0x55, 0xff, 0x9a,
- 0x85, 0xf3, 0x13, 0xe9, 0xd1, 0x8e, 0xda, 0x13, 0x79, 0x86, 0xd6, 0xa6, 0x70, 0xb7, 0xf6, 0x80,
- 0xa8, 0x39, 0x94, 0x92, 0x3b, 0x15, 0x3f, 0xaa, 0xd9, 0x13, 0x38, 0xaa, 0x5d, 0x75, 0x54, 0x65,
- 0xd1, 0x31, 0xc5, 0x92, 0x22, 0xaf, 0x1c, 0x19, 0x50, 0x74, 0xe8, 0xab, 0x2f, 0x43, 0x25, 0x9e,
- 0xff, 0x3e, 0xdc, 0x73, 0x57, 0x3f, 0xcf, 0xc3, 0x6c, 0x2c, 0x29, 0x44, 0xcf, 0xc8, 0x0c, 0x59,
- 0x0e, 0x98, 0x55, 0x03, 0xa2, 0xf4, 0xf6, 0x0d, 0x38, 0x63, 0x39, 0x9e, 0x4b, 0xd6, 0xec, 0x40,
- 0xe4, 0x1e, 0x23, 0x65, 0xa0, 0x4f, 0x2a, 0xca, 0x33, 0xcd, 0x04, 0x16, 0xa7, 0xa8, 0x91, 0x05,
- 0x05, 0x2b, 0x20, 0x1d, 0xaa, 0x12, 0x9c, 0xc6, 0x54, 0x99, 0x6c, 0x93, 0x73, 0x92, 0xe1, 0x43,
- 0xfc, 0xc4, 0x92, 0x37, 0xfa, 0x36, 0x54, 0x28, 0xed, 0x8b, 0x0c, 0x49, 0x24, 0x53, 0xf9, 0xa3,
- 0x24, 0x53, 0xc2, 0xdd, 0x1b, 0xc6, 0xf5, 0x70, 0x38, 0x4e, 0x30, 0x43, 0x2f, 0x42, 0xa9, 0xab,
- 0x83, 0xb2, 0x74, 0x4c, 0xf3, 0x6a, 0xed, 0xa5, 0x30, 0x0c, 0x87, 0x14, 0xdc, 0x9d, 0xee, 0x04,
- 0xa6, 0x6b, 0xf5, 0x95, 0x27, 0x0a, 0xdd, 0x69, 0x43, 0x40, 0xb1, 0xc2, 0x72, 0xb5, 0x33, 0xb3,
- 0x27, 0xdc, 0x50, 0x4c, 0xed, 0x6d, 0xb3, 0x87, 0x39, 0x9c, 0xa3, 0x03, 0xd2, 0x55, 0x49, 0x40,
- 0x88, 0xc6, 0xa4, 0x8b, 0x39, 0x1c, 0x0d, 0xa0, 0x18, 0x90, 0x81, 0xc7, 0xc8, 0x42, 0x59, 0x2c,
- 0xf5, 0xc6, 0x54, 0x6a, 0xc5, 0x82, 0x95, 0x2c, 0x43, 0x64, 0xad, 0x26, 0x21, 0x58, 0x09, 0x41,
- 0xdf, 0x04, 0x90, 0x2a, 0x11, 0x4a, 0x00, 0x31, 0xa9, 0xb0, 0x02, 0x8d, 0x32, 0x13, 0xa9, 0x44,
- 0xa1, 0x90, 0x18, 0x7d, 0xf5, 0x37, 0x19, 0x28, 0xe9, 0xcd, 0xfb, 0x1f, 0x28, 0x01, 0xde, 0x86,
- 0xb9, 0x94, 0x4e, 0x0e, 0xe1, 0xc8, 0x9f, 0x86, 0xfc, 0x30, 0x70, 0x74, 0x06, 0x21, 0x9c, 0xcf,
- 0x36, 0x6e, 0x19, 0x58, 0x40, 0xab, 0xf7, 0x0b, 0x30, 0x7b, 0xbd, 0xdd, 0xde, 0xd2, 0x35, 0xc5,
- 0x43, 0xce, 0x5c, 0x2c, 0x03, 0xcd, 0x9e, 0x60, 0x06, 0xba, 0x0d, 0x39, 0xe6, 0xe8, 0x83, 0x7a,
- 0xe5, 0xc8, 0xb5, 0x60, 0xbb, 0x65, 0x28, 0x13, 0x12, 0x75, 0x66, 0xbb, 0x65, 0x60, 0xce, 0x8f,
- 0x9f, 0x88, 0x01, 0x61, 0x7d, 0xaf, 0x93, 0xbe, 0x76, 0xbb, 0x25, 0xa0, 0x58, 0x61, 0x53, 0x79,
- 0x7f, 0xe1, 0xc4, 0xf3, 0xfe, 0xe7, 0x61, 0x86, 0x47, 0x0a, 0x6f, 0x28, 0x93, 0x88, 0x5c, 0xa4,
- 0xa9, 0xb6, 0x04, 0x63, 0x8d, 0x47, 0x3e, 0x94, 0x77, 0x74, 0x51, 0xab, 0x32, 0x89, 0xe6, 0xa3,
- 0xcf, 0x34, 0xac, 0x8f, 0xe5, 0x75, 0x40, 0xf8, 0x89, 0x23, 0x21, 0xe8, 0xfb, 0x30, 0xd3, 0x27,
- 0x66, 0x87, 0x6b, 0xa6, 0x24, 0x34, 0x83, 0x1f, 0x5d, 0x5e, 0xcc, 0x12, 0x6b, 0xd7, 0x25, 0x53,
- 0x59, 0x8d, 0x85, 0x0b, 0x56, 0x50, 0xac, 0x65, 0x2e, 0x5e, 0x81, 0x4a, 0x9c, 0xf2, 0x48, 0xb5,
- 0xc5, 0x8f, 0x72, 0x70, 0x76, 0x63, 0xd5, 0xd0, 0x97, 0x03, 0x5b, 0x9e, 0x63, 0x5b, 0x23, 0xf4,
- 0x43, 0x28, 0x3a, 0xe6, 0x0e, 0x71, 0xe8, 0x42, 0x46, 0xac, 0xe7, 0xee, 0xa3, 0xaf, 0x67, 0x8c,
- 0x79, 0xad, 0x25, 0x38, 0xcb, 0x45, 0x85, 0xe6, 0x26, 0x81, 0x58, 0x89, 0x45, 0x16, 0xcc, 0xec,
- 0x98, 0xd6, 0xae, 0xd7, 0xed, 0x2a, 0xb7, 0xb1, 0x7a, 0x64, 0x8b, 0x6f, 0xc8, 0xf1, 0x91, 0xde,
- 0x14, 0x00, 0x6b, 0xce, 0xc8, 0x80, 0xf3, 0x24, 0x08, 0xbc, 0x60, 0xd3, 0x55, 0x28, 0x65, 0x4a,
- 0xe2, 0x90, 0x95, 0x1a, 0xcf, 0xa8, 0x81, 0xe7, 0xd7, 0x27, 0x11, 0xe1, 0xc9, 0x63, 0x17, 0x5f,
- 0x87, 0xd9, 0xd8, 0x02, 0x8f, 0xb4, 0x17, 0xff, 0x2c, 0x40, 0x65, 0xc3, 0xec, 0xee, 0x9a, 0x87,
- 0xf4, 0x44, 0xcf, 0x42, 0x81, 0x79, 0xbe, 0x6d, 0xa9, 0xa0, 0x7f, 0x5a, 0x11, 0x14, 0xda, 0x1c,
- 0x88, 0x25, 0x8e, 0x67, 0xa0, 0xbe, 0x19, 0x30, 0x9b, 0xe9, 0xba, 0xa0, 0x10, 0x65, 0xa0, 0x5b,
- 0x1a, 0x81, 0x23, 0x9a, 0xd4, 0x49, 0xcf, 0x9f, 0xf8, 0x49, 0x5f, 0x85, 0x4a, 0x40, 0xbe, 0x3b,
- 0xb4, 0x03, 0xd2, 0xa9, 0x5b, 0xbb, 0x54, 0x44, 0xf5, 0x42, 0xd4, 0xea, 0xc0, 0x31, 0x1c, 0x4e,
- 0x50, 0xf2, 0x5c, 0x80, 0xd7, 0x9c, 0x01, 0xa1, 0x54, 0x38, 0x89, 0x52, 0x94, 0x0b, 0x34, 0x15,
- 0x1c, 0x87, 0x14, 0x3c, 0x77, 0xea, 0x3a, 0x43, 0xda, 0xbf, 0xca, 0x79, 0xf0, 0x7c, 0x57, 0xf8,
- 0x8a, 0x42, 0x94, 0x3b, 0x5d, 0x4d, 0x60, 0x71, 0x8a, 0x5a, 0x3b, 0xe4, 0xd2, 0x31, 0x3b, 0xe4,
- 0x58, 0x78, 0x29, 0x9f, 0x60, 0x78, 0xa9, 0xc3, 0x5c, 0x68, 0x02, 0xb6, 0xdb, 0xdb, 0x20, 0x23,
- 0x95, 0x49, 0x84, 0xb5, 0xce, 0x56, 0x12, 0x8d, 0xd3, 0xf4, 0xdc, 0x45, 0xeb, 0xfa, 0x73, 0x36,
- 0x59, 0xe7, 0xe9, 0xda, 0x53, 0xe3, 0xab, 0x9b, 0x00, 0x2d, 0xaf, 0xa7, 0xcd, 0xbc, 0x0e, 0x73,
- 0xb6, 0xcb, 0x48, 0xb0, 0x67, 0x3a, 0x06, 0xb1, 0x3c, 0xb7, 0x43, 0x85, 0xc9, 0xe7, 0x23, 0xd9,
- 0x37, 0x92, 0x68, 0x9c, 0xa6, 0xaf, 0xfe, 0x3a, 0x07, 0xb3, 0xb7, 0xeb, 0x6d, 0xe3, 0x90, 0x27,
- 0x27, 0x56, 0x92, 0x66, 0x1f, 0x52, 0x92, 0xc6, 0xf6, 0x23, 0xf7, 0xd8, 0xfa, 0x4d, 0x27, 0x7f,
- 0x0a, 0x95, 0x75, 0x17, 0x8e, 0xd7, 0xba, 0xab, 0x1f, 0xe6, 0x61, 0x7e, 0xd3, 0x27, 0xee, 0xdd,
- 0xbe, 0x4d, 0x77, 0xf5, 0x66, 0x5d, 0x80, 0x7c, 0xdf, 0xa3, 0x2c, 0x9d, 0xc0, 0x5d, 0xf7, 0x28,
- 0xc3, 0x02, 0x13, 0x37, 0xad, 0xec, 0x97, 0x9b, 0x16, 0xf7, 0x77, 0x3c, 0xe7, 0xa3, 0xbe, 0x69,
- 0x8d, 0x55, 0xdc, 0xb7, 0x35, 0x02, 0x47, 0x34, 0xa2, 0x41, 0x3a, 0x64, 0xfd, 0xb6, 0xb7, 0x4b,
- 0xdc, 0xa3, 0xd5, 0x26, 0xb2, 0x41, 0xaa, 0xc7, 0xe2, 0x88, 0x0d, 0xba, 0x04, 0x60, 0x46, 0xcd,
- 0x5a, 0x59, 0x97, 0x84, 0x1a, 0xaf, 0x47, 0xad, 0xda, 0x18, 0x55, 0xdc, 0xd0, 0x8a, 0x8f, 0xcd,
- 0xd0, 0x66, 0x4e, 0xbc, 0xb1, 0xf9, 0xa7, 0x2c, 0x14, 0x0d, 0xc1, 0x04, 0xbd, 0x0b, 0xa5, 0x01,
- 0x61, 0xa6, 0x28, 0xcd, 0x65, 0xf5, 0xf1, 0xf2, 0xe1, 0x6e, 0x80, 0x36, 0xc5, 0x51, 0xbd, 0x45,
- 0x98, 0x19, 0x89, 0x8b, 0x60, 0x38, 0xe4, 0xca, 0x0b, 0x7f, 0x71, 0x65, 0x9e, 0x9d, 0xf6, 0x2e,
- 0x43, 0xce, 0xd8, 0xf0, 0x89, 0x35, 0xf1, 0x96, 0xdc, 0x85, 0x22, 0x65, 0x26, 0x1b, 0xd2, 0xe9,
- 0x1b, 0x68, 0x4a, 0x92, 0xe0, 0x16, 0xbb, 0xfe, 0x13, 0xdf, 0x58, 0x49, 0xa9, 0xfe, 0x25, 0x03,
- 0x20, 0x09, 0x5b, 0x36, 0x65, 0xe8, 0x3b, 0x63, 0x8a, 0xac, 0x1d, 0x4e, 0x91, 0x7c, 0xb4, 0x50,
- 0x63, 0x18, 0x38, 0x35, 0x24, 0xa6, 0x44, 0x02, 0x05, 0x9b, 0x91, 0x01, 0x55, 0xe5, 0xcf, 0x5b,
- 0xd3, 0xae, 0x2d, 0x4a, 0x5c, 0x6e, 0x70, 0xb6, 0x58, 0x72, 0xaf, 0xfe, 0xa1, 0xa0, 0xd7, 0xc4,
- 0x15, 0x8b, 0x3e, 0xc8, 0xa4, 0xae, 0x83, 0x65, 0x66, 0x7a, 0xe3, 0xd8, 0xae, 0xc7, 0xa2, 0x14,
- 0xe3, 0xc1, 0xb7, 0xcb, 0xc8, 0x83, 0x12, 0x93, 0x16, 0xae, 0x97, 0x5f, 0x9f, 0xfa, 0xac, 0x44,
- 0xca, 0x56, 0x00, 0x8a, 0x43, 0x21, 0xc8, 0x81, 0x12, 0x23, 0x03, 0xdf, 0x31, 0x19, 0x99, 0xfe,
- 0x92, 0xa6, 0xad, 0x38, 0xc9, 0xea, 0x5a, 0x7f, 0xe1, 0x50, 0x02, 0xfa, 0x30, 0x03, 0xf3, 0x9d,
- 0xe4, 0x45, 0xbd, 0x0e, 0x3e, 0x53, 0x28, 0x3a, 0x75, 0xf5, 0x1f, 0x36, 0x24, 0xe6, 0x53, 0x08,
- 0x8a, 0xc7, 0x84, 0xa3, 0x9b, 0x80, 0x54, 0x9e, 0x7d, 0xd5, 0xb4, 0x1d, 0xd2, 0xc1, 0xde, 0xd0,
- 0xed, 0x08, 0x8f, 0x5a, 0x8a, 0x1a, 0x66, 0xeb, 0x63, 0x14, 0x78, 0xc2, 0x28, 0x9e, 0x59, 0x8a,
- 0xa9, 0x36, 0x86, 0x54, 0xf8, 0xe5, 0x62, 0xf2, 0x11, 0xcd, 0x7a, 0x0c, 0x87, 0x13, 0x94, 0xe8,
- 0x32, 0xcc, 0x58, 0x76, 0x60, 0x0d, 0x6d, 0xa6, 0xee, 0x84, 0x9e, 0x52, 0x83, 0xce, 0xc6, 0x3a,
- 0x3f, 0x92, 0x00, 0x6b, 0xca, 0xaa, 0x07, 0x95, 0xf8, 0xe1, 0x45, 0xef, 0x84, 0x4e, 0x41, 0x9e,
- 0xc9, 0xd7, 0x8e, 0xde, 0xd0, 0xff, 0x72, 0x2f, 0xf0, 0xfb, 0x2c, 0x54, 0x0c, 0xc7, 0xb4, 0xc2,
- 0xc0, 0x9a, 0xf4, 0xed, 0x99, 0xc7, 0x90, 0x44, 0x00, 0x15, 0xf3, 0x11, 0xb1, 0x35, 0x7b, 0xe4,
- 0x26, 0xaa, 0x11, 0x0e, 0xc6, 0x31, 0x46, 0x3c, 0x1b, 0xb0, 0xfa, 0xa6, 0xeb, 0x12, 0x47, 0x05,
- 0xf8, 0x30, 0xba, 0x35, 0x25, 0x18, 0x6b, 0x3c, 0x27, 0x1d, 0x10, 0x4a, 0xcd, 0x9e, 0xee, 0x71,
- 0x84, 0xa4, 0xb7, 0x24, 0x18, 0x6b, 0x7c, 0xf5, 0x3f, 0x79, 0x40, 0x06, 0x33, 0xdd, 0x8e, 0x19,
- 0x74, 0x36, 0x56, 0xc3, 0x4c, 0xf2, 0x81, 0xcf, 0x44, 0x32, 0x8f, 0xe3, 0x99, 0x48, 0xec, 0xbd,
- 0x4f, 0xf6, 0x44, 0xde, 0xfb, 0xdc, 0x8e, 0xbf, 0xf7, 0x91, 0xda, 0x7e, 0x79, 0xd2, 0x7b, 0x9f,
- 0xff, 0xdf, 0x18, 0xee, 0x90, 0xc0, 0x25, 0x8c, 0x50, 0x3d, 0xd7, 0x43, 0xbc, 0xfa, 0x39, 0xf9,
- 0xbc, 0xb6, 0x0b, 0xa7, 0x7d, 0x93, 0x59, 0x7d, 0x83, 0x05, 0x26, 0x23, 0xbd, 0x91, 0x4a, 0xce,
- 0xde, 0x52, 0xc3, 0x4e, 0x6f, 0xc5, 0x91, 0xf7, 0xf7, 0x97, 0xbf, 0xfa, 0xa0, 0x57, 0x7c, 0x6c,
- 0xe4, 0x13, 0x5a, 0x13, 0xe4, 0xa2, 0xed, 0x95, 0x64, 0xcb, 0x33, 0x40, 0xc7, 0xde, 0x23, 0x9b,
- 0x51, 0xdf, 0xab, 0x14, 0xcd, 0xad, 0x15, 0x62, 0x70, 0x8c, 0xaa, 0xba, 0x02, 0x15, 0x79, 0xa2,
- 0xd5, 0x2d, 0xcc, 0x32, 0x14, 0x4c, 0xc7, 0xf1, 0xee, 0x89, 0x93, 0x5b, 0x90, 0x37, 0xeb, 0x75,
- 0x0e, 0xc0, 0x12, 0x5e, 0xfd, 0x73, 0x11, 0x42, 0x2f, 0x8e, 0xac, 0xb1, 0xa0, 0x7f, 0xf4, 0x17,
- 0x23, 0xb7, 0x14, 0x03, 0x19, 0x20, 0xf4, 0x57, 0x2c, 0xf6, 0xab, 0xf7, 0x0b, 0xb6, 0x45, 0xea,
- 0x96, 0xe5, 0x0d, 0x55, 0x63, 0x2b, 0x3b, 0xfe, 0x7e, 0x21, 0x49, 0x81, 0x27, 0x8c, 0x42, 0x37,
- 0xc5, 0xdb, 0x1c, 0x66, 0x72, 0x9d, 0xaa, 0xd8, 0xf6, 0xcc, 0x03, 0xde, 0xe6, 0x48, 0xa2, 0xf0,
- 0x41, 0x8e, 0xfc, 0xc4, 0xd1, 0x70, 0xb4, 0x0e, 0x33, 0x7b, 0x9e, 0x33, 0x1c, 0x10, 0x6d, 0x53,
- 0x8b, 0x93, 0x38, 0xdd, 0x11, 0x24, 0xb1, 0xe2, 0x41, 0x0e, 0xc1, 0x7a, 0x2c, 0x22, 0x30, 0x27,
- 0xde, 0x7f, 0xd8, 0x6c, 0xa4, 0x9a, 0x46, 0xaa, 0x02, 0x7a, 0x6e, 0x12, 0xbb, 0x2d, 0xaf, 0x63,
- 0x24, 0xa9, 0x1b, 0x4f, 0xf0, 0x6a, 0x35, 0x05, 0xc4, 0x69, 0x9e, 0xe8, 0x27, 0x19, 0xa8, 0xb8,
- 0x5e, 0x87, 0x68, 0x6f, 0xa7, 0x12, 0xfe, 0xf6, 0xf4, 0x91, 0xbd, 0x76, 0x3b, 0xc6, 0x56, 0x5e,
- 0xb1, 0x85, 0xf1, 0x2d, 0x8e, 0xc2, 0x09, 0xf9, 0x68, 0x1b, 0x66, 0x99, 0xe7, 0xa8, 0x33, 0xaa,
- 0xab, 0x80, 0xa5, 0x49, 0x6b, 0x6e, 0x87, 0x64, 0x51, 0x7b, 0x39, 0x82, 0x51, 0x1c, 0xe7, 0x83,
- 0x5c, 0x98, 0xb7, 0x07, 0x66, 0x8f, 0x6c, 0x0d, 0x1d, 0x47, 0xba, 0x78, 0x7d, 0x41, 0x3a, 0xf1,
- 0x11, 0x16, 0x77, 0x44, 0x8e, 0x3a, 0x17, 0xa4, 0x4b, 0x02, 0xe2, 0x5a, 0x24, 0x4a, 0x16, 0x6e,
- 0xa4, 0x38, 0xe1, 0x31, 0xde, 0x8b, 0x6f, 0xc2, 0xd9, 0xb1, 0xf5, 0x1f, 0xe9, 0x06, 0xce, 0x00,
- 0x88, 0xba, 0x94, 0xe8, 0x59, 0x28, 0x50, 0x66, 0x06, 0xba, 0x30, 0x0d, 0xd3, 0x54, 0x83, 0x03,
- 0xb1, 0xc4, 0xf1, 0xe2, 0x95, 0x32, 0xcf, 0x57, 0x67, 0x20, 0x2a, 0x06, 0x98, 0xe7, 0x63, 0x81,
- 0xa9, 0xfe, 0x2b, 0x0b, 0x33, 0x3a, 0x9a, 0xd0, 0x58, 0x3a, 0x97, 0x99, 0xb6, 0x39, 0xa4, 0x98,
- 0x3e, 0x34, 0xab, 0x4b, 0xfa, 0xdc, 0xec, 0x89, 0xfb, 0xdc, 0x5d, 0x28, 0xfa, 0xc2, 0xa3, 0xa9,
- 0x53, 0x7e, 0x6d, 0x7a, 0xd9, 0x82, 0x9d, 0x0c, 0x58, 0xf2, 0x37, 0x56, 0x22, 0xaa, 0x9f, 0x67,
- 0x60, 0x3e, 0x3d, 0x43, 0xb4, 0x0b, 0x39, 0x1a, 0x58, 0x4a, 0xe3, 0x5b, 0xc7, 0xb7, 0x74, 0x19,
- 0x2c, 0xe5, 0x1d, 0x87, 0x11, 0x58, 0x98, 0x4b, 0xe1, 0x16, 0xd1, 0x21, 0x94, 0xa5, 0x2d, 0x62,
- 0x8d, 0x50, 0x86, 0x05, 0x06, 0xb5, 0xc6, 0x83, 0x6a, 0x6d, 0x52, 0x50, 0x7d, 0x2a, 0x2d, 0x6f,
- 0x52, 0x48, 0xad, 0xfe, 0x2d, 0x0b, 0x4f, 0x4e, 0x9e, 0x18, 0x7a, 0x03, 0xce, 0x44, 0x19, 0x75,
- 0xec, 0xe1, 0x78, 0x78, 0xc7, 0xb9, 0x96, 0xc0, 0xe2, 0x14, 0x35, 0x8f, 0x62, 0xaa, 0x67, 0xae,
- 0x5f, 0x8f, 0xc7, 0xee, 0x31, 0x9a, 0x21, 0x06, 0xc7, 0xa8, 0x50, 0x1d, 0xe6, 0xd4, 0x57, 0x3b,
- 0x5e, 0xb8, 0xc4, 0x6e, 0x12, 0x9b, 0x49, 0x34, 0x4e, 0xd3, 0xf3, 0xac, 0x8d, 0x47, 0x1b, 0x2e,
- 0x33, 0x95, 0xb5, 0xad, 0x49, 0x30, 0xd6, 0x78, 0x9e, 0xd3, 0xf3, 0x9f, 0xa1, 0xa8, 0x42, 0x32,
- 0xa7, 0x5f, 0x8b, 0xe1, 0x70, 0x82, 0x32, 0x7a, 0xf6, 0x24, 0xcb, 0x80, 0xb1, 0x67, 0x4f, 0xd5,
- 0xcf, 0x32, 0x70, 0x3a, 0x61, 0x6f, 0xa8, 0x0b, 0xb9, 0xdd, 0x55, 0x9d, 0xbe, 0x6f, 0x1c, 0x63,
- 0x4f, 0x44, 0x5a, 0xd0, 0xc6, 0x2a, 0xc5, 0x5c, 0x00, 0x7a, 0x2f, 0xac, 0x14, 0xa6, 0x7e, 0x0d,
- 0x11, 0x4f, 0x28, 0x54, 0x82, 0x97, 0x2c, 0x1a, 0xd6, 0xc3, 0x45, 0x1a, 0xf7, 0x6c, 0x66, 0xf5,
- 0xd1, 0x53, 0x90, 0x33, 0xdd, 0x91, 0xc8, 0x39, 0xca, 0x72, 0x5e, 0x75, 0x77, 0x84, 0x39, 0x4c,
- 0xa0, 0x1c, 0x47, 0xb5, 0x51, 0x25, 0xca, 0x71, 0x30, 0x87, 0x55, 0x7f, 0x07, 0x30, 0x97, 0xf2,
- 0x47, 0x87, 0x68, 0xcc, 0x4a, 0xfb, 0xea, 0xd8, 0x32, 0xec, 0x8c, 0xdb, 0x97, 0xc2, 0xe0, 0x18,
- 0x15, 0xea, 0xc9, 0x4d, 0x90, 0xae, 0xa4, 0x35, 0x95, 0x66, 0x52, 0xb9, 0x7e, 0x6a, 0x17, 0x3e,
- 0xc8, 0x40, 0xc5, 0x8c, 0xbd, 0x62, 0x57, 0x97, 0x83, 0xb7, 0xa6, 0xc9, 0xb8, 0xc7, 0x1e, 0xf0,
- 0xcb, 0x07, 0x0e, 0x71, 0x04, 0x4e, 0x08, 0x45, 0x16, 0xe4, 0xfb, 0x8c, 0xe9, 0xc7, 0xcb, 0xeb,
- 0xc7, 0xd2, 0x58, 0x94, 0x2d, 0x70, 0x0e, 0xc0, 0x82, 0x39, 0xba, 0x07, 0x65, 0xf3, 0x1e, 0x95,
- 0x7f, 0x39, 0x51, 0xaf, 0x9a, 0xa7, 0x29, 0x2c, 0x52, 0xff, 0x5e, 0x51, 0x17, 0xa5, 0x1a, 0x8a,
- 0x23, 0x59, 0x28, 0x80, 0xa2, 0x25, 0x5e, 0x9f, 0xaa, 0x46, 0xed, 0xb5, 0x63, 0x7a, 0xc5, 0xda,
- 0x38, 0xcb, 0x93, 0xf9, 0x04, 0x08, 0x2b, 0x49, 0xa8, 0x07, 0x85, 0x5d, 0xb3, 0xbb, 0x6b, 0xaa,
- 0xd6, 0xcd, 0x14, 0x87, 0x2b, 0xde, 0xac, 0x93, 0x0e, 0x44, 0x40, 0xb0, 0xe4, 0xcf, 0xb7, 0xce,
- 0x35, 0x19, 0x55, 0xaf, 0x40, 0xa6, 0xd8, 0xba, 0x58, 0x67, 0x43, 0x6e, 0x1d, 0x07, 0x60, 0xc1,
- 0x9c, 0xaf, 0x46, 0x94, 0xc6, 0xa2, 0x5d, 0x33, 0x9d, 0xab, 0x88, 0x5d, 0x1d, 0xc8, 0xd5, 0x08,
- 0x08, 0x96, 0xfc, 0xb9, 0x8d, 0x78, 0xfa, 0xe6, 0x5e, 0x34, 0x78, 0xa6, 0xb2, 0x91, 0x74, 0x13,
- 0x40, 0xda, 0x48, 0x08, 0xc5, 0x91, 0x2c, 0xf4, 0x0e, 0xe4, 0x1c, 0xaf, 0xb7, 0x70, 0x7a, 0xda,
- 0x3b, 0xdb, 0xa8, 0xe3, 0x24, 0x0f, 0x7a, 0xcb, 0xeb, 0x61, 0xce, 0x19, 0x0d, 0xa1, 0x48, 0x85,
- 0xef, 0x5b, 0xa8, 0x1c, 0x53, 0x7e, 0x22, 0x5d, 0x69, 0xe3, 0x9c, 0xba, 0xe4, 0xd2, 0x2f, 0x70,
- 0x04, 0x14, 0x2b, 0x61, 0x55, 0x0b, 0x66, 0x63, 0x7f, 0x5c, 0x38, 0xc4, 0xb3, 0xde, 0x4b, 0x00,
- 0x7b, 0x24, 0xb0, 0xbb, 0xa3, 0x26, 0x09, 0x98, 0x7a, 0xbf, 0x1e, 0x7a, 0xcb, 0x3b, 0x21, 0x06,
- 0xc7, 0xa8, 0x1a, 0xb5, 0x8f, 0x3e, 0x5d, 0x3a, 0xf5, 0xf1, 0xa7, 0x4b, 0xa7, 0x3e, 0xf9, 0x74,
- 0xe9, 0xd4, 0xfb, 0x07, 0x4b, 0x99, 0x8f, 0x0e, 0x96, 0x32, 0x1f, 0x1f, 0x2c, 0x65, 0x3e, 0x39,
- 0x58, 0xca, 0xfc, 0xe3, 0x60, 0x29, 0xf3, 0xd3, 0xcf, 0x96, 0x4e, 0x7d, 0xab, 0xa4, 0x17, 0xf0,
- 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0f, 0x25, 0x11, 0x27, 0x35, 0x38, 0x00, 0x00,
+ // 3604 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x3b, 0x4b, 0x6c, 0x23, 0xc7,
+ 0x95, 0xc3, 0xaf, 0xc8, 0x27, 0xce, 0x48, 0x53, 0x9e, 0xf1, 0xca, 0x5a, 0x5b, 0x1a, 0xd0, 0x58,
+ 0xef, 0xd8, 0xb0, 0x29, 0x7b, 0xc6, 0xbb, 0x96, 0x67, 0x17, 0xb6, 0x49, 0x49, 0xf3, 0x13, 0x67,
+ 0x24, 0x57, 0x53, 0x33, 0xc0, 0xee, 0x02, 0x76, 0xab, 0x59, 0x24, 0xdb, 0x6a, 0x76, 0x73, 0xbb,
+ 0x8a, 0x9a, 0xe5, 0x61, 0x13, 0x03, 0x3e, 0x05, 0x08, 0xe2, 0x00, 0xb9, 0xe4, 0x94, 0xe4, 0x92,
+ 0x5b, 0x0e, 0xb9, 0x07, 0x48, 0x80, 0x9c, 0x7c, 0x0a, 0x9c, 0x00, 0x01, 0x7c, 0x08, 0x84, 0x58,
+ 0x3e, 0xe4, 0x90, 0x83, 0x61, 0x20, 0xa7, 0xb9, 0x24, 0xa8, 0x5f, 0x77, 0x75, 0x93, 0xe3, 0x91,
+ 0x86, 0x82, 0xe6, 0xc6, 0x7e, 0xef, 0xd5, 0x7b, 0x55, 0xaf, 0x5e, 0xbd, 0x4f, 0xbd, 0x22, 0xdc,
+ 0xec, 0xba, 0xac, 0x37, 0xdc, 0xad, 0x39, 0x41, 0x7f, 0xc5, 0x0e, 0xbb, 0xc1, 0x20, 0x0c, 0x3e,
+ 0x12, 0x3f, 0x5e, 0x23, 0xfb, 0xc4, 0x67, 0x74, 0x65, 0xb0, 0xd7, 0x5d, 0xb1, 0x07, 0x2e, 0x5d,
+ 0xa1, 0xc4, 0xa7, 0x41, 0xb8, 0xb2, 0xff, 0x86, 0xed, 0x0d, 0x7a, 0xf6, 0x1b, 0x2b, 0x5d, 0xe2,
+ 0x93, 0xd0, 0x66, 0xa4, 0x5d, 0x1b, 0x84, 0x01, 0x0b, 0xd0, 0x6a, 0xcc, 0xa9, 0xa6, 0x39, 0x89,
+ 0x1f, 0x1f, 0x48, 0x4e, 0xb5, 0xc1, 0x5e, 0xb7, 0xc6, 0x39, 0xd5, 0x24, 0xa7, 0x9a, 0xe6, 0xb4,
+ 0xf8, 0xee, 0x91, 0xe7, 0xe0, 0x04, 0xfd, 0x7e, 0xe0, 0xa7, 0x45, 0x2f, 0xbe, 0x66, 0x30, 0xe8,
+ 0x06, 0xdd, 0x60, 0x45, 0x80, 0x77, 0x87, 0x1d, 0xf1, 0x25, 0x3e, 0xc4, 0x2f, 0x45, 0x5e, 0xdd,
+ 0x5b, 0xa5, 0x35, 0x37, 0xe0, 0x2c, 0x57, 0x9c, 0x20, 0x24, 0x2b, 0xfb, 0x63, 0xab, 0x59, 0x7c,
+ 0x33, 0xa6, 0xe9, 0xdb, 0x4e, 0xcf, 0xf5, 0x49, 0x38, 0x8a, 0xe7, 0xd1, 0x27, 0xcc, 0x9e, 0x34,
+ 0x6a, 0xe5, 0x51, 0xa3, 0xc2, 0xa1, 0xcf, 0xdc, 0x3e, 0x19, 0x1b, 0xf0, 0xef, 0x8f, 0x1b, 0x40,
+ 0x9d, 0x1e, 0xe9, 0xdb, 0xe9, 0x71, 0xd5, 0x1f, 0xe5, 0x61, 0xbe, 0x7e, 0xdf, 0x6a, 0xda, 0xfd,
+ 0xdd, 0xb6, 0xdd, 0x0a, 0xdd, 0x6e, 0x97, 0x84, 0x68, 0x15, 0x2a, 0x9d, 0xa1, 0xef, 0x30, 0x37,
+ 0xf0, 0xef, 0xda, 0x7d, 0xb2, 0x90, 0xb9, 0x94, 0xb9, 0x5c, 0x6e, 0x5c, 0xf8, 0xec, 0x60, 0xf9,
+ 0xcc, 0xe1, 0xc1, 0x72, 0xe5, 0xba, 0x81, 0xc3, 0x09, 0x4a, 0x84, 0xa1, 0x6c, 0x3b, 0x0e, 0xa1,
+ 0x74, 0x93, 0x8c, 0x16, 0xb2, 0x97, 0x32, 0x97, 0x67, 0xaf, 0xfc, 0x4b, 0x4d, 0x4e, 0x8d, 0x6f,
+ 0x59, 0x8d, 0x6b, 0xa9, 0xb6, 0xff, 0x46, 0xcd, 0x22, 0x4e, 0x48, 0xd8, 0x26, 0x19, 0x59, 0xc4,
+ 0x23, 0x0e, 0x0b, 0xc2, 0xc6, 0xd9, 0xc3, 0x83, 0xe5, 0x72, 0x5d, 0x8f, 0xc5, 0x31, 0x1b, 0xce,
+ 0x93, 0x6a, 0xf2, 0x85, 0xdc, 0xb1, 0x79, 0x46, 0x60, 0x1c, 0xb3, 0x41, 0x2f, 0x41, 0x31, 0x24,
+ 0x5d, 0x37, 0xf0, 0x17, 0xf2, 0x62, 0x6d, 0xe7, 0xd4, 0xda, 0x8a, 0x58, 0x40, 0xb1, 0xc2, 0xa2,
+ 0x21, 0xcc, 0x0c, 0xec, 0x91, 0x17, 0xd8, 0xed, 0x85, 0xc2, 0xa5, 0xdc, 0xe5, 0xd9, 0x2b, 0xb7,
+ 0x6b, 0x4f, 0x6a, 0x9d, 0x35, 0xa5, 0xdd, 0x6d, 0x3b, 0xb4, 0xfb, 0x84, 0x91, 0xb0, 0x31, 0xa7,
+ 0x84, 0xce, 0x6c, 0x4b, 0x11, 0x58, 0xcb, 0x42, 0xdf, 0x01, 0x18, 0x68, 0x32, 0xba, 0x50, 0x3c,
+ 0x71, 0xc9, 0x48, 0x49, 0x86, 0x08, 0x44, 0xb1, 0x21, 0xb1, 0x7a, 0x90, 0x83, 0x67, 0xea, 0x61,
+ 0x37, 0xb8, 0x1f, 0x84, 0x7b, 0x1d, 0x2f, 0x78, 0xa0, 0x0d, 0xc3, 0x87, 0x22, 0x0d, 0x86, 0xa1,
+ 0x23, 0x4d, 0x62, 0xaa, 0x39, 0xd5, 0x43, 0xe6, 0x76, 0x6c, 0x87, 0x35, 0x03, 0xc7, 0xe6, 0xe6,
+ 0xd3, 0x00, 0xae, 0x7e, 0x4b, 0x70, 0xc7, 0x4a, 0x0a, 0xba, 0x09, 0xe5, 0x60, 0xc0, 0xed, 0x95,
+ 0xef, 0x54, 0x56, 0xec, 0xd4, 0x2b, 0x6a, 0xea, 0xe5, 0x2d, 0x8d, 0x78, 0x78, 0xb0, 0x7c, 0xd1,
+ 0x9c, 0x6c, 0x84, 0xc0, 0xf1, 0xe0, 0x94, 0x46, 0x73, 0xa7, 0xad, 0x51, 0xf4, 0xfd, 0x0c, 0x5c,
+ 0xe8, 0x86, 0xc1, 0x70, 0x70, 0x8f, 0x84, 0x94, 0xcf, 0x8d, 0x28, 0x45, 0xe6, 0x85, 0x22, 0xaf,
+ 0x19, 0x06, 0x1d, 0x9d, 0xdf, 0x58, 0x3c, 0x77, 0x13, 0xdc, 0xc4, 0x6f, 0x4c, 0xe0, 0xd0, 0x78,
+ 0x5e, 0x89, 0xbe, 0x30, 0x09, 0x8b, 0x27, 0x4a, 0xad, 0x7e, 0xc3, 0x8f, 0x7d, 0x6a, 0x07, 0x90,
+ 0x05, 0x59, 0x7a, 0x55, 0xed, 0xec, 0x7f, 0x1c, 0x5d, 0x37, 0xd2, 0x97, 0xd6, 0xac, 0xab, 0x9a,
+ 0x61, 0xa3, 0x78, 0x78, 0xb0, 0x9c, 0xb5, 0xae, 0xe2, 0x2c, 0xbd, 0x8a, 0xaa, 0x50, 0x74, 0x7d,
+ 0xcf, 0xf5, 0x89, 0xda, 0x3f, 0xb1, 0xcd, 0xb7, 0x04, 0x04, 0x2b, 0x0c, 0x6a, 0x43, 0xbe, 0xe3,
+ 0x7a, 0x44, 0x1d, 0xee, 0xeb, 0x4f, 0xbe, 0x2d, 0xd7, 0x5d, 0x8f, 0x44, 0xb3, 0x28, 0x1d, 0x1e,
+ 0x2c, 0xe7, 0x39, 0x04, 0x0b, 0xee, 0xe8, 0x43, 0xc8, 0x0d, 0x43, 0x4f, 0x29, 0x7c, 0xe3, 0xc9,
+ 0x85, 0xec, 0xe0, 0x66, 0x24, 0x63, 0xe6, 0xf0, 0x60, 0x39, 0xb7, 0x83, 0x9b, 0x98, 0xb3, 0x46,
+ 0x3b, 0x50, 0x76, 0x02, 0xbf, 0xe3, 0x76, 0xfb, 0xf6, 0x60, 0xa1, 0x20, 0xe4, 0x5c, 0x9e, 0xe4,
+ 0xa9, 0xd6, 0x04, 0xd1, 0x1d, 0x7b, 0x30, 0xe6, 0xac, 0xd6, 0xf4, 0x70, 0x1c, 0x73, 0xe2, 0x13,
+ 0xef, 0xba, 0x6c, 0xa1, 0x38, 0xed, 0xc4, 0x6f, 0xb8, 0x2c, 0x39, 0xf1, 0x1b, 0x2e, 0xc3, 0x9c,
+ 0x35, 0x72, 0xa0, 0x14, 0x6a, 0x83, 0x9c, 0x11, 0x62, 0xde, 0x3e, 0xf6, 0xfe, 0x47, 0xf6, 0x58,
+ 0x39, 0x3c, 0x58, 0x2e, 0x45, 0xf6, 0x17, 0x31, 0xae, 0xfe, 0xad, 0x00, 0x67, 0xd7, 0x86, 0x94,
+ 0x05, 0x7d, 0xed, 0x4e, 0x56, 0xb8, 0x67, 0x0f, 0xf7, 0x49, 0xb8, 0x83, 0x9b, 0x2a, 0xc8, 0x9c,
+ 0xd7, 0xc7, 0xdb, 0xd2, 0x08, 0x1c, 0xd3, 0x70, 0xb7, 0x4d, 0x89, 0x33, 0x0c, 0xa5, 0x31, 0x95,
+ 0x62, 0xb7, 0x6d, 0x09, 0x28, 0x56, 0x58, 0xb4, 0x03, 0xe0, 0x90, 0x90, 0x49, 0xd7, 0x7f, 0xbc,
+ 0x98, 0x71, 0x8e, 0x1f, 0xe2, 0xb5, 0x68, 0x30, 0x36, 0x18, 0xa1, 0xdb, 0x80, 0xe4, 0x5c, 0x78,
+ 0xac, 0xdb, 0xda, 0x27, 0x61, 0xe8, 0xb6, 0x89, 0x8a, 0x20, 0x8b, 0x6a, 0x2a, 0xc8, 0x1a, 0xa3,
+ 0xc0, 0x13, 0x46, 0x21, 0x0a, 0x79, 0x3a, 0x20, 0x8e, 0x0a, 0x2b, 0xef, 0x3f, 0xf9, 0xae, 0x26,
+ 0x54, 0x5a, 0xb3, 0x06, 0xc4, 0xd9, 0xf0, 0x59, 0x38, 0x6a, 0x54, 0xd4, 0x84, 0xf2, 0x1c, 0x84,
+ 0x85, 0xb0, 0xa7, 0x1d, 0x57, 0xcc, 0x70, 0x3a, 0x73, 0x8a, 0xe1, 0xb4, 0x01, 0x15, 0xbe, 0x8b,
+ 0xdc, 0x17, 0x6c, 0xdb, 0xac, 0xb7, 0x50, 0x12, 0x3b, 0xb6, 0xa4, 0xe8, 0x9f, 0x5d, 0x27, 0x83,
+ 0x90, 0x38, 0x3c, 0x29, 0x5a, 0x33, 0xa8, 0x70, 0x62, 0xcc, 0xe2, 0x5b, 0x50, 0x8e, 0x74, 0x8b,
+ 0xe6, 0x21, 0xb7, 0x47, 0x46, 0xd2, 0x64, 0x31, 0xff, 0x89, 0x2e, 0x40, 0x61, 0xdf, 0xf6, 0x86,
+ 0xca, 0xcb, 0x61, 0xf9, 0x71, 0x2d, 0xbb, 0x9a, 0xa9, 0xfe, 0x26, 0x03, 0xb0, 0x6e, 0x33, 0xfb,
+ 0xba, 0xeb, 0x31, 0x12, 0xa2, 0x4b, 0x90, 0x1f, 0xf0, 0x39, 0x48, 0x73, 0x8f, 0x36, 0x49, 0x48,
+ 0x14, 0x18, 0xf4, 0x2a, 0xe4, 0xd9, 0x68, 0xa0, 0xfd, 0xe5, 0x82, 0xa6, 0x68, 0x8d, 0x06, 0xe4,
+ 0xe1, 0xc1, 0x72, 0xe9, 0xb6, 0xb5, 0x75, 0x97, 0xff, 0xc6, 0x82, 0x0a, 0x2d, 0x6b, 0xc1, 0x3c,
+ 0xa6, 0x95, 0x1b, 0xe5, 0xc3, 0x83, 0xe5, 0xc2, 0x3d, 0x0e, 0x50, 0x73, 0x40, 0xef, 0x01, 0x38,
+ 0x41, 0x9f, 0x6f, 0x02, 0x0b, 0x42, 0x65, 0xac, 0x97, 0xf4, 0x3e, 0xad, 0x45, 0x98, 0x87, 0x89,
+ 0x2f, 0x6c, 0x8c, 0xa9, 0xba, 0x30, 0xb7, 0x4e, 0x06, 0xc4, 0x6f, 0x13, 0xdf, 0x19, 0x89, 0x20,
+ 0xc3, 0x57, 0xe1, 0xc7, 0x99, 0x61, 0xb4, 0x0a, 0x91, 0x11, 0x0a, 0x0c, 0x7a, 0x13, 0x2a, 0x6d,
+ 0x3d, 0xc8, 0x25, 0x74, 0x21, 0x2b, 0xa6, 0x37, 0xcf, 0xf3, 0xc7, 0x75, 0x03, 0x8e, 0x13, 0x54,
+ 0xd5, 0x9f, 0x64, 0xa0, 0xb0, 0xc1, 0x37, 0x1e, 0xf5, 0x61, 0xc6, 0x09, 0x7c, 0x46, 0xfe, 0x8f,
+ 0xa9, 0x88, 0x34, 0x45, 0x58, 0x10, 0x1c, 0xd7, 0x24, 0xb7, 0xc6, 0x2c, 0x37, 0x11, 0xf5, 0x81,
+ 0xb5, 0x0c, 0xf4, 0x3c, 0xe4, 0xdb, 0x36, 0xb3, 0x85, 0xd2, 0x2b, 0x32, 0x74, 0xf0, 0x4d, 0xc3,
+ 0x02, 0x7a, 0xad, 0xf4, 0xe3, 0x9f, 0x2d, 0x9f, 0xf9, 0xf8, 0x4f, 0x97, 0xce, 0x54, 0xbf, 0xc9,
+ 0x42, 0xc5, 0x64, 0x87, 0x16, 0x21, 0xeb, 0xb6, 0x95, 0x1e, 0x40, 0xe9, 0x21, 0x7b, 0x6b, 0x1d,
+ 0x67, 0xdd, 0xb6, 0x70, 0x57, 0xd2, 0xa9, 0x66, 0x93, 0x59, 0x66, 0x2a, 0xcd, 0xf9, 0x37, 0x98,
+ 0xe5, 0xc7, 0x73, 0x5f, 0x06, 0x69, 0xe1, 0xaf, 0xca, 0x8d, 0x67, 0x14, 0xf1, 0x2c, 0x37, 0x3b,
+ 0x1d, 0xbf, 0x4d, 0x3a, 0xbe, 0x09, 0xc2, 0x50, 0xf2, 0xc9, 0x4d, 0x30, 0x8c, 0xa3, 0x0e, 0x73,
+ 0x7c, 0xfe, 0x62, 0x91, 0x3e, 0x13, 0xc4, 0x05, 0x41, 0xfc, 0x4f, 0x8a, 0x78, 0x8e, 0x2f, 0x72,
+ 0x4d, 0xa2, 0xc5, 0xb8, 0x34, 0x3d, 0x7a, 0x19, 0x66, 0xe8, 0x70, 0xf7, 0x23, 0xe2, 0xc8, 0x00,
+ 0x54, 0x8e, 0x8f, 0x99, 0x25, 0xc1, 0x58, 0xe3, 0x51, 0x13, 0xf2, 0xbc, 0xd4, 0x50, 0x11, 0xe4,
+ 0x95, 0xa3, 0xa5, 0x34, 0x2d, 0xb7, 0x4f, 0x8c, 0xb9, 0xbb, 0xdc, 0x80, 0x38, 0x17, 0x43, 0xe7,
+ 0x3f, 0xcd, 0xc2, 0x9c, 0xd0, 0x79, 0x6c, 0x85, 0x47, 0x30, 0xc0, 0x3a, 0xcc, 0x09, 0xbb, 0x90,
+ 0xba, 0x16, 0x75, 0x4c, 0x36, 0xb9, 0xf6, 0x8d, 0x24, 0x1a, 0xa7, 0xe9, 0x79, 0x7c, 0x12, 0x20,
+ 0x31, 0x38, 0x97, 0x8c, 0x4f, 0x1b, 0x1a, 0x81, 0x63, 0x1a, 0xb4, 0x0f, 0x33, 0x1d, 0x71, 0xcc,
+ 0xa9, 0x4a, 0x33, 0xb6, 0xa6, 0x34, 0xda, 0x78, 0xc5, 0xd2, 0x7d, 0x48, 0xeb, 0x95, 0xbf, 0x29,
+ 0xd6, 0xc2, 0xaa, 0x7f, 0xc8, 0xc2, 0xc5, 0x89, 0xf4, 0x68, 0x57, 0xed, 0x89, 0x3c, 0x43, 0xeb,
+ 0x53, 0xb8, 0x5b, 0xb7, 0x4f, 0xd4, 0x1c, 0x4a, 0xc9, 0x9d, 0x32, 0x8f, 0x6a, 0xf6, 0x14, 0x8e,
+ 0x6a, 0x47, 0x1d, 0x55, 0x99, 0xc4, 0x4f, 0xb1, 0xa4, 0xd8, 0x2b, 0xc7, 0x06, 0x14, 0x1f, 0xfa,
+ 0xea, 0xeb, 0x50, 0x31, 0xf3, 0xc9, 0xc7, 0x7b, 0xee, 0xea, 0xd7, 0x79, 0x98, 0x35, 0x92, 0x2c,
+ 0xf4, 0x82, 0xcc, 0x38, 0xe5, 0x80, 0x59, 0x35, 0x20, 0x4e, 0x17, 0xdf, 0x81, 0x73, 0x8e, 0x17,
+ 0xf8, 0x64, 0xdd, 0x0d, 0x45, 0xee, 0x31, 0x52, 0x06, 0xfa, 0xac, 0xa2, 0x3c, 0xb7, 0x96, 0xc0,
+ 0xe2, 0x14, 0x35, 0x72, 0xa0, 0xe0, 0x84, 0xa4, 0x4d, 0x55, 0x82, 0xd3, 0x98, 0x2a, 0x33, 0x5c,
+ 0xe3, 0x9c, 0x64, 0xf8, 0x10, 0x3f, 0xb1, 0xe4, 0x8d, 0xfe, 0x1b, 0x2a, 0x94, 0xf6, 0x44, 0x86,
+ 0x24, 0x92, 0xa9, 0xfc, 0x71, 0x92, 0x29, 0xe1, 0xee, 0x2d, 0xeb, 0x66, 0x34, 0x1c, 0x27, 0x98,
+ 0xa1, 0x57, 0xa1, 0xd4, 0xd1, 0x41, 0x59, 0x3a, 0xa6, 0x79, 0xb5, 0xf6, 0x52, 0x14, 0x86, 0x23,
+ 0x0a, 0xee, 0x4e, 0x77, 0x43, 0xdb, 0x77, 0x7a, 0xca, 0x13, 0x45, 0xee, 0xb4, 0x21, 0xa0, 0x58,
+ 0x61, 0xb9, 0xda, 0x99, 0xdd, 0x15, 0x6e, 0xc8, 0x50, 0x7b, 0xcb, 0xee, 0x62, 0x0e, 0xe7, 0xe8,
+ 0x90, 0x74, 0x54, 0x12, 0x10, 0xa1, 0x31, 0xe9, 0x60, 0x0e, 0x47, 0x7d, 0x28, 0x86, 0xa4, 0x1f,
+ 0x30, 0xb2, 0x50, 0x16, 0x4b, 0xbd, 0x35, 0x95, 0x5a, 0xb1, 0x60, 0x25, 0xd3, 0x7a, 0x59, 0xfb,
+ 0x48, 0x08, 0x56, 0x42, 0xd0, 0x7f, 0x02, 0x48, 0x95, 0x08, 0x25, 0x80, 0x98, 0x54, 0x54, 0xd1,
+ 0xc5, 0x99, 0x89, 0x54, 0xa2, 0x50, 0x88, 0x41, 0x5f, 0xfd, 0x45, 0x06, 0x4a, 0x7a, 0xf3, 0xd0,
+ 0x16, 0x94, 0x86, 0x94, 0x84, 0x91, 0x5f, 0x3c, 0xf2, 0x36, 0x89, 0x8c, 0x7d, 0x47, 0x0d, 0xc5,
+ 0x11, 0x13, 0xce, 0x70, 0x60, 0x53, 0xfa, 0x20, 0x08, 0xdb, 0xc7, 0xbb, 0xcc, 0x11, 0x0c, 0xb7,
+ 0xd5, 0x50, 0x1c, 0x31, 0xa9, 0xbe, 0x0f, 0x73, 0x29, 0x9d, 0x1c, 0xc1, 0x91, 0x3f, 0x0f, 0xf9,
+ 0x61, 0xe8, 0xe9, 0x0c, 0x42, 0x38, 0x9f, 0x1d, 0xdc, 0xb4, 0xb0, 0x80, 0x56, 0xbf, 0x29, 0xc0,
+ 0xec, 0xcd, 0x56, 0x6b, 0x5b, 0xd7, 0x14, 0x8f, 0x39, 0x73, 0x46, 0x06, 0x9a, 0x3d, 0xc5, 0x0c,
+ 0x74, 0x07, 0x72, 0xcc, 0xd3, 0x07, 0xf5, 0xda, 0xb1, 0x6b, 0xab, 0x56, 0xd3, 0x52, 0x26, 0x24,
+ 0xea, 0xb6, 0x56, 0xd3, 0xc2, 0x9c, 0x1f, 0x3f, 0x11, 0x7d, 0xc2, 0x7a, 0x41, 0x3b, 0x7d, 0x8d,
+ 0x75, 0x47, 0x40, 0xb1, 0xc2, 0xa6, 0xf2, 0xfe, 0xc2, 0xa9, 0xe7, 0xfd, 0x2f, 0xc3, 0x0c, 0x8f,
+ 0x14, 0xc1, 0x50, 0x26, 0x11, 0xb9, 0x58, 0x53, 0x2d, 0x09, 0xc6, 0x1a, 0x8f, 0xba, 0x50, 0xde,
+ 0xb5, 0xa9, 0xeb, 0xd4, 0x87, 0xac, 0xa7, 0x32, 0x89, 0xe3, 0xeb, 0xab, 0xa1, 0x39, 0xc8, 0xaa,
+ 0x3a, 0xfa, 0xc4, 0x31, 0x6f, 0xf4, 0xff, 0x30, 0xd3, 0x23, 0x76, 0x9b, 0x2b, 0xa4, 0x24, 0x14,
+ 0x82, 0x9f, 0x5c, 0x21, 0x86, 0x01, 0xd6, 0x6e, 0x4a, 0xa6, 0xb2, 0x08, 0x8b, 0xd6, 0xa9, 0xa0,
+ 0x58, 0xcb, 0x5c, 0xbc, 0x06, 0x15, 0x93, 0xf2, 0x58, 0x25, 0xc5, 0xf7, 0x72, 0x70, 0x7e, 0x73,
+ 0xd5, 0xd2, 0x35, 0xf6, 0x76, 0xe0, 0xb9, 0xce, 0x08, 0x7d, 0x17, 0x8a, 0x9e, 0xbd, 0x4b, 0x3c,
+ 0xba, 0x90, 0x11, 0xeb, 0xb9, 0xff, 0xe4, 0xeb, 0x19, 0x63, 0x5e, 0x6b, 0x0a, 0xce, 0x72, 0x51,
+ 0x91, 0x95, 0x49, 0x20, 0x56, 0x62, 0x91, 0x03, 0x33, 0xbb, 0xb6, 0xb3, 0x17, 0x74, 0x3a, 0xca,
+ 0x5b, 0xac, 0x3e, 0xc1, 0xc6, 0x89, 0xf1, 0xb1, 0xde, 0x14, 0x00, 0x6b, 0xce, 0xc8, 0x82, 0x8b,
+ 0x24, 0x0c, 0x83, 0x70, 0xcb, 0x57, 0x28, 0x65, 0x41, 0xe2, 0x6c, 0x95, 0x1a, 0x2f, 0xa8, 0x81,
+ 0x17, 0x37, 0x26, 0x11, 0xe1, 0xc9, 0x63, 0x17, 0xdf, 0x86, 0x59, 0x63, 0x81, 0xc7, 0xda, 0x8b,
+ 0xbf, 0x14, 0xa0, 0xb2, 0x69, 0x77, 0xf6, 0xec, 0x23, 0x3a, 0xa0, 0x17, 0xa1, 0xc0, 0x82, 0x81,
+ 0xeb, 0xa8, 0x58, 0x7f, 0x56, 0x11, 0x14, 0x5a, 0x1c, 0x88, 0x25, 0x8e, 0x27, 0x9e, 0x03, 0x3b,
+ 0x64, 0x2e, 0xd3, 0xe5, 0x40, 0x21, 0x4e, 0x3c, 0xb7, 0x35, 0x02, 0xc7, 0x34, 0xa9, 0x03, 0x9e,
+ 0x3f, 0xf5, 0x03, 0xbe, 0x0a, 0x95, 0x90, 0xfc, 0xef, 0xd0, 0x0d, 0x49, 0xbb, 0xee, 0xec, 0x51,
+ 0x11, 0xcc, 0x0b, 0x71, 0xc7, 0x00, 0x1b, 0x38, 0x9c, 0xa0, 0xe4, 0x29, 0x00, 0x2f, 0x35, 0x43,
+ 0x42, 0xa9, 0xf0, 0x0d, 0xa5, 0x38, 0x05, 0x58, 0x53, 0x70, 0x1c, 0x51, 0xf0, 0x94, 0xa9, 0xe3,
+ 0x0d, 0x69, 0xef, 0x3a, 0xe7, 0xc1, 0xd3, 0x5c, 0xe1, 0x22, 0x0a, 0x71, 0xca, 0x74, 0x3d, 0x81,
+ 0xc5, 0x29, 0x6a, 0xed, 0x87, 0x4b, 0x27, 0xec, 0x87, 0x8d, 0xa8, 0x52, 0x3e, 0xc5, 0xa8, 0x52,
+ 0x87, 0xb9, 0xc8, 0x04, 0x5c, 0xbf, 0xbb, 0x49, 0x46, 0x2a, 0x81, 0x88, 0x4a, 0x9c, 0xed, 0x24,
+ 0x1a, 0xa7, 0xe9, 0xb9, 0x67, 0xd6, 0x65, 0xe7, 0x6c, 0xb2, 0xbc, 0xd3, 0x25, 0xa7, 0xc6, 0x57,
+ 0xb7, 0x00, 0x9a, 0x41, 0x57, 0x9b, 0x79, 0x1d, 0xe6, 0x5c, 0x9f, 0x91, 0x70, 0xdf, 0xf6, 0x2c,
+ 0xe2, 0x04, 0x7e, 0x9b, 0x0a, 0x93, 0xcf, 0xc7, 0xb2, 0x6f, 0x25, 0xd1, 0x38, 0x4d, 0x5f, 0xfd,
+ 0x79, 0x0e, 0x66, 0xef, 0xd6, 0x5b, 0xd6, 0x11, 0x4f, 0x8e, 0x51, 0x89, 0x66, 0x1f, 0x53, 0x89,
+ 0x1a, 0xfb, 0x91, 0x7b, 0x6a, 0x6d, 0x9b, 0xd3, 0x3f, 0x85, 0xca, 0xba, 0x0b, 0x27, 0x6b, 0xdd,
+ 0xd5, 0x4f, 0xf3, 0x30, 0xbf, 0x35, 0x20, 0xfe, 0xfd, 0x9e, 0x4b, 0xf7, 0xf4, 0x66, 0x5d, 0x82,
+ 0x7c, 0x2f, 0xa0, 0x2c, 0x9d, 0xb7, 0xdd, 0x0c, 0x28, 0xc3, 0x02, 0x63, 0x9a, 0x56, 0xf6, 0xdb,
+ 0x4d, 0x8b, 0xfb, 0x3b, 0x9e, 0xea, 0xd1, 0x81, 0xed, 0x8c, 0x15, 0xda, 0x77, 0x35, 0x02, 0xc7,
+ 0x34, 0xa2, 0xcf, 0x38, 0x64, 0xbd, 0x56, 0xb0, 0x47, 0xfc, 0xe3, 0x95, 0x24, 0xb2, 0xcf, 0xa8,
+ 0xc7, 0xe2, 0x98, 0x0d, 0xba, 0x02, 0x60, 0xc7, 0x3d, 0x4f, 0x59, 0x8e, 0x44, 0x1a, 0xaf, 0xc7,
+ 0x1d, 0x4f, 0x83, 0xca, 0x34, 0xb4, 0xe2, 0x53, 0x33, 0xb4, 0x99, 0x53, 0xef, 0x0f, 0xfe, 0x36,
+ 0x0b, 0x45, 0x4b, 0x30, 0x41, 0x1f, 0x42, 0xa9, 0x4f, 0x98, 0x2d, 0x2a, 0x72, 0x59, 0x74, 0xbc,
+ 0x7e, 0xb4, 0x8b, 0x9f, 0x2d, 0x71, 0x54, 0xef, 0x10, 0x66, 0xc7, 0xe2, 0x62, 0x18, 0x8e, 0xb8,
+ 0xf2, 0x7a, 0x5f, 0xdc, 0x94, 0x67, 0xa7, 0xbd, 0xc2, 0x90, 0x33, 0xb6, 0x06, 0xc4, 0x99, 0x78,
+ 0x39, 0xee, 0x43, 0x91, 0x32, 0x9b, 0x0d, 0xe9, 0xf4, 0x7d, 0x28, 0x25, 0x49, 0x70, 0x33, 0x6e,
+ 0xfd, 0xc4, 0x37, 0x56, 0x52, 0xaa, 0xbf, 0xcf, 0x00, 0x48, 0xc2, 0xa6, 0x4b, 0x19, 0xfa, 0x9f,
+ 0x31, 0x45, 0xd6, 0x8e, 0xa6, 0x48, 0x3e, 0x5a, 0xa8, 0x31, 0x0a, 0x9c, 0x1a, 0x62, 0x28, 0x91,
+ 0x40, 0xc1, 0x65, 0xa4, 0x4f, 0x55, 0xd5, 0xf3, 0xde, 0xb4, 0x6b, 0x8b, 0x13, 0x97, 0x5b, 0x9c,
+ 0x2d, 0x96, 0xdc, 0xab, 0xbf, 0x2e, 0xe8, 0x35, 0x71, 0xc5, 0xa2, 0x4f, 0x32, 0xa9, 0x5b, 0x60,
+ 0x99, 0x99, 0xde, 0x3a, 0xb1, 0x5b, 0xb1, 0x38, 0xc5, 0x78, 0xf4, 0xa5, 0x32, 0x0a, 0xa0, 0xc4,
+ 0xa4, 0x85, 0xeb, 0xe5, 0xd7, 0xa7, 0x3e, 0x2b, 0xb1, 0xb2, 0x15, 0x80, 0xe2, 0x48, 0x08, 0xf2,
+ 0xa0, 0xc4, 0x48, 0x7f, 0xe0, 0xd9, 0x8c, 0x4c, 0x7f, 0x37, 0xd3, 0x52, 0x9c, 0x64, 0x51, 0xad,
+ 0xbf, 0x70, 0x24, 0x01, 0x7d, 0x9a, 0x81, 0xf9, 0x76, 0xf2, 0x7e, 0x5e, 0x07, 0x9f, 0x29, 0x14,
+ 0x9d, 0xba, 0xf1, 0x8f, 0xfa, 0x10, 0xf3, 0x29, 0x04, 0xc5, 0x63, 0xc2, 0xd1, 0x6d, 0x40, 0x2a,
+ 0xcf, 0xbe, 0x6e, 0xbb, 0x1e, 0x69, 0xe3, 0x60, 0xe8, 0xb7, 0x85, 0x47, 0x2d, 0xc5, 0x7d, 0xb2,
+ 0x8d, 0x31, 0x0a, 0x3c, 0x61, 0x14, 0xcf, 0x2c, 0xc5, 0x54, 0x1b, 0x43, 0x2a, 0xfc, 0x72, 0x31,
+ 0xf9, 0x16, 0x65, 0xc3, 0xc0, 0xe1, 0x04, 0x25, 0xba, 0x0a, 0x33, 0x8e, 0x1b, 0x3a, 0x43, 0x97,
+ 0xa9, 0xab, 0xa0, 0xe7, 0xd4, 0xa0, 0xf3, 0x46, 0xc3, 0x47, 0x12, 0x60, 0x4d, 0x59, 0x0d, 0xa0,
+ 0x62, 0x1e, 0x5e, 0xf4, 0x41, 0xe4, 0x14, 0xe4, 0x99, 0x7c, 0xeb, 0xf8, 0x7d, 0xf1, 0x6f, 0xf7,
+ 0x02, 0xbf, 0xca, 0x42, 0xc5, 0xf2, 0x6c, 0x27, 0x0a, 0xac, 0x49, 0xdf, 0x9e, 0x79, 0x0a, 0x49,
+ 0x04, 0x50, 0x31, 0x1f, 0x11, 0x5b, 0xb3, 0xc7, 0xee, 0x9d, 0x5a, 0xd1, 0x60, 0x6c, 0x30, 0xe2,
+ 0xd9, 0x80, 0xd3, 0xb3, 0x7d, 0x9f, 0x78, 0x2a, 0xc0, 0x47, 0xd1, 0x6d, 0x4d, 0x82, 0xb1, 0xc6,
+ 0x73, 0xd2, 0x3e, 0xa1, 0xd4, 0xee, 0xea, 0xd6, 0x46, 0x44, 0x7a, 0x47, 0x82, 0xb1, 0xc6, 0x57,
+ 0xff, 0x9e, 0x07, 0x64, 0x31, 0xdb, 0x6f, 0xdb, 0x61, 0x7b, 0x73, 0x35, 0xca, 0x24, 0x1f, 0xf9,
+ 0xda, 0x22, 0xf3, 0x34, 0x5e, 0x5b, 0x18, 0xcf, 0x66, 0xb2, 0xa7, 0xf2, 0x6c, 0xe6, 0xae, 0xf9,
+ 0x6c, 0x46, 0x6a, 0xfb, 0xf5, 0x49, 0xcf, 0x66, 0xfe, 0x79, 0x73, 0xb8, 0x4b, 0x42, 0x9f, 0x30,
+ 0x42, 0xf5, 0x5c, 0x8f, 0xf0, 0x78, 0xe6, 0xf4, 0xf3, 0xda, 0x0e, 0x9c, 0x1d, 0xd8, 0xcc, 0xe9,
+ 0x59, 0x2c, 0xb4, 0x19, 0xe9, 0x8e, 0x54, 0x72, 0xf6, 0x9e, 0x1a, 0x76, 0x76, 0xdb, 0x44, 0x3e,
+ 0x3c, 0x58, 0xfe, 0xd7, 0x47, 0x3d, 0x86, 0x63, 0xa3, 0x01, 0xa1, 0x35, 0x41, 0x2e, 0xba, 0x5d,
+ 0x49, 0xb6, 0x3c, 0x03, 0xf4, 0xdc, 0x7d, 0xb2, 0x15, 0xb7, 0xbb, 0x4a, 0xf1, 0xdc, 0x9a, 0x11,
+ 0x06, 0x1b, 0x54, 0xd5, 0x15, 0xa8, 0xc8, 0x13, 0xad, 0x6e, 0x61, 0x96, 0xa1, 0x60, 0x7b, 0x5e,
+ 0xf0, 0x40, 0x9c, 0xdc, 0x82, 0xbc, 0x50, 0xaf, 0x73, 0x00, 0x96, 0xf0, 0xea, 0xef, 0x8a, 0x10,
+ 0x79, 0x71, 0xe4, 0x8c, 0x05, 0xfd, 0xe3, 0x3f, 0xbc, 0xb8, 0xa3, 0x18, 0xc8, 0x00, 0xa1, 0xbf,
+ 0x8c, 0xd8, 0xaf, 0x9e, 0x2d, 0xb8, 0x0e, 0xa9, 0x3b, 0x4e, 0x30, 0x54, 0xfd, 0xac, 0xec, 0xf8,
+ 0xb3, 0x85, 0x24, 0x05, 0x9e, 0x30, 0x0a, 0xdd, 0x16, 0x4f, 0x5c, 0x98, 0xcd, 0x75, 0xaa, 0x62,
+ 0xdb, 0x0b, 0x8f, 0x78, 0xe2, 0x22, 0x89, 0xa2, 0x77, 0x2d, 0xf2, 0x13, 0xc7, 0xc3, 0xd1, 0x06,
+ 0xcc, 0xec, 0x07, 0xde, 0xb0, 0x4f, 0xb4, 0x4d, 0x2d, 0x4e, 0xe2, 0x74, 0x4f, 0x90, 0x18, 0xc5,
+ 0x83, 0x1c, 0x82, 0xf5, 0x58, 0x44, 0x60, 0x4e, 0x3c, 0xfb, 0x70, 0xd9, 0x48, 0xf5, 0x8a, 0x54,
+ 0x05, 0xf4, 0xd2, 0x24, 0x76, 0xdb, 0x41, 0xdb, 0x4a, 0x52, 0x37, 0x9e, 0xe1, 0xd5, 0x6a, 0x0a,
+ 0x88, 0xd3, 0x3c, 0xd1, 0x0f, 0x32, 0x50, 0xf1, 0x83, 0x36, 0xd1, 0xde, 0x4e, 0x25, 0xfc, 0xad,
+ 0xe9, 0x23, 0x7b, 0xed, 0xae, 0xc1, 0x56, 0x5e, 0xb1, 0x45, 0xf1, 0xcd, 0x44, 0xe1, 0x84, 0x7c,
+ 0xb4, 0x03, 0xb3, 0x2c, 0xf0, 0xd4, 0x19, 0xd5, 0x55, 0xc0, 0xd2, 0xa4, 0x35, 0xb7, 0x22, 0xb2,
+ 0xb8, 0xab, 0x1c, 0xc3, 0x28, 0x36, 0xf9, 0x20, 0x1f, 0xe6, 0xdd, 0xbe, 0xdd, 0x25, 0xdb, 0x43,
+ 0xcf, 0x93, 0x2e, 0x5e, 0x5f, 0x90, 0x4e, 0x7c, 0xcb, 0xc4, 0x1d, 0x91, 0xa7, 0xce, 0x05, 0xe9,
+ 0x90, 0x90, 0xf8, 0x0e, 0x89, 0x93, 0x85, 0x5b, 0x29, 0x4e, 0x78, 0x8c, 0xf7, 0xe2, 0xbb, 0x70,
+ 0x7e, 0x6c, 0xfd, 0xc7, 0xba, 0x81, 0xb3, 0x00, 0xe2, 0xe6, 0x24, 0x7a, 0x11, 0x0a, 0x94, 0xd9,
+ 0xa1, 0x2e, 0x4c, 0xa3, 0x34, 0xd5, 0xe2, 0x40, 0x2c, 0x71, 0xbc, 0x78, 0xa5, 0x2c, 0x18, 0xa8,
+ 0x33, 0x10, 0x17, 0x03, 0x2c, 0x18, 0x60, 0x81, 0xa9, 0xfe, 0x35, 0x0b, 0x33, 0x3a, 0x9a, 0x50,
+ 0x23, 0x9d, 0xcb, 0x4c, 0xdb, 0x13, 0x52, 0x4c, 0x1f, 0x9b, 0xd5, 0x25, 0x7d, 0x6e, 0xf6, 0xd4,
+ 0x7d, 0xee, 0x1e, 0x14, 0x07, 0xc2, 0xa3, 0xa9, 0x53, 0x7e, 0x63, 0x7a, 0xd9, 0x82, 0x9d, 0x0c,
+ 0x58, 0xf2, 0x37, 0x56, 0x22, 0xaa, 0x5f, 0x67, 0x60, 0x3e, 0x3d, 0x43, 0xb4, 0x07, 0x39, 0x1a,
+ 0x3a, 0x4a, 0xe3, 0xdb, 0x27, 0xb7, 0x74, 0x19, 0x2c, 0xe5, 0x1d, 0x87, 0x15, 0x3a, 0x98, 0x4b,
+ 0xe1, 0x16, 0xd1, 0x26, 0x94, 0xa5, 0x2d, 0x62, 0x9d, 0x50, 0x86, 0x05, 0x06, 0x35, 0xc7, 0x83,
+ 0x6a, 0x6d, 0x52, 0x50, 0x7d, 0x2e, 0x2d, 0x6f, 0x52, 0x48, 0xad, 0xfe, 0x31, 0x0b, 0xcf, 0x4e,
+ 0x9e, 0x18, 0x7a, 0x07, 0xce, 0xc5, 0x19, 0xb5, 0xf1, 0xfe, 0x3a, 0xba, 0xe3, 0x5c, 0x4f, 0x60,
+ 0x71, 0x8a, 0x9a, 0x47, 0x31, 0xd5, 0x2a, 0xd7, 0x8f, 0xb0, 0x8d, 0x7b, 0x8c, 0xb5, 0x08, 0x83,
+ 0x0d, 0x2a, 0x54, 0x87, 0x39, 0xf5, 0xd5, 0x32, 0x0b, 0x17, 0xe3, 0x26, 0x71, 0x2d, 0x89, 0xc6,
+ 0x69, 0x7a, 0x9e, 0xb5, 0xf1, 0x68, 0xc3, 0x65, 0xa6, 0xb2, 0xb6, 0x75, 0x09, 0xc6, 0x1a, 0xcf,
+ 0x73, 0x7a, 0xfe, 0x33, 0x12, 0x55, 0x48, 0xe6, 0xf4, 0xeb, 0x06, 0x0e, 0x27, 0x28, 0xe3, 0xd7,
+ 0x4e, 0xb2, 0x0c, 0x18, 0x7b, 0xed, 0x54, 0xfd, 0x2a, 0x03, 0x67, 0x13, 0xf6, 0x86, 0x3a, 0x90,
+ 0xdb, 0x5b, 0xd5, 0xe9, 0xfb, 0xe6, 0x09, 0xf6, 0x44, 0xa4, 0x05, 0x6d, 0xae, 0x52, 0xcc, 0x05,
+ 0xa0, 0x8f, 0xa2, 0x4a, 0x61, 0xea, 0x47, 0x10, 0x66, 0x42, 0xa1, 0x12, 0xbc, 0x64, 0xd1, 0xb0,
+ 0x11, 0x2d, 0xd2, 0x7a, 0xe0, 0x32, 0xa7, 0x87, 0x9e, 0x83, 0x9c, 0xed, 0x8f, 0x44, 0xce, 0x51,
+ 0x96, 0xf3, 0xaa, 0xfb, 0x23, 0xcc, 0x61, 0x02, 0xe5, 0x79, 0xaa, 0x7b, 0x2a, 0x51, 0x9e, 0x87,
+ 0x39, 0xac, 0xfa, 0x4b, 0x80, 0xb9, 0x94, 0x3f, 0x3a, 0x42, 0x3f, 0x56, 0xda, 0x57, 0xdb, 0x95,
+ 0x61, 0x67, 0xdc, 0xbe, 0x14, 0x06, 0x1b, 0x54, 0xa8, 0x2b, 0x37, 0x41, 0xba, 0x92, 0xe6, 0x54,
+ 0x9a, 0x49, 0xe5, 0xfa, 0xa9, 0x5d, 0xf8, 0x24, 0x03, 0x15, 0xdb, 0x78, 0x0c, 0xae, 0x2e, 0x07,
+ 0xef, 0x4c, 0x93, 0x71, 0x8f, 0xbd, 0x83, 0x97, 0xef, 0x1a, 0x4c, 0x04, 0x4e, 0x08, 0x45, 0x0e,
+ 0xe4, 0x7b, 0x8c, 0xe9, 0x37, 0xc0, 0x1b, 0x27, 0xd2, 0x58, 0x94, 0x9d, 0x6f, 0x0e, 0xc0, 0x82,
+ 0x39, 0x7a, 0x00, 0x65, 0xfb, 0x01, 0x95, 0xff, 0xdc, 0x50, 0x8f, 0x83, 0xa7, 0x29, 0x2c, 0x52,
+ 0x7f, 0x02, 0x51, 0x17, 0xa5, 0x1a, 0x8a, 0x63, 0x59, 0x28, 0x84, 0xa2, 0x23, 0x1e, 0x9d, 0xaa,
+ 0xfe, 0xec, 0x8d, 0x13, 0x7a, 0xbc, 0xda, 0x38, 0xcf, 0x93, 0xf9, 0x04, 0x08, 0x2b, 0x49, 0xa8,
+ 0x0b, 0x85, 0x3d, 0xbb, 0xb3, 0x67, 0xab, 0xd6, 0xcd, 0x14, 0x87, 0xcb, 0x6c, 0xd6, 0x49, 0x07,
+ 0x22, 0x20, 0x58, 0xf2, 0xe7, 0x5b, 0xe7, 0xdb, 0x8c, 0xaa, 0xc7, 0x1f, 0x53, 0x6c, 0x9d, 0xd1,
+ 0xd9, 0x90, 0x5b, 0xc7, 0x01, 0x58, 0x30, 0xe7, 0xab, 0x11, 0xa5, 0xb1, 0x68, 0xd7, 0x4c, 0xe7,
+ 0x2a, 0x8c, 0xab, 0x03, 0xb9, 0x1a, 0x01, 0xc1, 0x92, 0x3f, 0xb7, 0x91, 0x40, 0xdf, 0xdc, 0x8b,
+ 0x06, 0xcf, 0x54, 0x36, 0x92, 0x6e, 0x02, 0x48, 0x1b, 0x89, 0xa0, 0x38, 0x96, 0x85, 0x3e, 0x80,
+ 0x9c, 0x17, 0x74, 0x17, 0xce, 0x4e, 0x7b, 0x67, 0x1b, 0x77, 0x9c, 0xe4, 0x41, 0x6f, 0x06, 0x5d,
+ 0xcc, 0x39, 0xa3, 0x21, 0x14, 0xa9, 0xf0, 0x7d, 0x0b, 0x95, 0x13, 0xca, 0x4f, 0xa4, 0x2b, 0x6d,
+ 0x5c, 0x50, 0x97, 0x5c, 0xfa, 0xe1, 0x8d, 0x80, 0x62, 0x25, 0xac, 0xea, 0xc0, 0xac, 0xf1, 0xfe,
+ 0xff, 0x08, 0xaf, 0x79, 0xaf, 0x00, 0xec, 0x93, 0xd0, 0xed, 0x8c, 0xd6, 0x48, 0xc8, 0xd4, 0xb3,
+ 0xf5, 0xc8, 0x5b, 0xde, 0x8b, 0x30, 0xd8, 0xa0, 0x6a, 0xd4, 0x3e, 0xfb, 0x72, 0xe9, 0xcc, 0xe7,
+ 0x5f, 0x2e, 0x9d, 0xf9, 0xe2, 0xcb, 0xa5, 0x33, 0x1f, 0x1f, 0x2e, 0x65, 0x3e, 0x3b, 0x5c, 0xca,
+ 0x7c, 0x7e, 0xb8, 0x94, 0xf9, 0xe2, 0x70, 0x29, 0xf3, 0xe7, 0xc3, 0xa5, 0xcc, 0x0f, 0xbf, 0x5a,
+ 0x3a, 0xf3, 0x5f, 0x25, 0xbd, 0x80, 0x7f, 0x04, 0x00, 0x00, 0xff, 0xff, 0x7b, 0x8c, 0x7d, 0x0b,
+ 0x7c, 0x37, 0x00, 0x00,
}
func (m *AWSLambdaTrigger) Marshal() (dAtA []byte, err error) {
@@ -1613,53 +1584,6 @@ func (m *ArtifactLocation) MarshalToSizedBuffer(dAtA []byte) (int, error) {
return len(dAtA) - i, nil
}
-func (m *BasicAuth) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalToSizedBuffer(dAtA[:size])
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
-}
-
-func (m *BasicAuth) MarshalTo(dAtA []byte) (int, error) {
- size := m.Size()
- return m.MarshalToSizedBuffer(dAtA[:size])
-}
-
-func (m *BasicAuth) MarshalToSizedBuffer(dAtA []byte) (int, error) {
- i := len(dAtA)
- _ = i
- var l int
- _ = l
- if m.Password != nil {
- {
- size, err := m.Password.MarshalToSizedBuffer(dAtA[:i])
- if err != nil {
- return 0, err
- }
- i -= size
- i = encodeVarintGenerated(dAtA, i, uint64(size))
- }
- i--
- dAtA[i] = 0x12
- }
- if m.Username != nil {
- {
- size, err := m.Username.MarshalToSizedBuffer(dAtA[:i])
- if err != nil {
- return 0, err
- }
- i -= size
- i = encodeVarintGenerated(dAtA, i, uint64(size))
- }
- i--
- dAtA[i] = 0xa
- }
- return len(dAtA) - i, nil
-}
-
func (m *CustomTrigger) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
@@ -3846,23 +3770,6 @@ func (m *ArtifactLocation) Size() (n int) {
return n
}
-func (m *BasicAuth) Size() (n int) {
- if m == nil {
- return 0
- }
- var l int
- _ = l
- if m.Username != nil {
- l = m.Username.Size()
- n += 1 + l + sovGenerated(uint64(l))
- }
- if m.Password != nil {
- l = m.Password.Size()
- n += 1 + l + sovGenerated(uint64(l))
- }
- return n
-}
-
func (m *CustomTrigger) Size() (n int) {
if m == nil {
return 0
@@ -4713,17 +4620,6 @@ func (this *ArtifactLocation) String() string {
}, "")
return s
}
-func (this *BasicAuth) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&BasicAuth{`,
- `Username:` + strings.Replace(fmt.Sprintf("%v", this.Username), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
- `Password:` + strings.Replace(fmt.Sprintf("%v", this.Password), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`,
- `}`,
- }, "")
- return s
-}
func (this *CustomTrigger) String() string {
if this == nil {
return "nil"
@@ -4897,7 +4793,7 @@ func (this *HTTPTrigger) String() string {
`Method:` + fmt.Sprintf("%v", this.Method) + `,`,
`Parameters:` + repeatedStringForParameters + `,`,
`Timeout:` + fmt.Sprintf("%v", this.Timeout) + `,`,
- `BasicAuth:` + strings.Replace(this.BasicAuth.String(), "BasicAuth", "BasicAuth", 1) + `,`,
+ `BasicAuth:` + strings.Replace(fmt.Sprintf("%v", this.BasicAuth), "BasicAuth", "common.BasicAuth", 1) + `,`,
`Headers:` + mapStringForHeaders + `,`,
`}`,
}, "")
@@ -6039,131 +5935,6 @@ func (m *ArtifactLocation) Unmarshal(dAtA []byte) error {
}
return nil
}
-func (m *BasicAuth) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowGenerated
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= uint64(b&0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: BasicAuth: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: BasicAuth: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- case 1:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Username", wireType)
- }
- var msglen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowGenerated
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- msglen |= int(b&0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if msglen < 0 {
- return ErrInvalidLengthGenerated
- }
- postIndex := iNdEx + msglen
- if postIndex < 0 {
- return ErrInvalidLengthGenerated
- }
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- if m.Username == nil {
- m.Username = &v1.SecretKeySelector{}
- }
- if err := m.Username.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- case 2:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Password", wireType)
- }
- var msglen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowGenerated
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- msglen |= int(b&0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if msglen < 0 {
- return ErrInvalidLengthGenerated
- }
- postIndex := iNdEx + msglen
- if postIndex < 0 {
- return ErrInvalidLengthGenerated
- }
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- if m.Password == nil {
- m.Password = &v1.SecretKeySelector{}
- }
- if err := m.Password.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- default:
- iNdEx = preIndex
- skippy, err := skipGenerated(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- iNdEx += skippy
- }
- }
-
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
-}
func (m *CustomTrigger) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
@@ -8565,7 +8336,7 @@ func (m *HTTPTrigger) Unmarshal(dAtA []byte) error {
return io.ErrUnexpectedEOF
}
if m.BasicAuth == nil {
- m.BasicAuth = &BasicAuth{}
+ m.BasicAuth = &common.BasicAuth{}
}
if err := m.BasicAuth.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
diff --git a/pkg/apis/sensor/v1alpha1/generated.proto b/pkg/apis/sensor/v1alpha1/generated.proto
index df5864cbbf..fe66ba872f 100644
--- a/pkg/apis/sensor/v1alpha1/generated.proto
+++ b/pkg/apis/sensor/v1alpha1/generated.proto
@@ -89,15 +89,6 @@ message ArtifactLocation {
optional github.com.argoproj.argo_events.pkg.apis.common.Resource resource = 7;
}
-// BasicAuth contains the reference to K8s secrets that holds the username and password
-message BasicAuth {
- // Username refers to the Kubernetes secret that holds the username required for basic auth.
- optional k8s.io.api.core.v1.SecretKeySelector username = 1;
-
- // Password refers to the Kubernetes secret that holds the password required for basic auth.
- optional k8s.io.api.core.v1.SecretKeySelector password = 2;
-}
-
// CustomTrigger refers to the specification of the custom trigger.
message CustomTrigger {
// ServerURL is the url of the gRPC server that executes custom trigger
@@ -311,7 +302,7 @@ message HTTPTrigger {
// BasicAuth configuration for the http request.
// +optional
- optional BasicAuth basicAuth = 7;
+ optional github.com.argoproj.argo_events.pkg.apis.common.BasicAuth basicAuth = 7;
// Headers for the HTTP request.
// +optional
diff --git a/pkg/apis/sensor/v1alpha1/openapi_generated.go b/pkg/apis/sensor/v1alpha1/openapi_generated.go
index 137b51751e..6d2e3574e9 100644
--- a/pkg/apis/sensor/v1alpha1/openapi_generated.go
+++ b/pkg/apis/sensor/v1alpha1/openapi_generated.go
@@ -32,7 +32,6 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA
"github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.AWSLambdaTrigger": schema_pkg_apis_sensor_v1alpha1_AWSLambdaTrigger(ref),
"github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.ArgoWorkflowTrigger": schema_pkg_apis_sensor_v1alpha1_ArgoWorkflowTrigger(ref),
"github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.ArtifactLocation": schema_pkg_apis_sensor_v1alpha1_ArtifactLocation(ref),
- "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.BasicAuth": schema_pkg_apis_sensor_v1alpha1_BasicAuth(ref),
"github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.CustomTrigger": schema_pkg_apis_sensor_v1alpha1_CustomTrigger(ref),
"github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.DataFilter": schema_pkg_apis_sensor_v1alpha1_DataFilter(ref),
"github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.DependencyGroup": schema_pkg_apis_sensor_v1alpha1_DependencyGroup(ref),
@@ -252,33 +251,6 @@ func schema_pkg_apis_sensor_v1alpha1_ArtifactLocation(ref common.ReferenceCallba
}
}
-func schema_pkg_apis_sensor_v1alpha1_BasicAuth(ref common.ReferenceCallback) common.OpenAPIDefinition {
- return common.OpenAPIDefinition{
- Schema: spec.Schema{
- SchemaProps: spec.SchemaProps{
- Description: "BasicAuth contains the reference to K8s secrets that holds the username and password",
- Type: []string{"object"},
- Properties: map[string]spec.Schema{
- "username": {
- SchemaProps: spec.SchemaProps{
- Description: "Username refers to the Kubernetes secret that holds the username required for basic auth.",
- Ref: ref("k8s.io/api/core/v1.SecretKeySelector"),
- },
- },
- "password": {
- SchemaProps: spec.SchemaProps{
- Description: "Password refers to the Kubernetes secret that holds the password required for basic auth.",
- Ref: ref("k8s.io/api/core/v1.SecretKeySelector"),
- },
- },
- },
- },
- },
- Dependencies: []string{
- "k8s.io/api/core/v1.SecretKeySelector"},
- }
-}
-
func schema_pkg_apis_sensor_v1alpha1_CustomTrigger(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
@@ -849,7 +821,7 @@ func schema_pkg_apis_sensor_v1alpha1_HTTPTrigger(ref common.ReferenceCallback) c
"basicAuth": {
SchemaProps: spec.SchemaProps{
Description: "BasicAuth configuration for the http request.",
- Ref: ref("github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.BasicAuth"),
+ Ref: ref("github.com/argoproj/argo-events/pkg/apis/common.BasicAuth"),
},
},
"headers": {
@@ -872,7 +844,7 @@ func schema_pkg_apis_sensor_v1alpha1_HTTPTrigger(ref common.ReferenceCallback) c
},
},
Dependencies: []string{
- "github.com/argoproj/argo-events/pkg/apis/common.TLSConfig", "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.BasicAuth", "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.TriggerParameter"},
+ "github.com/argoproj/argo-events/pkg/apis/common.BasicAuth", "github.com/argoproj/argo-events/pkg/apis/common.TLSConfig", "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.TriggerParameter"},
}
}
diff --git a/pkg/apis/sensor/v1alpha1/types.go b/pkg/apis/sensor/v1alpha1/types.go
index 7d233a7cb3..af98e10ce1 100644
--- a/pkg/apis/sensor/v1alpha1/types.go
+++ b/pkg/apis/sensor/v1alpha1/types.go
@@ -372,20 +372,12 @@ type HTTPTrigger struct {
Timeout int64 `json:"timeout,omitempty" protobuf:"varint,6,opt,name=timeout"`
// BasicAuth configuration for the http request.
// +optional
- BasicAuth *BasicAuth `json:"basicAuth,omitempty" protobuf:"bytes,7,opt,name=basicAuth"`
+ BasicAuth *apicommon.BasicAuth `json:"basicAuth,omitempty" protobuf:"bytes,7,opt,name=basicAuth"`
// Headers for the HTTP request.
// +optional
Headers map[string]string `json:"headers,omitempty" protobuf:"bytes,8,rep,name=headers"`
}
-// BasicAuth contains the reference to K8s secrets that holds the username and password
-type BasicAuth struct {
- // Username refers to the Kubernetes secret that holds the username required for basic auth.
- Username *corev1.SecretKeySelector `json:"username,omitempty" protobuf:"bytes,1,opt,name=username"`
- // Password refers to the Kubernetes secret that holds the password required for basic auth.
- Password *corev1.SecretKeySelector `json:"password,omitempty" protobuf:"bytes,2,opt,name=password"`
-}
-
// AWSLambdaTrigger refers to specification of the trigger to invoke an AWS Lambda function
type AWSLambdaTrigger struct {
// FunctionName refers to the name of the function to invoke.
diff --git a/pkg/apis/sensor/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/sensor/v1alpha1/zz_generated.deepcopy.go
index e270ef1b85..0001a00eaf 100644
--- a/pkg/apis/sensor/v1alpha1/zz_generated.deepcopy.go
+++ b/pkg/apis/sensor/v1alpha1/zz_generated.deepcopy.go
@@ -146,32 +146,6 @@ func (in *ArtifactLocation) DeepCopy() *ArtifactLocation {
return out
}
-// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
-func (in *BasicAuth) DeepCopyInto(out *BasicAuth) {
- *out = *in
- if in.Username != nil {
- in, out := &in.Username, &out.Username
- *out = new(v1.SecretKeySelector)
- (*in).DeepCopyInto(*out)
- }
- if in.Password != nil {
- in, out := &in.Password, &out.Password
- *out = new(v1.SecretKeySelector)
- (*in).DeepCopyInto(*out)
- }
- return
-}
-
-// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BasicAuth.
-func (in *BasicAuth) DeepCopy() *BasicAuth {
- if in == nil {
- return nil
- }
- out := new(BasicAuth)
- in.DeepCopyInto(out)
- return out
-}
-
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CustomTrigger) DeepCopyInto(out *CustomTrigger) {
*out = *in
@@ -471,7 +445,7 @@ func (in *HTTPTrigger) DeepCopyInto(out *HTTPTrigger) {
}
if in.BasicAuth != nil {
in, out := &in.BasicAuth, &out.BasicAuth
- *out = new(BasicAuth)
+ *out = new(common.BasicAuth)
(*in).DeepCopyInto(*out)
}
if in.Headers != nil {
From 3c16e62fdba57fb8b2905b185643822d6e54d5c6 Mon Sep 17 00:00:00 2001
From: Derek Wang
Date: Fri, 5 Feb 2021 00:48:36 -0800
Subject: [PATCH 3/4] update example
Signed-off-by: Derek Wang
---
examples/event-sources/nats.yaml | 39 ++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/examples/event-sources/nats.yaml b/examples/event-sources/nats.yaml
index b8163d3e4a..62efaee02e 100644
--- a/examples/event-sources/nats.yaml
+++ b/examples/event-sources/nats.yaml
@@ -39,4 +39,43 @@ spec:
# name: my-secret
# key: client-key-key
+# example-auth-basic:
+# url: nats://nats.argo-events.svc:4222
+# jsonBody: true
+# subject: "foo"
+# auth:
+# basic:
+# username:
+# name: my-secret
+# key: name
+# password:
+# name: my-secret
+# key: password
+
+# example-auth-nkey:
+# url: nats://nats.argo-events.svc:4222
+# jsonBody: true
+# subject: "foo"
+# auth:
+# nkey:
+# name: my-secret
+# key: my-key
+
+# example-auth-token:
+# url: nats://nats.argo-events.svc:4222
+# jsonBody: true
+# subject: "foo"
+# auth:
+# token:
+# name: my-secret
+# key: my-token
+
+# example-auth-credential:
+# url: nats://nats.argo-events.svc:4222
+# jsonBody: true
+# subject: "foo"
+# auth:
+# credential:
+# name: my-secret
+# key: my-credential
From 3852b5b9444fe35277a0079bf0eb387224873813 Mon Sep 17 00:00:00 2001
From: Derek Wang
Date: Fri, 5 Feb 2021 13:51:55 -0800
Subject: [PATCH 4/4] re-run codegen
Signed-off-by: Derek Wang
---
pkg/apis/common/generated.pb.go | 61 +---
pkg/apis/eventbus/v1alpha1/generated.pb.go | 52 +--
pkg/apis/eventsource/v1alpha1/generated.pb.go | 306 ++++++------------
pkg/apis/sensor/v1alpha1/generated.pb.go | 188 +++--------
4 files changed, 155 insertions(+), 452 deletions(-)
diff --git a/pkg/apis/common/generated.pb.go b/pkg/apis/common/generated.pb.go
index fdf5ddb086..a5cc3d2eaf 100644
--- a/pkg/apis/common/generated.pb.go
+++ b/pkg/apis/common/generated.pb.go
@@ -1513,10 +1513,7 @@ func (m *Amount) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -1673,10 +1670,7 @@ func (m *Backoff) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -1798,10 +1792,7 @@ func (m *BasicAuth) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -2012,10 +2003,7 @@ func (m *Condition) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -2175,7 +2163,7 @@ func (m *Metadata) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -2302,7 +2290,7 @@ func (m *Metadata) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -2319,10 +2307,7 @@ func (m *Metadata) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -2406,10 +2391,7 @@ func (m *Resource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -2829,7 +2811,7 @@ func (m *S3Artifact) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -2846,10 +2828,7 @@ func (m *S3Artifact) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -2963,10 +2942,7 @@ func (m *S3Bucket) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -3080,10 +3056,7 @@ func (m *S3Filter) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -3167,10 +3140,7 @@ func (m *Status) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -3424,10 +3394,7 @@ func (m *TLSConfig) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
diff --git a/pkg/apis/eventbus/v1alpha1/generated.pb.go b/pkg/apis/eventbus/v1alpha1/generated.pb.go
index ceb604c80f..41e5e6b6bd 100644
--- a/pkg/apis/eventbus/v1alpha1/generated.pb.go
+++ b/pkg/apis/eventbus/v1alpha1/generated.pb.go
@@ -1438,10 +1438,7 @@ func (m *BusConfig) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -1524,10 +1521,7 @@ func (m *ContainerTemplate) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -1676,10 +1670,7 @@ func (m *EventBus) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -1796,10 +1787,7 @@ func (m *EventBusList) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -1885,10 +1873,7 @@ func (m *EventBusSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -2004,10 +1989,7 @@ func (m *EventBusStatus) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -2129,10 +2111,7 @@ func (m *NATSBus) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -2316,10 +2295,7 @@ func (m *NATSConfig) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -2659,7 +2635,7 @@ func (m *NativeStrategy) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -2881,10 +2857,7 @@ func (m *NativeStrategy) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -3036,10 +3009,7 @@ func (m *PersistenceStrategy) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
diff --git a/pkg/apis/eventsource/v1alpha1/generated.pb.go b/pkg/apis/eventsource/v1alpha1/generated.pb.go
index 776ccef476..b6d135bdf1 100644
--- a/pkg/apis/eventsource/v1alpha1/generated.pb.go
+++ b/pkg/apis/eventsource/v1alpha1/generated.pb.go
@@ -8489,10 +8489,7 @@ func (m *AMQPConsumeConfig) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -8872,7 +8869,7 @@ func (m *AMQPEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -9033,10 +9030,7 @@ func (m *AMQPEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -9166,10 +9160,7 @@ func (m *AMQPExchangeDeclareConfig) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -9239,10 +9230,7 @@ func (m *AMQPQueueBindConfig) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -9404,10 +9392,7 @@ func (m *AMQPQueueDeclareConfig) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -9703,7 +9688,7 @@ func (m *AzureEventsHubEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -9720,10 +9705,7 @@ func (m *AzureEventsHubEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -10045,7 +10027,7 @@ func (m *CalendarEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -10098,10 +10080,7 @@ func (m *CalendarEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -10203,10 +10182,7 @@ func (m *CatchupConfiguration) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -10308,10 +10284,7 @@ func (m *ConfigMapPersistence) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -10731,7 +10704,7 @@ func (m *EmitterEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -10748,10 +10721,7 @@ func (m *EmitterEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -10873,10 +10843,7 @@ func (m *EventPersistence) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -11025,10 +10992,7 @@ func (m *EventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -11145,10 +11109,7 @@ func (m *EventSourceList) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -11434,7 +11395,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -11563,7 +11524,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -11692,7 +11653,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -11821,7 +11782,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -11950,7 +11911,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -12079,7 +12040,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -12208,7 +12169,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -12337,7 +12298,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -12466,7 +12427,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -12595,7 +12556,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -12724,7 +12685,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -12853,7 +12814,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -12982,7 +12943,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -13111,7 +13072,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -13240,7 +13201,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -13369,7 +13330,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -13498,7 +13459,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -13627,7 +13588,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -13756,7 +13717,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -13885,7 +13846,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -14014,7 +13975,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -14143,7 +14104,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -14272,7 +14233,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -14401,7 +14362,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -14418,10 +14379,7 @@ func (m *EventSourceSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -14504,10 +14462,7 @@ func (m *EventSourceStatus) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -14752,7 +14707,7 @@ func (m *FileEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -14769,10 +14724,7 @@ func (m *FileEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -15036,7 +14988,7 @@ func (m *GenericEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -15089,10 +15041,7 @@ func (m *GenericEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -15631,7 +15580,7 @@ func (m *GithubEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -15648,10 +15597,7 @@ func (m *GithubEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -16019,7 +15965,7 @@ func (m *GitlabEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -16036,10 +15982,7 @@ func (m *GitlabEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -16564,7 +16507,7 @@ func (m *HDFSEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -16581,10 +16524,7 @@ func (m *HDFSEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -16718,10 +16658,7 @@ func (m *KafkaConsumerGroup) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -17069,7 +17006,7 @@ func (m *KafkaEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -17173,10 +17110,7 @@ func (m *KafkaEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -17524,7 +17458,7 @@ func (m *MQTTEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -17541,10 +17475,7 @@ func (m *MQTTEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -17738,10 +17669,7 @@ func (m *NATSAuth) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -18057,7 +17985,7 @@ func (m *NATSEventsSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -18110,10 +18038,7 @@ func (m *NATSEventsSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -18461,7 +18386,7 @@ func (m *NSQEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -18478,10 +18403,7 @@ func (m *NSQEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -18877,7 +18799,7 @@ func (m *PubSubEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -18894,10 +18816,7 @@ func (m *PubSubEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -19321,7 +19240,7 @@ func (m *PulsarEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -19338,10 +19257,7 @@ func (m *PulsarEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -19688,7 +19604,7 @@ func (m *RedisEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -19705,10 +19621,7 @@ func (m *RedisEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -20001,7 +19914,7 @@ func (m *ResourceEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -20018,10 +19931,7 @@ func (m *ResourceEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -20224,10 +20134,7 @@ func (m *ResourceFilter) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -20591,7 +20498,7 @@ func (m *SNSEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -20628,10 +20535,7 @@ func (m *SNSEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -21030,7 +20934,7 @@ func (m *SQSEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -21047,10 +20951,7 @@ func (m *SQSEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -21196,10 +21097,7 @@ func (m *Selector) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -21315,10 +21213,7 @@ func (m *Service) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -21586,7 +21481,7 @@ func (m *SlackEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -21603,10 +21498,7 @@ func (m *SlackEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -22034,7 +21926,7 @@ func (m *StorageGridEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -22051,10 +21943,7 @@ func (m *StorageGridEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -22168,10 +22057,7 @@ func (m *StorageGridFilter) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -22455,7 +22341,7 @@ func (m *StripeEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -22472,10 +22358,7 @@ func (m *StripeEventSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -22879,7 +22762,7 @@ func (m *Template) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -22930,10 +22813,7 @@ func (m *Template) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -23079,10 +22959,7 @@ func (m *WatchPathConfig) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -23442,7 +23319,7 @@ func (m *WebhookContext) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -23559,10 +23436,7 @@ func (m *WebhookContext) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
diff --git a/pkg/apis/sensor/v1alpha1/generated.pb.go b/pkg/apis/sensor/v1alpha1/generated.pb.go
index 77efa2ef31..80bb48e79e 100644
--- a/pkg/apis/sensor/v1alpha1/generated.pb.go
+++ b/pkg/apis/sensor/v1alpha1/generated.pb.go
@@ -5427,10 +5427,7 @@ func (m *AWSLambdaTrigger) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -5615,10 +5612,7 @@ func (m *ArgoWorkflowTrigger) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -5917,10 +5911,7 @@ func (m *ArtifactLocation) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -6200,7 +6191,7 @@ func (m *CustomTrigger) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -6317,10 +6308,7 @@ func (m *CustomTrigger) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -6498,10 +6486,7 @@ func (m *DataFilter) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -6615,10 +6600,7 @@ func (m *DependencyGroup) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -6738,10 +6720,7 @@ func (m *Event) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -7016,10 +6995,7 @@ func (m *EventContext) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -7201,10 +7177,7 @@ func (m *EventDependency) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -7360,10 +7333,7 @@ func (m *EventDependencyFilter) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -7445,10 +7415,7 @@ func (m *FileArtifact) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -7830,10 +7797,7 @@ func (m *GitArtifact) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -7955,10 +7919,7 @@ func (m *GitCreds) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -8072,10 +8033,7 @@ func (m *GitRemoteConfig) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -8458,7 +8416,7 @@ func (m *HTTPTrigger) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -8475,10 +8433,7 @@ func (m *HTTPTrigger) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -8638,7 +8593,7 @@ func (m *K8SResourcePolicy) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -8708,10 +8663,7 @@ func (m *K8SResourcePolicy) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -9070,10 +9022,7 @@ func (m *KafkaTrigger) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -9142,10 +9091,7 @@ func (m *LogTrigger) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -9363,10 +9309,7 @@ func (m *NATSTrigger) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -9648,10 +9591,7 @@ func (m *OpenWhiskTrigger) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -9800,10 +9740,7 @@ func (m *Sensor) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -9920,10 +9857,7 @@ func (m *SensorList) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -10195,10 +10129,7 @@ func (m *SensorSpec) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -10281,10 +10212,7 @@ func (m *SensorStatus) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -10468,10 +10396,7 @@ func (m *SlackTrigger) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -10708,10 +10633,7 @@ func (m *StandardK8STrigger) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -10837,10 +10759,7 @@ func (m *StatusPolicy) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -11174,7 +11093,7 @@ func (m *Template) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > postIndex {
@@ -11259,10 +11178,7 @@ func (m *Template) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -11376,10 +11292,7 @@ func (m *TimeFilter) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -11535,10 +11448,7 @@ func (m *Trigger) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -11688,10 +11598,7 @@ func (m *TriggerParameter) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -11934,10 +11841,7 @@ func (m *TriggerParameterSource) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -12059,10 +11963,7 @@ func (m *TriggerPolicy) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -12176,10 +12077,7 @@ func (m *TriggerSwitch) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -12689,10 +12587,7 @@ func (m *TriggerTemplate) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
@@ -12794,10 +12689,7 @@ func (m *URLArtifact) Unmarshal(dAtA []byte) error {
if err != nil {
return err
}
- if skippy < 0 {
- return ErrInvalidLengthGenerated
- }
- if (iNdEx + skippy) < 0 {
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthGenerated
}
if (iNdEx + skippy) > l {
|