diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json
index d7917756ab..201700b477 100644
--- a/api/openapi-spec/swagger.json
+++ b/api/openapi-spec/swagger.json
@@ -3061,6 +3061,19 @@
}
}
},
+ "io.argoproj.sensor.v1alpha1.RateLimit": {
+ "type": "object",
+ "properties": {
+ "requestsPerUnit": {
+ "type": "integer",
+ "format": "int32"
+ },
+ "unit": {
+ "description": "Defaults to Second",
+ "type": "string"
+ }
+ }
+ },
"io.argoproj.sensor.v1alpha1.Sensor": {
"description": "Sensor is the definition of a sensor resource",
"type": "object",
@@ -3366,6 +3379,10 @@
"description": "Policy to configure backoff and execution criteria for the trigger",
"$ref": "#/definitions/io.argoproj.sensor.v1alpha1.TriggerPolicy"
},
+ "rateLimit": {
+ "description": "Rate limit, default unit is Second",
+ "$ref": "#/definitions/io.argoproj.sensor.v1alpha1.RateLimit"
+ },
"retryStrategy": {
"description": "Retry strategy, defaults to no retry",
"$ref": "#/definitions/io.argoproj.common.Backoff"
diff --git a/api/sensor.html b/api/sensor.html
index 384a1c914c..7b6a3c100c 100644
--- a/api/sensor.html
+++ b/api/sensor.html
@@ -1873,6 +1873,55 @@
PayloadField
+RateLimit
+
+
+(Appears on:
+Trigger)
+
+
+
+
+
+
+Field |
+Description |
+
+
+
+
+
+unit
+
+
+RateLimiteUnit
+
+
+ |
+
+ Defaults to Second
+ |
+
+
+
+requestsPerUnit
+
+int32
+
+ |
+
+ |
+
+
+
+RateLimiteUnit
+(string
alias)
+
+(Appears on:
+RateLimit)
+
+
+
Sensor
@@ -2690,6 +2739,20 @@
Trigger
Retry strategy, defaults to no retry
+
+
+rateLimit
+
+
+RateLimit
+
+
+ |
+
+(Optional)
+ Rate limit, default unit is Second
+ |
+
TriggerParameter
diff --git a/api/sensor.md b/api/sensor.md
index f7187ed7c1..778fbd4713 100644
--- a/api/sensor.md
+++ b/api/sensor.md
@@ -1972,6 +1972,58 @@ Name acts as key that holds the value at the path.
+
+RateLimit
+
+
+(Appears on:
+Trigger)
+
+
+
+
+
+
+
+Field
+ |
+
+Description
+ |
+
+
+
+
+
+unit
+ RateLimiteUnit
+
+ |
+
+
+Defaults to Second
+
+ |
+
+
+
+requestsPerUnit int32
+ |
+
+ |
+
+
+
+
+RateLimiteUnit (string
alias)
+
+
+
+(Appears on:
+RateLimit)
+
+
+
Sensor
@@ -2805,6 +2857,18 @@ Retry strategy, defaults to no retry
+
+
+rateLimit
+ RateLimit
+ |
+
+(Optional)
+
+Rate limit, default unit is Second
+
+ |
+
diff --git a/docs/sensors/more-about-sensors-and-triggers.md b/docs/sensors/more-about-sensors-and-triggers.md
index 904028d3a8..5d8305c033 100644
--- a/docs/sensors/more-about-sensors-and-triggers.md
+++ b/docs/sensors/more-about-sensors-and-triggers.md
@@ -111,3 +111,17 @@ spec:
# Defaults to "1"
jitter: 2
```
+
+## Trigger Rate Limit
+
+There's no rate limit for a trigger unless you configure the spec as following:
+
+```yaml
+spec:
+ triggers:
+ - rateLimit:
+ # Second, Minute or Hour, defaults to Second
+ unit: Second
+ # Requests per unit
+ requestsPerUnit: 20
+```
diff --git a/eventbus/driver/nats.go b/eventbus/driver/nats.go
index ce42363c48..f363d20022 100644
--- a/eventbus/driver/nats.go
+++ b/eventbus/driver/nats.go
@@ -317,7 +317,7 @@ func (n *natsStreaming) processEventSourceMsg(m *stan.Msg, msgHolder *eventSourc
}
log.Debugf("Triggering actions for client %s", n.clientID)
- go action(messages)
+ action(messages)
msgHolder.reset(depName)
msgHolder.ackAndCache(m, event.ID())
diff --git a/eventsources/sources/bitbucketserver/start.go b/eventsources/sources/bitbucketserver/start.go
index 142d68c324..2c657fcc87 100644
--- a/eventsources/sources/bitbucketserver/start.go
+++ b/eventsources/sources/bitbucketserver/start.go
@@ -18,14 +18,15 @@ package bitbucketserver
import (
"context"
"encoding/json"
- bitbucketv1 "github.com/gfleury/go-bitbucket-v1"
- "github.com/mitchellh/mapstructure"
"io/ioutil"
"math/rand"
"net/http"
"reflect"
"time"
+ bitbucketv1 "github.com/gfleury/go-bitbucket-v1"
+ "github.com/mitchellh/mapstructure"
+
"github.com/argoproj/argo-events/common"
"github.com/argoproj/argo-events/common/logging"
"github.com/argoproj/argo-events/eventsources/common/webhook"
@@ -304,7 +305,7 @@ func (router *Router) CreateBitbucketWebhook(ctx context.Context, bitbucketConfi
}
router.hookID = createdHook.ID
- logger.With("hook-id", createdHook.ID).Info("hook succesfully registered")
+ logger.With("hook-id", createdHook.ID).Info("hook successfully registered")
return nil
}
@@ -319,7 +320,7 @@ func (router *Router) CreateBitbucketWebhook(ctx context.Context, bitbucketConfi
return errors.Errorf("failed to update webhook. err: %+v", err)
}
- logger.With("hook-id", existingHook.ID).Info("hook succesfully updated")
+ logger.With("hook-id", existingHook.ID).Info("hook successfully updated")
}
return nil
diff --git a/go.mod b/go.mod
index 9745ae9dc9..eab3e56799 100644
--- a/go.mod
+++ b/go.mod
@@ -75,6 +75,7 @@ require (
github.com/tidwall/gjson v1.7.5
github.com/tidwall/sjson v1.1.1
github.com/xanzy/go-gitlab v0.50.2
+ go.uber.org/ratelimit v0.2.0
go.uber.org/zap v1.17.0
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d // indirect
diff --git a/go.sum b/go.sum
index 4e90e6fb15..86ea08640d 100644
--- a/go.sum
+++ b/go.sum
@@ -132,6 +132,8 @@ github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuy
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho=
+github.com/andres-erbsen/clock v0.0.0-20160526145045-9e14626cd129 h1:MzBOUgng9orim59UnfUTLRjMpd09C5uEVQ6RPGeCaVI=
+github.com/andres-erbsen/clock v0.0.0-20160526145045-9e14626cd129/go.mod h1:rFgpPQZYZ8vdbc+48xibu8ALc3yeyd64IhHS+PU6Yyg=
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239 h1:kFOfPq6dUM1hTo4JG6LR5AXSUEsOjtdm0kw0FtQtMJA=
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c=
github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
@@ -1010,6 +1012,8 @@ go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/
go.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU=
go.uber.org/multierr v1.6.0 h1:y6IPFStTAIT5Ytl7/XYmHvzXQ7S3g/IeZW9hyZ5thw4=
go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU=
+go.uber.org/ratelimit v0.2.0 h1:UQE2Bgi7p2B85uP5dC2bbRtig0C+OeNRnNEafLjsLPA=
+go.uber.org/ratelimit v0.2.0/go.mod h1:YYBV4e4naJvhpitQrWJu1vCpgB7CboMe0qhltKt6mUg=
go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA=
go.uber.org/zap v1.8.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=
go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=
diff --git a/pkg/apis/sensor/v1alpha1/generated.pb.go b/pkg/apis/sensor/v1alpha1/generated.pb.go
index dbb2b0b4fc..b9c8971a21 100644
--- a/pkg/apis/sensor/v1alpha1/generated.pb.go
+++ b/pkg/apis/sensor/v1alpha1/generated.pb.go
@@ -692,10 +692,38 @@ func (m *PayloadField) XXX_DiscardUnknown() {
var xxx_messageInfo_PayloadField proto.InternalMessageInfo
+func (m *RateLimit) Reset() { *m = RateLimit{} }
+func (*RateLimit) ProtoMessage() {}
+func (*RateLimit) Descriptor() ([]byte, []int) {
+ return fileDescriptor_6c4bded897df1f16, []int{23}
+}
+func (m *RateLimit) XXX_Unmarshal(b []byte) error {
+ return m.Unmarshal(b)
+}
+func (m *RateLimit) 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 *RateLimit) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_RateLimit.Merge(m, src)
+}
+func (m *RateLimit) XXX_Size() int {
+ return m.Size()
+}
+func (m *RateLimit) XXX_DiscardUnknown() {
+ xxx_messageInfo_RateLimit.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_RateLimit proto.InternalMessageInfo
+
func (m *Sensor) Reset() { *m = Sensor{} }
func (*Sensor) ProtoMessage() {}
func (*Sensor) Descriptor() ([]byte, []int) {
- return fileDescriptor_6c4bded897df1f16, []int{23}
+ return fileDescriptor_6c4bded897df1f16, []int{24}
}
func (m *Sensor) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -723,7 +751,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{24}
+ return fileDescriptor_6c4bded897df1f16, []int{25}
}
func (m *SensorList) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -751,7 +779,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{25}
+ return fileDescriptor_6c4bded897df1f16, []int{26}
}
func (m *SensorSpec) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -779,7 +807,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{26}
+ return fileDescriptor_6c4bded897df1f16, []int{27}
}
func (m *SensorStatus) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -807,7 +835,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{27}
+ return fileDescriptor_6c4bded897df1f16, []int{28}
}
func (m *SlackTrigger) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -835,7 +863,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{28}
+ return fileDescriptor_6c4bded897df1f16, []int{29}
}
func (m *StandardK8STrigger) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -863,7 +891,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{29}
+ return fileDescriptor_6c4bded897df1f16, []int{30}
}
func (m *StatusPolicy) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -891,7 +919,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{30}
+ return fileDescriptor_6c4bded897df1f16, []int{31}
}
func (m *Template) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -919,7 +947,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{31}
+ return fileDescriptor_6c4bded897df1f16, []int{32}
}
func (m *TimeFilter) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -947,7 +975,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{32}
+ return fileDescriptor_6c4bded897df1f16, []int{33}
}
func (m *Trigger) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -975,7 +1003,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{33}
+ return fileDescriptor_6c4bded897df1f16, []int{34}
}
func (m *TriggerParameter) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1003,7 +1031,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{34}
+ return fileDescriptor_6c4bded897df1f16, []int{35}
}
func (m *TriggerParameterSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1031,7 +1059,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{35}
+ return fileDescriptor_6c4bded897df1f16, []int{36}
}
func (m *TriggerPolicy) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1059,7 +1087,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{36}
+ return fileDescriptor_6c4bded897df1f16, []int{37}
}
func (m *TriggerSwitch) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1087,7 +1115,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{37}
+ return fileDescriptor_6c4bded897df1f16, []int{38}
}
func (m *TriggerTemplate) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1115,7 +1143,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{38}
+ return fileDescriptor_6c4bded897df1f16, []int{39}
}
func (m *URLArtifact) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1167,6 +1195,7 @@ func init() {
proto.RegisterType((*NATSTrigger)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.NATSTrigger")
proto.RegisterType((*OpenWhiskTrigger)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.OpenWhiskTrigger")
proto.RegisterType((*PayloadField)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.PayloadField")
+ proto.RegisterType((*RateLimit)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.RateLimit")
proto.RegisterType((*Sensor)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.Sensor")
proto.RegisterType((*SensorList)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.SensorList")
proto.RegisterType((*SensorSpec)(nil), "github.com.argoproj.argo_events.pkg.apis.sensor.v1alpha1.SensorSpec")
@@ -1191,256 +1220,262 @@ func init() {
}
var fileDescriptor_6c4bded897df1f16 = []byte{
- // 3984 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3b, 0x4b, 0x6c, 0x23, 0xc9,
- 0x75, 0xc3, 0xaf, 0xc8, 0x27, 0xea, 0x33, 0x35, 0x33, 0x6b, 0xae, 0xb2, 0x2b, 0x0e, 0x68, 0xc4,
- 0x19, 0x1b, 0x36, 0xb5, 0xbb, 0xe3, 0xc4, 0xf2, 0x24, 0xb1, 0x97, 0xd4, 0x67, 0x3e, 0xd2, 0x8c,
- 0xb4, 0xd5, 0xd2, 0x2e, 0xf2, 0x01, 0xd6, 0xad, 0x66, 0x91, 0xec, 0x55, 0xb3, 0xbb, 0xb7, 0xab,
- 0xa8, 0x59, 0x06, 0x48, 0x62, 0xc0, 0xc8, 0x21, 0x48, 0x10, 0xe7, 0x98, 0x53, 0x92, 0x4b, 0x6e,
- 0xb9, 0xe5, 0x18, 0x24, 0x07, 0x9f, 0xf6, 0x16, 0xe7, 0x10, 0xc0, 0x87, 0x80, 0xc8, 0xca, 0x97,
- 0xe4, 0x10, 0x18, 0x0b, 0xe4, 0x34, 0x97, 0x04, 0xf5, 0xeb, 0xae, 0x6e, 0x72, 0x32, 0xd2, 0x70,
- 0xa0, 0x39, 0xf8, 0xc6, 0x7e, 0xef, 0xd5, 0x7b, 0x55, 0xaf, 0x5e, 0xbd, 0x5f, 0x15, 0xe1, 0x41,
- 0xdf, 0x65, 0x83, 0xd1, 0x49, 0xcb, 0x09, 0x86, 0x1b, 0x76, 0xd4, 0x0f, 0xc2, 0x28, 0xf8, 0x44,
- 0xfc, 0xf8, 0x16, 0x39, 0x23, 0x3e, 0xa3, 0x1b, 0xe1, 0x69, 0x7f, 0xc3, 0x0e, 0x5d, 0xba, 0x41,
- 0x89, 0x4f, 0x83, 0x68, 0xe3, 0xec, 0x5d, 0xdb, 0x0b, 0x07, 0xf6, 0xbb, 0x1b, 0x7d, 0xe2, 0x93,
- 0xc8, 0x66, 0xa4, 0xdb, 0x0a, 0xa3, 0x80, 0x05, 0x68, 0x33, 0xe1, 0xd4, 0xd2, 0x9c, 0xc4, 0x8f,
- 0x8f, 0x25, 0xa7, 0x56, 0x78, 0xda, 0x6f, 0x71, 0x4e, 0x2d, 0xc9, 0xa9, 0xa5, 0x39, 0xad, 0x7d,
- 0xff, 0xc2, 0x73, 0x70, 0x82, 0xe1, 0x30, 0xf0, 0xb3, 0xa2, 0xd7, 0xbe, 0x65, 0x30, 0xe8, 0x07,
- 0xfd, 0x60, 0x43, 0x80, 0x4f, 0x46, 0x3d, 0xf1, 0x25, 0x3e, 0xc4, 0x2f, 0x45, 0xde, 0x3c, 0xdd,
- 0xa4, 0x2d, 0x37, 0xe0, 0x2c, 0x37, 0x9c, 0x20, 0x22, 0x1b, 0x67, 0x53, 0xab, 0x59, 0xfb, 0x76,
- 0x42, 0x33, 0xb4, 0x9d, 0x81, 0xeb, 0x93, 0x68, 0x9c, 0xcc, 0x63, 0x48, 0x98, 0x3d, 0x6b, 0xd4,
- 0xc6, 0xf3, 0x46, 0x45, 0x23, 0x9f, 0xb9, 0x43, 0x32, 0x35, 0xe0, 0x37, 0x5e, 0x34, 0x80, 0x3a,
- 0x03, 0x32, 0xb4, 0xb3, 0xe3, 0x9a, 0xff, 0x52, 0x84, 0xd5, 0xf6, 0x47, 0xd6, 0xbe, 0x3d, 0x3c,
- 0xe9, 0xda, 0x47, 0x91, 0xdb, 0xef, 0x93, 0x08, 0x6d, 0x42, 0xad, 0x37, 0xf2, 0x1d, 0xe6, 0x06,
- 0xfe, 0x13, 0x7b, 0x48, 0xea, 0xb9, 0xdb, 0xb9, 0x3b, 0xd5, 0xce, 0xcd, 0xcf, 0x27, 0x8d, 0x6b,
- 0xe7, 0x93, 0x46, 0x6d, 0xd7, 0xc0, 0xe1, 0x14, 0x25, 0xc2, 0x50, 0xb5, 0x1d, 0x87, 0x50, 0xba,
- 0x47, 0xc6, 0xf5, 0xfc, 0xed, 0xdc, 0x9d, 0xc5, 0xf7, 0x7e, 0xb5, 0x25, 0xa7, 0xc6, 0xb7, 0xac,
- 0xc5, 0xb5, 0xd4, 0x3a, 0x7b, 0xb7, 0x65, 0x11, 0x27, 0x22, 0x6c, 0x8f, 0x8c, 0x2d, 0xe2, 0x11,
- 0x87, 0x05, 0x51, 0x67, 0xe9, 0x7c, 0xd2, 0xa8, 0xb6, 0xf5, 0x58, 0x9c, 0xb0, 0xe1, 0x3c, 0xa9,
- 0x26, 0xaf, 0x17, 0x2e, 0xcd, 0x33, 0x06, 0xe3, 0x84, 0x0d, 0xfa, 0x1a, 0x94, 0x23, 0xd2, 0x77,
- 0x03, 0xbf, 0x5e, 0x14, 0x6b, 0x5b, 0x56, 0x6b, 0x2b, 0x63, 0x01, 0xc5, 0x0a, 0x8b, 0x46, 0xb0,
- 0x10, 0xda, 0x63, 0x2f, 0xb0, 0xbb, 0xf5, 0xd2, 0xed, 0xc2, 0x9d, 0xc5, 0xf7, 0x1e, 0xb5, 0x5e,
- 0xd6, 0x3a, 0x5b, 0x4a, 0xbb, 0x87, 0x76, 0x64, 0x0f, 0x09, 0x23, 0x51, 0x67, 0x45, 0x09, 0x5d,
- 0x38, 0x94, 0x22, 0xb0, 0x96, 0x85, 0xfe, 0x08, 0x20, 0xd4, 0x64, 0xb4, 0x5e, 0x7e, 0xe5, 0x92,
- 0x91, 0x92, 0x0c, 0x31, 0x88, 0x62, 0x43, 0x22, 0xba, 0x07, 0xcb, 0xae, 0x7f, 0x16, 0x38, 0x36,
- 0xdf, 0xd8, 0xa3, 0x71, 0x48, 0xea, 0x0b, 0x42, 0x4d, 0xe8, 0x7c, 0xd2, 0x58, 0x7e, 0x98, 0xc2,
- 0xe0, 0x0c, 0x65, 0x73, 0x52, 0x80, 0x1b, 0xed, 0xa8, 0x1f, 0x7c, 0x14, 0x44, 0xa7, 0x3d, 0x2f,
- 0x78, 0xaa, 0x8d, 0xca, 0x87, 0x32, 0x0d, 0x46, 0x91, 0x23, 0xcd, 0x69, 0xae, 0xf5, 0xb4, 0x23,
- 0xe6, 0xf6, 0x6c, 0x87, 0xed, 0x2b, 0xb9, 0x1d, 0xe0, 0x5b, 0x67, 0x09, 0xee, 0x58, 0x49, 0x41,
- 0x0f, 0xa0, 0x1a, 0x84, 0xdc, 0xd6, 0xf9, 0x2e, 0xe7, 0xc5, 0xf4, 0xbf, 0xa1, 0x96, 0x5d, 0x3d,
- 0xd0, 0x88, 0x67, 0x93, 0xc6, 0x2d, 0x73, 0xb2, 0x31, 0x02, 0x27, 0x83, 0x33, 0xbb, 0x51, 0xb8,
- 0xf2, 0xdd, 0xf8, 0xf3, 0x1c, 0xdc, 0xec, 0x47, 0xc1, 0x28, 0xfc, 0x90, 0x44, 0x94, 0xcf, 0x8d,
- 0x28, 0x45, 0x16, 0x85, 0x22, 0xef, 0x19, 0x87, 0x21, 0x3e, 0xfb, 0x89, 0x78, 0xee, 0x62, 0xf8,
- 0xf1, 0xb8, 0x3f, 0x83, 0x43, 0xe7, 0x2d, 0x25, 0xfa, 0xe6, 0x2c, 0x2c, 0x9e, 0x29, 0xb5, 0xf9,
- 0x25, 0x77, 0x19, 0x99, 0x1d, 0x40, 0x16, 0xe4, 0xe9, 0x5d, 0xb5, 0xb3, 0xbf, 0x79, 0x71, 0xdd,
- 0x48, 0x3f, 0xdc, 0xb2, 0xee, 0x6a, 0x86, 0x9d, 0xf2, 0xf9, 0xa4, 0x91, 0xb7, 0xee, 0xe2, 0x3c,
- 0xbd, 0x8b, 0x9a, 0x50, 0x76, 0x7d, 0xcf, 0xf5, 0x89, 0xda, 0x3f, 0xb1, 0xcd, 0x0f, 0x05, 0x04,
- 0x2b, 0x0c, 0xea, 0x42, 0xb1, 0xe7, 0x7a, 0x44, 0x39, 0x86, 0xdd, 0x97, 0xdf, 0x96, 0x5d, 0xd7,
- 0x23, 0xf1, 0x2c, 0x2a, 0xe7, 0x93, 0x46, 0x91, 0x43, 0xb0, 0xe0, 0x8e, 0x7e, 0x00, 0x85, 0x51,
- 0xe4, 0x29, 0x85, 0xef, 0xbc, 0xbc, 0x90, 0x63, 0xbc, 0x1f, 0xcb, 0x58, 0x38, 0x9f, 0x34, 0x0a,
- 0xc7, 0x78, 0x1f, 0x73, 0xd6, 0xe8, 0x18, 0xaa, 0x4e, 0xe0, 0xf7, 0xdc, 0xfe, 0xd0, 0x0e, 0xeb,
- 0x25, 0x21, 0xe7, 0xce, 0x2c, 0x2f, 0xb7, 0x25, 0x88, 0x1e, 0xdb, 0xe1, 0x94, 0xa3, 0xdb, 0xd2,
- 0xc3, 0x71, 0xc2, 0x89, 0x4f, 0xbc, 0xef, 0xb2, 0x7a, 0x79, 0xde, 0x89, 0xdf, 0x77, 0x59, 0x7a,
- 0xe2, 0xf7, 0x5d, 0x86, 0x39, 0x6b, 0xe4, 0x40, 0x25, 0xd2, 0x06, 0xb9, 0x20, 0xc4, 0x7c, 0xf7,
- 0xd2, 0xfb, 0x1f, 0xdb, 0x63, 0xed, 0x7c, 0xd2, 0xa8, 0xc4, 0xf6, 0x17, 0x33, 0x6e, 0xfe, 0x43,
- 0x11, 0x6e, 0xb5, 0xff, 0x60, 0x14, 0x91, 0x1d, 0xce, 0xe0, 0xc1, 0xe8, 0x84, 0x6a, 0xb7, 0x72,
- 0x1b, 0x8a, 0xbd, 0x4f, 0xbb, 0xbe, 0x8a, 0x51, 0x35, 0x65, 0xcf, 0xc5, 0xdd, 0x0f, 0xb6, 0x9f,
- 0x60, 0x81, 0x41, 0x5f, 0x87, 0x85, 0xc1, 0xe8, 0x44, 0x04, 0x32, 0x69, 0x46, 0xb1, 0xdf, 0x7d,
- 0x20, 0xc1, 0x58, 0xe3, 0x51, 0x08, 0x37, 0xe8, 0xc0, 0x8e, 0x48, 0x37, 0x0e, 0x44, 0x62, 0xd8,
- 0xa5, 0x82, 0xce, 0x57, 0xce, 0x27, 0x8d, 0x1b, 0xd6, 0x34, 0x17, 0x3c, 0x8b, 0x35, 0xea, 0xc2,
- 0x4a, 0x06, 0xac, 0x8c, 0xec, 0x82, 0xd2, 0x6e, 0x9c, 0x4f, 0x1a, 0x2b, 0x19, 0x69, 0x38, 0xcb,
- 0xf2, 0x97, 0x34, 0x8c, 0x35, 0xff, 0xa7, 0x04, 0x4b, 0x5b, 0x23, 0xca, 0x82, 0xa1, 0xb6, 0x96,
- 0x0d, 0x9e, 0x4b, 0x44, 0x67, 0x24, 0x3a, 0xc6, 0xfb, 0xca, 0x64, 0xae, 0xeb, 0xa0, 0x60, 0x69,
- 0x04, 0x4e, 0x68, 0x78, 0xa2, 0x40, 0x89, 0x33, 0x8a, 0xa4, 0xed, 0x54, 0x92, 0x44, 0xc1, 0x12,
- 0x50, 0xac, 0xb0, 0xe8, 0x18, 0xc0, 0x21, 0x11, 0x93, 0x1b, 0x74, 0x39, 0x83, 0x59, 0xe6, 0x2b,
- 0xd8, 0x8a, 0x07, 0x63, 0x83, 0x11, 0x7a, 0x04, 0x48, 0xce, 0x85, 0x1b, 0xcb, 0xc1, 0x19, 0x89,
- 0x22, 0xb7, 0x4b, 0x54, 0xce, 0xb2, 0xa6, 0xa6, 0x82, 0xac, 0x29, 0x0a, 0x3c, 0x63, 0x14, 0xa2,
- 0x50, 0xa4, 0x21, 0x71, 0x94, 0x05, 0x7c, 0xf0, 0xf2, 0xfb, 0x90, 0x52, 0x69, 0xcb, 0x0a, 0x89,
- 0xb3, 0xe3, 0xb3, 0x68, 0x9c, 0x1c, 0x3e, 0x0e, 0xc2, 0x42, 0xd8, 0x6b, 0xcf, 0x64, 0x0c, 0xcb,
- 0x5f, 0xb8, 0x42, 0xcb, 0xef, 0x40, 0x8d, 0xef, 0x22, 0x8f, 0x20, 0x87, 0x36, 0x1b, 0xd4, 0x2b,
- 0x62, 0xc7, 0xd6, 0x15, 0xfd, 0x1b, 0xdb, 0x24, 0x8c, 0x88, 0xc3, 0xd3, 0xf0, 0x2d, 0x83, 0x0a,
- 0xa7, 0xc6, 0xac, 0x7d, 0x07, 0xaa, 0xb1, 0x6e, 0xd1, 0x2a, 0x14, 0x4e, 0xc9, 0x58, 0x9a, 0x2c,
- 0xe6, 0x3f, 0xd1, 0x4d, 0x28, 0x9d, 0xd9, 0xde, 0x48, 0x39, 0x35, 0x2c, 0x3f, 0xee, 0xe5, 0x37,
- 0x73, 0xcd, 0xff, 0xce, 0x01, 0x6c, 0xdb, 0xcc, 0xde, 0x75, 0x3d, 0x26, 0x3d, 0x64, 0xc8, 0xe7,
- 0x90, 0xf1, 0x90, 0x42, 0xa2, 0xc0, 0xa0, 0x6f, 0x42, 0x91, 0xf1, 0x24, 0x4f, 0xba, 0xc7, 0xba,
- 0xa6, 0xe0, 0xe9, 0xdc, 0xb3, 0x49, 0xa3, 0xf2, 0xc8, 0x3a, 0x78, 0x22, 0x52, 0x3d, 0x41, 0x85,
- 0x1a, 0x5a, 0x30, 0xcf, 0x84, 0xaa, 0x9d, 0xea, 0xf9, 0xa4, 0x51, 0xfa, 0x90, 0x03, 0xd4, 0x1c,
- 0xd0, 0xfb, 0x00, 0x4e, 0x30, 0xe4, 0x9b, 0xc0, 0x82, 0x48, 0x19, 0xeb, 0x6d, 0xbd, 0x4f, 0x5b,
- 0x31, 0xe6, 0x59, 0xea, 0x0b, 0x1b, 0x63, 0xd0, 0x37, 0xa1, 0xc2, 0xc8, 0x30, 0xf4, 0x6c, 0x46,
- 0x44, 0x2c, 0xac, 0x76, 0x56, 0xd5, 0xf8, 0xca, 0x91, 0x82, 0xe3, 0x98, 0xa2, 0xe9, 0xc2, 0xca,
- 0x36, 0x09, 0x89, 0xdf, 0x25, 0xbe, 0x33, 0x16, 0x89, 0x0c, 0x5f, 0xb3, 0x9f, 0x54, 0x2e, 0xf1,
- 0x9a, 0x85, 0x1f, 0x16, 0x18, 0xf4, 0x6d, 0xa8, 0x75, 0xf5, 0x20, 0x97, 0xd0, 0x7a, 0x5e, 0x2c,
- 0x66, 0x95, 0xd7, 0x37, 0xdb, 0x06, 0x1c, 0xa7, 0xa8, 0x9a, 0x7f, 0x9d, 0x83, 0x92, 0x08, 0x41,
- 0x68, 0x08, 0x0b, 0x4e, 0xe0, 0x33, 0xf2, 0x19, 0x53, 0x59, 0xcf, 0x1c, 0xa9, 0x87, 0xe0, 0xb8,
- 0x25, 0xb9, 0x75, 0x16, 0xb9, 0x41, 0xa9, 0x0f, 0xac, 0x65, 0xa0, 0xb7, 0xa0, 0xd8, 0xb5, 0x99,
- 0x2d, 0xb6, 0xa8, 0x26, 0xd3, 0x13, 0xbe, 0xc5, 0x58, 0x40, 0xef, 0x55, 0xfe, 0xea, 0x6f, 0x1b,
- 0xd7, 0x7e, 0xf8, 0xef, 0xb7, 0xaf, 0x35, 0xbf, 0xcc, 0x43, 0xcd, 0x64, 0x87, 0xd6, 0x20, 0xef,
- 0x76, 0x95, 0x1e, 0x40, 0xe9, 0x21, 0xff, 0x70, 0x1b, 0xe7, 0xdd, 0xae, 0x70, 0x6e, 0x32, 0x70,
- 0xe7, 0xd3, 0x55, 0x50, 0x26, 0x95, 0xfe, 0x75, 0x58, 0xe4, 0x87, 0xf9, 0x4c, 0x26, 0x82, 0xc2,
- 0xbb, 0x55, 0x3b, 0x37, 0x14, 0xf1, 0x22, 0x37, 0x52, 0x9d, 0x23, 0x9a, 0x74, 0x7c, 0x13, 0x84,
- 0x59, 0x15, 0xd3, 0x9b, 0x60, 0x98, 0x52, 0x1b, 0x56, 0xf8, 0xfc, 0xc5, 0x22, 0x7d, 0x26, 0x88,
- 0xe5, 0x76, 0x7f, 0x45, 0x11, 0xaf, 0xf0, 0x45, 0x6e, 0x49, 0xb4, 0x18, 0x97, 0xa5, 0xe7, 0xd1,
- 0x9d, 0x8e, 0x4e, 0x3e, 0x21, 0x8e, 0x4c, 0x72, 0x8c, 0xe8, 0x6e, 0x49, 0x30, 0xd6, 0x78, 0xb4,
- 0x0f, 0x45, 0x5e, 0x0a, 0xab, 0x2c, 0xe5, 0x1b, 0x17, 0x4b, 0x9b, 0x8f, 0xdc, 0x21, 0x31, 0xe6,
- 0xee, 0x72, 0x03, 0xe2, 0x5c, 0x0c, 0x9d, 0xff, 0x4d, 0x1e, 0x56, 0x84, 0xce, 0x13, 0x2b, 0xbc,
- 0x80, 0x01, 0xb6, 0x61, 0x45, 0xd8, 0x85, 0xd4, 0xb5, 0x91, 0x9e, 0xc4, 0x6b, 0xdf, 0x49, 0xa3,
- 0x71, 0x96, 0x9e, 0x47, 0x33, 0x01, 0x8a, 0x93, 0x14, 0x23, 0x9a, 0xed, 0x68, 0x04, 0x4e, 0x68,
- 0xd0, 0x19, 0x2c, 0xf4, 0x84, 0x53, 0xa0, 0x2a, 0xcb, 0x38, 0x98, 0xd3, 0x68, 0x93, 0x15, 0x4b,
- 0x67, 0x23, 0xad, 0x57, 0xfe, 0xa6, 0x58, 0x0b, 0x6b, 0xfe, 0x53, 0x01, 0x6e, 0xcd, 0xa4, 0x47,
- 0x27, 0x6a, 0x4f, 0xe4, 0x19, 0xda, 0x9e, 0xc3, 0x39, 0xbb, 0x43, 0xa2, 0xe6, 0x50, 0x49, 0xef,
- 0x94, 0x79, 0x54, 0xf3, 0x57, 0x70, 0x54, 0x7b, 0xea, 0xa8, 0xca, 0x42, 0x71, 0x8e, 0x25, 0x25,
- 0x3e, 0x3c, 0x31, 0xa0, 0xe4, 0xd0, 0x23, 0x17, 0x4a, 0xe4, 0xb3, 0x50, 0x6c, 0xe5, 0x9c, 0x82,
- 0x76, 0x3e, 0x0b, 0x23, 0x25, 0x68, 0x49, 0x09, 0x2a, 0x71, 0x18, 0xc5, 0x52, 0x02, 0x77, 0x7b,
- 0x90, 0x10, 0x71, 0xe3, 0xe6, 0xf0, 0xac, 0x71, 0x73, 0x0a, 0x2c, 0x30, 0xbc, 0xd8, 0xef, 0xb9,
- 0xc4, 0xeb, 0x4a, 0xbf, 0x3a, 0x97, 0xc6, 0x55, 0x6c, 0xdd, 0xe5, 0xec, 0x12, 0x0f, 0x25, 0x3e,
- 0x29, 0x56, 0x52, 0x9a, 0xef, 0x40, 0xcd, 0xac, 0xdf, 0x5e, 0x1c, 0xf3, 0x9a, 0xbf, 0x28, 0xc2,
- 0xa2, 0x51, 0xd4, 0xa0, 0xb7, 0x65, 0x85, 0x27, 0x07, 0x2c, 0xaa, 0x01, 0x49, 0x79, 0xf6, 0x3d,
- 0x58, 0x76, 0xbc, 0xc0, 0x27, 0xdb, 0x6e, 0x24, 0xb2, 0xb6, 0xb1, 0x3a, 0xac, 0x6f, 0x28, 0xca,
- 0xe5, 0xad, 0x14, 0x16, 0x67, 0xa8, 0x91, 0x03, 0x25, 0x27, 0x22, 0x5d, 0xaa, 0x52, 0xc3, 0xce,
- 0x5c, 0x95, 0xd8, 0x16, 0xe7, 0x24, 0x03, 0xaf, 0xf8, 0x89, 0x25, 0x6f, 0xf4, 0x7b, 0x50, 0xa3,
- 0x74, 0x20, 0x72, 0x4b, 0x91, 0x86, 0x5e, 0xaa, 0x92, 0x10, 0xa1, 0xcf, 0xb2, 0x1e, 0xc4, 0xc3,
- 0x71, 0x8a, 0x19, 0x8f, 0xc9, 0x3d, 0x9d, 0xce, 0x64, 0x62, 0x72, 0x9c, 0xc0, 0xc4, 0x14, 0x3c,
- 0xb4, 0x9c, 0x44, 0xb6, 0xef, 0x0c, 0x94, 0x57, 0x8e, 0x37, 0xae, 0x23, 0xa0, 0x58, 0x61, 0xb9,
- 0xda, 0x99, 0xdd, 0x57, 0xed, 0xa5, 0x58, 0xed, 0x47, 0x76, 0x1f, 0x73, 0x38, 0x47, 0x47, 0xa4,
- 0xa7, 0xd2, 0xa7, 0x18, 0x8d, 0x49, 0x0f, 0x73, 0x38, 0x1a, 0x42, 0x39, 0x22, 0xc3, 0x80, 0x91,
- 0x7a, 0x55, 0x2c, 0xf5, 0xe1, 0x5c, 0x6a, 0xc5, 0x82, 0x95, 0x2c, 0xa3, 0x65, 0xaf, 0x41, 0x42,
- 0xb0, 0x12, 0x82, 0x7e, 0x0b, 0x40, 0xaa, 0x44, 0x28, 0x01, 0xc4, 0xa4, 0xe2, 0x0e, 0x4a, 0x92,
- 0xd3, 0x49, 0x25, 0x0a, 0x85, 0x18, 0xf4, 0xcd, 0xbf, 0xcf, 0x41, 0x45, 0x6f, 0x1e, 0x3a, 0x80,
- 0xca, 0x88, 0x92, 0x28, 0x8e, 0x11, 0x17, 0xde, 0x26, 0x51, 0x21, 0x1f, 0xab, 0xa1, 0x38, 0x66,
- 0xc2, 0x19, 0x86, 0x36, 0xa5, 0x4f, 0x83, 0xa8, 0x7b, 0xb9, 0xc6, 0xab, 0x60, 0x78, 0xa8, 0x86,
- 0xe2, 0x98, 0x49, 0xf3, 0x03, 0x58, 0xc9, 0xe8, 0xe4, 0x02, 0x41, 0xed, 0x2d, 0x28, 0x8e, 0x22,
- 0x4f, 0x67, 0x53, 0xc2, 0x11, 0x1f, 0xe3, 0x7d, 0x0b, 0x0b, 0x68, 0xf3, 0xbf, 0xca, 0xb0, 0xf8,
- 0xe0, 0xe8, 0xe8, 0x50, 0x57, 0x63, 0x2f, 0x38, 0x73, 0x46, 0xee, 0x9e, 0xbf, 0xc2, 0xdc, 0xfd,
- 0x18, 0x0a, 0xcc, 0xd3, 0x07, 0xf5, 0xde, 0xa5, 0x7b, 0x19, 0x47, 0xfb, 0x96, 0x32, 0x21, 0xd1,
- 0x27, 0x39, 0xda, 0xb7, 0x30, 0xe7, 0xc7, 0x4f, 0xc4, 0x90, 0xb0, 0x41, 0xd0, 0xcd, 0xb6, 0x9c,
- 0x1f, 0x0b, 0x28, 0x56, 0xd8, 0x4c, 0xc5, 0x54, 0xba, 0xf2, 0x8a, 0xe9, 0xeb, 0xb0, 0xc0, 0xa3,
- 0x66, 0x30, 0x92, 0x09, 0x55, 0x21, 0xd1, 0xd4, 0x91, 0x04, 0x63, 0x8d, 0x47, 0x7d, 0xa8, 0x9e,
- 0xd8, 0xd4, 0x75, 0xda, 0x23, 0x36, 0x50, 0x59, 0xd5, 0xe5, 0xf5, 0xd5, 0xd1, 0x1c, 0x64, 0x17,
- 0x2b, 0xfe, 0xc4, 0x09, 0x6f, 0xf4, 0x87, 0xb0, 0x30, 0x20, 0x76, 0x97, 0x2b, 0xa4, 0x22, 0x14,
- 0x82, 0x5f, 0x5e, 0x21, 0x86, 0x01, 0xb6, 0x1e, 0x48, 0xa6, 0xb2, 0x7c, 0x4d, 0xda, 0x42, 0x12,
- 0x8a, 0xb5, 0x4c, 0x74, 0x06, 0x4b, 0xb2, 0xcc, 0x57, 0x98, 0x7a, 0x55, 0x4c, 0xe2, 0xb7, 0x2f,
- 0xdf, 0xe7, 0x34, 0xb8, 0x74, 0xae, 0x9f, 0x4f, 0x1a, 0x4b, 0x26, 0x84, 0xe2, 0xb4, 0x98, 0xb5,
- 0x7b, 0x50, 0x33, 0x67, 0x78, 0xa9, 0x22, 0xf0, 0x4f, 0x0a, 0x70, 0x7d, 0x6f, 0xd3, 0xd2, 0xbd,
- 0xb4, 0xc3, 0xc0, 0x73, 0x9d, 0x31, 0xfa, 0x63, 0x28, 0x7b, 0xf6, 0x09, 0xf1, 0x68, 0x3d, 0x27,
- 0x96, 0xf0, 0xd1, 0xcb, 0xeb, 0x71, 0x8a, 0x79, 0x6b, 0x5f, 0x70, 0x96, 0xca, 0x8c, 0xad, 0x5b,
- 0x02, 0xb1, 0x12, 0x8b, 0x3e, 0x86, 0x85, 0x13, 0xdb, 0x39, 0x0d, 0x7a, 0x3d, 0xe5, 0xa5, 0x36,
- 0x5f, 0xc2, 0x60, 0xc4, 0x78, 0x99, 0x7d, 0xa9, 0x0f, 0xac, 0xb9, 0x22, 0x0b, 0x6e, 0x91, 0x28,
- 0x0a, 0xa2, 0x03, 0x5f, 0xa1, 0x94, 0xd5, 0x8a, 0xf3, 0x5c, 0xe9, 0xbc, 0xad, 0xe6, 0x75, 0x6b,
- 0x67, 0x16, 0x11, 0x9e, 0x3d, 0x76, 0xed, 0xbb, 0xb0, 0x68, 0x2c, 0xee, 0x52, 0xfb, 0xf0, 0x93,
- 0x32, 0xd4, 0xf6, 0xec, 0xde, 0xa9, 0x7d, 0x41, 0xa7, 0xf7, 0x55, 0x28, 0xb1, 0x20, 0x74, 0x1d,
- 0x95, 0x5f, 0xc4, 0xf9, 0xd8, 0x11, 0x07, 0x62, 0x89, 0xe3, 0x89, 0x7f, 0x68, 0x47, 0xcc, 0x65,
- 0xba, 0x1c, 0x2b, 0x25, 0x89, 0xff, 0xa1, 0x46, 0xe0, 0x84, 0x26, 0xe3, 0x54, 0x8a, 0x57, 0xee,
- 0x54, 0x36, 0xa1, 0x16, 0x91, 0x4f, 0x47, 0xae, 0xe8, 0x4a, 0x9e, 0x52, 0x91, 0x40, 0x94, 0x92,
- 0x1b, 0x45, 0x6c, 0xe0, 0x70, 0x8a, 0x92, 0xa7, 0x1d, 0x4e, 0x30, 0x0c, 0x23, 0x42, 0xa9, 0xf0,
- 0x47, 0x95, 0x24, 0xed, 0xd8, 0x52, 0x70, 0x1c, 0x53, 0xf0, 0x34, 0xad, 0xe7, 0x8d, 0xe8, 0x60,
- 0x97, 0xf3, 0xe0, 0x65, 0x86, 0x70, 0x4b, 0xa5, 0x24, 0x4d, 0xdb, 0x4d, 0x61, 0x71, 0x86, 0x5a,
- 0xfb, 0xfe, 0xca, 0x2b, 0xf6, 0xfd, 0x46, 0x24, 0xab, 0x5e, 0x61, 0x24, 0x6b, 0xc3, 0x4a, 0x6c,
- 0x02, 0xae, 0xdf, 0xdf, 0x23, 0x63, 0x95, 0xb4, 0xc4, 0x25, 0xe6, 0x61, 0x1a, 0x8d, 0xb3, 0xf4,
- 0x3c, 0x1a, 0xe8, 0xb2, 0x7f, 0x31, 0x5d, 0x5e, 0xeb, 0x92, 0x5f, 0xe3, 0xd1, 0xef, 0x40, 0x91,
- 0xda, 0xd4, 0xab, 0xd7, 0x5e, 0xf6, 0x12, 0xa8, 0x6d, 0xed, 0x2b, 0xed, 0x89, 0xc4, 0x81, 0x7f,
- 0x63, 0xc1, 0xb2, 0x79, 0x00, 0xb0, 0x1f, 0xf4, 0xf5, 0x09, 0x6a, 0xc3, 0x8a, 0xeb, 0x33, 0x12,
- 0x9d, 0xd9, 0x9e, 0x45, 0x9c, 0xc0, 0xef, 0x52, 0x71, 0x9a, 0x8a, 0xc9, 0xb2, 0x1e, 0xa6, 0xd1,
- 0x38, 0x4b, 0xdf, 0xfc, 0xbb, 0x02, 0x2c, 0x3e, 0x69, 0x1f, 0x59, 0x17, 0x3c, 0x94, 0x46, 0x93,
- 0x21, 0xff, 0x82, 0x26, 0x83, 0xb1, 0xd5, 0x85, 0xd7, 0xd6, 0x6a, 0xbf, 0xfa, 0x03, 0xae, 0x0e,
- 0x4e, 0xe9, 0xd5, 0x1e, 0x9c, 0xe6, 0x8f, 0x8b, 0xb0, 0x7a, 0x10, 0x12, 0xff, 0xa3, 0x81, 0x4b,
- 0x4f, 0x8d, 0x2b, 0x9f, 0x41, 0x40, 0x59, 0x36, 0x0d, 0x7d, 0x10, 0x50, 0x86, 0x05, 0xc6, 0xb4,
- 0xda, 0xfc, 0x0b, 0xac, 0x76, 0x03, 0xaa, 0x3c, 0x73, 0xa5, 0xa1, 0xed, 0x4c, 0xf5, 0x50, 0x9e,
- 0x68, 0x04, 0x4e, 0x68, 0xc4, 0x13, 0x87, 0x11, 0x1b, 0x1c, 0x05, 0xa7, 0xc4, 0xbf, 0x5c, 0x85,
- 0x25, 0x9f, 0x38, 0xe8, 0xb1, 0x38, 0x61, 0x83, 0xde, 0x03, 0xb0, 0x93, 0xe7, 0x16, 0xb2, 0xba,
- 0x8a, 0x35, 0xde, 0x4e, 0x1e, 0x5b, 0x18, 0x54, 0xa6, 0xa1, 0x95, 0x5f, 0x9b, 0xa1, 0x2d, 0x5c,
- 0xf9, 0x9d, 0x0e, 0x86, 0x9a, 0xd9, 0x11, 0xb8, 0x40, 0x77, 0x5b, 0x57, 0x2d, 0xf9, 0xe7, 0x55,
- 0x2d, 0xcd, 0x9f, 0xe4, 0xa1, 0x6c, 0x89, 0x89, 0xa1, 0x1f, 0x40, 0x65, 0x48, 0x98, 0x2d, 0x1a,
- 0x38, 0xb2, 0x2e, 0x7b, 0xe7, 0x62, 0x7d, 0xc2, 0x03, 0x71, 0xfc, 0x1f, 0x13, 0x66, 0x27, 0x4b,
- 0x48, 0x60, 0x38, 0xe6, 0x8a, 0x7a, 0xea, 0x1a, 0x26, 0x3f, 0x6f, 0xc7, 0x4b, 0xce, 0xd8, 0x0a,
- 0x89, 0x33, 0xf3, 0xe6, 0xc5, 0x87, 0x32, 0x65, 0x36, 0x1b, 0xd1, 0xf9, 0xaf, 0xc6, 0x95, 0x24,
- 0xc1, 0xcd, 0x68, 0x12, 0x8b, 0x6f, 0xac, 0xa4, 0x34, 0xff, 0x35, 0x07, 0x20, 0x09, 0xf7, 0x5d,
- 0xca, 0xd0, 0xef, 0x4f, 0x29, 0xb2, 0x75, 0x31, 0x45, 0xf2, 0xd1, 0x42, 0x8d, 0x71, 0x9c, 0xd7,
- 0x10, 0x43, 0x89, 0x04, 0x4a, 0x2e, 0x23, 0x43, 0xdd, 0x5e, 0x7a, 0x7f, 0xde, 0xb5, 0x25, 0x79,
- 0xd6, 0x43, 0xce, 0x16, 0x4b, 0xee, 0xcd, 0xff, 0x2c, 0xe9, 0x35, 0x71, 0xc5, 0xa2, 0x1f, 0xe5,
- 0x32, 0x97, 0x06, 0x32, 0x89, 0x7e, 0xf8, 0xca, 0x9a, 0xa8, 0x49, 0x46, 0xf4, 0xfc, 0x3b, 0x08,
- 0x14, 0x40, 0x85, 0xc9, 0x53, 0xa3, 0x97, 0xdf, 0x9e, 0xfb, 0xfc, 0x19, 0xf7, 0x2b, 0x8a, 0x35,
- 0x8e, 0x85, 0x20, 0xcf, 0xb8, 0x8d, 0x99, 0xbb, 0x7d, 0xa5, 0xef, 0x6f, 0x64, 0xdf, 0x61, 0xfa,
- 0x36, 0x07, 0xfd, 0x38, 0x07, 0xab, 0xdd, 0xf4, 0x75, 0x8e, 0x0e, 0x68, 0x73, 0x28, 0x3a, 0x73,
- 0x41, 0x14, 0x5f, 0x72, 0xad, 0x66, 0x10, 0x14, 0x4f, 0x09, 0x47, 0x8f, 0x00, 0xa9, 0xb2, 0x60,
- 0xd7, 0x76, 0x3d, 0xd2, 0xc5, 0xc1, 0xc8, 0xef, 0x0a, 0x2f, 0x5d, 0x49, 0x2e, 0x61, 0x77, 0xa6,
- 0x28, 0xf0, 0x8c, 0x51, 0x3c, 0x11, 0x16, 0x53, 0xed, 0x8c, 0xa8, 0xf0, 0xf5, 0xe5, 0xf4, 0xd3,
- 0xba, 0x1d, 0x03, 0x87, 0x53, 0x94, 0xe8, 0x2e, 0x2c, 0x38, 0x6e, 0xe4, 0x8c, 0x5c, 0xa6, 0xba,
- 0x65, 0x6f, 0xaa, 0x41, 0xd7, 0x8d, 0xdb, 0x44, 0x49, 0x80, 0x35, 0x25, 0xba, 0x03, 0x95, 0x88,
- 0x84, 0x9e, 0xeb, 0xd8, 0x32, 0xa9, 0x2d, 0xe9, 0x17, 0x16, 0x12, 0x86, 0x63, 0x6c, 0x33, 0x80,
- 0x9a, 0x79, 0xcc, 0xd1, 0xc7, 0xb1, 0xfb, 0x90, 0xa7, 0xf7, 0x3b, 0x97, 0xcf, 0xe7, 0xfe, 0x7f,
- 0x7f, 0xf1, 0x8f, 0x79, 0xa8, 0x59, 0x9e, 0xed, 0xc4, 0x61, 0x3d, 0x1d, 0x59, 0x72, 0xaf, 0x21,
- 0x85, 0x01, 0x2a, 0xe6, 0x23, 0x22, 0x7b, 0xfe, 0xd2, 0x57, 0xf8, 0x56, 0x3c, 0x18, 0x1b, 0x8c,
- 0x78, 0x2e, 0xe2, 0x0c, 0x6c, 0xdf, 0x27, 0x9e, 0x4a, 0x2f, 0xe2, 0xd8, 0xba, 0x25, 0xc1, 0x58,
- 0xe3, 0x39, 0xe9, 0x90, 0x50, 0x6a, 0xf7, 0xf5, 0x9d, 0x59, 0x4c, 0xfa, 0x58, 0x82, 0xb1, 0xc6,
- 0x37, 0xff, 0xb7, 0x08, 0xc8, 0x62, 0xb6, 0xdf, 0xb5, 0xa3, 0xee, 0xde, 0x66, 0x9c, 0xc7, 0x3e,
- 0xf7, 0xa9, 0x58, 0xee, 0x75, 0x3c, 0x15, 0x33, 0xde, 0xfc, 0xe5, 0xaf, 0xe4, 0xcd, 0xdf, 0x13,
- 0xf3, 0xcd, 0x9f, 0xd4, 0xf6, 0x3b, 0xb3, 0xde, 0xfc, 0xfd, 0xca, 0xde, 0xe8, 0x84, 0x44, 0x3e,
- 0x61, 0x84, 0xea, 0xb9, 0x5e, 0xe0, 0xe5, 0xdf, 0xd5, 0x67, 0xd5, 0x3d, 0x58, 0x0a, 0x6d, 0xe6,
- 0x0c, 0x2c, 0x16, 0xd9, 0x8c, 0xf4, 0xc7, 0x2a, 0x35, 0x7c, 0x5f, 0x0d, 0x5b, 0x3a, 0x34, 0x91,
- 0xcf, 0x26, 0x8d, 0x5f, 0x7b, 0xde, 0x2b, 0x60, 0x36, 0x0e, 0x09, 0x6d, 0x09, 0x72, 0x71, 0x8d,
- 0x9a, 0x66, 0xcb, 0xf3, 0x4f, 0xcf, 0x3d, 0x23, 0x07, 0xc9, 0x3d, 0x6a, 0x25, 0x99, 0xdb, 0x7e,
- 0x8c, 0xc1, 0x06, 0x55, 0x73, 0x03, 0x6a, 0xf2, 0x44, 0xab, 0xd6, 0x52, 0x03, 0x4a, 0xb6, 0xe7,
- 0x05, 0x4f, 0xc5, 0xc9, 0x2d, 0xc9, 0xdb, 0x89, 0x36, 0x07, 0x60, 0x09, 0x6f, 0xfe, 0x69, 0x05,
- 0x62, 0x7f, 0x8f, 0x9c, 0xa9, 0xf4, 0xe0, 0xf2, 0xaf, 0xc6, 0x1e, 0x2b, 0x06, 0xd2, 0xa7, 0xe9,
- 0x2f, 0x23, 0x4b, 0x50, 0xaf, 0x67, 0x5c, 0x87, 0xb4, 0x1d, 0x27, 0x18, 0xa9, 0x8b, 0xd2, 0xfc,
- 0xf4, 0xeb, 0x99, 0x34, 0x05, 0x9e, 0x31, 0x0a, 0x3d, 0x12, 0xef, 0xf3, 0x98, 0xcd, 0x75, 0xaa,
- 0xa2, 0xe0, 0xdb, 0xcf, 0x79, 0x9f, 0x27, 0x89, 0xe2, 0x47, 0x79, 0xf2, 0x13, 0x27, 0xc3, 0xd1,
- 0x0e, 0x2c, 0x9c, 0x05, 0xde, 0x68, 0x48, 0xb4, 0x4d, 0xad, 0xcd, 0xe2, 0xf4, 0xa1, 0x20, 0x31,
- 0x4a, 0x17, 0x39, 0x04, 0xeb, 0xb1, 0x88, 0xc0, 0x8a, 0xe8, 0x17, 0xba, 0x6c, 0xac, 0x2e, 0x21,
- 0x55, 0xfd, 0xf5, 0xb5, 0x59, 0xec, 0x0e, 0x83, 0xae, 0x95, 0xa6, 0x56, 0x8f, 0xc7, 0xd2, 0x40,
- 0x9c, 0xe5, 0x89, 0xfe, 0x22, 0x07, 0x35, 0x3f, 0xe8, 0x12, 0xed, 0xed, 0x54, 0xb9, 0x71, 0x34,
- 0x7f, 0x0e, 0xd0, 0x7a, 0x62, 0xb0, 0x95, 0x7d, 0xc3, 0x38, 0x12, 0x9a, 0x28, 0x9c, 0x92, 0x8f,
- 0x8e, 0x61, 0x91, 0x05, 0x9e, 0x3a, 0xa3, 0xba, 0x06, 0x59, 0x9f, 0xb5, 0xe6, 0xa3, 0x98, 0x2c,
- 0x79, 0xae, 0x90, 0xc0, 0x28, 0x36, 0xf9, 0x20, 0x1f, 0x56, 0xdd, 0xa1, 0xdd, 0x27, 0x87, 0x23,
- 0xcf, 0x93, 0x2e, 0x5e, 0x77, 0x9b, 0x67, 0x3e, 0xc4, 0xe4, 0x8e, 0xc8, 0x53, 0xe7, 0x82, 0xf4,
- 0x48, 0x44, 0x7c, 0x87, 0x24, 0x69, 0xc5, 0xc3, 0x0c, 0x27, 0x3c, 0xc5, 0x1b, 0xdd, 0x87, 0xeb,
- 0x61, 0xe4, 0x06, 0x42, 0xd5, 0x9e, 0x4d, 0x65, 0x3e, 0x50, 0x4d, 0x87, 0xf6, 0xc3, 0x2c, 0x01,
- 0x9e, 0x1e, 0xc3, 0x83, 0xbc, 0x06, 0x8a, 0xfe, 0x8e, 0x0a, 0xf2, 0x7a, 0x2c, 0x8e, 0xb1, 0x68,
- 0x17, 0x2a, 0x76, 0xaf, 0xe7, 0xfa, 0x9c, 0x72, 0x51, 0x98, 0xca, 0x5b, 0xb3, 0x96, 0xd6, 0x56,
- 0x34, 0x92, 0x8f, 0xfe, 0xc2, 0xf1, 0xd8, 0xb5, 0xef, 0xc3, 0xf5, 0xa9, 0xad, 0xbb, 0x54, 0x57,
- 0xd4, 0x02, 0x48, 0x2e, 0xec, 0xd1, 0x57, 0xa1, 0x44, 0x99, 0x1d, 0xe9, 0x8a, 0x3e, 0xce, 0xc5,
- 0x2d, 0x0e, 0xc4, 0x12, 0xc7, 0xcb, 0x38, 0xca, 0x82, 0x30, 0x5b, 0xc6, 0x59, 0x2c, 0x08, 0xb1,
- 0xc0, 0x34, 0x27, 0x05, 0x58, 0xd0, 0x81, 0x90, 0x1a, 0x39, 0x6b, 0x6e, 0xde, 0xbb, 0x41, 0xc5,
- 0xf4, 0x85, 0xa9, 0x6b, 0x3a, 0x5c, 0xe4, 0xaf, 0x3c, 0x5c, 0x9c, 0x42, 0x39, 0x14, 0xce, 0x58,
- 0x39, 0xa8, 0xfb, 0xf3, 0xcb, 0x16, 0xec, 0x64, 0xac, 0x95, 0xbf, 0xb1, 0x12, 0x81, 0x3e, 0x85,
- 0xa5, 0x88, 0xb0, 0x68, 0x1c, 0xc7, 0xa6, 0xe2, 0x9c, 0xfd, 0x7c, 0x71, 0x1f, 0x82, 0x4d, 0x96,
- 0x38, 0x2d, 0xa1, 0xf9, 0x8b, 0x1c, 0xac, 0x66, 0x95, 0x82, 0x4e, 0xa1, 0x40, 0x23, 0x47, 0x6d,
- 0xf2, 0xe1, 0xab, 0xd3, 0xb6, 0x4c, 0x2d, 0x64, 0x3f, 0xca, 0x8a, 0x1c, 0xcc, 0xa5, 0x70, 0x23,
- 0xec, 0x12, 0xca, 0xb2, 0x46, 0xb8, 0x4d, 0x28, 0xc3, 0x02, 0x83, 0xf6, 0xa7, 0x53, 0x90, 0xd6,
- 0xac, 0x14, 0xe4, 0xcd, 0xac, 0xbc, 0x59, 0x09, 0x48, 0xf3, 0xdf, 0xf2, 0xf0, 0xc6, 0xec, 0x89,
- 0xa1, 0xef, 0xc1, 0x72, 0x52, 0xa9, 0x18, 0x7f, 0xd3, 0x89, 0x5b, 0xdd, 0xdb, 0x29, 0x2c, 0xce,
- 0x50, 0xf3, 0x98, 0xaf, 0x5e, 0xac, 0xe8, 0xff, 0xea, 0x18, 0x3d, 0xa7, 0xad, 0x18, 0x83, 0x0d,
- 0x2a, 0xd4, 0x86, 0x15, 0xf5, 0x75, 0x64, 0x16, 0x84, 0x46, 0x43, 0x79, 0x2b, 0x8d, 0xc6, 0x59,
- 0x7a, 0x9e, 0xe3, 0xf2, 0xd8, 0xac, 0x1f, 0x3a, 0x1b, 0x39, 0xee, 0xb6, 0x04, 0x63, 0x8d, 0xe7,
- 0xb5, 0x12, 0xff, 0x79, 0x94, 0x7e, 0x09, 0x98, 0x94, 0xc8, 0x06, 0x0e, 0xa7, 0x28, 0x93, 0x27,
- 0x8a, 0xb2, 0xbc, 0x9a, 0x7a, 0xa2, 0xd8, 0xfc, 0x79, 0x0e, 0x96, 0x52, 0x26, 0x8e, 0x7a, 0x50,
- 0x38, 0xdd, 0xd4, 0xc5, 0xce, 0xde, 0x2b, 0xbc, 0x16, 0x93, 0x16, 0xb4, 0xb7, 0x49, 0x31, 0x17,
- 0x80, 0x3e, 0x89, 0xeb, 0xaa, 0xb9, 0xdf, 0x22, 0x99, 0xe9, 0x97, 0x4a, 0x87, 0xd3, 0x25, 0xd6,
- 0x4e, 0xbc, 0x48, 0xeb, 0xa9, 0xcb, 0x9c, 0x01, 0x7a, 0x13, 0x0a, 0xb6, 0x3f, 0x16, 0x19, 0x5a,
- 0x55, 0xce, 0xab, 0xed, 0x8f, 0x31, 0x87, 0x09, 0x94, 0xe7, 0xa9, 0x8b, 0x7b, 0x89, 0xf2, 0x3c,
- 0xcc, 0x61, 0xcd, 0x7f, 0x5e, 0x84, 0x95, 0x8c, 0x0b, 0xbc, 0xc0, 0x53, 0x00, 0x69, 0x5f, 0x5d,
- 0x57, 0x06, 0xe9, 0x69, 0xfb, 0x52, 0x18, 0x6c, 0x50, 0xa1, 0xbe, 0xdc, 0x04, 0xe9, 0xbd, 0xf6,
- 0xe7, 0xd2, 0x4c, 0xa6, 0x32, 0xca, 0xec, 0xc2, 0x8f, 0x72, 0x50, 0xb3, 0x8d, 0xff, 0xfd, 0x28,
- 0xe7, 0xf5, 0x78, 0x9e, 0xfa, 0x64, 0xea, 0x2f, 0x4f, 0xf2, 0x49, 0x8d, 0x89, 0xc0, 0x29, 0xa1,
- 0xc8, 0x81, 0xe2, 0x80, 0x31, 0xfd, 0x77, 0x8f, 0x9d, 0x57, 0x72, 0xa7, 0x2d, 0xef, 0x4e, 0x38,
- 0x00, 0x0b, 0xe6, 0xe8, 0x29, 0x54, 0xed, 0xa7, 0x54, 0xfe, 0xc1, 0x4f, 0xfd, 0x0f, 0x64, 0x9e,
- 0x32, 0x2c, 0xf3, 0x5f, 0x41, 0xd5, 0xd4, 0xd6, 0x50, 0x9c, 0xc8, 0x42, 0x11, 0x94, 0x1d, 0xf1,
- 0x52, 0x5c, 0x3d, 0x0d, 0xb8, 0xff, 0x8a, 0x5e, 0x9c, 0xcb, 0x40, 0x91, 0x02, 0x61, 0x25, 0x09,
- 0xf5, 0xa1, 0x74, 0x6a, 0xf7, 0x4e, 0x6d, 0x75, 0x83, 0x37, 0xc7, 0xe1, 0x32, 0xef, 0x6c, 0xa5,
- 0x03, 0x11, 0x10, 0x2c, 0xf9, 0xf3, 0xad, 0xf3, 0x6d, 0x46, 0xd5, 0xbb, 0xa3, 0x39, 0xb6, 0xce,
- 0xb8, 0x85, 0x92, 0x5b, 0xc7, 0x01, 0x58, 0x30, 0xe7, 0xab, 0x11, 0x8d, 0x04, 0x91, 0xd5, 0xcd,
- 0xe7, 0x2a, 0x8c, 0x46, 0x8b, 0x5c, 0x8d, 0x80, 0x60, 0xc9, 0x9f, 0xdb, 0x48, 0xa0, 0x6f, 0x59,
- 0x54, 0x62, 0x38, 0x87, 0x8d, 0x64, 0x2f, 0x6c, 0xa4, 0x8d, 0xc4, 0x50, 0x9c, 0xc8, 0x42, 0x1f,
- 0x43, 0xc1, 0x0b, 0xfa, 0xf5, 0xa5, 0x79, 0x7b, 0xe1, 0xc9, 0xed, 0xa0, 0x3c, 0xe8, 0xfb, 0x41,
- 0x1f, 0x73, 0xce, 0x68, 0x04, 0x65, 0x2a, 0x7c, 0x9f, 0xba, 0x96, 0x9c, 0x3f, 0x25, 0x92, 0xae,
- 0xb4, 0x73, 0x53, 0x35, 0x0f, 0xf5, 0x9b, 0x2f, 0x01, 0xc5, 0x4a, 0x18, 0xfa, 0xb3, 0x1c, 0x2c,
- 0xdb, 0xa9, 0xff, 0x2b, 0xd5, 0x97, 0xe7, 0x7d, 0x70, 0x3b, 0xf3, 0xff, 0x4f, 0xf2, 0x2f, 0x99,
- 0x69, 0x14, 0xce, 0x88, 0x6e, 0x3a, 0xb0, 0x68, 0xfc, 0xf1, 0xec, 0x02, 0x57, 0x26, 0xef, 0x01,
- 0x9c, 0x91, 0xc8, 0xed, 0x8d, 0xb7, 0x48, 0xc4, 0xd4, 0x3f, 0x5f, 0x62, 0xdf, 0xfd, 0x61, 0x8c,
- 0xc1, 0x06, 0x55, 0xa7, 0xf5, 0xf9, 0x17, 0xeb, 0xd7, 0x7e, 0xfa, 0xc5, 0xfa, 0xb5, 0x9f, 0x7d,
- 0xb1, 0x7e, 0xed, 0x87, 0xe7, 0xeb, 0xb9, 0xcf, 0xcf, 0xd7, 0x73, 0x3f, 0x3d, 0x5f, 0xcf, 0xfd,
- 0xec, 0x7c, 0x3d, 0xf7, 0x1f, 0xe7, 0xeb, 0xb9, 0xbf, 0xfc, 0xf9, 0xfa, 0xb5, 0xdf, 0xad, 0xe8,
- 0xe5, 0xfc, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x12, 0x7f, 0xde, 0x00, 0x31, 0x3e, 0x00, 0x00,
+ // 4065 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5b, 0x4d, 0x6c, 0x23, 0xc9,
+ 0x75, 0x1e, 0x52, 0x24, 0x45, 0x3e, 0x51, 0x3f, 0x53, 0x33, 0xb3, 0xe6, 0x2a, 0xbb, 0xe2, 0x80,
+ 0x46, 0x9c, 0xb1, 0x61, 0x53, 0xbb, 0x33, 0x4e, 0x2c, 0x4f, 0x12, 0x7b, 0x49, 0xfd, 0xcc, 0x8f,
+ 0x38, 0x23, 0x6d, 0xb5, 0xb4, 0x8b, 0xfc, 0x00, 0xe3, 0x56, 0xb3, 0x48, 0xf6, 0xaa, 0xd9, 0xdd,
+ 0xdb, 0x55, 0xd4, 0x2c, 0x03, 0x24, 0x31, 0x62, 0xe4, 0x10, 0x24, 0x88, 0x73, 0xcc, 0x29, 0xc9,
+ 0x25, 0xb7, 0xdc, 0x72, 0x0c, 0x92, 0x83, 0x4f, 0x7b, 0xcb, 0xe6, 0x10, 0xc0, 0x87, 0x40, 0xc8,
+ 0xca, 0x97, 0xe4, 0x10, 0x18, 0x06, 0x72, 0x9a, 0x4b, 0x82, 0xfa, 0xeb, 0xae, 0x6e, 0x72, 0x32,
+ 0x92, 0x38, 0xd0, 0x1c, 0x72, 0x63, 0xbf, 0xf7, 0xea, 0xbd, 0xfa, 0x79, 0xf5, 0xea, 0x7b, 0xaf,
+ 0x8a, 0xf0, 0xb0, 0xef, 0xb2, 0xc1, 0xe8, 0xa8, 0xe9, 0x04, 0xc3, 0x75, 0x3b, 0xea, 0x07, 0x61,
+ 0x14, 0x7c, 0x22, 0x7e, 0x7c, 0x8b, 0x9c, 0x10, 0x9f, 0xd1, 0xf5, 0xf0, 0xb8, 0xbf, 0x6e, 0x87,
+ 0x2e, 0x5d, 0xa7, 0xc4, 0xa7, 0x41, 0xb4, 0x7e, 0xf2, 0xbe, 0xed, 0x85, 0x03, 0xfb, 0xfd, 0xf5,
+ 0x3e, 0xf1, 0x49, 0x64, 0x33, 0xd2, 0x6d, 0x86, 0x51, 0xc0, 0x02, 0xb4, 0x91, 0x68, 0x6a, 0x6a,
+ 0x4d, 0xe2, 0xc7, 0x33, 0xa9, 0xa9, 0x19, 0x1e, 0xf7, 0x9b, 0x5c, 0x53, 0x53, 0x6a, 0x6a, 0x6a,
+ 0x4d, 0xab, 0xdf, 0x3f, 0x77, 0x1f, 0x9c, 0x60, 0x38, 0x0c, 0xfc, 0xac, 0xe9, 0xd5, 0x6f, 0x19,
+ 0x0a, 0xfa, 0x41, 0x3f, 0x58, 0x17, 0xe4, 0xa3, 0x51, 0x4f, 0x7c, 0x89, 0x0f, 0xf1, 0x4b, 0x89,
+ 0x37, 0x8e, 0x37, 0x68, 0xd3, 0x0d, 0xb8, 0xca, 0x75, 0x27, 0x88, 0xc8, 0xfa, 0xc9, 0xc4, 0x68,
+ 0x56, 0xbf, 0x9d, 0xc8, 0x0c, 0x6d, 0x67, 0xe0, 0xfa, 0x24, 0x1a, 0x27, 0xfd, 0x18, 0x12, 0x66,
+ 0x4f, 0x6b, 0xb5, 0xfe, 0xb2, 0x56, 0xd1, 0xc8, 0x67, 0xee, 0x90, 0x4c, 0x34, 0xf8, 0xb5, 0x57,
+ 0x35, 0xa0, 0xce, 0x80, 0x0c, 0xed, 0x6c, 0xbb, 0xc6, 0x3f, 0x17, 0x60, 0xa5, 0xf5, 0xb1, 0xd5,
+ 0xb1, 0x87, 0x47, 0x5d, 0xfb, 0x20, 0x72, 0xfb, 0x7d, 0x12, 0xa1, 0x0d, 0xa8, 0xf6, 0x46, 0xbe,
+ 0xc3, 0xdc, 0xc0, 0x7f, 0x6a, 0x0f, 0x49, 0x2d, 0x77, 0x3b, 0x77, 0xa7, 0xd2, 0xbe, 0xf9, 0xf9,
+ 0x69, 0xfd, 0xda, 0xd9, 0x69, 0xbd, 0xba, 0x63, 0xf0, 0x70, 0x4a, 0x12, 0x61, 0xa8, 0xd8, 0x8e,
+ 0x43, 0x28, 0xdd, 0x25, 0xe3, 0x5a, 0xfe, 0x76, 0xee, 0xce, 0xc2, 0xdd, 0x5f, 0x6e, 0xca, 0xae,
+ 0xf1, 0x25, 0x6b, 0xf2, 0x59, 0x6a, 0x9e, 0xbc, 0xdf, 0xb4, 0x88, 0x13, 0x11, 0xb6, 0x4b, 0xc6,
+ 0x16, 0xf1, 0x88, 0xc3, 0x82, 0xa8, 0xbd, 0x78, 0x76, 0x5a, 0xaf, 0xb4, 0x74, 0x5b, 0x9c, 0xa8,
+ 0xe1, 0x3a, 0xa9, 0x16, 0xaf, 0xcd, 0x5d, 0x58, 0x67, 0x4c, 0xc6, 0x89, 0x1a, 0xf4, 0x35, 0x28,
+ 0x45, 0xa4, 0xef, 0x06, 0x7e, 0xad, 0x20, 0xc6, 0xb6, 0xa4, 0xc6, 0x56, 0xc2, 0x82, 0x8a, 0x15,
+ 0x17, 0x8d, 0x60, 0x3e, 0xb4, 0xc7, 0x5e, 0x60, 0x77, 0x6b, 0xc5, 0xdb, 0x73, 0x77, 0x16, 0xee,
+ 0x3e, 0x6e, 0x5e, 0xd6, 0x3b, 0x9b, 0x6a, 0x76, 0xf7, 0xed, 0xc8, 0x1e, 0x12, 0x46, 0xa2, 0xf6,
+ 0xb2, 0x32, 0x3a, 0xbf, 0x2f, 0x4d, 0x60, 0x6d, 0x0b, 0xfd, 0x01, 0x40, 0xa8, 0xc5, 0x68, 0xad,
+ 0xf4, 0xda, 0x2d, 0x23, 0x65, 0x19, 0x62, 0x12, 0xc5, 0x86, 0x45, 0x74, 0x1f, 0x96, 0x5c, 0xff,
+ 0x24, 0x70, 0x6c, 0xbe, 0xb0, 0x07, 0xe3, 0x90, 0xd4, 0xe6, 0xc5, 0x34, 0xa1, 0xb3, 0xd3, 0xfa,
+ 0xd2, 0xa3, 0x14, 0x07, 0x67, 0x24, 0x1b, 0xa7, 0x73, 0x70, 0xa3, 0x15, 0xf5, 0x83, 0x8f, 0x83,
+ 0xe8, 0xb8, 0xe7, 0x05, 0xcf, 0xb5, 0x53, 0xf9, 0x50, 0xa2, 0xc1, 0x28, 0x72, 0xa4, 0x3b, 0xcd,
+ 0x34, 0x9e, 0x56, 0xc4, 0xdc, 0x9e, 0xed, 0xb0, 0x8e, 0xb2, 0xdb, 0x06, 0xbe, 0x74, 0x96, 0xd0,
+ 0x8e, 0x95, 0x15, 0xf4, 0x10, 0x2a, 0x41, 0xc8, 0x7d, 0x9d, 0xaf, 0x72, 0x5e, 0x74, 0xff, 0x1b,
+ 0x6a, 0xd8, 0x95, 0x3d, 0xcd, 0x78, 0x71, 0x5a, 0xbf, 0x65, 0x76, 0x36, 0x66, 0xe0, 0xa4, 0x71,
+ 0x66, 0x35, 0xe6, 0xae, 0x7c, 0x35, 0xfe, 0x2c, 0x07, 0x37, 0xfb, 0x51, 0x30, 0x0a, 0x3f, 0x22,
+ 0x11, 0xe5, 0x7d, 0x23, 0x6a, 0x22, 0x0b, 0x62, 0x22, 0xef, 0x1b, 0x9b, 0x21, 0xde, 0xfb, 0x89,
+ 0x79, 0x1e, 0x62, 0xf8, 0xf6, 0x78, 0x30, 0x45, 0x43, 0xfb, 0x1d, 0x65, 0xfa, 0xe6, 0x34, 0x2e,
+ 0x9e, 0x6a, 0xb5, 0xf1, 0x0b, 0x1e, 0x32, 0x32, 0x2b, 0x80, 0x2c, 0xc8, 0xd3, 0x7b, 0x6a, 0x65,
+ 0x7f, 0xfd, 0xfc, 0x73, 0x23, 0xe3, 0x70, 0xd3, 0xba, 0xa7, 0x15, 0xb6, 0x4b, 0x67, 0xa7, 0xf5,
+ 0xbc, 0x75, 0x0f, 0xe7, 0xe9, 0x3d, 0xd4, 0x80, 0x92, 0xeb, 0x7b, 0xae, 0x4f, 0xd4, 0xfa, 0x89,
+ 0x65, 0x7e, 0x24, 0x28, 0x58, 0x71, 0x50, 0x17, 0x0a, 0x3d, 0xd7, 0x23, 0x2a, 0x30, 0xec, 0x5c,
+ 0x7e, 0x59, 0x76, 0x5c, 0x8f, 0xc4, 0xbd, 0x28, 0x9f, 0x9d, 0xd6, 0x0b, 0x9c, 0x82, 0x85, 0x76,
+ 0xf4, 0x03, 0x98, 0x1b, 0x45, 0x9e, 0x9a, 0xf0, 0xed, 0xcb, 0x1b, 0x39, 0xc4, 0x9d, 0xd8, 0xc6,
+ 0xfc, 0xd9, 0x69, 0x7d, 0xee, 0x10, 0x77, 0x30, 0x57, 0x8d, 0x0e, 0xa1, 0xe2, 0x04, 0x7e, 0xcf,
+ 0xed, 0x0f, 0xed, 0xb0, 0x56, 0x14, 0x76, 0xee, 0x4c, 0x8b, 0x72, 0x9b, 0x42, 0xe8, 0x89, 0x1d,
+ 0x4e, 0x04, 0xba, 0x4d, 0xdd, 0x1c, 0x27, 0x9a, 0x78, 0xc7, 0xfb, 0x2e, 0xab, 0x95, 0x66, 0xed,
+ 0xf8, 0x03, 0x97, 0xa5, 0x3b, 0xfe, 0xc0, 0x65, 0x98, 0xab, 0x46, 0x0e, 0x94, 0x23, 0xed, 0x90,
+ 0xf3, 0xc2, 0xcc, 0x77, 0x2f, 0xbc, 0xfe, 0xb1, 0x3f, 0x56, 0xcf, 0x4e, 0xeb, 0xe5, 0xd8, 0xff,
+ 0x62, 0xc5, 0x8d, 0xbf, 0x2f, 0xc0, 0xad, 0xd6, 0xef, 0x8d, 0x22, 0xb2, 0xcd, 0x15, 0x3c, 0x1c,
+ 0x1d, 0x51, 0x1d, 0x56, 0x6e, 0x43, 0xa1, 0xf7, 0x69, 0xd7, 0x57, 0x67, 0x54, 0x55, 0xf9, 0x73,
+ 0x61, 0xe7, 0xc3, 0xad, 0xa7, 0x58, 0x70, 0xd0, 0xd7, 0x61, 0x7e, 0x30, 0x3a, 0x12, 0x07, 0x99,
+ 0x74, 0xa3, 0x38, 0xee, 0x3e, 0x94, 0x64, 0xac, 0xf9, 0x28, 0x84, 0x1b, 0x74, 0x60, 0x47, 0xa4,
+ 0x1b, 0x1f, 0x44, 0xa2, 0xd9, 0x85, 0x0e, 0x9d, 0xaf, 0x9c, 0x9d, 0xd6, 0x6f, 0x58, 0x93, 0x5a,
+ 0xf0, 0x34, 0xd5, 0xa8, 0x0b, 0xcb, 0x19, 0xb2, 0x72, 0xb2, 0x73, 0x5a, 0xbb, 0x71, 0x76, 0x5a,
+ 0x5f, 0xce, 0x58, 0xc3, 0x59, 0x95, 0xff, 0x4f, 0x8f, 0xb1, 0xc6, 0x7f, 0x17, 0x61, 0x71, 0x73,
+ 0x44, 0x59, 0x30, 0xd4, 0xde, 0xb2, 0xce, 0xb1, 0x44, 0x74, 0x42, 0xa2, 0x43, 0xdc, 0x51, 0x2e,
+ 0x73, 0x5d, 0x1f, 0x0a, 0x96, 0x66, 0xe0, 0x44, 0x86, 0x03, 0x05, 0x4a, 0x9c, 0x51, 0x24, 0x7d,
+ 0xa7, 0x9c, 0x00, 0x05, 0x4b, 0x50, 0xb1, 0xe2, 0xa2, 0x43, 0x00, 0x87, 0x44, 0x4c, 0x2e, 0xd0,
+ 0xc5, 0x1c, 0x66, 0x89, 0x8f, 0x60, 0x33, 0x6e, 0x8c, 0x0d, 0x45, 0xe8, 0x31, 0x20, 0xd9, 0x17,
+ 0xee, 0x2c, 0x7b, 0x27, 0x24, 0x8a, 0xdc, 0x2e, 0x51, 0x98, 0x65, 0x55, 0x75, 0x05, 0x59, 0x13,
+ 0x12, 0x78, 0x4a, 0x2b, 0x44, 0xa1, 0x40, 0x43, 0xe2, 0x28, 0x0f, 0xf8, 0xf0, 0xf2, 0xeb, 0x90,
+ 0x9a, 0xd2, 0xa6, 0x15, 0x12, 0x67, 0xdb, 0x67, 0xd1, 0x38, 0xd9, 0x7c, 0x9c, 0x84, 0x85, 0xb1,
+ 0x37, 0x8e, 0x64, 0x0c, 0xcf, 0x9f, 0xbf, 0x42, 0xcf, 0x6f, 0x43, 0x95, 0xaf, 0x22, 0x3f, 0x41,
+ 0xf6, 0x6d, 0x36, 0xa8, 0x95, 0xc5, 0x8a, 0xad, 0x29, 0xf9, 0xb7, 0xb6, 0x48, 0x18, 0x11, 0x87,
+ 0xc3, 0xf0, 0x4d, 0x43, 0x0a, 0xa7, 0xda, 0xac, 0x7e, 0x07, 0x2a, 0xf1, 0xdc, 0xa2, 0x15, 0x98,
+ 0x3b, 0x26, 0x63, 0xe9, 0xb2, 0x98, 0xff, 0x44, 0x37, 0xa1, 0x78, 0x62, 0x7b, 0x23, 0x15, 0xd4,
+ 0xb0, 0xfc, 0xb8, 0x9f, 0xdf, 0xc8, 0x35, 0xfe, 0x2b, 0x07, 0xb0, 0x65, 0x33, 0x7b, 0xc7, 0xf5,
+ 0x98, 0x8c, 0x90, 0x21, 0xef, 0x43, 0x26, 0x42, 0x0a, 0x8b, 0x82, 0x83, 0xbe, 0x09, 0x05, 0xc6,
+ 0x41, 0x9e, 0x0c, 0x8f, 0x35, 0x2d, 0xc1, 0xe1, 0xdc, 0x8b, 0xd3, 0x7a, 0xf9, 0xb1, 0xb5, 0xf7,
+ 0x54, 0x40, 0x3d, 0x21, 0x85, 0xea, 0xda, 0x30, 0x47, 0x42, 0x95, 0x76, 0xe5, 0xec, 0xb4, 0x5e,
+ 0xfc, 0x88, 0x13, 0x54, 0x1f, 0xd0, 0x07, 0x00, 0x4e, 0x30, 0xe4, 0x8b, 0xc0, 0x82, 0x48, 0x39,
+ 0xeb, 0x6d, 0xbd, 0x4e, 0x9b, 0x31, 0xe7, 0x45, 0xea, 0x0b, 0x1b, 0x6d, 0xd0, 0x37, 0xa1, 0xcc,
+ 0xc8, 0x30, 0xf4, 0x6c, 0x46, 0xc4, 0x59, 0x58, 0x69, 0xaf, 0xa8, 0xf6, 0xe5, 0x03, 0x45, 0xc7,
+ 0xb1, 0x44, 0xc3, 0x85, 0xe5, 0x2d, 0x12, 0x12, 0xbf, 0x4b, 0x7c, 0x67, 0x2c, 0x80, 0x0c, 0x1f,
+ 0xb3, 0x9f, 0x64, 0x2e, 0xf1, 0x98, 0x45, 0x1c, 0x16, 0x1c, 0xf4, 0x6d, 0xa8, 0x76, 0x75, 0x23,
+ 0x97, 0xd0, 0x5a, 0x5e, 0x0c, 0x66, 0x85, 0xe7, 0x37, 0x5b, 0x06, 0x1d, 0xa7, 0xa4, 0x1a, 0x7f,
+ 0x95, 0x83, 0xa2, 0x38, 0x82, 0xd0, 0x10, 0xe6, 0x9d, 0xc0, 0x67, 0xe4, 0x33, 0xa6, 0x50, 0xcf,
+ 0x0c, 0xd0, 0x43, 0x68, 0xdc, 0x94, 0xda, 0xda, 0x0b, 0xdc, 0xa1, 0xd4, 0x07, 0xd6, 0x36, 0xd0,
+ 0x3b, 0x50, 0xe8, 0xda, 0xcc, 0x16, 0x4b, 0x54, 0x95, 0xf0, 0x84, 0x2f, 0x31, 0x16, 0xd4, 0xfb,
+ 0xe5, 0xbf, 0xfc, 0x9b, 0xfa, 0xb5, 0x1f, 0xfe, 0xdb, 0xed, 0x6b, 0x8d, 0x5f, 0xe4, 0xa1, 0x6a,
+ 0xaa, 0x43, 0xab, 0x90, 0x77, 0xbb, 0x6a, 0x1e, 0x40, 0xcd, 0x43, 0xfe, 0xd1, 0x16, 0xce, 0xbb,
+ 0x5d, 0x11, 0xdc, 0xe4, 0xc1, 0x9d, 0x4f, 0x67, 0x41, 0x19, 0x28, 0xfd, 0xab, 0xb0, 0xc0, 0x37,
+ 0xf3, 0x89, 0x04, 0x82, 0x22, 0xba, 0x55, 0xda, 0x37, 0x94, 0xf0, 0x02, 0x77, 0x52, 0x8d, 0x11,
+ 0x4d, 0x39, 0xbe, 0x08, 0xc2, 0xad, 0x0a, 0xe9, 0x45, 0x30, 0x5c, 0xa9, 0x05, 0xcb, 0xbc, 0xff,
+ 0x62, 0x90, 0x3e, 0x13, 0xc2, 0x72, 0xb9, 0xbf, 0xa2, 0x84, 0x97, 0xf9, 0x20, 0x37, 0x25, 0x5b,
+ 0xb4, 0xcb, 0xca, 0xf3, 0xd3, 0x9d, 0x8e, 0x8e, 0x3e, 0x21, 0x8e, 0x04, 0x39, 0xc6, 0xe9, 0x6e,
+ 0x49, 0x32, 0xd6, 0x7c, 0xd4, 0x81, 0x02, 0x4f, 0x85, 0x15, 0x4a, 0xf9, 0xc6, 0xf9, 0x60, 0xf3,
+ 0x81, 0x3b, 0x24, 0x46, 0xdf, 0x5d, 0xee, 0x40, 0x5c, 0x8b, 0x31, 0xe7, 0x7f, 0x9d, 0x87, 0x65,
+ 0x31, 0xe7, 0x89, 0x17, 0x9e, 0xc3, 0x01, 0x5b, 0xb0, 0x2c, 0xfc, 0x42, 0xce, 0xb5, 0x01, 0x4f,
+ 0xe2, 0xb1, 0x6f, 0xa7, 0xd9, 0x38, 0x2b, 0xcf, 0x4f, 0x33, 0x41, 0x8a, 0x41, 0x8a, 0x71, 0x9a,
+ 0x6d, 0x6b, 0x06, 0x4e, 0x64, 0xd0, 0x09, 0xcc, 0xf7, 0x44, 0x50, 0xa0, 0x0a, 0x65, 0xec, 0xcd,
+ 0xe8, 0xb4, 0xc9, 0x88, 0x65, 0xb0, 0x91, 0xde, 0x2b, 0x7f, 0x53, 0xac, 0x8d, 0x35, 0xfe, 0x71,
+ 0x0e, 0x6e, 0x4d, 0x95, 0x47, 0x47, 0x6a, 0x4d, 0xe4, 0x1e, 0xda, 0x9a, 0x21, 0x38, 0xbb, 0x43,
+ 0xa2, 0xfa, 0x50, 0x4e, 0xaf, 0x94, 0xb9, 0x55, 0xf3, 0x57, 0xb0, 0x55, 0x7b, 0x6a, 0xab, 0xca,
+ 0x44, 0x71, 0x86, 0x21, 0x25, 0x31, 0x3c, 0x71, 0xa0, 0x64, 0xd3, 0x23, 0x17, 0x8a, 0xe4, 0xb3,
+ 0x50, 0x2c, 0xe5, 0x8c, 0x86, 0xb6, 0x3f, 0x0b, 0x23, 0x65, 0x68, 0x51, 0x19, 0x2a, 0x72, 0x1a,
+ 0xc5, 0xd2, 0x02, 0x0f, 0x7b, 0x90, 0x08, 0x71, 0xe7, 0xe6, 0xf4, 0xac, 0x73, 0x73, 0x09, 0x2c,
+ 0x38, 0x3c, 0xd9, 0xef, 0xb9, 0xc4, 0xeb, 0xca, 0xb8, 0x3a, 0xd3, 0x8c, 0xab, 0xb3, 0x75, 0x87,
+ 0xab, 0x4b, 0x22, 0x94, 0xf8, 0xa4, 0x58, 0x59, 0x69, 0xbc, 0x07, 0x55, 0x33, 0x7f, 0x7b, 0xf5,
+ 0x99, 0xd7, 0xf8, 0x79, 0x01, 0x16, 0x8c, 0xa4, 0x06, 0xbd, 0x2b, 0x33, 0x3c, 0xd9, 0x60, 0x41,
+ 0x35, 0x48, 0xd2, 0xb3, 0xef, 0xc1, 0x92, 0xe3, 0x05, 0x3e, 0xd9, 0x72, 0x23, 0x81, 0xda, 0xc6,
+ 0x6a, 0xb3, 0xbe, 0xa5, 0x24, 0x97, 0x36, 0x53, 0x5c, 0x9c, 0x91, 0x46, 0x0e, 0x14, 0x9d, 0x88,
+ 0x74, 0xa9, 0x82, 0x86, 0xed, 0x99, 0x32, 0xb1, 0x4d, 0xae, 0x49, 0x1e, 0xbc, 0xe2, 0x27, 0x96,
+ 0xba, 0xd1, 0xef, 0x40, 0x95, 0xd2, 0x81, 0xc0, 0x96, 0x02, 0x86, 0x5e, 0x28, 0x93, 0x10, 0x47,
+ 0x9f, 0x65, 0x3d, 0x8c, 0x9b, 0xe3, 0x94, 0x32, 0x7e, 0x26, 0xf7, 0x34, 0x9c, 0xc9, 0x9c, 0xc9,
+ 0x31, 0x80, 0x89, 0x25, 0xf8, 0xd1, 0x72, 0x14, 0xd9, 0xbe, 0x33, 0x50, 0x51, 0x39, 0x5e, 0xb8,
+ 0xb6, 0xa0, 0x62, 0xc5, 0xe5, 0xd3, 0xce, 0xec, 0xbe, 0x2a, 0x2f, 0xc5, 0xd3, 0x7e, 0x60, 0xf7,
+ 0x31, 0xa7, 0x73, 0x76, 0x44, 0x7a, 0x0a, 0x3e, 0xc5, 0x6c, 0x4c, 0x7a, 0x98, 0xd3, 0xd1, 0x10,
+ 0x4a, 0x11, 0x19, 0x06, 0x8c, 0xd4, 0x2a, 0x62, 0xa8, 0x8f, 0x66, 0x9a, 0x56, 0x2c, 0x54, 0xc9,
+ 0x34, 0x5a, 0xd6, 0x1a, 0x24, 0x05, 0x2b, 0x23, 0xe8, 0x37, 0x00, 0xe4, 0x94, 0x88, 0x49, 0x00,
+ 0xd1, 0xa9, 0xb8, 0x82, 0x92, 0x60, 0x3a, 0x39, 0x89, 0x62, 0x42, 0x0c, 0xf9, 0xc6, 0xdf, 0xe5,
+ 0xa0, 0xac, 0x17, 0x0f, 0xed, 0x41, 0x79, 0x44, 0x49, 0x14, 0x9f, 0x11, 0xe7, 0x5e, 0x26, 0x91,
+ 0x21, 0x1f, 0xaa, 0xa6, 0x38, 0x56, 0xc2, 0x15, 0x86, 0x36, 0xa5, 0xcf, 0x83, 0xa8, 0x7b, 0xb1,
+ 0xc2, 0xab, 0x50, 0xb8, 0xaf, 0x9a, 0xe2, 0x58, 0x49, 0xe3, 0x43, 0x58, 0xce, 0xcc, 0xc9, 0x39,
+ 0x0e, 0xb5, 0x77, 0xa0, 0x30, 0x8a, 0x3c, 0x8d, 0xa6, 0x44, 0x20, 0x3e, 0xc4, 0x1d, 0x0b, 0x0b,
+ 0x6a, 0xe3, 0x3f, 0x4b, 0xb0, 0xf0, 0xf0, 0xe0, 0x60, 0x5f, 0x67, 0x63, 0xaf, 0xd8, 0x73, 0x06,
+ 0x76, 0xcf, 0x5f, 0x21, 0x76, 0x3f, 0x84, 0x39, 0xe6, 0xe9, 0x8d, 0x7a, 0xff, 0xc2, 0xb5, 0x8c,
+ 0x83, 0x8e, 0xa5, 0x5c, 0x48, 0xd4, 0x49, 0x0e, 0x3a, 0x16, 0xe6, 0xfa, 0xf8, 0x8e, 0x18, 0x12,
+ 0x36, 0x08, 0xba, 0xd9, 0x92, 0xf3, 0x13, 0x41, 0xc5, 0x8a, 0x9b, 0xc9, 0x98, 0x8a, 0x57, 0x9e,
+ 0x31, 0x7d, 0x1d, 0xe6, 0xf9, 0xa9, 0x19, 0x8c, 0x24, 0xa0, 0x9a, 0x4b, 0x66, 0xea, 0x40, 0x92,
+ 0xb1, 0xe6, 0xa3, 0x3e, 0x54, 0x8e, 0x6c, 0xea, 0x3a, 0xad, 0x11, 0x1b, 0x28, 0x54, 0x75, 0xf1,
+ 0xf9, 0x6a, 0x6b, 0x0d, 0xb2, 0x8a, 0x15, 0x7f, 0xe2, 0x44, 0x37, 0xfa, 0x7d, 0x98, 0x1f, 0x10,
+ 0xbb, 0xcb, 0x27, 0xa4, 0x2c, 0x26, 0x04, 0x5f, 0x7e, 0x42, 0x0c, 0x07, 0x6c, 0x3e, 0x94, 0x4a,
+ 0x65, 0xfa, 0x9a, 0x94, 0x85, 0x24, 0x15, 0x6b, 0x9b, 0xe8, 0x04, 0x16, 0x65, 0x9a, 0xaf, 0x38,
+ 0xb5, 0x8a, 0xe8, 0xc4, 0x6f, 0x5e, 0xbc, 0xce, 0x69, 0x68, 0x69, 0x5f, 0x3f, 0x3b, 0xad, 0x2f,
+ 0x9a, 0x14, 0x8a, 0xd3, 0x66, 0x56, 0xef, 0x43, 0xd5, 0xec, 0xe1, 0x85, 0x92, 0xc0, 0x3f, 0x9e,
+ 0x83, 0xeb, 0xbb, 0x1b, 0x96, 0xae, 0xa5, 0xed, 0x07, 0x9e, 0xeb, 0x8c, 0xd1, 0x1f, 0x42, 0xc9,
+ 0xb3, 0x8f, 0x88, 0x47, 0x6b, 0x39, 0x31, 0x84, 0x8f, 0x2f, 0x3f, 0x8f, 0x13, 0xca, 0x9b, 0x1d,
+ 0xa1, 0x59, 0x4e, 0x66, 0xec, 0xdd, 0x92, 0x88, 0x95, 0x59, 0xf4, 0x0c, 0xe6, 0x8f, 0x6c, 0xe7,
+ 0x38, 0xe8, 0xf5, 0x54, 0x94, 0xda, 0xb8, 0x84, 0xc3, 0x88, 0xf6, 0x12, 0x7d, 0xa9, 0x0f, 0xac,
+ 0xb5, 0x22, 0x0b, 0x6e, 0x91, 0x28, 0x0a, 0xa2, 0x3d, 0x5f, 0xb1, 0x94, 0xd7, 0x8a, 0xfd, 0x5c,
+ 0x6e, 0xbf, 0xab, 0xfa, 0x75, 0x6b, 0x7b, 0x9a, 0x10, 0x9e, 0xde, 0x76, 0xf5, 0xbb, 0xb0, 0x60,
+ 0x0c, 0xee, 0x42, 0xeb, 0xf0, 0x93, 0x12, 0x54, 0x77, 0xed, 0xde, 0xb1, 0x7d, 0xce, 0xa0, 0xf7,
+ 0x55, 0x28, 0xb2, 0x20, 0x74, 0x1d, 0x85, 0x2f, 0x62, 0x3c, 0x76, 0xc0, 0x89, 0x58, 0xf2, 0x38,
+ 0xf0, 0x0f, 0xed, 0x88, 0xb9, 0x4c, 0xa7, 0x63, 0xc5, 0x04, 0xf8, 0xef, 0x6b, 0x06, 0x4e, 0x64,
+ 0x32, 0x41, 0xa5, 0x70, 0xe5, 0x41, 0x65, 0x03, 0xaa, 0x11, 0xf9, 0x74, 0xe4, 0x8a, 0xaa, 0xe4,
+ 0x31, 0x15, 0x00, 0xa2, 0x98, 0xdc, 0x28, 0x62, 0x83, 0x87, 0x53, 0x92, 0x1c, 0x76, 0x38, 0xc1,
+ 0x30, 0x8c, 0x08, 0xa5, 0x22, 0x1e, 0x95, 0x13, 0xd8, 0xb1, 0xa9, 0xe8, 0x38, 0x96, 0xe0, 0x30,
+ 0xad, 0xe7, 0x8d, 0xe8, 0x60, 0x87, 0xeb, 0xe0, 0x69, 0x86, 0x08, 0x4b, 0xc5, 0x04, 0xa6, 0xed,
+ 0xa4, 0xb8, 0x38, 0x23, 0xad, 0x63, 0x7f, 0xf9, 0x35, 0xc7, 0x7e, 0xe3, 0x24, 0xab, 0x5c, 0xe1,
+ 0x49, 0xd6, 0x82, 0xe5, 0xd8, 0x05, 0x5c, 0xbf, 0xbf, 0x4b, 0xc6, 0x0a, 0xb4, 0xc4, 0x29, 0xe6,
+ 0x7e, 0x9a, 0x8d, 0xb3, 0xf2, 0xfc, 0x34, 0xd0, 0x69, 0xff, 0x42, 0x3a, 0xbd, 0xd6, 0x29, 0xbf,
+ 0xe6, 0xa3, 0xdf, 0x82, 0x02, 0xb5, 0xa9, 0x57, 0xab, 0x5e, 0xf6, 0x12, 0xa8, 0x65, 0x75, 0xd4,
+ 0xec, 0x09, 0xe0, 0xc0, 0xbf, 0xb1, 0x50, 0xd9, 0xd8, 0x03, 0xe8, 0x04, 0x7d, 0xbd, 0x83, 0x5a,
+ 0xb0, 0xec, 0xfa, 0x8c, 0x44, 0x27, 0xb6, 0x67, 0x11, 0x27, 0xf0, 0xbb, 0x54, 0xec, 0xa6, 0x42,
+ 0x32, 0xac, 0x47, 0x69, 0x36, 0xce, 0xca, 0x37, 0xfe, 0x76, 0x0e, 0x16, 0x9e, 0xb6, 0x0e, 0xac,
+ 0x73, 0x6e, 0x4a, 0xa3, 0xc8, 0x90, 0x7f, 0x45, 0x91, 0xc1, 0x58, 0xea, 0xb9, 0x37, 0x56, 0x6a,
+ 0xbf, 0xfa, 0x0d, 0xae, 0x36, 0x4e, 0xf1, 0xf5, 0x6e, 0x9c, 0xc6, 0x8f, 0x0b, 0xb0, 0xb2, 0x17,
+ 0x12, 0xff, 0xe3, 0x81, 0x4b, 0x8f, 0x8d, 0x2b, 0x9f, 0x41, 0x40, 0x59, 0x16, 0x86, 0x3e, 0x0c,
+ 0x28, 0xc3, 0x82, 0x63, 0x7a, 0x6d, 0xfe, 0x15, 0x5e, 0xbb, 0x0e, 0x15, 0x8e, 0x5c, 0x69, 0x68,
+ 0x3b, 0x13, 0x35, 0x94, 0xa7, 0x9a, 0x81, 0x13, 0x19, 0xf1, 0xc4, 0x61, 0xc4, 0x06, 0x07, 0xc1,
+ 0x31, 0xf1, 0x2f, 0x96, 0x61, 0xc9, 0x27, 0x0e, 0xba, 0x2d, 0x4e, 0xd4, 0xa0, 0xbb, 0x00, 0x76,
+ 0xf2, 0xdc, 0x42, 0x66, 0x57, 0xf1, 0x8c, 0xb7, 0x92, 0xc7, 0x16, 0x86, 0x94, 0xe9, 0x68, 0xa5,
+ 0x37, 0xe6, 0x68, 0xf3, 0x57, 0x7e, 0xa7, 0x83, 0xa1, 0x6a, 0x56, 0x04, 0xce, 0x51, 0xdd, 0xd6,
+ 0x59, 0x4b, 0xfe, 0x65, 0x59, 0x4b, 0xe3, 0x8f, 0x72, 0x50, 0xc1, 0x36, 0x23, 0x1d, 0x77, 0xe8,
+ 0x32, 0x74, 0x17, 0x0a, 0x23, 0xdf, 0xd5, 0xee, 0xa5, 0x6b, 0xf6, 0x85, 0x43, 0xdf, 0x65, 0x2f,
+ 0x4e, 0xeb, 0x4b, 0xb1, 0x20, 0xe1, 0x14, 0x2c, 0x64, 0x79, 0x48, 0x12, 0x67, 0x08, 0x65, 0x74,
+ 0x9f, 0x44, 0x9c, 0x21, 0xcc, 0x15, 0x93, 0x90, 0x84, 0xd3, 0x6c, 0x9c, 0x95, 0x6f, 0xfc, 0x24,
+ 0x0f, 0x25, 0x4b, 0xcc, 0x0e, 0xfa, 0x01, 0x94, 0x87, 0x84, 0xd9, 0xa2, 0x8a, 0x24, 0x93, 0xc3,
+ 0xf7, 0xce, 0x57, 0xac, 0xdc, 0x13, 0x31, 0xe8, 0x09, 0x61, 0x76, 0x32, 0x8f, 0x09, 0x0d, 0xc7,
+ 0x5a, 0x51, 0x4f, 0xdd, 0x05, 0xe5, 0x67, 0x2d, 0xbb, 0xc9, 0x1e, 0x5b, 0x21, 0x71, 0xa6, 0x5e,
+ 0xff, 0xf8, 0x50, 0xa2, 0xcc, 0x66, 0x23, 0x3a, 0xfb, 0xfd, 0xbc, 0xb2, 0x24, 0xb4, 0x19, 0x95,
+ 0x6a, 0xf1, 0x8d, 0x95, 0x95, 0xc6, 0xbf, 0xe4, 0x00, 0xa4, 0x60, 0xc7, 0xa5, 0x0c, 0xfd, 0xee,
+ 0xc4, 0x44, 0x36, 0xcf, 0x37, 0x91, 0xbc, 0xb5, 0x98, 0xc6, 0x18, 0x6c, 0x68, 0x8a, 0x31, 0x89,
+ 0x04, 0x8a, 0x2e, 0x23, 0x43, 0x5d, 0xe3, 0xfa, 0x60, 0xd6, 0xb1, 0x25, 0x60, 0xef, 0x11, 0x57,
+ 0x8b, 0xa5, 0xf6, 0xc6, 0x7f, 0x14, 0xf5, 0x98, 0xf8, 0xc4, 0xa2, 0x1f, 0xe5, 0x32, 0x37, 0x17,
+ 0x12, 0xc9, 0x3f, 0x7a, 0x6d, 0x95, 0xdc, 0x04, 0x96, 0xbd, 0xfc, 0x22, 0x04, 0x05, 0x50, 0x66,
+ 0x72, 0xeb, 0xea, 0xe1, 0xb7, 0x66, 0x0e, 0x02, 0xc6, 0x25, 0x8f, 0x52, 0x8d, 0x63, 0x23, 0xc8,
+ 0x33, 0xae, 0x84, 0x66, 0xae, 0xa1, 0xe9, 0x4b, 0x24, 0x59, 0xfc, 0x98, 0xbc, 0x52, 0x42, 0x3f,
+ 0xce, 0xc1, 0x4a, 0x37, 0x7d, 0xa7, 0xa4, 0x4f, 0xd5, 0x19, 0x26, 0x3a, 0x73, 0x4b, 0x15, 0xdf,
+ 0xb4, 0xad, 0x64, 0x18, 0x14, 0x4f, 0x18, 0x47, 0x8f, 0x01, 0xa9, 0xdc, 0x64, 0xc7, 0x76, 0x3d,
+ 0xd2, 0xc5, 0xc1, 0xc8, 0xef, 0x8a, 0xa3, 0xa2, 0x9c, 0xdc, 0x04, 0x6f, 0x4f, 0x48, 0xe0, 0x29,
+ 0xad, 0x38, 0x1a, 0x17, 0x5d, 0x6d, 0x8f, 0xa8, 0x38, 0x70, 0x4a, 0xe9, 0xf7, 0x7d, 0xdb, 0x06,
+ 0x0f, 0xa7, 0x24, 0xd1, 0x3d, 0x98, 0x77, 0xdc, 0xc8, 0x19, 0xb9, 0x4c, 0x95, 0xec, 0xde, 0x56,
+ 0x8d, 0xae, 0x1b, 0x57, 0x9a, 0x52, 0x00, 0x6b, 0x49, 0x74, 0x07, 0xca, 0x11, 0x09, 0x3d, 0xd7,
+ 0xb1, 0x25, 0xb2, 0x2e, 0xea, 0x67, 0x1e, 0x92, 0x86, 0x63, 0x6e, 0x23, 0x80, 0xaa, 0xb9, 0xcd,
+ 0xd1, 0xb3, 0x38, 0x7c, 0xc8, 0xdd, 0xfb, 0x9d, 0x8b, 0x83, 0xca, 0xff, 0x3b, 0x5e, 0xfc, 0x43,
+ 0x1e, 0xaa, 0x96, 0x67, 0x3b, 0x31, 0xb6, 0x48, 0x1f, 0x6f, 0xb9, 0x37, 0x80, 0xa3, 0x80, 0x8a,
+ 0xfe, 0x08, 0x78, 0x91, 0xbf, 0xf0, 0x3b, 0x02, 0x2b, 0x6e, 0x8c, 0x0d, 0x45, 0x1c, 0x10, 0x39,
+ 0x03, 0xdb, 0xf7, 0x89, 0xa7, 0x30, 0x4e, 0x7c, 0xc0, 0x6f, 0x4a, 0x32, 0xd6, 0x7c, 0x2e, 0x3a,
+ 0x24, 0x94, 0xda, 0x7d, 0x7d, 0x71, 0x17, 0x8b, 0x3e, 0x91, 0x64, 0xac, 0xf9, 0x8d, 0xff, 0x29,
+ 0x00, 0xb2, 0x98, 0xed, 0x77, 0xed, 0xa8, 0xbb, 0xbb, 0x11, 0x83, 0xe9, 0x97, 0xbe, 0x57, 0xcb,
+ 0xbd, 0x89, 0xf7, 0x6a, 0xc6, 0xc3, 0xc3, 0xfc, 0x95, 0x3c, 0x3c, 0x7c, 0x6a, 0x3e, 0x3c, 0x94,
+ 0xb3, 0xfd, 0xde, 0xb4, 0x87, 0x87, 0xbf, 0xb4, 0x3b, 0x3a, 0x22, 0x91, 0x4f, 0x18, 0xa1, 0xba,
+ 0xaf, 0xe7, 0x78, 0x7e, 0x78, 0xf5, 0xd0, 0xbe, 0x07, 0x8b, 0xa1, 0xcd, 0x9c, 0x81, 0xc5, 0x22,
+ 0x9b, 0x91, 0xfe, 0x58, 0xe1, 0xd3, 0x0f, 0x54, 0xb3, 0xc5, 0x7d, 0x93, 0xf9, 0xe2, 0xb4, 0xfe,
+ 0x2b, 0x2f, 0x7b, 0x8a, 0xcc, 0xc6, 0x21, 0xa1, 0x4d, 0x21, 0x2e, 0xee, 0x72, 0xd3, 0x6a, 0x39,
+ 0x08, 0xf6, 0xdc, 0x13, 0xb2, 0x97, 0x5c, 0xe6, 0x96, 0x93, 0xbe, 0x75, 0x62, 0x0e, 0x36, 0xa4,
+ 0x1a, 0xeb, 0x50, 0x95, 0x3b, 0x5a, 0xd5, 0xb7, 0xea, 0x50, 0xb4, 0x3d, 0x2f, 0x78, 0x2e, 0x76,
+ 0x6e, 0x51, 0x5e, 0x91, 0xb4, 0x38, 0x01, 0x4b, 0x7a, 0xe3, 0x4f, 0xca, 0x10, 0xc7, 0x7b, 0xe4,
+ 0x4c, 0xc0, 0x83, 0x8b, 0x3f, 0x5d, 0x7b, 0xa2, 0x14, 0xc8, 0x98, 0xa6, 0xbf, 0x0c, 0x94, 0xa0,
+ 0x9e, 0xf0, 0xb8, 0x0e, 0x69, 0x39, 0x4e, 0x30, 0x52, 0xb7, 0xb5, 0xf9, 0xc9, 0x27, 0x3c, 0x69,
+ 0x09, 0x3c, 0xa5, 0x15, 0x7a, 0x2c, 0x1e, 0x09, 0x32, 0x9b, 0xcf, 0xa9, 0x3a, 0x05, 0xdf, 0x7d,
+ 0xc9, 0x23, 0x41, 0x29, 0x14, 0xbf, 0x0c, 0x94, 0x9f, 0x38, 0x69, 0x8e, 0xb6, 0x61, 0xfe, 0x24,
+ 0xf0, 0x46, 0x43, 0xa2, 0x7d, 0x6a, 0x75, 0x9a, 0xa6, 0x8f, 0x84, 0x88, 0x91, 0x3f, 0xc9, 0x26,
+ 0x58, 0xb7, 0x45, 0x04, 0x96, 0x45, 0xd1, 0xd2, 0x65, 0x63, 0x75, 0x13, 0xaa, 0x92, 0xc0, 0xaf,
+ 0x4d, 0x53, 0xb7, 0x1f, 0x74, 0xad, 0xb4, 0xb4, 0x7a, 0xc1, 0x96, 0x26, 0xe2, 0xac, 0x4e, 0xf4,
+ 0xe7, 0x39, 0xa8, 0xfa, 0x41, 0x97, 0xe8, 0x68, 0xa7, 0x72, 0x9e, 0x83, 0xd9, 0x31, 0x40, 0xf3,
+ 0xa9, 0xa1, 0x56, 0x16, 0x2f, 0xe3, 0x93, 0xd0, 0x64, 0xe1, 0x94, 0x7d, 0x74, 0x08, 0x0b, 0x2c,
+ 0xf0, 0xd4, 0x1e, 0xd5, 0x89, 0xd0, 0xda, 0xb4, 0x31, 0x1f, 0xc4, 0x62, 0xc9, 0x9b, 0x89, 0x84,
+ 0x46, 0xb1, 0xa9, 0x07, 0xf9, 0xb0, 0xe2, 0x0e, 0xed, 0x3e, 0xd9, 0x1f, 0x79, 0x9e, 0x0c, 0xf1,
+ 0xba, 0xe4, 0x3d, 0xf5, 0x35, 0x28, 0x0f, 0x44, 0x9e, 0xda, 0x17, 0xa4, 0x47, 0x22, 0xe2, 0x3b,
+ 0x24, 0x81, 0x15, 0x8f, 0x32, 0x9a, 0xf0, 0x84, 0x6e, 0xf4, 0x00, 0xae, 0x87, 0x91, 0x1b, 0x88,
+ 0xa9, 0xf6, 0x6c, 0x2a, 0xf1, 0x40, 0x25, 0x7d, 0xb4, 0xef, 0x67, 0x05, 0xf0, 0x64, 0x1b, 0x7e,
+ 0xc8, 0x6b, 0xa2, 0x28, 0x32, 0xa9, 0x43, 0x5e, 0xb7, 0xc5, 0x31, 0x17, 0xed, 0x40, 0xd9, 0xee,
+ 0xf5, 0x5c, 0x9f, 0x4b, 0x2e, 0x08, 0x57, 0x79, 0x67, 0xda, 0xd0, 0x5a, 0x4a, 0x46, 0xea, 0xd1,
+ 0x5f, 0x38, 0x6e, 0xbb, 0xfa, 0x7d, 0xb8, 0x3e, 0xb1, 0x74, 0x17, 0x2a, 0xcd, 0x5a, 0x00, 0xc9,
+ 0xab, 0x01, 0xf4, 0x55, 0x28, 0x52, 0x66, 0x47, 0x3a, 0xef, 0x8b, 0xb1, 0xb8, 0xc5, 0x89, 0x58,
+ 0xf2, 0x78, 0x2e, 0x49, 0x59, 0x10, 0x66, 0x73, 0x49, 0x8b, 0x05, 0x21, 0x16, 0x9c, 0xc6, 0x17,
+ 0x05, 0x98, 0xd7, 0x07, 0x21, 0x35, 0x30, 0x6b, 0x6e, 0xd6, 0x0b, 0x4a, 0xa5, 0xf4, 0x95, 0xd0,
+ 0x35, 0x7d, 0x5c, 0xe4, 0xaf, 0xfc, 0xb8, 0x38, 0x86, 0x52, 0x28, 0x82, 0xb1, 0x0a, 0x50, 0x0f,
+ 0x66, 0xb7, 0x2d, 0xd4, 0xc9, 0xb3, 0x56, 0xfe, 0xc6, 0xca, 0x04, 0xfa, 0x14, 0x16, 0x23, 0xc2,
+ 0xa2, 0x71, 0x7c, 0x36, 0x15, 0x66, 0xbc, 0x54, 0x10, 0x97, 0x32, 0xd8, 0x54, 0x89, 0xd3, 0x16,
+ 0x50, 0x08, 0x95, 0x48, 0x97, 0x00, 0x54, 0xa8, 0xdb, 0xbc, 0xfc, 0x10, 0xe3, 0x6a, 0x82, 0x8c,
+ 0xd4, 0xf1, 0x27, 0x4e, 0x8c, 0x34, 0x7e, 0x9e, 0x83, 0x95, 0xec, 0x32, 0xa0, 0x63, 0x98, 0xa3,
+ 0x91, 0xa3, 0xdc, 0x6a, 0xff, 0xf5, 0xad, 0xaf, 0x04, 0x33, 0xb2, 0x0c, 0x67, 0x45, 0x0e, 0xe6,
+ 0x56, 0xb8, 0xdb, 0x77, 0x09, 0x65, 0x59, 0xb7, 0xdf, 0x22, 0x94, 0x61, 0xc1, 0x41, 0x9d, 0x49,
+ 0xd0, 0xd3, 0x9c, 0x06, 0x7a, 0xde, 0xce, 0xda, 0x9b, 0x06, 0x79, 0x1a, 0xff, 0x9a, 0x87, 0xb7,
+ 0xa6, 0x77, 0x0c, 0x7d, 0x0f, 0x96, 0x92, 0xdc, 0xc8, 0xf8, 0x77, 0x52, 0x5c, 0xe1, 0xdf, 0x4a,
+ 0x71, 0x71, 0x46, 0x9a, 0xa3, 0x0c, 0xf5, 0x50, 0x47, 0xff, 0x45, 0xc9, 0x28, 0xb5, 0x6d, 0xc6,
+ 0x1c, 0x6c, 0x48, 0xa1, 0x16, 0x2c, 0xab, 0xaf, 0x03, 0x33, 0x05, 0x35, 0xea, 0xe8, 0x9b, 0x69,
+ 0x36, 0xce, 0xca, 0x73, 0x54, 0xcd, 0xd1, 0x80, 0x7e, 0xdf, 0x6d, 0xa0, 0xea, 0x2d, 0x49, 0xc6,
+ 0x9a, 0xcf, 0xb3, 0x33, 0xfe, 0xf3, 0x20, 0xfd, 0x00, 0x32, 0x49, 0xca, 0x0d, 0x1e, 0x4e, 0x49,
+ 0x26, 0x2f, 0x33, 0x65, 0x42, 0x37, 0xf1, 0x32, 0xb3, 0xf1, 0xb3, 0x1c, 0x2c, 0xa6, 0x36, 0x15,
+ 0xea, 0xc1, 0xdc, 0xf1, 0x86, 0x4e, 0xaf, 0x76, 0x5f, 0xe3, 0x6d, 0xa0, 0xf4, 0xa0, 0xdd, 0x0d,
+ 0x8a, 0xb9, 0x01, 0xf4, 0x49, 0x9c, 0xc9, 0xcd, 0xfc, 0x04, 0xcb, 0x04, 0x7c, 0x0a, 0x80, 0xa7,
+ 0x93, 0xba, 0xed, 0x78, 0x90, 0xd6, 0x73, 0x97, 0x39, 0x03, 0xf4, 0x36, 0xcc, 0xd9, 0xfe, 0x58,
+ 0x60, 0xc2, 0x8a, 0xec, 0x57, 0xcb, 0x1f, 0x63, 0x4e, 0x13, 0x2c, 0xcf, 0x53, 0xef, 0x15, 0x24,
+ 0xcb, 0xf3, 0x30, 0xa7, 0x35, 0xfe, 0x69, 0x01, 0x96, 0x33, 0x41, 0xf7, 0x1c, 0x2f, 0x20, 0xa4,
+ 0x7f, 0x75, 0x5d, 0x09, 0x0b, 0x26, 0xfd, 0x4b, 0x71, 0xb0, 0x21, 0x85, 0xfa, 0x72, 0x11, 0x64,
+ 0xbc, 0xec, 0xcc, 0x34, 0x33, 0x99, 0x5c, 0x2c, 0xb3, 0x0a, 0x3f, 0xca, 0x41, 0xd5, 0x36, 0xfe,
+ 0xee, 0xa4, 0xc2, 0xe5, 0x93, 0x59, 0x32, 0xa2, 0x89, 0x7f, 0x7a, 0xc9, 0x97, 0x44, 0x26, 0x03,
+ 0xa7, 0x8c, 0x22, 0x07, 0x0a, 0x03, 0xc6, 0xf4, 0xbf, 0x5c, 0xb6, 0x5f, 0xcb, 0x55, 0xbe, 0xbc,
+ 0x32, 0xe2, 0x04, 0x2c, 0x94, 0xa3, 0xe7, 0x50, 0xb1, 0x9f, 0x53, 0xf9, 0xbf, 0x46, 0xf5, 0xf7,
+ 0x97, 0x59, 0x12, 0xbf, 0xcc, 0x5f, 0x24, 0x55, 0x2d, 0x5f, 0x53, 0x71, 0x62, 0x0b, 0x45, 0x50,
+ 0x72, 0xc4, 0x03, 0x79, 0xf5, 0x22, 0xe2, 0xc1, 0x6b, 0x7a, 0x68, 0x2f, 0x8f, 0xa6, 0x14, 0x09,
+ 0x2b, 0x4b, 0xa8, 0x0f, 0xc5, 0x63, 0xbb, 0x77, 0x6c, 0xab, 0x8b, 0xcb, 0x19, 0x36, 0x97, 0x79,
+ 0x55, 0x2d, 0x03, 0x88, 0xa0, 0x60, 0xa9, 0x9f, 0x2f, 0x9d, 0x6f, 0x33, 0xaa, 0x9e, 0x5b, 0xcd,
+ 0xb0, 0x74, 0xc6, 0xe5, 0x9b, 0x5c, 0x3a, 0x4e, 0xc0, 0x42, 0x39, 0x1f, 0x8d, 0x28, 0x5d, 0x08,
+ 0x1c, 0x39, 0x5b, 0xa8, 0x30, 0x4a, 0x3b, 0x72, 0x34, 0x82, 0x82, 0xa5, 0x7e, 0xee, 0x23, 0x81,
+ 0xbe, 0x5c, 0x52, 0x50, 0x74, 0x06, 0x1f, 0xc9, 0xde, 0x53, 0x49, 0x1f, 0x89, 0xa9, 0x38, 0xb1,
+ 0x85, 0x9e, 0xc1, 0x9c, 0x17, 0xf4, 0x6b, 0x8b, 0xb3, 0x56, 0xdf, 0x93, 0x4b, 0x51, 0xb9, 0xd1,
+ 0x3b, 0x41, 0x1f, 0x73, 0xcd, 0x68, 0x04, 0x25, 0x2a, 0x62, 0x9f, 0xba, 0x8d, 0x9d, 0x1d, 0x84,
+ 0xc9, 0x50, 0xda, 0xbe, 0xa9, 0xca, 0x95, 0xfa, 0xa9, 0x9b, 0xa0, 0x62, 0x65, 0x0c, 0xfd, 0x69,
+ 0x0e, 0x96, 0xec, 0xd4, 0xdf, 0xb4, 0x6a, 0x4b, 0xb3, 0xbe, 0x33, 0x9e, 0xfa, 0xb7, 0x2f, 0xf9,
+ 0x4f, 0xd4, 0x34, 0x0b, 0x67, 0x4c, 0x37, 0x1c, 0x58, 0x30, 0xfe, 0x6f, 0x77, 0x8e, 0x9b, 0xa2,
+ 0xbb, 0x00, 0x27, 0x24, 0x72, 0x7b, 0xe3, 0x4d, 0x12, 0x31, 0xf5, 0x87, 0x9f, 0x38, 0x76, 0x7f,
+ 0x14, 0x73, 0xb0, 0x21, 0xd5, 0x6e, 0x7e, 0xfe, 0xe5, 0xda, 0xb5, 0x2f, 0xbe, 0x5c, 0xbb, 0xf6,
+ 0xd3, 0x2f, 0xd7, 0xae, 0xfd, 0xf0, 0x6c, 0x2d, 0xf7, 0xf9, 0xd9, 0x5a, 0xee, 0x8b, 0xb3, 0xb5,
+ 0xdc, 0x4f, 0xcf, 0xd6, 0x72, 0xff, 0x7e, 0xb6, 0x96, 0xfb, 0x8b, 0x9f, 0xad, 0x5d, 0xfb, 0xed,
+ 0xb2, 0x1e, 0xce, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x6c, 0x67, 0xd5, 0x25, 0x28, 0x3f, 0x00,
+ 0x00,
}
func (m *AWSLambdaTrigger) Marshal() (dAtA []byte, err error) {
@@ -2983,6 +3018,37 @@ func (m *PayloadField) MarshalToSizedBuffer(dAtA []byte) (int, error) {
return len(dAtA) - i, nil
}
+func (m *RateLimit) 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 *RateLimit) MarshalTo(dAtA []byte) (int, error) {
+ size := m.Size()
+ return m.MarshalToSizedBuffer(dAtA[:size])
+}
+
+func (m *RateLimit) MarshalToSizedBuffer(dAtA []byte) (int, error) {
+ i := len(dAtA)
+ _ = i
+ var l int
+ _ = l
+ i = encodeVarintGenerated(dAtA, i, uint64(m.RequestsPerUnit))
+ i--
+ dAtA[i] = 0x10
+ i -= len(m.Unit)
+ copy(dAtA[i:], m.Unit)
+ i = encodeVarintGenerated(dAtA, i, uint64(len(m.Unit)))
+ i--
+ dAtA[i] = 0xa
+ return len(dAtA) - i, nil
+}
+
func (m *Sensor) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
@@ -3587,6 +3653,18 @@ func (m *Trigger) MarshalToSizedBuffer(dAtA []byte) (int, error) {
_ = i
var l int
_ = l
+ if m.RateLimit != nil {
+ {
+ size, err := m.RateLimit.MarshalToSizedBuffer(dAtA[:i])
+ if err != nil {
+ return 0, err
+ }
+ i -= size
+ i = encodeVarintGenerated(dAtA, i, uint64(size))
+ }
+ i--
+ dAtA[i] = 0x2a
+ }
if m.RetryStrategy != nil {
{
size, err := m.RetryStrategy.MarshalToSizedBuffer(dAtA[:i])
@@ -4643,6 +4721,18 @@ func (m *PayloadField) Size() (n int) {
return n
}
+func (m *RateLimit) Size() (n int) {
+ if m == nil {
+ return 0
+ }
+ var l int
+ _ = l
+ l = len(m.Unit)
+ n += 1 + l + sovGenerated(uint64(l))
+ n += 1 + sovGenerated(uint64(m.RequestsPerUnit))
+ return n
+}
+
func (m *Sensor) Size() (n int) {
if m == nil {
return 0
@@ -4883,6 +4973,10 @@ func (m *Trigger) Size() (n int) {
l = m.RetryStrategy.Size()
n += 1 + l + sovGenerated(uint64(l))
}
+ if m.RateLimit != nil {
+ l = m.RateLimit.Size()
+ n += 1 + l + sovGenerated(uint64(l))
+ }
return n
}
@@ -5460,6 +5554,17 @@ func (this *PayloadField) String() string {
}, "")
return s
}
+func (this *RateLimit) String() string {
+ if this == nil {
+ return "nil"
+ }
+ s := strings.Join([]string{`&RateLimit{`,
+ `Unit:` + fmt.Sprintf("%v", this.Unit) + `,`,
+ `RequestsPerUnit:` + fmt.Sprintf("%v", this.RequestsPerUnit) + `,`,
+ `}`,
+ }, "")
+ return s
+}
func (this *Sensor) String() string {
if this == nil {
return "nil"
@@ -5648,6 +5753,7 @@ func (this *Trigger) String() string {
`Parameters:` + repeatedStringForParameters + `,`,
`Policy:` + strings.Replace(this.Policy.String(), "TriggerPolicy", "TriggerPolicy", 1) + `,`,
`RetryStrategy:` + strings.Replace(fmt.Sprintf("%v", this.RetryStrategy), "Backoff", "common.Backoff", 1) + `,`,
+ `RateLimit:` + strings.Replace(this.RateLimit.String(), "RateLimit", "RateLimit", 1) + `,`,
`}`,
}, "")
return s
@@ -10817,6 +10923,107 @@ func (m *PayloadField) Unmarshal(dAtA []byte) error {
}
return nil
}
+func (m *RateLimit) 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: RateLimit: wiretype end group for non-group")
+ }
+ if fieldNum <= 0 {
+ return fmt.Errorf("proto: RateLimit: illegal tag %d (wire type %d)", fieldNum, wire)
+ }
+ switch fieldNum {
+ case 1:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Unit", wireType)
+ }
+ var stringLen uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLen |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLen := int(stringLen)
+ if intStringLen < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ postIndex := iNdEx + intStringLen
+ if postIndex < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ m.Unit = RateLimiteUnit(dAtA[iNdEx:postIndex])
+ iNdEx = postIndex
+ case 2:
+ if wireType != 0 {
+ return fmt.Errorf("proto: wrong wireType = %d for field RequestsPerUnit", wireType)
+ }
+ m.RequestsPerUnit = 0
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ m.RequestsPerUnit |= int32(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ default:
+ iNdEx = preIndex
+ skippy, err := skipGenerated(dAtA[iNdEx:])
+ if err != nil {
+ return err
+ }
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ if (iNdEx + skippy) > l {
+ return io.ErrUnexpectedEOF
+ }
+ iNdEx += skippy
+ }
+ }
+
+ if iNdEx > l {
+ return io.ErrUnexpectedEOF
+ }
+ return nil
+}
func (m *Sensor) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
@@ -12797,6 +13004,42 @@ func (m *Trigger) Unmarshal(dAtA []byte) error {
return err
}
iNdEx = postIndex
+ case 5:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field RateLimit", 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.RateLimit == nil {
+ m.RateLimit = &RateLimit{}
+ }
+ if err := m.RateLimit.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ return err
+ }
+ iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipGenerated(dAtA[iNdEx:])
diff --git a/pkg/apis/sensor/v1alpha1/generated.proto b/pkg/apis/sensor/v1alpha1/generated.proto
index e4295dfa40..772a2822c6 100644
--- a/pkg/apis/sensor/v1alpha1/generated.proto
+++ b/pkg/apis/sensor/v1alpha1/generated.proto
@@ -507,6 +507,13 @@ message PayloadField {
optional string name = 2;
}
+message RateLimit {
+ // Defaults to Second
+ optional string unit = 1;
+
+ optional int32 requestsPerUnit = 2;
+}
+
// Sensor is the definition of a sensor resource
// +genclient
// +genclient:noStatus
@@ -727,6 +734,10 @@ message Trigger {
// Retry strategy, defaults to no retry
// +optional
optional github.com.argoproj.argo_events.pkg.apis.common.Backoff retryStrategy = 4;
+
+ // Rate limit, default unit is Second
+ // +optional
+ optional RateLimit rateLimit = 5;
}
// TriggerParameter indicates a passed parameter to a service template
diff --git a/pkg/apis/sensor/v1alpha1/openapi_generated.go b/pkg/apis/sensor/v1alpha1/openapi_generated.go
index dc8eea5833..e382f030cd 100644
--- a/pkg/apis/sensor/v1alpha1/openapi_generated.go
+++ b/pkg/apis/sensor/v1alpha1/openapi_generated.go
@@ -52,6 +52,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA
"github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.NATSTrigger": schema_pkg_apis_sensor_v1alpha1_NATSTrigger(ref),
"github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.OpenWhiskTrigger": schema_pkg_apis_sensor_v1alpha1_OpenWhiskTrigger(ref),
"github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.PayloadField": schema_pkg_apis_sensor_v1alpha1_PayloadField(ref),
+ "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.RateLimit": schema_pkg_apis_sensor_v1alpha1_RateLimit(ref),
"github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.Sensor": schema_pkg_apis_sensor_v1alpha1_Sensor(ref),
"github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.SensorList": schema_pkg_apis_sensor_v1alpha1_SensorList(ref),
"github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.SensorSpec": schema_pkg_apis_sensor_v1alpha1_SensorSpec(ref),
@@ -1399,6 +1400,31 @@ func schema_pkg_apis_sensor_v1alpha1_PayloadField(ref common.ReferenceCallback)
}
}
+func schema_pkg_apis_sensor_v1alpha1_RateLimit(ref common.ReferenceCallback) common.OpenAPIDefinition {
+ return common.OpenAPIDefinition{
+ Schema: spec.Schema{
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"object"},
+ Properties: map[string]spec.Schema{
+ "unit": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Defaults to Second",
+ Type: []string{"string"},
+ Format: "",
+ },
+ },
+ "requestsPerUnit": {
+ SchemaProps: spec.SchemaProps{
+ Type: []string{"integer"},
+ Format: "int32",
+ },
+ },
+ },
+ },
+ },
+ }
+}
+
func schema_pkg_apis_sensor_v1alpha1_Sensor(ref common.ReferenceCallback) common.OpenAPIDefinition {
return common.OpenAPIDefinition{
Schema: spec.Schema{
@@ -1977,11 +2003,17 @@ func schema_pkg_apis_sensor_v1alpha1_Trigger(ref common.ReferenceCallback) commo
Ref: ref("github.com/argoproj/argo-events/pkg/apis/common.Backoff"),
},
},
+ "rateLimit": {
+ SchemaProps: spec.SchemaProps{
+ Description: "Rate limit, default unit is Second",
+ Ref: ref("github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.RateLimit"),
+ },
+ },
},
},
},
Dependencies: []string{
- "github.com/argoproj/argo-events/pkg/apis/common.Backoff", "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.TriggerParameter", "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.TriggerPolicy", "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.TriggerTemplate"},
+ "github.com/argoproj/argo-events/pkg/apis/common.Backoff", "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.RateLimit", "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.TriggerParameter", "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.TriggerPolicy", "github.com/argoproj/argo-events/pkg/apis/sensor/v1alpha1.TriggerTemplate"},
}
}
diff --git a/pkg/apis/sensor/v1alpha1/types.go b/pkg/apis/sensor/v1alpha1/types.go
index 25eed57846..b852bcc000 100644
--- a/pkg/apis/sensor/v1alpha1/types.go
+++ b/pkg/apis/sensor/v1alpha1/types.go
@@ -299,6 +299,23 @@ type Trigger struct {
// Retry strategy, defaults to no retry
// +optional
RetryStrategy *apicommon.Backoff `json:"retryStrategy,omitempty" protobuf:"bytes,4,opt,name=retryStrategy"`
+ // Rate limit, default unit is Second
+ // +optional
+ RateLimit *RateLimit `json:"rateLimit,omitempty" protobuf:"bytes,5,opt,name=rateLimit"`
+}
+
+type RateLimiteUnit string
+
+const (
+ Second RateLimiteUnit = "Second"
+ Minute RateLimiteUnit = "Minute"
+ Hour RateLimiteUnit = "Hour"
+)
+
+type RateLimit struct {
+ // Defaults to Second
+ Unit RateLimiteUnit `json:"unit,omitempty" protobuf:"bytes,1,opt,name=unit"`
+ RequestsPerUnit int32 `json:"requestsPerUnit,omitempty" protobuf:"bytes,2,opt,name=requestsPerUnit"`
}
// TriggerTemplate is the template that describes trigger specification.
diff --git a/pkg/apis/sensor/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/sensor/v1alpha1/zz_generated.deepcopy.go
index bdb0563d55..4aa1b09d3c 100644
--- a/pkg/apis/sensor/v1alpha1/zz_generated.deepcopy.go
+++ b/pkg/apis/sensor/v1alpha1/zz_generated.deepcopy.go
@@ -722,6 +722,22 @@ func (in *PayloadField) DeepCopy() *PayloadField {
return out
}
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
+func (in *RateLimit) DeepCopyInto(out *RateLimit) {
+ *out = *in
+ return
+}
+
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RateLimit.
+func (in *RateLimit) DeepCopy() *RateLimit {
+ if in == nil {
+ return nil
+ }
+ out := new(RateLimit)
+ in.DeepCopyInto(out)
+ return out
+}
+
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Sensor) DeepCopyInto(out *Sensor) {
*out = *in
@@ -1033,6 +1049,11 @@ func (in *Trigger) DeepCopyInto(out *Trigger) {
*out = new(common.Backoff)
(*in).DeepCopyInto(*out)
}
+ if in.RateLimit != nil {
+ in, out := &in.RateLimit, &out.RateLimit
+ *out = new(RateLimit)
+ **out = **in
+ }
return
}
diff --git a/sensors/listener.go b/sensors/listener.go
index 11aadb16c8..25bd06d897 100644
--- a/sensors/listener.go
+++ b/sensors/listener.go
@@ -29,6 +29,7 @@ import (
"github.com/antonmedv/expr"
cloudevents "github.com/cloudevents/sdk-go/v2"
"github.com/pkg/errors"
+ "go.uber.org/ratelimit"
"go.uber.org/zap"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
@@ -43,6 +44,8 @@ import (
sensortriggers "github.com/argoproj/argo-events/sensors/triggers"
)
+var rateLimiters = make(map[string]ratelimit.Limiter)
+
func subscribeOnce(subLock *uint32, subscribe func()) {
// acquire subLock if not already held
if !atomic.CompareAndSwapUint32(subLock, 0, 1) {
@@ -84,6 +87,21 @@ func (sensorCtx *SensorContext) Start(ctx context.Context) error {
return nil
}
+func initRateLimiter(trigger v1alpha1.Trigger) {
+ duration := time.Second
+ if trigger.RateLimit != nil {
+ switch trigger.RateLimit.Unit {
+ case v1alpha1.Minute:
+ duration = time.Minute
+ case v1alpha1.Hour:
+ duration = time.Hour
+ }
+ rateLimiters[trigger.Template.Name] = ratelimit.New(int(trigger.RateLimit.RequestsPerUnit), ratelimit.Per(duration))
+ } else {
+ rateLimiters[trigger.Template.Name] = ratelimit.NewUnlimited()
+ }
+}
+
// listenEvents watches and handles events received from the gateway.
func (sensorCtx *SensorContext) listenEvents(ctx context.Context) error {
logger := logging.FromContext(ctx)
@@ -102,6 +120,9 @@ func (sensorCtx *SensorContext) listenEvents(ctx context.Context) error {
}
triggers = append(triggers, trigger)
triggerMapping[depExpr] = triggers
+
+ // Init rate limiter for the trigger
+ initRateLimiter(trigger)
}
depMapping := make(map[string]v1alpha1.EventDependency)
@@ -256,7 +277,6 @@ func (sensorCtx *SensorContext) listenEvents(ctx context.Context) error {
}
func (sensorCtx *SensorContext) triggerActions(ctx context.Context, sensor *v1alpha1.Sensor, events map[string]cloudevents.Event, triggers []v1alpha1.Trigger) error {
- log := logging.FromContext(ctx)
eventsMapping := make(map[string]*v1alpha1.Event)
depNames := make([]string, 0, len(events))
eventIDs := make([]string, 0, len(events))
@@ -266,25 +286,32 @@ func (sensorCtx *SensorContext) triggerActions(ctx context.Context, sensor *v1al
eventIDs = append(eventIDs, v.ID())
}
for _, trigger := range triggers {
- if err := sensorCtx.triggerOne(ctx, sensor, trigger, eventsMapping, depNames, eventIDs, log); err != nil {
- // Log the error, and let it continue
- log.Errorw("failed to execute a trigger", zap.Error(err), zap.String(logging.LabelTriggerName, trigger.Template.Name),
- zap.Any("triggeredBy", depNames), zap.Any("triggeredByEvents", eventIDs))
- sensorCtx.metrics.ActionFailed(sensor.Name, trigger.Template.Name)
- } else {
- sensorCtx.metrics.ActionTriggered(sensor.Name, trigger.Template.Name)
- }
+ go sensorCtx.triggerWithRateLimit(ctx, sensor, trigger, eventsMapping, depNames, eventIDs)
}
return nil
}
+func (sensorCtx *SensorContext) triggerWithRateLimit(ctx context.Context, sensor *v1alpha1.Sensor, trigger v1alpha1.Trigger, eventsMapping map[string]*v1alpha1.Event, depNames, eventIDs []string) {
+ if rl, ok := rateLimiters[trigger.Template.Name]; ok {
+ rl.Take()
+ }
+
+ log := logging.FromContext(ctx)
+ if err := sensorCtx.triggerOne(ctx, sensor, trigger, eventsMapping, depNames, eventIDs, log); err != nil {
+ // Log the error, and let it continue
+ log.Errorw("failed to execute a trigger", zap.Error(err), zap.String(logging.LabelTriggerName, trigger.Template.Name),
+ zap.Any("triggeredBy", depNames), zap.Any("triggeredByEvents", eventIDs))
+ sensorCtx.metrics.ActionFailed(sensor.Name, trigger.Template.Name)
+ } else {
+ sensorCtx.metrics.ActionTriggered(sensor.Name, trigger.Template.Name)
+ }
+}
+
func (sensorCtx *SensorContext) triggerOne(ctx context.Context, sensor *v1alpha1.Sensor, trigger v1alpha1.Trigger, eventsMapping map[string]*v1alpha1.Event, depNames, eventIDs []string, log *zap.SugaredLogger) error {
defer func(start time.Time) {
sensorCtx.metrics.ActionDuration(sensor.Name, trigger.Template.Name, float64(time.Since(start)/time.Millisecond))
}(time.Now())
- defer sensorCtx.metrics.ActionDuration(sensor.Name, trigger.Template.Name, float64(time.Since(time.Now())/time.Millisecond))
-
if err := sensortriggers.ApplyTemplateParameters(eventsMapping, &trigger); err != nil {
log.Errorf("failed to apply template parameters, %v", err)
return err