diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index fa6d95cb91aa..6ac071811864 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -351,6 +351,10 @@ "description": "Name is the name of the target", "type": "string" }, + "onExit": { + "description": "OnExit is a template reference which is invoked at the end of the template, irrespective of the success, failure, or error of the primary template.", + "type": "string" + }, "template": { "description": "Name of template to execute", "type": "string" @@ -1330,6 +1334,7 @@ "$ref": "#/definitions/io.argoproj.workflow.v1alpha1.ScriptTemplate" }, "securityContext": { + "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.", "$ref": "#/definitions/io.k8s.api.core.v1.PodSecurityContext" }, "serviceAccountName": { @@ -1848,6 +1853,10 @@ "description": "Name of the step", "type": "string" }, + "onExit": { + "description": "OnExit is a template reference which is invoked at the end of the template, irrespective of the success, failure, or error of the primary template.", + "type": "string" + }, "template": { "description": "Template is the name of the template to execute as the step", "type": "string" diff --git a/examples/template-on-exit.yaml b/examples/template-on-exit.yaml new file mode 100644 index 000000000000..f6191774ed8a --- /dev/null +++ b/examples/template-on-exit.yaml @@ -0,0 +1,40 @@ +# Example showing a Step with an onExit template. The onExit template ("exitContainer") +# will run after the parent ("whalesay"), regardless of if it fails or succeeds. +# This is also similarly possible with DAG Tasks +# +# STEP PODNAME DURATION MESSAGE +# ✔ container-on-exit-m6wq5 (step-template) +# ├---✔ stepA (whalesay) container-on-exit-m6wq5-3072376347 4s +# ├-✔ stepA.onExit (exitContainer) container-on-exit-m6wq5-2711812994 4s +# ├---✔ stepB (whalesay) container-on-exit-m6wq5-2803967195 5s +# └-✔ stepB.onExit (exitContainer) container-on-exit-m6wq5-22494146 4s +# +# Template onExit containers work for all templates: DAG, Steps, Container, Script, Suspend, and Resource. + +apiVersion: argoproj.io/v1alpha1 +kind: Workflow +metadata: + generateName: container-on-exit- +spec: + entrypoint: step-template + templates: + - name: step-template + steps: + - - name: stepA + onExit: exitContainer + template: whalesay + - - name: stepB + onExit: exitContainer + template: whalesay + + - name: whalesay + container: + image: docker/whalesay + command: [cowsay] + args: ["hello world"] + + - name: exitContainer + container: + image: docker/whalesay + command: [cowsay] + args: ["goodbye world"] diff --git a/pkg/apis/workflow/v1alpha1/generated.pb.go b/pkg/apis/workflow/v1alpha1/generated.pb.go index 4ecc60801b93..21bdbd3b3434 100644 --- a/pkg/apis/workflow/v1alpha1/generated.pb.go +++ b/pkg/apis/workflow/v1alpha1/generated.pb.go @@ -1585,329 +1585,329 @@ func init() { } var fileDescriptor_c23edafa7e7ea072 = []byte{ - // 5146 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7c, 0x4d, 0x6c, 0x1c, 0x47, - 0x76, 0xbf, 0x86, 0xe4, 0x0c, 0x67, 0xde, 0x90, 0x22, 0x55, 0xa2, 0xa4, 0x31, 0x2d, 0x73, 0xb4, - 0xed, 0xbf, 0xfd, 0xd7, 0x26, 0xf6, 0x70, 0x2d, 0xed, 0x26, 0x5e, 0x6f, 0x6c, 0x2f, 0x87, 0x14, - 0x25, 0x4a, 0x22, 0xc5, 0xbc, 0xa1, 0xa4, 0x6c, 0x6c, 0xec, 0xa6, 0xd9, 0x5d, 0x33, 0xd3, 0xe2, - 0x4c, 0x77, 0xbb, 0xab, 0x47, 0x34, 0xe1, 0x00, 0x71, 0x82, 0x04, 0x49, 0x10, 0x2c, 0x90, 0x5c, - 0x36, 0x8b, 0xec, 0x25, 0xc8, 0x21, 0xb9, 0xe4, 0x12, 0x20, 0xa7, 0x1c, 0xf6, 0x10, 0xe4, 0x60, - 0xec, 0x25, 0x46, 0x2e, 0xf1, 0x21, 0x20, 0xd6, 0x0c, 0x10, 0x24, 0x48, 0x80, 0x20, 0xb9, 0x04, - 0xd1, 0x29, 0xa8, 0x8f, 0xae, 0xfe, 0x98, 0xa6, 0x2c, 0xcd, 0x50, 0x0a, 0x82, 0xdd, 0x93, 0x38, - 0xef, 0xbd, 0xfa, 0xbd, 0xea, 0xaa, 0x57, 0xaf, 0xea, 0xbd, 0x7a, 0x25, 0x58, 0xed, 0x38, 0x61, - 0x77, 0xb0, 0xdb, 0xb0, 0xbc, 0xfe, 0xb2, 0x19, 0x74, 0x3c, 0x3f, 0xf0, 0x1e, 0x88, 0x3f, 0x96, - 0xfd, 0xbd, 0xce, 0xb2, 0xe9, 0x3b, 0x6c, 0x79, 0xdf, 0x0b, 0xf6, 0xda, 0x3d, 0x6f, 0x7f, 0xf9, - 0xe1, 0x1b, 0x66, 0xcf, 0xef, 0x9a, 0x6f, 0x2c, 0x77, 0xa8, 0x4b, 0x03, 0x33, 0xa4, 0x76, 0xc3, - 0x0f, 0xbc, 0xd0, 0x23, 0x57, 0x63, 0x90, 0x46, 0x04, 0x22, 0xfe, 0x68, 0xf8, 0x7b, 0x9d, 0x06, - 0x07, 0x69, 0x44, 0x20, 0x8d, 0x08, 0x64, 0xf1, 0xf5, 0x84, 0xe6, 0x8e, 0xc7, 0x15, 0x72, 0xac, - 0xdd, 0x41, 0x5b, 0xfc, 0x12, 0x3f, 0xc4, 0x5f, 0x52, 0xc7, 0xa2, 0xb1, 0xf7, 0x26, 0x6b, 0x38, - 0x1e, 0xef, 0xd2, 0xb2, 0xe5, 0x05, 0x74, 0xf9, 0xe1, 0x50, 0x3f, 0x16, 0xbf, 0x1a, 0xcb, 0xf4, - 0x4d, 0xab, 0xeb, 0xb8, 0x34, 0x38, 0x88, 0xbf, 0xa3, 0x4f, 0x43, 0x33, 0xaf, 0xd5, 0xf2, 0x71, - 0xad, 0x82, 0x81, 0x1b, 0x3a, 0x7d, 0x3a, 0xd4, 0xe0, 0xe7, 0xbe, 0xa8, 0x01, 0xb3, 0xba, 0xb4, - 0x6f, 0x66, 0xdb, 0x19, 0x7f, 0x5b, 0x80, 0xb9, 0x95, 0xc0, 0xea, 0x3a, 0x0f, 0x69, 0x2b, 0xe4, - 0x8c, 0xce, 0x01, 0x79, 0x0f, 0x26, 0x43, 0x33, 0xa8, 0x15, 0x2e, 0x15, 0x2e, 0x57, 0xaf, 0x7c, - 0xb3, 0x31, 0xc2, 0x40, 0x36, 0x76, 0xcc, 0x20, 0x82, 0x6b, 0x4e, 0x1f, 0x1d, 0xd6, 0x27, 0x77, - 0xcc, 0x00, 0x39, 0x2a, 0xf9, 0x0e, 0x4c, 0xb9, 0x9e, 0x4b, 0x6b, 0x13, 0x02, 0x7d, 0x65, 0x24, - 0xf4, 0x2d, 0xcf, 0xd5, 0xbd, 0x6d, 0x96, 0x8f, 0x0e, 0xeb, 0x53, 0x9c, 0x82, 0x02, 0xd8, 0xf8, - 0xf7, 0x02, 0x54, 0x56, 0x82, 0xce, 0xa0, 0x4f, 0xdd, 0x90, 0x91, 0x00, 0xc0, 0x37, 0x03, 0xb3, - 0x4f, 0x43, 0x1a, 0xb0, 0x5a, 0xe1, 0xd2, 0xe4, 0xe5, 0xea, 0x95, 0x77, 0x46, 0x52, 0xba, 0x1d, - 0xc1, 0x34, 0xc9, 0x27, 0x87, 0xf5, 0x53, 0x47, 0x87, 0x75, 0xd0, 0x24, 0x86, 0x09, 0x2d, 0xc4, - 0x85, 0x8a, 0x19, 0x84, 0x4e, 0xdb, 0xb4, 0x42, 0x56, 0x9b, 0x10, 0x2a, 0xdf, 0x1e, 0x49, 0xe5, - 0x8a, 0x42, 0x69, 0x9e, 0x51, 0x1a, 0x2b, 0x11, 0x85, 0x61, 0xac, 0xc2, 0xf8, 0xd7, 0x49, 0x28, - 0x47, 0x0c, 0x72, 0x09, 0xa6, 0x5c, 0xb3, 0x4f, 0xc5, 0xec, 0x55, 0x9a, 0x33, 0xaa, 0xe1, 0xd4, - 0x96, 0xd9, 0xe7, 0x03, 0x64, 0xf6, 0x29, 0x97, 0xf0, 0xcd, 0xb0, 0x2b, 0x66, 0x20, 0x21, 0xb1, - 0x6d, 0x86, 0x5d, 0x14, 0x1c, 0x72, 0x11, 0xa6, 0xfa, 0x9e, 0x4d, 0x6b, 0x93, 0x97, 0x0a, 0x97, - 0x8b, 0x72, 0x80, 0x37, 0x3d, 0x9b, 0xa2, 0xa0, 0xf2, 0xf6, 0xed, 0xc0, 0xeb, 0xd7, 0xa6, 0xd2, - 0xed, 0xd7, 0x03, 0xaf, 0x8f, 0x82, 0x43, 0x7e, 0xaf, 0x00, 0xf3, 0x51, 0xf7, 0x6e, 0x7b, 0x96, - 0x19, 0x3a, 0x9e, 0x5b, 0x2b, 0x8a, 0x09, 0xbf, 0x36, 0xd6, 0x40, 0x44, 0x60, 0xcd, 0x9a, 0xd2, - 0x3a, 0x9f, 0xe5, 0xe0, 0x90, 0x62, 0x72, 0x05, 0xa0, 0xd3, 0xf3, 0x76, 0xcd, 0x1e, 0x1f, 0x83, - 0x5a, 0x49, 0xf4, 0x5a, 0x4f, 0xe1, 0x75, 0xcd, 0xc1, 0x84, 0x14, 0xd9, 0x83, 0x69, 0x53, 0xae, - 0x8a, 0xda, 0xb4, 0xe8, 0xf7, 0xda, 0x88, 0xfd, 0x4e, 0xad, 0xac, 0x66, 0xf5, 0xe8, 0xb0, 0x3e, - 0xad, 0x88, 0x18, 0x69, 0x20, 0xaf, 0x41, 0xd9, 0xf3, 0x79, 0x57, 0xcd, 0x5e, 0xad, 0x7c, 0xa9, - 0x70, 0xb9, 0xdc, 0x9c, 0x57, 0xdd, 0x2b, 0xdf, 0x51, 0x74, 0xd4, 0x12, 0xc6, 0x1f, 0x16, 0x61, - 0xe8, 0xab, 0xc9, 0x1b, 0x50, 0x55, 0x68, 0xb7, 0xbd, 0x0e, 0x13, 0x93, 0x5f, 0x6e, 0xce, 0x1d, - 0x1d, 0xd6, 0xab, 0x2b, 0x31, 0x19, 0x93, 0x32, 0xe4, 0x3e, 0x4c, 0xb0, 0xab, 0x6a, 0x19, 0xbe, - 0x3b, 0xd2, 0xd7, 0xb5, 0xae, 0x6a, 0x03, 0x2d, 0x1d, 0x1d, 0xd6, 0x27, 0x5a, 0x57, 0x71, 0x82, - 0x5d, 0xe5, 0xee, 0xa3, 0xe3, 0x84, 0xc2, 0x78, 0x46, 0x75, 0x1f, 0xd7, 0x9d, 0x50, 0x43, 0x0b, - 0xf7, 0x71, 0xdd, 0x09, 0x91, 0xa3, 0x72, 0xf7, 0xd1, 0x0d, 0x43, 0x5f, 0x18, 0xdf, 0xa8, 0xee, - 0xe3, 0xc6, 0xce, 0xce, 0xb6, 0x86, 0x17, 0xd6, 0xcd, 0x29, 0x28, 0x80, 0xc9, 0x47, 0x7c, 0x24, - 0x25, 0xcf, 0x0b, 0x0e, 0x94, 0xd5, 0xde, 0x18, 0xcb, 0x6a, 0xbd, 0xe0, 0x40, 0xab, 0x53, 0x73, - 0xa2, 0x19, 0x98, 0xd4, 0x26, 0xbe, 0xce, 0x6e, 0x33, 0x61, 0xa4, 0x23, 0x7f, 0xdd, 0xda, 0x7a, - 0x2b, 0xf3, 0x75, 0x6b, 0xeb, 0x2d, 0x14, 0xc0, 0x7c, 0x6e, 0x02, 0x73, 0x5f, 0xd9, 0xf4, 0x68, - 0x73, 0x83, 0xe6, 0x7e, 0x7a, 0x6e, 0xd0, 0xdc, 0x47, 0x8e, 0x6a, 0x74, 0xe0, 0x5c, 0xc4, 0x41, - 0xea, 0x7b, 0xcc, 0x11, 0x1f, 0x48, 0xdb, 0x64, 0x19, 0x2a, 0x96, 0xe7, 0xb6, 0x9d, 0xce, 0xa6, - 0xe9, 0x2b, 0xc7, 0xa4, 0x3d, 0xda, 0x6a, 0xc4, 0xc0, 0x58, 0x86, 0xbc, 0x04, 0x93, 0x7b, 0xf4, - 0x40, 0x79, 0xa8, 0xaa, 0x12, 0x9d, 0xbc, 0x45, 0x0f, 0x90, 0xd3, 0x8d, 0x1f, 0x16, 0xe0, 0x6c, - 0xce, 0xe0, 0xf2, 0x66, 0x83, 0xa0, 0xa7, 0x34, 0xe8, 0x66, 0x77, 0xf1, 0x36, 0x72, 0x3a, 0xf9, - 0xed, 0x02, 0xcc, 0x25, 0x46, 0x7b, 0x65, 0xa0, 0x9c, 0xe0, 0xe8, 0xab, 0x3b, 0x85, 0xd5, 0xbc, - 0xa0, 0x34, 0xce, 0x65, 0x18, 0x98, 0xd5, 0x6a, 0xfc, 0xbd, 0xd8, 0x75, 0x53, 0x34, 0x62, 0xc2, - 0xe9, 0x01, 0xa3, 0x01, 0x77, 0xd1, 0x2d, 0x6a, 0x05, 0x34, 0x54, 0x1b, 0xf0, 0x2b, 0x0d, 0xb9, - 0xb5, 0xf3, 0x5e, 0x34, 0xf8, 0x29, 0xa3, 0xf1, 0xf0, 0x8d, 0x86, 0x94, 0xb8, 0x45, 0x0f, 0x5a, - 0xb4, 0x47, 0x39, 0x46, 0x93, 0x1c, 0x1d, 0xd6, 0x4f, 0xdf, 0x4d, 0x01, 0x60, 0x06, 0x90, 0xab, - 0xf0, 0x4d, 0xc6, 0xf6, 0xbd, 0xc0, 0x56, 0x2a, 0x26, 0x9e, 0x5a, 0xc5, 0x76, 0x0a, 0x00, 0x33, - 0x80, 0xc6, 0xf7, 0x0a, 0x30, 0xdd, 0x34, 0xad, 0x3d, 0xaf, 0xdd, 0xe6, 0x7e, 0xcd, 0x1e, 0x04, - 0xd2, 0xfb, 0xcb, 0x39, 0xd1, 0x7e, 0x6d, 0x4d, 0xd1, 0x51, 0x4b, 0x90, 0x57, 0xa1, 0x24, 0x87, - 0x43, 0x74, 0xaa, 0xd8, 0x3c, 0xad, 0x64, 0x4b, 0xeb, 0x82, 0x8a, 0x8a, 0x4b, 0xbe, 0x06, 0xd5, - 0xbe, 0xf9, 0x61, 0x04, 0x20, 0xdc, 0x4c, 0xa5, 0x79, 0x56, 0x09, 0x57, 0x37, 0x63, 0x16, 0x26, - 0xe5, 0x8c, 0x6f, 0x01, 0xac, 0x7a, 0x6e, 0xe8, 0xb8, 0x03, 0x7a, 0xc7, 0x25, 0x2f, 0x43, 0x91, - 0x06, 0x81, 0x17, 0x28, 0x4f, 0x39, 0xab, 0x9a, 0x17, 0xaf, 0x71, 0x22, 0x4a, 0x9e, 0xec, 0x91, - 0xd3, 0xa3, 0xb6, 0xe8, 0x51, 0x39, 0xd9, 0x23, 0x4e, 0x45, 0xc5, 0x35, 0x7e, 0x34, 0x01, 0x33, - 0xab, 0x81, 0xe7, 0xde, 0x57, 0x16, 0x42, 0x7e, 0x05, 0xca, 0xfc, 0x60, 0x67, 0x9b, 0xa1, 0xa9, - 0x26, 0xf1, 0x2b, 0x89, 0x11, 0xd6, 0xe7, 0xb3, 0xd8, 0xb6, 0xb8, 0x34, 0x1f, 0xf3, 0x3b, 0xbb, - 0x0f, 0xa8, 0x15, 0x6e, 0xd2, 0xd0, 0x8c, 0x77, 0xa8, 0x98, 0x86, 0x1a, 0x95, 0x74, 0x60, 0x8a, - 0xf9, 0xd4, 0x52, 0xf3, 0x37, 0xda, 0xa6, 0x9a, 0xec, 0x72, 0xcb, 0xa7, 0x56, 0xbc, 0x95, 0xf3, - 0x5f, 0x28, 0x14, 0x10, 0x0f, 0x4a, 0x2c, 0x34, 0xc3, 0x01, 0x53, 0xfe, 0xfc, 0xfa, 0xf8, 0xaa, - 0x04, 0x5c, 0x3c, 0x98, 0xf2, 0x37, 0x2a, 0x35, 0xc6, 0x67, 0x05, 0x98, 0x4f, 0x8a, 0xdf, 0x76, - 0x58, 0x48, 0xde, 0x1f, 0x1a, 0xd0, 0xc6, 0x93, 0x0d, 0x28, 0x6f, 0x2d, 0x86, 0x53, 0x5b, 0x5e, - 0x44, 0x49, 0x0c, 0x66, 0x1b, 0x8a, 0x4e, 0x48, 0xfb, 0xd1, 0x59, 0x6d, 0x65, 0xec, 0x4f, 0x8c, - 0xed, 0x69, 0x83, 0xe3, 0xa2, 0x84, 0x37, 0x8e, 0xa6, 0xd2, 0x9f, 0xc6, 0x87, 0x99, 0x9f, 0x95, - 0x66, 0xf6, 0x13, 0x04, 0xf5, 0x7d, 0xa3, 0x75, 0x22, 0x35, 0x9d, 0xff, 0x4f, 0x75, 0x62, 0x26, - 0x49, 0x7d, 0x94, 0xf9, 0x8d, 0x29, 0xe5, 0x7c, 0xc9, 0xf2, 0x40, 0xc1, 0x1e, 0xf4, 0xa8, 0xf2, - 0xbe, 0x7a, 0xe0, 0x5a, 0x8a, 0x8e, 0x5a, 0x82, 0xbc, 0x0f, 0x67, 0x2c, 0xcf, 0xb5, 0x06, 0x41, - 0x40, 0x5d, 0xeb, 0x60, 0xdb, 0xeb, 0x39, 0xd6, 0x81, 0x5a, 0x90, 0x0d, 0xd5, 0xec, 0xcc, 0x6a, - 0x56, 0xe0, 0x51, 0x1e, 0x11, 0x87, 0x81, 0xc8, 0x97, 0x61, 0x9a, 0x0d, 0x98, 0x4f, 0x5d, 0x5b, - 0xec, 0xf6, 0xe5, 0xe6, 0x9c, 0xc2, 0x9c, 0x6e, 0x49, 0x32, 0x46, 0x7c, 0x72, 0x17, 0x2e, 0xb0, - 0x90, 0x3b, 0x59, 0xb7, 0xb3, 0x46, 0x4d, 0xbb, 0xe7, 0xb8, 0xdc, 0xe5, 0x79, 0xae, 0xcd, 0xc4, - 0x06, 0x3e, 0xd9, 0x7c, 0xf1, 0xe8, 0xb0, 0x7e, 0xa1, 0x95, 0x2f, 0x82, 0xc7, 0xb5, 0x25, 0xdf, - 0x86, 0x45, 0x36, 0xb0, 0x2c, 0xca, 0x58, 0x7b, 0xd0, 0xbb, 0xe9, 0xed, 0xb2, 0x1b, 0x0e, 0xe3, - 0xfe, 0xfa, 0xb6, 0xd3, 0x77, 0x42, 0xb1, 0x49, 0x17, 0x9b, 0x4b, 0x47, 0x87, 0xf5, 0xc5, 0xd6, - 0xb1, 0x52, 0xf8, 0x18, 0x04, 0x82, 0x70, 0x5e, 0xba, 0x90, 0x21, 0xec, 0x69, 0x81, 0xbd, 0x78, - 0x74, 0x58, 0x3f, 0xbf, 0x9e, 0x2b, 0x81, 0xc7, 0xb4, 0x34, 0xfe, 0xae, 0x00, 0x64, 0x78, 0xb9, - 0x91, 0x5b, 0x50, 0x32, 0xad, 0x90, 0x9f, 0x67, 0x65, 0x0c, 0xf4, 0x72, 0x9e, 0xcb, 0x97, 0xae, - 0x06, 0x69, 0x9b, 0xf2, 0x79, 0xa0, 0xf1, 0x1a, 0x5d, 0x11, 0x4d, 0x51, 0x41, 0x10, 0x0f, 0xce, - 0xf4, 0x4c, 0x16, 0x46, 0x16, 0x61, 0xef, 0x38, 0xfd, 0x28, 0xa0, 0xfb, 0x99, 0x27, 0x5b, 0x97, - 0xbc, 0x45, 0xf3, 0x1c, 0xb7, 0x8f, 0xdb, 0x59, 0x20, 0x1c, 0xc6, 0x36, 0xfe, 0xa8, 0x04, 0xd3, - 0x6b, 0x2b, 0xd7, 0x77, 0x4c, 0xb6, 0xf7, 0x04, 0x01, 0xce, 0x6b, 0x50, 0x0e, 0x69, 0xdf, 0xef, - 0x99, 0xe1, 0x90, 0x11, 0xef, 0x28, 0x3a, 0x6a, 0x09, 0xe2, 0xf1, 0x68, 0x4d, 0x85, 0x8b, 0xca, - 0xc9, 0xbd, 0x33, 0xe2, 0x71, 0x40, 0xa1, 0x24, 0xc3, 0x35, 0x45, 0xc2, 0x58, 0x07, 0x61, 0x50, - 0x8d, 0x94, 0x23, 0x6d, 0xab, 0x93, 0xec, 0x88, 0x61, 0x76, 0x8c, 0x23, 0x4f, 0x96, 0x09, 0x02, - 0x26, 0xb5, 0x90, 0xaf, 0xc2, 0x8c, 0x4d, 0xf9, 0x5a, 0xa1, 0xae, 0xe5, 0x50, 0xbe, 0x2c, 0x26, - 0xf9, 0xb8, 0x70, 0xf7, 0xb0, 0x96, 0xa0, 0x63, 0x4a, 0x8a, 0x3c, 0x80, 0xca, 0xbe, 0x13, 0x76, - 0x85, 0x17, 0xab, 0x95, 0x84, 0xe1, 0x7c, 0x7d, 0xa4, 0x8e, 0x72, 0x84, 0x78, 0x58, 0xee, 0x47, - 0x98, 0x18, 0xc3, 0xf3, 0x43, 0x22, 0xff, 0x21, 0x62, 0x6a, 0x61, 0xff, 0x95, 0x74, 0x03, 0xc1, - 0xc0, 0x58, 0x86, 0x30, 0x98, 0xe1, 0x3f, 0x5a, 0xf4, 0x83, 0x01, 0xb7, 0x56, 0x11, 0x3a, 0x8d, - 0x1a, 0x69, 0x47, 0x20, 0x72, 0x44, 0xee, 0x27, 0x60, 0x31, 0xa5, 0x84, 0x5b, 0xdf, 0x7e, 0x97, - 0xba, 0xb5, 0x4a, 0xda, 0xfa, 0xee, 0x77, 0xa9, 0x8b, 0x82, 0x43, 0x3c, 0x00, 0x4b, 0x1f, 0x34, - 0x6a, 0x30, 0x46, 0x7c, 0x15, 0x9f, 0x57, 0x9a, 0xa7, 0xf9, 0x49, 0x20, 0xfe, 0x8d, 0x09, 0x15, - 0xc6, 0x5f, 0x17, 0xa0, 0xca, 0x17, 0x47, 0x64, 0xd0, 0xaf, 0x42, 0x29, 0x34, 0x83, 0x8e, 0x3a, - 0x40, 0x56, 0xe2, 0x55, 0xbc, 0x23, 0xa8, 0xa8, 0xb8, 0xc4, 0x84, 0x62, 0x68, 0xb2, 0xbd, 0x68, - 0xdb, 0xfb, 0x85, 0x91, 0xfa, 0xa8, 0x56, 0x65, 0xbc, 0xe3, 0xf1, 0x5f, 0x0c, 0x25, 0x32, 0xb9, - 0x0c, 0x65, 0xee, 0xa6, 0xd6, 0x4d, 0x26, 0xe3, 0xc1, 0x72, 0x73, 0x86, 0xaf, 0xc2, 0x75, 0x45, - 0x43, 0xcd, 0x35, 0xde, 0x87, 0xd3, 0xd7, 0x3e, 0xa4, 0xd6, 0x20, 0xf4, 0x02, 0x19, 0x11, 0x90, - 0x9b, 0x40, 0x18, 0x0d, 0x1e, 0x3a, 0x16, 0x5d, 0xb1, 0x2c, 0x6f, 0xe0, 0x86, 0x5b, 0xf1, 0xaa, - 0x5f, 0x54, 0xda, 0x48, 0x6b, 0x48, 0x02, 0x73, 0x5a, 0x19, 0x7f, 0x3e, 0x05, 0xd5, 0x44, 0x4c, - 0xc9, 0x67, 0x31, 0xa0, 0xbe, 0x97, 0xf5, 0x21, 0x3c, 0x6a, 0x41, 0xc1, 0xe1, 0x3e, 0x24, 0xa0, - 0x0f, 0x1d, 0xc6, 0x8f, 0x98, 0x19, 0x1f, 0x82, 0x8a, 0x8e, 0x5a, 0x82, 0xd4, 0xa1, 0x68, 0x53, + // 5152 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5c, 0x4d, 0x6c, 0x1c, 0x47, + 0x76, 0xd6, 0x90, 0x9c, 0xe1, 0xcc, 0x1b, 0x52, 0xa4, 0x4a, 0x94, 0x34, 0xe6, 0xca, 0x1c, 0x6d, + 0x3b, 0x76, 0xb4, 0x89, 0x3d, 0x5c, 0x4b, 0xbb, 0x89, 0xd7, 0x1b, 0xdb, 0xcb, 0x21, 0x45, 0x89, + 0x92, 0x48, 0x31, 0x6f, 0x28, 0x29, 0x1b, 0x1b, 0xbb, 0x69, 0x76, 0xd7, 0xcc, 0xb4, 0x38, 0xd3, + 0xdd, 0xee, 0xea, 0x11, 0x4d, 0x38, 0x40, 0x9c, 0x20, 0x41, 0x12, 0x04, 0x0b, 0x64, 0x2f, 0x9b, + 0x05, 0xf6, 0x12, 0xe4, 0x90, 0x5c, 0x72, 0x09, 0x90, 0x53, 0x0e, 0x7b, 0x58, 0xe4, 0x60, 0xec, + 0x25, 0x46, 0x2e, 0xf1, 0x21, 0x20, 0xd6, 0x0c, 0x10, 0x04, 0x48, 0x80, 0x20, 0xb9, 0x04, 0xd1, + 0x29, 0xa8, 0x9f, 0xae, 0xfe, 0x99, 0xa6, 0x2c, 0xcd, 0x50, 0x4a, 0x82, 0xdd, 0x93, 0x38, 0xef, + 0xbd, 0xfa, 0x5e, 0x75, 0xd5, 0xab, 0x57, 0xf5, 0x5e, 0xbd, 0x12, 0xac, 0x76, 0x9c, 0xb0, 0x3b, + 0xd8, 0x6d, 0x58, 0x5e, 0x7f, 0xd9, 0x0c, 0x3a, 0x9e, 0x1f, 0x78, 0x0f, 0xc4, 0x1f, 0xcb, 0xfe, + 0x5e, 0x67, 0xd9, 0xf4, 0x1d, 0xb6, 0xbc, 0xef, 0x05, 0x7b, 0xed, 0x9e, 0xb7, 0xbf, 0xfc, 0xf0, + 0x75, 0xb3, 0xe7, 0x77, 0xcd, 0xd7, 0x97, 0x3b, 0xd4, 0xa5, 0x81, 0x19, 0x52, 0xbb, 0xe1, 0x07, + 0x5e, 0xe8, 0x91, 0xab, 0x31, 0x48, 0x23, 0x02, 0x11, 0x7f, 0x34, 0xfc, 0xbd, 0x4e, 0x83, 0x83, + 0x34, 0x22, 0x90, 0x46, 0x04, 0xb2, 0xf8, 0x5a, 0x42, 0x73, 0xc7, 0xe3, 0x0a, 0x39, 0xd6, 0xee, + 0xa0, 0x2d, 0x7e, 0x89, 0x1f, 0xe2, 0x2f, 0xa9, 0x63, 0xd1, 0xd8, 0x7b, 0x83, 0x35, 0x1c, 0x8f, + 0x77, 0x69, 0xd9, 0xf2, 0x02, 0xba, 0xfc, 0x70, 0xa8, 0x1f, 0x8b, 0x5f, 0x89, 0x65, 0xfa, 0xa6, + 0xd5, 0x75, 0x5c, 0x1a, 0x1c, 0xc4, 0xdf, 0xd1, 0xa7, 0xa1, 0x99, 0xd7, 0x6a, 0xf9, 0xb8, 0x56, + 0xc1, 0xc0, 0x0d, 0x9d, 0x3e, 0x1d, 0x6a, 0xf0, 0x4b, 0x9f, 0xd7, 0x80, 0x59, 0x5d, 0xda, 0x37, + 0xb3, 0xed, 0x8c, 0xbf, 0x2b, 0xc0, 0xdc, 0x4a, 0x60, 0x75, 0x9d, 0x87, 0xb4, 0x15, 0x72, 0x46, + 0xe7, 0x80, 0xbc, 0x0b, 0x93, 0xa1, 0x19, 0xd4, 0x0a, 0x97, 0x0a, 0x97, 0xab, 0x57, 0xbe, 0xd1, + 0x18, 0x61, 0x20, 0x1b, 0x3b, 0x66, 0x10, 0xc1, 0x35, 0xa7, 0x8f, 0x0e, 0xeb, 0x93, 0x3b, 0x66, + 0x80, 0x1c, 0x95, 0x7c, 0x1b, 0xa6, 0x5c, 0xcf, 0xa5, 0xb5, 0x09, 0x81, 0xbe, 0x32, 0x12, 0xfa, + 0x96, 0xe7, 0xea, 0xde, 0x36, 0xcb, 0x47, 0x87, 0xf5, 0x29, 0x4e, 0x41, 0x01, 0x6c, 0xfc, 0x7b, + 0x01, 0x2a, 0x2b, 0x41, 0x67, 0xd0, 0xa7, 0x6e, 0xc8, 0x48, 0x00, 0xe0, 0x9b, 0x81, 0xd9, 0xa7, + 0x21, 0x0d, 0x58, 0xad, 0x70, 0x69, 0xf2, 0x72, 0xf5, 0xca, 0xdb, 0x23, 0x29, 0xdd, 0x8e, 0x60, + 0x9a, 0xe4, 0xe3, 0xc3, 0xfa, 0xa9, 0xa3, 0xc3, 0x3a, 0x68, 0x12, 0xc3, 0x84, 0x16, 0xe2, 0x42, + 0xc5, 0x0c, 0x42, 0xa7, 0x6d, 0x5a, 0x21, 0xab, 0x4d, 0x08, 0x95, 0x6f, 0x8d, 0xa4, 0x72, 0x45, + 0xa1, 0x34, 0xcf, 0x28, 0x8d, 0x95, 0x88, 0xc2, 0x30, 0x56, 0x61, 0xfc, 0xeb, 0x24, 0x94, 0x23, + 0x06, 0xb9, 0x04, 0x53, 0xae, 0xd9, 0xa7, 0x62, 0xf6, 0x2a, 0xcd, 0x19, 0xd5, 0x70, 0x6a, 0xcb, + 0xec, 0xf3, 0x01, 0x32, 0xfb, 0x94, 0x4b, 0xf8, 0x66, 0xd8, 0x15, 0x33, 0x90, 0x90, 0xd8, 0x36, + 0xc3, 0x2e, 0x0a, 0x0e, 0xb9, 0x08, 0x53, 0x7d, 0xcf, 0xa6, 0xb5, 0xc9, 0x4b, 0x85, 0xcb, 0x45, + 0x39, 0xc0, 0x9b, 0x9e, 0x4d, 0x51, 0x50, 0x79, 0xfb, 0x76, 0xe0, 0xf5, 0x6b, 0x53, 0xe9, 0xf6, + 0xeb, 0x81, 0xd7, 0x47, 0xc1, 0x21, 0x7f, 0x54, 0x80, 0xf9, 0xa8, 0x7b, 0xb7, 0x3d, 0xcb, 0x0c, + 0x1d, 0xcf, 0xad, 0x15, 0xc5, 0x84, 0x5f, 0x1b, 0x6b, 0x20, 0x22, 0xb0, 0x66, 0x4d, 0x69, 0x9d, + 0xcf, 0x72, 0x70, 0x48, 0x31, 0xb9, 0x02, 0xd0, 0xe9, 0x79, 0xbb, 0x66, 0x8f, 0x8f, 0x41, 0xad, + 0x24, 0x7a, 0xad, 0xa7, 0xf0, 0xba, 0xe6, 0x60, 0x42, 0x8a, 0xec, 0xc1, 0xb4, 0x29, 0x57, 0x45, + 0x6d, 0x5a, 0xf4, 0x7b, 0x6d, 0xc4, 0x7e, 0xa7, 0x56, 0x56, 0xb3, 0x7a, 0x74, 0x58, 0x9f, 0x56, + 0x44, 0x8c, 0x34, 0x90, 0x57, 0xa1, 0xec, 0xf9, 0xbc, 0xab, 0x66, 0xaf, 0x56, 0xbe, 0x54, 0xb8, + 0x5c, 0x6e, 0xce, 0xab, 0xee, 0x95, 0xef, 0x28, 0x3a, 0x6a, 0x09, 0xe3, 0x4f, 0x8a, 0x30, 0xf4, + 0xd5, 0xe4, 0x75, 0xa8, 0x2a, 0xb4, 0xdb, 0x5e, 0x87, 0x89, 0xc9, 0x2f, 0x37, 0xe7, 0x8e, 0x0e, + 0xeb, 0xd5, 0x95, 0x98, 0x8c, 0x49, 0x19, 0x72, 0x1f, 0x26, 0xd8, 0x55, 0xb5, 0x0c, 0xdf, 0x19, + 0xe9, 0xeb, 0x5a, 0x57, 0xb5, 0x81, 0x96, 0x8e, 0x0e, 0xeb, 0x13, 0xad, 0xab, 0x38, 0xc1, 0xae, + 0x72, 0xf7, 0xd1, 0x71, 0x42, 0x61, 0x3c, 0xa3, 0xba, 0x8f, 0xeb, 0x4e, 0xa8, 0xa1, 0x85, 0xfb, + 0xb8, 0xee, 0x84, 0xc8, 0x51, 0xb9, 0xfb, 0xe8, 0x86, 0xa1, 0x2f, 0x8c, 0x6f, 0x54, 0xf7, 0x71, + 0x63, 0x67, 0x67, 0x5b, 0xc3, 0x0b, 0xeb, 0xe6, 0x14, 0x14, 0xc0, 0xe4, 0x43, 0x3e, 0x92, 0x92, + 0xe7, 0x05, 0x07, 0xca, 0x6a, 0x6f, 0x8c, 0x65, 0xb5, 0x5e, 0x70, 0xa0, 0xd5, 0xa9, 0x39, 0xd1, + 0x0c, 0x4c, 0x6a, 0x13, 0x5f, 0x67, 0xb7, 0x99, 0x30, 0xd2, 0x91, 0xbf, 0x6e, 0x6d, 0xbd, 0x95, + 0xf9, 0xba, 0xb5, 0xf5, 0x16, 0x0a, 0x60, 0x3e, 0x37, 0x81, 0xb9, 0xaf, 0x6c, 0x7a, 0xb4, 0xb9, + 0x41, 0x73, 0x3f, 0x3d, 0x37, 0x68, 0xee, 0x23, 0x47, 0x35, 0x3a, 0x70, 0x2e, 0xe2, 0x20, 0xf5, + 0x3d, 0xe6, 0x88, 0x0f, 0xa4, 0x6d, 0xb2, 0x0c, 0x15, 0xcb, 0x73, 0xdb, 0x4e, 0x67, 0xd3, 0xf4, + 0x95, 0x63, 0xd2, 0x1e, 0x6d, 0x35, 0x62, 0x60, 0x2c, 0x43, 0x5e, 0x84, 0xc9, 0x3d, 0x7a, 0xa0, + 0x3c, 0x54, 0x55, 0x89, 0x4e, 0xde, 0xa2, 0x07, 0xc8, 0xe9, 0xc6, 0x0f, 0x0b, 0x70, 0x36, 0x67, + 0x70, 0x79, 0xb3, 0x41, 0xd0, 0x53, 0x1a, 0x74, 0xb3, 0xbb, 0x78, 0x1b, 0x39, 0x9d, 0xfc, 0x7e, + 0x01, 0xe6, 0x12, 0xa3, 0xbd, 0x32, 0x50, 0x4e, 0x70, 0xf4, 0xd5, 0x9d, 0xc2, 0x6a, 0x5e, 0x50, + 0x1a, 0xe7, 0x32, 0x0c, 0xcc, 0x6a, 0x35, 0xfe, 0x41, 0xec, 0xba, 0x29, 0x1a, 0x31, 0xe1, 0xf4, + 0x80, 0xd1, 0x80, 0xbb, 0xe8, 0x16, 0xb5, 0x02, 0x1a, 0xaa, 0x0d, 0xf8, 0xe5, 0x86, 0xdc, 0xda, + 0x79, 0x2f, 0x1a, 0xfc, 0x94, 0xd1, 0x78, 0xf8, 0x7a, 0x43, 0x4a, 0xdc, 0xa2, 0x07, 0x2d, 0xda, + 0xa3, 0x1c, 0xa3, 0x49, 0x8e, 0x0e, 0xeb, 0xa7, 0xef, 0xa6, 0x00, 0x30, 0x03, 0xc8, 0x55, 0xf8, + 0x26, 0x63, 0xfb, 0x5e, 0x60, 0x2b, 0x15, 0x13, 0x4f, 0xad, 0x62, 0x3b, 0x05, 0x80, 0x19, 0x40, + 0xe3, 0x7b, 0x05, 0x98, 0x6e, 0x9a, 0xd6, 0x9e, 0xd7, 0x6e, 0x73, 0xbf, 0x66, 0x0f, 0x02, 0xe9, + 0xfd, 0xe5, 0x9c, 0x68, 0xbf, 0xb6, 0xa6, 0xe8, 0xa8, 0x25, 0xc8, 0x2b, 0x50, 0x92, 0xc3, 0x21, + 0x3a, 0x55, 0x6c, 0x9e, 0x56, 0xb2, 0xa5, 0x75, 0x41, 0x45, 0xc5, 0x25, 0x5f, 0x85, 0x6a, 0xdf, + 0xfc, 0x20, 0x02, 0x10, 0x6e, 0xa6, 0xd2, 0x3c, 0xab, 0x84, 0xab, 0x9b, 0x31, 0x0b, 0x93, 0x72, + 0xc6, 0x37, 0x01, 0x56, 0x3d, 0x37, 0x74, 0xdc, 0x01, 0xbd, 0xe3, 0x92, 0x97, 0xa0, 0x48, 0x83, + 0xc0, 0x0b, 0x94, 0xa7, 0x9c, 0x55, 0xcd, 0x8b, 0xd7, 0x38, 0x11, 0x25, 0x4f, 0xf6, 0xc8, 0xe9, + 0x51, 0x5b, 0xf4, 0xa8, 0x9c, 0xec, 0x11, 0xa7, 0xa2, 0xe2, 0x1a, 0x3f, 0x9e, 0x80, 0x99, 0xd5, + 0xc0, 0x73, 0xef, 0x2b, 0x0b, 0x21, 0xbf, 0x01, 0x65, 0x7e, 0xb0, 0xb3, 0xcd, 0xd0, 0x54, 0x93, + 0xf8, 0xe5, 0xc4, 0x08, 0xeb, 0xf3, 0x59, 0x6c, 0x5b, 0x5c, 0x9a, 0x8f, 0xf9, 0x9d, 0xdd, 0x07, + 0xd4, 0x0a, 0x37, 0x69, 0x68, 0xc6, 0x3b, 0x54, 0x4c, 0x43, 0x8d, 0x4a, 0x3a, 0x30, 0xc5, 0x7c, + 0x6a, 0xa9, 0xf9, 0x1b, 0x6d, 0x53, 0x4d, 0x76, 0xb9, 0xe5, 0x53, 0x2b, 0xde, 0xca, 0xf9, 0x2f, + 0x14, 0x0a, 0x88, 0x07, 0x25, 0x16, 0x9a, 0xe1, 0x80, 0x29, 0x7f, 0x7e, 0x7d, 0x7c, 0x55, 0x02, + 0x2e, 0x1e, 0x4c, 0xf9, 0x1b, 0x95, 0x1a, 0xe3, 0xd3, 0x02, 0xcc, 0x27, 0xc5, 0x6f, 0x3b, 0x2c, + 0x24, 0xef, 0x0d, 0x0d, 0x68, 0xe3, 0xc9, 0x06, 0x94, 0xb7, 0x16, 0xc3, 0xa9, 0x2d, 0x2f, 0xa2, + 0x24, 0x06, 0xb3, 0x0d, 0x45, 0x27, 0xa4, 0xfd, 0xe8, 0xac, 0xb6, 0x32, 0xf6, 0x27, 0xc6, 0xf6, + 0xb4, 0xc1, 0x71, 0x51, 0xc2, 0x1b, 0x47, 0x53, 0xe9, 0x4f, 0xe3, 0xc3, 0xcc, 0xcf, 0x4a, 0x33, + 0xfb, 0x09, 0x82, 0xfa, 0xbe, 0xd1, 0x3a, 0x91, 0x9a, 0xce, 0x9f, 0x53, 0x9d, 0x98, 0x49, 0x52, + 0x1f, 0x65, 0x7e, 0x63, 0x4a, 0x39, 0x5f, 0xb2, 0x3c, 0x50, 0xb0, 0x07, 0x3d, 0xaa, 0xbc, 0xaf, + 0x1e, 0xb8, 0x96, 0xa2, 0xa3, 0x96, 0x20, 0xef, 0xc1, 0x19, 0xcb, 0x73, 0xad, 0x41, 0x10, 0x50, + 0xd7, 0x3a, 0xd8, 0xf6, 0x7a, 0x8e, 0x75, 0xa0, 0x16, 0x64, 0x43, 0x35, 0x3b, 0xb3, 0x9a, 0x15, + 0x78, 0x94, 0x47, 0xc4, 0x61, 0x20, 0xf2, 0x25, 0x98, 0x66, 0x03, 0xe6, 0x53, 0xd7, 0x16, 0xbb, + 0x7d, 0xb9, 0x39, 0xa7, 0x30, 0xa7, 0x5b, 0x92, 0x8c, 0x11, 0x9f, 0xdc, 0x85, 0x0b, 0x2c, 0xe4, + 0x4e, 0xd6, 0xed, 0xac, 0x51, 0xd3, 0xee, 0x39, 0x2e, 0x77, 0x79, 0x9e, 0x6b, 0x33, 0xb1, 0x81, + 0x4f, 0x36, 0xbf, 0x70, 0x74, 0x58, 0xbf, 0xd0, 0xca, 0x17, 0xc1, 0xe3, 0xda, 0x92, 0x6f, 0xc1, + 0x22, 0x1b, 0x58, 0x16, 0x65, 0xac, 0x3d, 0xe8, 0xdd, 0xf4, 0x76, 0xd9, 0x0d, 0x87, 0x71, 0x7f, + 0x7d, 0xdb, 0xe9, 0x3b, 0xa1, 0xd8, 0xa4, 0x8b, 0xcd, 0xa5, 0xa3, 0xc3, 0xfa, 0x62, 0xeb, 0x58, + 0x29, 0x7c, 0x0c, 0x02, 0x41, 0x38, 0x2f, 0x5d, 0xc8, 0x10, 0xf6, 0xb4, 0xc0, 0x5e, 0x3c, 0x3a, + 0xac, 0x9f, 0x5f, 0xcf, 0x95, 0xc0, 0x63, 0x5a, 0x1a, 0x7f, 0x5f, 0x00, 0x32, 0xbc, 0xdc, 0xc8, + 0x2d, 0x28, 0x99, 0x56, 0xc8, 0xcf, 0xb3, 0x32, 0x06, 0x7a, 0x29, 0xcf, 0xe5, 0x4b, 0x57, 0x83, + 0xb4, 0x4d, 0xf9, 0x3c, 0xd0, 0x78, 0x8d, 0xae, 0x88, 0xa6, 0xa8, 0x20, 0x88, 0x07, 0x67, 0x7a, + 0x26, 0x0b, 0x23, 0x8b, 0xb0, 0x77, 0x9c, 0x7e, 0x14, 0xd0, 0xfd, 0xc2, 0x93, 0xad, 0x4b, 0xde, + 0xa2, 0x79, 0x8e, 0xdb, 0xc7, 0xed, 0x2c, 0x10, 0x0e, 0x63, 0x1b, 0x3f, 0x2a, 0xc1, 0xf4, 0xda, + 0xca, 0xf5, 0x1d, 0x93, 0xed, 0x3d, 0x41, 0x80, 0xf3, 0x2a, 0x94, 0x43, 0xda, 0xf7, 0x7b, 0x66, + 0x38, 0x64, 0xc4, 0x3b, 0x8a, 0x8e, 0x5a, 0x82, 0x78, 0x3c, 0x5a, 0x53, 0xe1, 0xa2, 0x72, 0x72, + 0x6f, 0x8f, 0x78, 0x1c, 0x50, 0x28, 0xc9, 0x70, 0x4d, 0x91, 0x30, 0xd6, 0x41, 0x18, 0x54, 0x23, + 0xe5, 0x48, 0xdb, 0xea, 0x24, 0x3b, 0x62, 0x98, 0x1d, 0xe3, 0xc8, 0x93, 0x65, 0x82, 0x80, 0x49, + 0x2d, 0xe4, 0x2b, 0x30, 0x63, 0x53, 0xbe, 0x56, 0xa8, 0x6b, 0x39, 0x94, 0x2f, 0x8b, 0x49, 0x3e, + 0x2e, 0xdc, 0x3d, 0xac, 0x25, 0xe8, 0x98, 0x92, 0x22, 0x0f, 0xa0, 0xb2, 0xef, 0x84, 0x5d, 0xe1, + 0xc5, 0x6a, 0x25, 0x61, 0x38, 0x5f, 0x1b, 0xa9, 0xa3, 0x1c, 0x21, 0x1e, 0x96, 0xfb, 0x11, 0x26, + 0xc6, 0xf0, 0xfc, 0x90, 0xc8, 0x7f, 0x88, 0x98, 0x5a, 0xd8, 0x7f, 0x25, 0xdd, 0x40, 0x30, 0x30, + 0x96, 0x21, 0x0c, 0x66, 0xf8, 0x8f, 0x16, 0x7d, 0x7f, 0xc0, 0xad, 0x55, 0x84, 0x4e, 0xa3, 0x46, + 0xda, 0x11, 0x88, 0x1c, 0x91, 0xfb, 0x09, 0x58, 0x4c, 0x29, 0xe1, 0xd6, 0xb7, 0xdf, 0xa5, 0x6e, + 0xad, 0x92, 0xb6, 0xbe, 0xfb, 0x5d, 0xea, 0xa2, 0xe0, 0x10, 0x0f, 0xc0, 0xd2, 0x07, 0x8d, 0x1a, + 0x8c, 0x11, 0x5f, 0xc5, 0xe7, 0x95, 0xe6, 0x69, 0x7e, 0x12, 0x88, 0x7f, 0x63, 0x42, 0x05, 0x3f, + 0xa6, 0x78, 0xee, 0xb5, 0x0f, 0x9c, 0xb0, 0x56, 0x15, 0x9d, 0xd2, 0xab, 0xf6, 0x8e, 0xa0, 0xa2, + 0xe2, 0x1a, 0x3f, 0x2a, 0x40, 0x95, 0x2f, 0xa2, 0xc8, 0xf0, 0x5f, 0x81, 0x52, 0x68, 0x06, 0x1d, + 0x75, 0xd0, 0x4c, 0xb4, 0xdb, 0x11, 0x54, 0x54, 0x5c, 0x62, 0x42, 0x31, 0x34, 0xd9, 0x5e, 0xb4, + 0x3d, 0xfe, 0xca, 0x48, 0xdf, 0xa2, 0x56, 0x6f, 0xbc, 0x33, 0xf2, 0x5f, 0x0c, 0x25, 0x32, 0xb9, + 0x0c, 0x65, 0xee, 0xce, 0xd6, 0x4d, 0x26, 0xe3, 0xc6, 0x72, 0x73, 0x86, 0xaf, 0xd6, 0x75, 0x45, + 0x43, 0xcd, 0x35, 0xde, 0x83, 0xd3, 0xd7, 0x3e, 0xa0, 0xd6, 0x20, 0xf4, 0x02, 0x19, 0x39, 0x90, + 0x9b, 0x40, 0x18, 0x0d, 0x1e, 0x3a, 0x16, 0x5d, 0xb1, 0x2c, 0x6f, 0xe0, 0x86, 0x5b, 0xb1, 0x77, + 0x58, 0x54, 0xda, 0x48, 0x6b, 0x48, 0x02, 0x73, 0x5a, 0x19, 0x7f, 0x39, 0x05, 0xd5, 0x44, 0xec, + 0xc9, 0x67, 0x3b, 0xa0, 0xbe, 0x97, 0xf5, 0x35, 0x3c, 0xba, 0x41, 0xc1, 0xe1, 0xbe, 0x26, 0xa0, + 0x0f, 0x1d, 0xc6, 0x8f, 0xa2, 0x19, 0x5f, 0x83, 0x8a, 0x8e, 0x5a, 0x82, 0xd4, 0xa1, 0x68, 0x53, 0x3f, 0xec, 0x8a, 0x8f, 0x9c, 0x6a, 0x56, 0xf8, 0x40, 0xac, 0x71, 0x02, 0x4a, 0x3a, 0x17, 0x68, - 0xd3, 0xd0, 0xea, 0xd6, 0xa6, 0xc4, 0xba, 0x13, 0x02, 0xeb, 0x9c, 0x80, 0x92, 0x9e, 0x73, 0xfa, - 0x2f, 0x3e, 0xfb, 0xd3, 0x7f, 0xe9, 0x84, 0x4f, 0xff, 0xc4, 0x87, 0xb3, 0x8c, 0x75, 0xb7, 0x03, - 0xe7, 0xa1, 0x19, 0x52, 0xd1, 0x58, 0xe8, 0x99, 0x7e, 0x1a, 0x3d, 0x17, 0x8e, 0x0e, 0xeb, 0x67, - 0x5b, 0xad, 0x1b, 0x59, 0x14, 0xcc, 0x83, 0x26, 0x2d, 0x38, 0xe7, 0xb8, 0x8c, 0x5a, 0x83, 0x80, - 0x6e, 0x74, 0x5c, 0x2f, 0xa0, 0x37, 0x3c, 0xc6, 0xe1, 0x54, 0x22, 0xe5, 0x25, 0x35, 0x69, 0xe7, - 0x36, 0xf2, 0x84, 0x30, 0xbf, 0xad, 0xf1, 0xa3, 0x02, 0xcc, 0x24, 0xc3, 0x68, 0xc2, 0x00, 0xba, - 0x6b, 0xeb, 0x2d, 0x69, 0x99, 0xea, 0x84, 0xf6, 0xee, 0xc8, 0xd1, 0xb9, 0x84, 0x89, 0x4f, 0xf8, - 0x31, 0x0d, 0x13, 0x6a, 0x9e, 0x20, 0x4f, 0xf7, 0x32, 0x14, 0xdb, 0x5e, 0x60, 0x51, 0xb5, 0xb6, - 0xf4, 0x1a, 0x5c, 0xe7, 0x44, 0x94, 0x3c, 0xe3, 0x9f, 0x0b, 0x90, 0xd0, 0x40, 0x7e, 0x0d, 0x66, - 0xb9, 0x8e, 0x5b, 0xc1, 0x6e, 0xea, 0x6b, 0x9a, 0x23, 0x7f, 0x8d, 0x46, 0x6a, 0x9e, 0x53, 0xfa, - 0x67, 0x53, 0x64, 0x4c, 0xeb, 0x23, 0x3f, 0x0b, 0x15, 0xd3, 0xb6, 0x03, 0xca, 0x18, 0x95, 0xae, - 0xa7, 0xd2, 0x9c, 0x15, 0x7b, 0x65, 0x44, 0xc4, 0x98, 0xcf, 0x97, 0x61, 0xd7, 0x6e, 0x33, 0x6e, - 0xd9, 0xea, 0x60, 0xa9, 0x97, 0x21, 0x57, 0xc2, 0xe9, 0xa8, 0x25, 0x8c, 0xef, 0x4e, 0x41, 0x5a, - 0x37, 0xb1, 0x61, 0x6e, 0x2f, 0xd8, 0x5d, 0x5d, 0x35, 0xad, 0xee, 0x48, 0x51, 0xf5, 0x59, 0x1e, - 0xce, 0xdf, 0x4a, 0x23, 0x60, 0x16, 0x52, 0x69, 0xb9, 0x45, 0x0f, 0x42, 0x73, 0x77, 0x94, 0xc0, - 0x3a, 0xd2, 0x92, 0x44, 0xc0, 0x2c, 0x24, 0x0f, 0x7c, 0xf7, 0x82, 0xdd, 0x68, 0x91, 0x67, 0x03, - 0xdf, 0x5b, 0x31, 0x0b, 0x93, 0x72, 0x7c, 0x08, 0xf7, 0x82, 0x5d, 0xa4, 0x66, 0x2f, 0x4a, 0xd9, - 0xea, 0x21, 0xbc, 0xa5, 0xe8, 0xa8, 0x25, 0x88, 0x0f, 0x64, 0x2f, 0x1a, 0x3d, 0x9d, 0x9a, 0x51, - 0xbe, 0xe8, 0x72, 0xde, 0xd7, 0x68, 0xa1, 0xe4, 0x07, 0x9d, 0xe7, 0xbe, 0xf9, 0xd6, 0x10, 0x0e, - 0xe6, 0x60, 0x93, 0x6f, 0xc1, 0x85, 0xbd, 0x60, 0x57, 0x39, 0xf2, 0xed, 0xc0, 0x71, 0x2d, 0xc7, - 0x4f, 0xe5, 0x6a, 0xeb, 0xaa, 0xbb, 0x17, 0x6e, 0xe5, 0x8b, 0xe1, 0x71, 0xed, 0x8d, 0xd7, 0x61, - 0x26, 0x99, 0xeb, 0xfb, 0x82, 0xfc, 0x90, 0xf1, 0x6f, 0x05, 0x28, 0x6d, 0xb8, 0xfe, 0xe0, 0x27, - 0xe4, 0xda, 0xe0, 0x4f, 0xa6, 0x60, 0x8a, 0x1f, 0xbd, 0xc8, 0x65, 0x98, 0x0a, 0x0f, 0x7c, 0xb9, - 0xb7, 0x4e, 0x36, 0x17, 0x22, 0x47, 0xb3, 0x73, 0xe0, 0xd3, 0x47, 0xea, 0x5f, 0x14, 0x12, 0xe4, - 0x1d, 0x28, 0xb9, 0x83, 0xfe, 0x3d, 0xb3, 0xa7, 0x9c, 0xd2, 0xab, 0xd1, 0xd1, 0x62, 0x4b, 0x50, - 0x1f, 0x1d, 0xd6, 0x17, 0xa8, 0x6b, 0x79, 0xb6, 0xe3, 0x76, 0x96, 0x1f, 0x30, 0xcf, 0x6d, 0x6c, - 0x0d, 0xfa, 0xbb, 0x34, 0x40, 0xd5, 0x8a, 0x87, 0x74, 0xbb, 0x9e, 0xd7, 0xe3, 0x00, 0x93, 0xe9, - 0x90, 0xae, 0x29, 0xc9, 0x18, 0xf1, 0xf9, 0x29, 0x86, 0x85, 0x01, 0x97, 0x9c, 0x4a, 0x9f, 0x62, - 0x5a, 0x82, 0x8a, 0x8a, 0x4b, 0xfa, 0x50, 0xea, 0x9b, 0x3e, 0x97, 0x2b, 0x8a, 0x21, 0xbb, 0x36, - 0xf2, 0xf9, 0xb4, 0xb1, 0x29, 0x70, 0xae, 0xb9, 0x61, 0x70, 0x10, 0xab, 0x93, 0x44, 0x54, 0x4a, - 0x88, 0x03, 0xd3, 0x3d, 0x87, 0x85, 0x5c, 0x5f, 0x69, 0x0c, 0xab, 0xe0, 0xfa, 0xee, 0x99, 0xbd, - 0x01, 0x8d, 0x47, 0xe0, 0xb6, 0x84, 0xc5, 0x08, 0x7f, 0xf1, 0x00, 0xaa, 0x89, 0x1e, 0x91, 0x79, - 0x99, 0x13, 0x15, 0xc6, 0x2b, 0xd2, 0xa0, 0x64, 0x07, 0x8a, 0x0f, 0x39, 0x86, 0x72, 0x36, 0x63, - 0xf6, 0x04, 0x25, 0xd8, 0x5b, 0x13, 0x6f, 0x16, 0xde, 0x2a, 0x7f, 0xff, 0x8f, 0xeb, 0xa7, 0x3e, - 0xfe, 0x87, 0x4b, 0xa7, 0x8c, 0xbf, 0x99, 0x84, 0x8a, 0x16, 0xf9, 0xbf, 0x6d, 0x29, 0x41, 0xc6, - 0x52, 0x6e, 0x8e, 0x37, 0x5e, 0x4f, 0x64, 0x2e, 0x2b, 0x69, 0x73, 0x99, 0x69, 0xfe, 0xff, 0xc4, - 0x54, 0x3f, 0x3a, 0xac, 0xd7, 0xd2, 0x83, 0x80, 0xe6, 0xfe, 0x26, 0x65, 0xcc, 0xec, 0xd0, 0xd8, - 0x0c, 0xbe, 0xfe, 0x45, 0x66, 0xb0, 0x90, 0x34, 0x83, 0x4a, 0xfe, 0x34, 0x7e, 0x3c, 0x09, 0xe5, - 0xcd, 0x28, 0xdf, 0xf5, 0x5b, 0x05, 0xa8, 0x9a, 0xae, 0xeb, 0x85, 0x22, 0x33, 0x1a, 0xb9, 0xb7, - 0xad, 0x91, 0x86, 0x23, 0x02, 0x6d, 0xac, 0xc4, 0x80, 0x72, 0x48, 0xf4, 0xce, 0x94, 0xe0, 0x60, - 0x52, 0x2f, 0xf9, 0x00, 0x4a, 0x3d, 0x73, 0x97, 0xf6, 0x22, 0x6f, 0xb7, 0x31, 0x5e, 0x0f, 0x6e, - 0x0b, 0xac, 0xcc, 0x7c, 0x48, 0x22, 0x2a, 0x45, 0x8b, 0xef, 0xc0, 0x7c, 0xb6, 0xa3, 0x4f, 0x33, - 0xa2, 0x7c, 0x32, 0x12, 0x6a, 0x9e, 0xa6, 0xa9, 0xf1, 0xdf, 0x15, 0x80, 0x2d, 0xcf, 0xa6, 0x2a, - 0x21, 0xb3, 0x08, 0x13, 0x8e, 0xad, 0xb6, 0x22, 0x50, 0xbd, 0x9d, 0xd8, 0x58, 0xc3, 0x09, 0xc7, - 0xd6, 0x29, 0x8e, 0x89, 0x63, 0x53, 0x1c, 0x5f, 0x83, 0xaa, 0xed, 0x30, 0xbf, 0x67, 0x1e, 0x6c, - 0xe5, 0x9c, 0x05, 0xd6, 0x62, 0x16, 0x26, 0xe5, 0xc8, 0x6b, 0x6a, 0xfd, 0xca, 0x85, 0x52, 0xcb, - 0xac, 0xdf, 0x32, 0xef, 0x5e, 0x62, 0x0d, 0xbf, 0x09, 0x33, 0x51, 0x0a, 0x41, 0x68, 0x29, 0x8a, - 0x56, 0xd1, 0xaa, 0x9f, 0xd9, 0x49, 0xf0, 0x30, 0x25, 0x99, 0x4d, 0x71, 0x94, 0x9e, 0x4b, 0x8a, - 0x63, 0x0d, 0xe6, 0x59, 0xe8, 0x05, 0xd4, 0x8e, 0x24, 0x36, 0xd6, 0x6a, 0x24, 0xf5, 0xa1, 0xf3, - 0xad, 0x0c, 0x1f, 0x87, 0x5a, 0x90, 0x6d, 0x58, 0x88, 0x3a, 0x91, 0xfc, 0xc0, 0xda, 0x59, 0x81, - 0x74, 0x51, 0x21, 0x2d, 0xdc, 0xcf, 0x91, 0xc1, 0xdc, 0x96, 0xe4, 0x1b, 0x30, 0x1b, 0x75, 0xb3, - 0x65, 0x79, 0x3e, 0xad, 0x2d, 0x08, 0x28, 0x7d, 0x5a, 0xde, 0x49, 0x32, 0x31, 0x2d, 0x4b, 0xbe, - 0x02, 0x45, 0xbf, 0x6b, 0x32, 0xaa, 0x32, 0x22, 0x51, 0xe0, 0x5b, 0xdc, 0xe6, 0xc4, 0x47, 0x87, - 0xf5, 0x0a, 0x9f, 0x33, 0xf1, 0x03, 0xa5, 0x20, 0xb9, 0x02, 0xb0, 0xeb, 0x0d, 0x5c, 0xdb, 0x0c, - 0x0e, 0x36, 0xd6, 0x44, 0x18, 0x94, 0xb8, 0xee, 0x6e, 0x6a, 0x0e, 0x26, 0xa4, 0xb8, 0xb7, 0xed, - 0x4b, 0xbf, 0xa3, 0x12, 0x1b, 0xda, 0xdb, 0x6a, 0x77, 0xa4, 0xf8, 0xe4, 0x3d, 0xa8, 0x88, 0x74, - 0x29, 0xb5, 0x57, 0x42, 0x95, 0xdd, 0x78, 0x9a, 0x9c, 0x9f, 0x3e, 0x92, 0xb4, 0x22, 0x10, 0x8c, - 0xf1, 0xc8, 0xb7, 0x01, 0xda, 0x8e, 0xeb, 0xb0, 0xae, 0x40, 0xaf, 0x3e, 0x35, 0xba, 0xfe, 0xce, - 0x75, 0x8d, 0x82, 0x09, 0x44, 0x1e, 0x30, 0xf9, 0x9e, 0xbd, 0xb1, 0x5d, 0x9b, 0x11, 0x5f, 0xa9, - 0x03, 0xa6, 0x6d, 0x4e, 0x44, 0xc9, 0x23, 0x97, 0xa1, 0x6c, 0x9b, 0xb4, 0xef, 0xb9, 0xd4, 0xae, - 0xcd, 0xc6, 0x49, 0x8b, 0x35, 0x45, 0x43, 0xcd, 0x25, 0xdf, 0x81, 0x92, 0x23, 0xce, 0x8b, 0xb5, - 0xd3, 0xa2, 0xab, 0xdf, 0x18, 0x6d, 0x47, 0x11, 0x10, 0x4d, 0xe0, 0xee, 0x4a, 0xfe, 0x8d, 0x0a, - 0x96, 0x58, 0x30, 0xed, 0x0d, 0x42, 0xa1, 0x61, 0x4e, 0x68, 0x18, 0x2d, 0x49, 0x73, 0x47, 0x62, - 0xc8, 0xf2, 0x03, 0xf5, 0x03, 0x23, 0x64, 0xfe, 0xbd, 0x56, 0xd7, 0xe9, 0xd9, 0x01, 0x75, 0x6b, - 0xf3, 0x22, 0x1e, 0x13, 0xdf, 0xbb, 0xaa, 0x68, 0xa8, 0xb9, 0xe4, 0xe7, 0x61, 0xd6, 0x1b, 0x84, - 0xc2, 0x6e, 0xb8, 0xd9, 0xb1, 0xda, 0x19, 0x21, 0x7e, 0x86, 0x5b, 0xf1, 0x9d, 0x24, 0x03, 0xd3, - 0x72, 0xc6, 0x69, 0x98, 0x49, 0xd6, 0xec, 0x18, 0x7f, 0x30, 0x01, 0x51, 0x3f, 0x7e, 0x12, 0x8e, - 0xda, 0xc4, 0x80, 0x52, 0x40, 0xd9, 0xa0, 0x17, 0x2a, 0x4f, 0x2d, 0xe6, 0x1a, 0x05, 0x05, 0x15, - 0xc7, 0xd8, 0x87, 0x59, 0xde, 0xdb, 0x5e, 0x8f, 0xf6, 0x5a, 0x21, 0xf5, 0x19, 0x69, 0x43, 0x91, - 0xf1, 0x3f, 0xd4, 0x98, 0x8c, 0x79, 0x23, 0x14, 0x52, 0x3f, 0xb6, 0x77, 0xa1, 0x00, 0x25, 0xbc, - 0xf1, 0xbd, 0x09, 0xa8, 0xe8, 0x71, 0x7a, 0x82, 0xf4, 0xfa, 0x2b, 0x30, 0x6d, 0xd3, 0xb6, 0xc9, - 0xbf, 0x46, 0x5d, 0xd0, 0x73, 0xb3, 0x5a, 0x93, 0x24, 0x8c, 0x78, 0xa4, 0x1e, 0xed, 0x84, 0xf2, - 0x93, 0x45, 0xca, 0x2b, 0x79, 0xd0, 0x24, 0x7b, 0x50, 0x11, 0x7f, 0xac, 0x47, 0xc5, 0x44, 0xa3, - 0xce, 0xfb, 0xbd, 0x08, 0x45, 0x26, 0x12, 0xf4, 0x4f, 0x8c, 0xf1, 0x33, 0x45, 0x40, 0xc5, 0x27, - 0x29, 0x02, 0x32, 0xd6, 0x81, 0x3b, 0x86, 0xeb, 0xab, 0xe4, 0x6d, 0x28, 0x33, 0x65, 0xba, 0x6a, - 0x5c, 0xbe, 0xa4, 0x6f, 0xc5, 0x14, 0xfd, 0xd1, 0x61, 0x7d, 0x56, 0x08, 0x47, 0x04, 0xd4, 0x4d, - 0x8c, 0x65, 0xa8, 0x26, 0x8a, 0x26, 0xf8, 0x08, 0xeb, 0x8b, 0xcc, 0xc4, 0x08, 0xaf, 0x99, 0xa1, - 0x89, 0x82, 0x63, 0x3c, 0x9a, 0x80, 0x79, 0xa4, 0xcc, 0x1b, 0x04, 0x16, 0x4d, 0xa6, 0x75, 0x4d, - 0x2b, 0x71, 0x97, 0x9e, 0xba, 0x9c, 0xf1, 0x5c, 0x54, 0x5c, 0xbe, 0xdd, 0xf4, 0x69, 0xd0, 0xd1, - 0x8b, 0x4d, 0x4d, 0x92, 0xde, 0x6e, 0x36, 0x93, 0x4c, 0x4c, 0xcb, 0x92, 0xd7, 0xa0, 0xdc, 0x37, - 0x5d, 0xa7, 0x4d, 0x59, 0x98, 0xcd, 0xb7, 0x6c, 0x2a, 0x3a, 0x6a, 0x09, 0x72, 0x1d, 0xce, 0x30, - 0x1a, 0xde, 0xd9, 0x77, 0x69, 0xa0, 0x2f, 0x8d, 0xd4, 0x5d, 0xdd, 0x0b, 0xd1, 0xfd, 0x5f, 0x2b, - 0x2b, 0x80, 0xc3, 0x6d, 0xc4, 0xd6, 0x2d, 0xaf, 0xc9, 0x56, 0x3d, 0xd7, 0x76, 0x74, 0xbd, 0x58, - 0x72, 0xeb, 0xce, 0xf0, 0x71, 0xa8, 0x05, 0x47, 0x69, 0x9b, 0x4e, 0x6f, 0x10, 0xd0, 0x18, 0xa5, - 0x94, 0x46, 0x59, 0xcf, 0xf0, 0x71, 0xa8, 0x85, 0xf1, 0x4f, 0x05, 0x98, 0x45, 0x1a, 0x06, 0x07, - 0x7a, 0x50, 0xea, 0x50, 0xec, 0x89, 0x5b, 0xb9, 0x82, 0xb8, 0x95, 0x13, 0x96, 0x2c, 0x2f, 0xe1, - 0x24, 0x9d, 0xac, 0x41, 0x35, 0xe0, 0x2d, 0xd4, 0x0d, 0xa8, 0x1c, 0x70, 0x23, 0x3a, 0x8d, 0x61, - 0xcc, 0x7a, 0x94, 0xfe, 0x89, 0xc9, 0x66, 0xc4, 0x85, 0xe9, 0x5d, 0x59, 0x39, 0xa1, 0xae, 0xa1, - 0x46, 0x73, 0xf6, 0xaa, 0xfa, 0x42, 0xe4, 0x60, 0xa2, 0x52, 0x8c, 0x47, 0xf1, 0x9f, 0x18, 0x29, - 0x31, 0xbe, 0x5f, 0x00, 0x88, 0x4b, 0xb8, 0xc8, 0x1e, 0x94, 0xd9, 0xd5, 0xe6, 0xc0, 0xda, 0xd3, - 0x39, 0xb2, 0x11, 0xaf, 0x52, 0x14, 0x48, 0xe2, 0xe6, 0x58, 0x51, 0x50, 0x2b, 0xf8, 0xa2, 0x02, - 0x9f, 0xbf, 0x98, 0x04, 0xdd, 0x8a, 0xdb, 0x24, 0x75, 0x6d, 0xdf, 0x73, 0xdc, 0x30, 0x5b, 0x46, - 0x72, 0x4d, 0xd1, 0x51, 0x4b, 0xf0, 0x65, 0xb2, 0x2b, 0x3f, 0x62, 0x22, 0xbd, 0x4c, 0x54, 0x1f, - 0x14, 0x97, 0xcb, 0x05, 0xb4, 0x13, 0x57, 0x90, 0x68, 0x39, 0x14, 0x54, 0x54, 0x5c, 0xbe, 0x3b, - 0x46, 0x49, 0x62, 0x65, 0xda, 0x62, 0x77, 0x8c, 0xf2, 0xc9, 0xa8, 0xb9, 0xa4, 0x0b, 0x73, 0xa6, - 0xb0, 0xc8, 0x38, 0xf1, 0xfd, 0x54, 0x39, 0xfc, 0xb8, 0x7c, 0x28, 0x8d, 0x82, 0x59, 0x58, 0xae, - 0x89, 0xc5, 0xcd, 0x9f, 0x3e, 0x95, 0xaf, 0x35, 0xb5, 0xd2, 0x28, 0x98, 0x85, 0xe5, 0x07, 0xc3, - 0xc0, 0xeb, 0xd1, 0x15, 0xdc, 0x52, 0x07, 0x50, 0x7d, 0x30, 0x44, 0x49, 0xc6, 0x88, 0x6f, 0xfc, - 0x4e, 0x01, 0x4e, 0xb7, 0xac, 0xc0, 0xf1, 0x43, 0xed, 0xb2, 0xb6, 0x44, 0xdd, 0x57, 0x68, 0xf2, - 0x23, 0x9b, 0xb2, 0xa9, 0x97, 0x8e, 0xc9, 0x21, 0x4a, 0xa1, 0x54, 0x59, 0x98, 0x24, 0x61, 0x0c, - 0x21, 0x22, 0x7d, 0xe1, 0x14, 0xb3, 0x73, 0xdb, 0x12, 0x54, 0x54, 0x5c, 0xe3, 0x07, 0x05, 0x28, - 0xeb, 0x1b, 0xbb, 0x97, 0xa1, 0x28, 0x2e, 0x82, 0x94, 0xed, 0xe8, 0x3d, 0x70, 0x95, 0x13, 0x51, - 0xf2, 0xb8, 0x90, 0x38, 0x85, 0x2a, 0xe0, 0xc4, 0x46, 0x69, 0x06, 0x21, 0x4a, 0x1e, 0x37, 0x5a, - 0xea, 0xda, 0xca, 0x5e, 0xb4, 0xd1, 0x5e, 0x73, 0x6d, 0xe4, 0x74, 0x51, 0x2e, 0xe4, 0x05, 0x7d, - 0x33, 0xcc, 0xe6, 0x21, 0xd6, 0x05, 0x15, 0x15, 0xd7, 0x78, 0x17, 0xe6, 0x54, 0x01, 0x83, 0x1e, - 0xa8, 0xa7, 0xaa, 0x94, 0x32, 0xfe, 0xa3, 0x00, 0xd5, 0x9d, 0x9d, 0xdb, 0xda, 0x3f, 0xdd, 0x81, - 0x73, 0x4c, 0x56, 0x2c, 0xac, 0xb4, 0x43, 0x1a, 0xac, 0x7a, 0x7d, 0xbf, 0x47, 0x43, 0x6a, 0x2b, - 0x7f, 0xf5, 0xc2, 0xd1, 0x61, 0xfd, 0x5c, 0x2b, 0x4f, 0x00, 0xf3, 0xdb, 0x91, 0x0d, 0x38, 0x9b, - 0x64, 0x28, 0xd7, 0xab, 0xea, 0xb2, 0xe4, 0xfd, 0xcc, 0x30, 0x1b, 0xf3, 0xda, 0x90, 0x75, 0x20, - 0x49, 0xb2, 0x2c, 0x66, 0x50, 0x85, 0xc5, 0xe7, 0xe5, 0x0d, 0x5e, 0x96, 0x8b, 0x39, 0x2d, 0x8c, - 0x59, 0xa8, 0x26, 0x6a, 0xca, 0x8d, 0xff, 0xbc, 0x00, 0xfa, 0x2e, 0xff, 0xa7, 0x15, 0x01, 0x23, - 0x85, 0xcb, 0x96, 0x0e, 0x5e, 0x8a, 0xe3, 0x07, 0x2f, 0xda, 0xd6, 0x33, 0x01, 0x4c, 0x27, 0x0e, - 0x60, 0x4a, 0x27, 0x10, 0xc0, 0x68, 0xef, 0x33, 0x14, 0xc4, 0xfc, 0x6e, 0x01, 0x66, 0x5c, 0xcf, - 0xa6, 0x91, 0x8f, 0xab, 0x4d, 0x8b, 0x43, 0xf3, 0x9d, 0xb1, 0x06, 0xb1, 0xb1, 0x95, 0x40, 0x94, - 0x89, 0x25, 0x9d, 0xfd, 0x48, 0xb2, 0x30, 0xa5, 0x9a, 0xac, 0x43, 0xd9, 0x6c, 0xf3, 0xa8, 0x33, - 0x3c, 0x50, 0x45, 0x09, 0x17, 0xf3, 0xbc, 0xde, 0x8a, 0x92, 0x91, 0x1b, 0x4a, 0xf4, 0x0b, 0x75, - 0x5b, 0xbe, 0x23, 0xeb, 0xaa, 0xb7, 0xca, 0x18, 0x3b, 0x72, 0x94, 0x21, 0x4b, 0x9c, 0xe5, 0x14, - 0x25, 0x51, 0x04, 0x67, 0x40, 0x49, 0xc6, 0xb5, 0x22, 0xa8, 0x2f, 0xcb, 0x10, 0x45, 0xc6, 0xbc, - 0xa8, 0x38, 0xa4, 0x13, 0x45, 0x24, 0x55, 0x31, 0xb8, 0xcd, 0x91, 0xa3, 0x34, 0x1d, 0xe4, 0xe4, - 0x87, 0x24, 0xe4, 0x66, 0x72, 0xe3, 0x98, 0x79, 0x92, 0x8d, 0x63, 0xf6, 0xd8, 0x4d, 0xa3, 0x03, - 0x25, 0x26, 0xb6, 0x25, 0x11, 0xcc, 0x57, 0xaf, 0xac, 0x8e, 0x76, 0xaa, 0x49, 0xed, 0x6c, 0x72, - 0x74, 0x24, 0x0d, 0x15, 0x3c, 0xf1, 0xa0, 0x1c, 0xa8, 0x43, 0xbb, 0xca, 0x07, 0x8c, 0x76, 0x17, - 0x91, 0x3d, 0xf9, 0x4b, 0xfb, 0x88, 0xa8, 0xa8, 0x95, 0x90, 0xf7, 0x60, 0xd2, 0x36, 0x3b, 0x2a, - 0x33, 0xf0, 0xcd, 0x91, 0xcb, 0x37, 0x22, 0x35, 0xa2, 0x98, 0x7b, 0x6d, 0xe5, 0x3a, 0x72, 0x54, - 0xb2, 0x17, 0x57, 0xdf, 0xcd, 0x8f, 0x51, 0x23, 0x9d, 0xd9, 0xe9, 0x64, 0xac, 0x38, 0x54, 0xbf, - 0x77, 0x0d, 0xa6, 0x1f, 0x7a, 0xbd, 0x41, 0x5f, 0xa5, 0x14, 0xaa, 0x57, 0x16, 0xf3, 0x66, 0xfb, - 0x9e, 0x10, 0x89, 0x9d, 0x80, 0xfc, 0xcd, 0x30, 0x6a, 0x4b, 0x7e, 0xa3, 0x00, 0xa7, 0xf9, 0xd2, - 0xd1, 0x76, 0xc0, 0x6a, 0x64, 0x0c, 0x4b, 0xbd, 0xcb, 0xf8, 0xa6, 0x18, 0x59, 0xd8, 0x79, 0xa5, - 0xf6, 0xf4, 0x46, 0x4a, 0x03, 0x66, 0x34, 0x12, 0x1f, 0xca, 0xcc, 0xb1, 0xa9, 0x65, 0x06, 0xac, - 0x76, 0xf6, 0xc4, 0xb4, 0xc7, 0x87, 0x69, 0x85, 0x8d, 0x5a, 0x0b, 0xf9, 0x4d, 0x51, 0xd7, 0xae, - 0x5e, 0x76, 0xa8, 0xd7, 0x36, 0x0b, 0x27, 0xf9, 0xda, 0xe6, 0xac, 0x2c, 0x6a, 0x4f, 0x69, 0xc0, - 0xac, 0x4a, 0x7e, 0x0c, 0x91, 0xf5, 0x81, 0xd9, 0x12, 0xcc, 0x73, 0xe2, 0xb6, 0x48, 0x1c, 0x43, - 0x56, 0xf2, 0x04, 0x30, 0xbf, 0x1d, 0xf9, 0x08, 0x66, 0x83, 0x64, 0x20, 0x56, 0x3b, 0x3f, 0x46, - 0xa9, 0x42, 0x2a, 0xa4, 0x93, 0x29, 0xab, 0x14, 0x09, 0xd3, 0xba, 0xc8, 0x1b, 0x50, 0xf5, 0x95, - 0xa7, 0x72, 0x58, 0xbf, 0x76, 0x41, 0x7c, 0x83, 0xd8, 0x51, 0xb7, 0x63, 0x32, 0x26, 0x65, 0xc8, - 0x5d, 0xa8, 0x86, 0x5e, 0x8f, 0x06, 0xea, 0x5a, 0xa5, 0x26, 0x26, 0x7f, 0x29, 0xcf, 0x92, 0x77, - 0xb4, 0x58, 0x9c, 0xb4, 0x8f, 0x69, 0x0c, 0x93, 0x38, 0x3c, 0xa0, 0x8f, 0x2a, 0x6e, 0x03, 0x91, - 0xbd, 0x78, 0x21, 0x1d, 0xd0, 0xb7, 0x92, 0x4c, 0x4c, 0xcb, 0xf2, 0x10, 0xdd, 0x0f, 0x1c, 0x2f, - 0x70, 0xc2, 0x83, 0xd5, 0x9e, 0xc9, 0x98, 0x00, 0x58, 0x14, 0x00, 0x3a, 0x44, 0xdf, 0xce, 0x0a, - 0xe0, 0x70, 0x1b, 0x1e, 0x07, 0x45, 0xc4, 0xda, 0x8b, 0xe2, 0xf8, 0x26, 0xdc, 0x52, 0xd4, 0x16, - 0x35, 0xf7, 0x98, 0xc2, 0xad, 0x8b, 0xa3, 0x14, 0x6e, 0x11, 0x1b, 0x2e, 0x9a, 0x83, 0xd0, 0xeb, - 0x73, 0x42, 0xba, 0xc9, 0x8e, 0xb7, 0x47, 0xdd, 0xda, 0x25, 0xb1, 0x57, 0x5d, 0x3a, 0x3a, 0xac, - 0x5f, 0x5c, 0x79, 0x8c, 0x1c, 0x3e, 0x16, 0x85, 0xf4, 0xa1, 0x4c, 0x55, 0xf1, 0x59, 0xed, 0x4b, - 0x63, 0x6c, 0x12, 0xe9, 0x0a, 0x36, 0x39, 0x40, 0x11, 0x0d, 0xb5, 0x0a, 0xb2, 0x03, 0xd5, 0xae, - 0xc7, 0xc2, 0x95, 0x9e, 0x63, 0x32, 0xca, 0x6a, 0x2f, 0x09, 0x3b, 0xc9, 0xdd, 0xdf, 0x6e, 0x44, - 0x62, 0xb1, 0x99, 0xdc, 0x88, 0x5b, 0x62, 0x12, 0x86, 0x50, 0x11, 0x14, 0x0e, 0xc4, 0xac, 0x79, - 0x6e, 0x48, 0x3f, 0x0c, 0x6b, 0x4b, 0xe2, 0x5b, 0x5e, 0xcd, 0x43, 0xde, 0xf6, 0xec, 0x56, 0x5a, - 0x5a, 0xae, 0xf2, 0x0c, 0x11, 0xb3, 0x98, 0xe4, 0x4d, 0x98, 0xf1, 0x3d, 0xbb, 0xe5, 0x53, 0x6b, - 0xdb, 0x0c, 0xad, 0x6e, 0xad, 0x9e, 0xbe, 0x14, 0xda, 0x4e, 0xf0, 0x30, 0x25, 0xb9, 0xf8, 0x2e, - 0x9c, 0x19, 0x3a, 0x4f, 0x3d, 0xd5, 0x0d, 0xda, 0x9f, 0xf2, 0xb8, 0x27, 0x71, 0x82, 0x3d, 0xe9, - 0x73, 0xff, 0x75, 0x38, 0xa3, 0x5e, 0xcb, 0xf2, 0xcd, 0xb6, 0x37, 0xd0, 0xef, 0x4b, 0x12, 0xe9, - 0x2c, 0xcc, 0x0a, 0xe0, 0x70, 0x1b, 0xe3, 0xcf, 0x0a, 0x30, 0x9b, 0x72, 0xdf, 0x27, 0x1e, 0x09, - 0xaf, 0x03, 0xe9, 0x3b, 0x41, 0xe0, 0x05, 0x72, 0x0f, 0xdc, 0xe4, 0xb6, 0xcc, 0xd4, 0x33, 0x15, - 0x11, 0x56, 0x6d, 0x0e, 0x71, 0x31, 0xa7, 0x85, 0xf1, 0x57, 0x05, 0x88, 0xf3, 0xa5, 0xba, 0xe2, - 0xac, 0x70, 0x6c, 0xc5, 0xd9, 0x6b, 0x50, 0x7e, 0xc0, 0x3c, 0x77, 0x3b, 0xae, 0x4b, 0xd3, 0x03, - 0x7a, 0xb3, 0x75, 0x67, 0x4b, 0x48, 0x6a, 0x09, 0x21, 0xfd, 0xc1, 0xba, 0xd3, 0x0b, 0x87, 0xab, - 0xb7, 0x6e, 0xfe, 0xa2, 0xa4, 0xa3, 0x96, 0x20, 0xcb, 0x50, 0xd1, 0x29, 0x7a, 0x15, 0x42, 0xeb, - 0x41, 0xd0, 0xf9, 0x69, 0x8c, 0x65, 0x8c, 0x1f, 0x4e, 0x40, 0xf9, 0x39, 0xbe, 0xb9, 0xb1, 0x52, - 0x6f, 0x6e, 0x4e, 0xe0, 0x81, 0x46, 0xde, 0x7b, 0x9b, 0xbd, 0xcc, 0x7b, 0x9b, 0xd5, 0x31, 0xb3, - 0xfe, 0x8f, 0x7d, 0x6b, 0xf3, 0x69, 0x01, 0x66, 0x9e, 0xe3, 0x3b, 0x9b, 0xdd, 0xf4, 0x3b, 0x9b, - 0xb7, 0xc7, 0xfa, 0xb4, 0x63, 0xde, 0xd8, 0xfc, 0xe5, 0x02, 0xa4, 0xde, 0xb7, 0x10, 0x17, 0x2a, - 0xd1, 0x02, 0x8f, 0x6e, 0x52, 0xde, 0x1e, 0x2b, 0x28, 0x8c, 0x8d, 0x32, 0xa2, 0x30, 0x8c, 0x55, - 0x90, 0x2b, 0x00, 0x94, 0x7b, 0x36, 0x99, 0xaf, 0x9c, 0x48, 0x5f, 0x34, 0x5c, 0xd3, 0x1c, 0x4c, - 0x48, 0x3d, 0xff, 0x84, 0x43, 0xfe, 0x16, 0x3d, 0xf5, 0x4c, 0xb6, 0xe8, 0x8b, 0x27, 0xbe, 0x45, - 0xbf, 0xf4, 0xec, 0xb7, 0xe8, 0x44, 0x40, 0x52, 0x1c, 0x23, 0x20, 0xf9, 0x08, 0x16, 0xe4, 0x9f, - 0xab, 0x3d, 0xd3, 0xe9, 0x6b, 0x7b, 0x51, 0xa5, 0x63, 0x5f, 0xce, 0xdd, 0x98, 0x69, 0xc0, 0x1c, - 0x16, 0x52, 0x37, 0xbc, 0x17, 0xb7, 0x8c, 0xeb, 0x0e, 0xee, 0xe5, 0xc0, 0x61, 0xae, 0x92, 0xec, - 0x09, 0x76, 0xfa, 0x09, 0x4e, 0xb0, 0x3f, 0x28, 0xc0, 0x39, 0x33, 0xef, 0x09, 0xaf, 0xca, 0x63, - 0xdc, 0x1c, 0x2b, 0x9e, 0x48, 0x21, 0xaa, 0x78, 0x20, 0x8f, 0x85, 0xf9, 0x7d, 0x20, 0xaf, 0xc4, - 0x21, 0x69, 0x45, 0x18, 0x55, 0x7e, 0x30, 0xf9, 0xdd, 0x6c, 0x2a, 0x08, 0xc4, 0x68, 0xb7, 0xc6, - 0x76, 0xd8, 0x27, 0x90, 0x0e, 0xaa, 0x8e, 0x91, 0x0e, 0xca, 0x84, 0x17, 0x33, 0x27, 0x14, 0x5e, - 0xb8, 0x30, 0xef, 0xf4, 0xcd, 0x0e, 0xdd, 0x1e, 0xf4, 0x7a, 0x32, 0xeb, 0xcf, 0x6a, 0xb3, 0x02, - 0x3b, 0xb7, 0xde, 0x97, 0x87, 0x7b, 0xbd, 0xec, 0x43, 0x31, 0x7d, 0xbf, 0xb6, 0x91, 0x41, 0xc2, - 0x21, 0x6c, 0x6e, 0x96, 0xfc, 0xd8, 0xba, 0x45, 0x43, 0x3e, 0xda, 0x22, 0x53, 0xa2, 0xfe, 0xab, - 0x82, 0x1b, 0x31, 0x19, 0x93, 0x32, 0xe4, 0x16, 0x54, 0x6c, 0x97, 0xa9, 0xdb, 0xb5, 0x39, 0xe1, - 0xa5, 0x5e, 0xe7, 0xbe, 0x6d, 0x6d, 0xab, 0xa5, 0xef, 0xd5, 0x2e, 0x0e, 0xff, 0x5f, 0x2c, 0x0d, - 0xcd, 0xc7, 0xb8, 0x3d, 0xd9, 0x14, 0x60, 0xaa, 0xf8, 0x5d, 0xa6, 0x36, 0x2e, 0x1d, 0x73, 0x42, - 0x5e, 0xdb, 0x8a, 0x6a, 0xf5, 0x67, 0x95, 0x3a, 0x55, 0xd2, 0x1e, 0x23, 0x90, 0x57, 0xa1, 0xe4, - 0xb9, 0xd7, 0x3e, 0x74, 0xc2, 0xda, 0x99, 0x74, 0xd6, 0xff, 0x8e, 0xa0, 0xa2, 0xe2, 0x92, 0xbb, - 0x70, 0x21, 0x0c, 0x7b, 0xa9, 0x6c, 0xb7, 0xaa, 0x4b, 0x11, 0x45, 0x4a, 0x45, 0xf9, 0x44, 0x71, - 0x67, 0xe7, 0x76, 0x9e, 0x08, 0x1e, 0xd7, 0x56, 0xa4, 0x8e, 0xc3, 0x9e, 0x8e, 0x90, 0x97, 0xc6, - 0x49, 0x1d, 0xc7, 0x57, 0x0a, 0x2a, 0x75, 0x1c, 0x13, 0x30, 0xa9, 0xe5, 0xf8, 0x48, 0xff, 0xec, - 0x88, 0x91, 0x7e, 0x32, 0xb8, 0x5c, 0x78, 0x6c, 0x70, 0x39, 0x14, 0x0c, 0x9f, 0x7b, 0x8a, 0x60, - 0xf8, 0x3d, 0x51, 0xfe, 0x73, 0x7d, 0x55, 0x25, 0x12, 0xde, 0x1a, 0x2d, 0x7f, 0xc9, 0x11, 0xe4, - 0x25, 0xb0, 0xf8, 0x13, 0x25, 0x26, 0xd9, 0x86, 0x05, 0xdf, 0xb3, 0x87, 0x62, 0x69, 0x91, 0x39, - 0x48, 0x14, 0x8e, 0x6d, 0xe7, 0xc8, 0x60, 0x6e, 0x4b, 0xe1, 0xc0, 0x63, 0x7a, 0xad, 0x26, 0x06, - 0x46, 0x3a, 0xf0, 0x98, 0x8c, 0x49, 0x99, 0x6c, 0x68, 0xf9, 0xc2, 0x33, 0x0b, 0x2d, 0x17, 0x9f, - 0x43, 0x68, 0xf9, 0xe2, 0xf3, 0x0b, 0x2d, 0x3f, 0x2f, 0xc3, 0xe9, 0xcc, 0x8b, 0x59, 0x5d, 0x79, - 0x57, 0x78, 0xd2, 0xca, 0xbb, 0x54, 0x69, 0xdc, 0xc4, 0x33, 0x2d, 0x8d, 0x9b, 0x3c, 0xf1, 0xd2, - 0xb8, 0x44, 0x09, 0xe0, 0xd4, 0x17, 0x94, 0x00, 0xae, 0xc0, 0x9c, 0xe5, 0xf5, 0x7d, 0xf1, 0x44, - 0x47, 0x15, 0x82, 0xc9, 0x62, 0x0d, 0x7d, 0xaf, 0xbc, 0x9a, 0x66, 0x63, 0x56, 0x9e, 0xfc, 0x2a, - 0x14, 0x5d, 0xd1, 0xb0, 0x34, 0x46, 0xed, 0x71, 0x7a, 0xc2, 0xc4, 0xee, 0xac, 0xca, 0x7f, 0xa3, - 0x5c, 0x6d, 0x51, 0xd0, 0x1e, 0x45, 0x7f, 0xa0, 0x54, 0xca, 0x8f, 0x39, 0x73, 0xe9, 0xc2, 0x4f, - 0x56, 0xab, 0x88, 0x8e, 0xfc, 0xd2, 0x49, 0x74, 0x24, 0x5d, 0x65, 0xaa, 0xba, 0x14, 0xdf, 0xb9, - 0xa7, 0xb9, 0x98, 0xed, 0x09, 0x09, 0xe0, 0xbc, 0x9f, 0x77, 0x08, 0x64, 0xea, 0x4e, 0xeb, 0x71, - 0x47, 0xd1, 0x25, 0xa5, 0xe5, 0x7c, 0xee, 0x31, 0x92, 0xe1, 0x31, 0xc8, 0xc9, 0x42, 0xc3, 0xf2, - 0xb3, 0x2a, 0x34, 0x5c, 0x3c, 0x90, 0x05, 0xd0, 0xc7, 0xd6, 0x4e, 0xdf, 0x4d, 0xbf, 0x67, 0x78, - 0x77, 0xc4, 0xff, 0x1b, 0x2c, 0x2a, 0xb1, 0x4e, 0xd6, 0x6d, 0xff, 0x7a, 0x01, 0x16, 0xf2, 0xa6, - 0x25, 0xa7, 0x17, 0xad, 0x74, 0x2f, 0xc6, 0x0b, 0x16, 0x93, 0x3e, 0xe6, 0x5f, 0x8a, 0x89, 0xd0, - 0x34, 0xa4, 0xfe, 0x4f, 0xef, 0xad, 0x47, 0xba, 0xb7, 0x4e, 0xbd, 0x49, 0x2f, 0x3e, 0xc7, 0x37, - 0xe9, 0xa5, 0x11, 0xde, 0xa4, 0x4f, 0x3f, 0xcf, 0x37, 0xe9, 0xe5, 0x27, 0x7c, 0x93, 0x5e, 0x79, - 0xf6, 0x6f, 0xd2, 0x3f, 0x2f, 0xc0, 0x7c, 0xb6, 0x44, 0xfe, 0x39, 0xa4, 0xe8, 0xf6, 0x52, 0x29, - 0xba, 0x8d, 0xb1, 0x9c, 0xb9, 0x2e, 0xcb, 0x3f, 0x26, 0x55, 0x67, 0xfc, 0xb8, 0x00, 0x43, 0xcf, - 0x00, 0x9e, 0x43, 0x16, 0xed, 0x41, 0x3a, 0x8b, 0x76, 0xed, 0x44, 0x3e, 0xf2, 0x98, 0x6c, 0xda, - 0x7f, 0xe5, 0x7c, 0xe2, 0xff, 0x4a, 0x56, 0x2d, 0xe5, 0xda, 0x26, 0x9e, 0xbd, 0x6b, 0x6b, 0x36, - 0x3e, 0xf9, 0x7c, 0xe9, 0xd4, 0xa7, 0x9f, 0x2f, 0x9d, 0xfa, 0xec, 0xf3, 0xa5, 0x53, 0x1f, 0x1f, - 0x2d, 0x15, 0x3e, 0x39, 0x5a, 0x2a, 0x7c, 0x7a, 0xb4, 0x54, 0xf8, 0xec, 0x68, 0xa9, 0xf0, 0xe3, - 0xa3, 0xa5, 0xc2, 0xef, 0xff, 0xe3, 0xd2, 0xa9, 0x5f, 0x2e, 0x47, 0xb8, 0xff, 0x13, 0x00, 0x00, - 0xff, 0xff, 0x5a, 0x4a, 0xab, 0x8f, 0xb4, 0x54, 0x00, 0x00, + 0xd3, 0xd0, 0xea, 0xd6, 0xa6, 0xc4, 0xfa, 0x14, 0x02, 0xeb, 0x9c, 0x80, 0x92, 0x9e, 0x13, 0x25, + 0x14, 0x9f, 0x7d, 0x94, 0x50, 0x3a, 0xe1, 0x28, 0x81, 0xf8, 0x70, 0x96, 0xb1, 0xee, 0x76, 0xe0, + 0x3c, 0x34, 0x43, 0x2a, 0x1a, 0x0b, 0x3d, 0xd3, 0x4f, 0xa3, 0xe7, 0xc2, 0xd1, 0x61, 0xfd, 0x6c, + 0xab, 0x75, 0x23, 0x8b, 0x82, 0x79, 0xd0, 0xa4, 0x05, 0xe7, 0x1c, 0x97, 0x51, 0x6b, 0x10, 0xd0, + 0x8d, 0x8e, 0xeb, 0x05, 0xf4, 0x86, 0xc7, 0x38, 0x9c, 0x4a, 0xb8, 0xbc, 0xa8, 0x26, 0xed, 0xdc, + 0x46, 0x9e, 0x10, 0xe6, 0xb7, 0x35, 0x7e, 0x5c, 0x80, 0x99, 0x64, 0xb8, 0x4d, 0x18, 0x40, 0x77, + 0x6d, 0xbd, 0x25, 0x2d, 0x53, 0x9d, 0xe4, 0xde, 0x19, 0x39, 0x8a, 0x97, 0x30, 0x71, 0x24, 0x10, + 0xd3, 0x30, 0xa1, 0xe6, 0x09, 0xf2, 0x79, 0x2f, 0x41, 0xb1, 0xed, 0x05, 0x16, 0x55, 0x6b, 0x4b, + 0xaf, 0xc1, 0x75, 0x4e, 0x44, 0xc9, 0x33, 0xfe, 0xa5, 0x00, 0x09, 0x0d, 0xe4, 0xb7, 0x60, 0x96, + 0xeb, 0xb8, 0x15, 0xec, 0xa6, 0xbe, 0xa6, 0x39, 0xf2, 0xd7, 0x68, 0xa4, 0xe6, 0x39, 0xa5, 0x7f, + 0x36, 0x45, 0xc6, 0xb4, 0x3e, 0xf2, 0x8b, 0x50, 0x31, 0x6d, 0x3b, 0xa0, 0x8c, 0x51, 0xe9, 0x7a, + 0x2a, 0xcd, 0x59, 0xb1, 0xa7, 0x46, 0x44, 0x8c, 0xf9, 0x7c, 0x19, 0x76, 0xed, 0x36, 0xe3, 0x96, + 0xad, 0x0e, 0xa0, 0x7a, 0x19, 0x72, 0x25, 0x9c, 0x8e, 0x5a, 0xc2, 0xf8, 0xce, 0x14, 0xa4, 0x75, + 0x13, 0x1b, 0xe6, 0xf6, 0x82, 0xdd, 0xd5, 0x55, 0xd3, 0xea, 0x8e, 0x14, 0x7d, 0x9f, 0xe5, 0x61, + 0xff, 0xad, 0x34, 0x02, 0x66, 0x21, 0x95, 0x96, 0x5b, 0xf4, 0x20, 0x34, 0x77, 0x47, 0x09, 0xc0, + 0x23, 0x2d, 0x49, 0x04, 0xcc, 0x42, 0xf2, 0x00, 0x79, 0x2f, 0xd8, 0x8d, 0x16, 0x79, 0x36, 0x40, + 0xbe, 0x15, 0xb3, 0x30, 0x29, 0xc7, 0x87, 0x70, 0x2f, 0xd8, 0x45, 0x6a, 0xf6, 0xa2, 0xd4, 0xae, + 0x1e, 0xc2, 0x5b, 0x8a, 0x8e, 0x5a, 0x82, 0xf8, 0x40, 0xf6, 0xa2, 0xd1, 0xd3, 0x29, 0x1c, 0xe5, + 0x8b, 0x2e, 0xe7, 0x7d, 0x8d, 0x16, 0x4a, 0x7e, 0xd0, 0x79, 0xee, 0x9b, 0x6f, 0x0d, 0xe1, 0x60, + 0x0e, 0x36, 0xf9, 0x26, 0x5c, 0xd8, 0x0b, 0x76, 0x95, 0x23, 0xdf, 0x0e, 0x1c, 0xd7, 0x72, 0xfc, + 0x54, 0x4e, 0xb7, 0xae, 0xba, 0x7b, 0xe1, 0x56, 0xbe, 0x18, 0x1e, 0xd7, 0xde, 0x78, 0x0d, 0x66, + 0x92, 0x39, 0xc1, 0xcf, 0xc9, 0x23, 0x19, 0xff, 0x56, 0x80, 0xd2, 0x86, 0xeb, 0x0f, 0x7e, 0x4a, + 0xae, 0x17, 0xfe, 0x6c, 0x0a, 0xa6, 0xf8, 0x11, 0x8d, 0x5c, 0x86, 0xa9, 0xf0, 0xc0, 0x97, 0x7b, + 0xeb, 0x64, 0x73, 0x21, 0x72, 0x34, 0x3b, 0x07, 0x3e, 0x7d, 0xa4, 0xfe, 0x45, 0x21, 0x41, 0xde, + 0x86, 0x92, 0x3b, 0xe8, 0xdf, 0x33, 0x7b, 0xca, 0x29, 0xbd, 0x12, 0x1d, 0x2d, 0xb6, 0x04, 0xf5, + 0xd1, 0x61, 0x7d, 0x81, 0xba, 0x96, 0x67, 0x3b, 0x6e, 0x67, 0xf9, 0x01, 0xf3, 0xdc, 0xc6, 0xd6, + 0xa0, 0xbf, 0x4b, 0x03, 0x54, 0xad, 0x78, 0xe8, 0xb7, 0xeb, 0x79, 0x3d, 0x0e, 0x30, 0x99, 0x0e, + 0xfd, 0x9a, 0x92, 0x8c, 0x11, 0x9f, 0x9f, 0x62, 0x58, 0x18, 0x70, 0xc9, 0xa9, 0xf4, 0x29, 0xa6, + 0x25, 0xa8, 0xa8, 0xb8, 0xa4, 0x0f, 0xa5, 0xbe, 0xe9, 0x73, 0xb9, 0xa2, 0x18, 0xb2, 0x6b, 0x23, + 0x9f, 0x63, 0x1b, 0x9b, 0x02, 0xe7, 0x9a, 0x1b, 0x06, 0x07, 0xb1, 0x3a, 0x49, 0x44, 0xa5, 0x84, + 0x38, 0x30, 0xdd, 0x73, 0x58, 0xc8, 0xf5, 0x95, 0xc6, 0xb0, 0x0a, 0xae, 0xef, 0x9e, 0xd9, 0x1b, + 0xd0, 0x78, 0x04, 0x6e, 0x4b, 0x58, 0x8c, 0xf0, 0x17, 0x0f, 0xa0, 0x9a, 0xe8, 0x11, 0x99, 0x97, + 0xb9, 0x53, 0x61, 0xbc, 0x22, 0x5d, 0x4a, 0x76, 0xa0, 0xf8, 0x90, 0x63, 0x28, 0x67, 0x33, 0x66, + 0x4f, 0x50, 0x82, 0xbd, 0x39, 0xf1, 0x46, 0xe1, 0xcd, 0xf2, 0xf7, 0xff, 0xb4, 0x7e, 0xea, 0xa3, + 0x7f, 0xbc, 0x74, 0xca, 0xf8, 0xdb, 0x49, 0xa8, 0x68, 0x91, 0xff, 0xdf, 0x96, 0x12, 0x64, 0x2c, + 0xe5, 0xe6, 0x78, 0xe3, 0xf5, 0x44, 0xe6, 0xb2, 0x92, 0x36, 0x97, 0x99, 0xe6, 0xcf, 0x27, 0xa6, + 0xfa, 0xd1, 0x61, 0xbd, 0x96, 0x1e, 0x04, 0x34, 0xf7, 0x37, 0x29, 0x63, 0x66, 0x87, 0xc6, 0x66, + 0xf0, 0xb5, 0xcf, 0x33, 0x83, 0x85, 0xa4, 0x19, 0x54, 0xf2, 0xa7, 0xf1, 0xa3, 0x49, 0x28, 0x6f, + 0x46, 0x79, 0xb1, 0xdf, 0x2b, 0x40, 0xd5, 0x74, 0x5d, 0x2f, 0x14, 0x19, 0xd4, 0xc8, 0xbd, 0x6d, + 0x8d, 0x34, 0x1c, 0x11, 0x68, 0x63, 0x25, 0x06, 0x94, 0x43, 0xa2, 0x77, 0xa6, 0x04, 0x07, 0x93, + 0x7a, 0xc9, 0xfb, 0x50, 0xea, 0x99, 0xbb, 0xb4, 0x17, 0x79, 0xbb, 0x8d, 0xf1, 0x7a, 0x70, 0x5b, + 0x60, 0x65, 0xe6, 0x43, 0x12, 0x51, 0x29, 0x5a, 0x7c, 0x1b, 0xe6, 0xb3, 0x1d, 0x7d, 0x9a, 0x11, + 0xe5, 0x93, 0x91, 0x50, 0xf3, 0x34, 0x4d, 0x8d, 0xff, 0xae, 0x00, 0x6c, 0x79, 0x36, 0x55, 0x89, + 0x9b, 0x45, 0x98, 0x70, 0x6c, 0xb5, 0x15, 0x81, 0xea, 0xed, 0xc4, 0xc6, 0x1a, 0x4e, 0x38, 0xb6, + 0x4e, 0x85, 0x4c, 0x1c, 0x9b, 0x0a, 0xf9, 0x2a, 0x54, 0x6d, 0x87, 0xf9, 0x3d, 0xf3, 0x60, 0x2b, + 0xe7, 0x2c, 0xb0, 0x16, 0xb3, 0x30, 0x29, 0x47, 0x5e, 0x55, 0xeb, 0x57, 0x2e, 0x94, 0x5a, 0x66, + 0xfd, 0x96, 0x79, 0xf7, 0x12, 0x6b, 0xf8, 0x0d, 0x98, 0x89, 0x52, 0x0d, 0x42, 0x4b, 0x51, 0xb4, + 0x8a, 0x56, 0xfd, 0xcc, 0x4e, 0x82, 0x87, 0x29, 0xc9, 0x6c, 0x2a, 0xa4, 0xf4, 0x5c, 0x52, 0x21, + 0x6b, 0x30, 0xcf, 0x42, 0x2f, 0xa0, 0x76, 0x24, 0xb1, 0xb1, 0x56, 0x23, 0xa9, 0x0f, 0x9d, 0x6f, + 0x65, 0xf8, 0x38, 0xd4, 0x82, 0x6c, 0xc3, 0x42, 0xd4, 0x89, 0xe4, 0x07, 0xd6, 0xce, 0x0a, 0xa4, + 0x8b, 0x0a, 0x69, 0xe1, 0x7e, 0x8e, 0x0c, 0xe6, 0xb6, 0x24, 0x5f, 0x87, 0xd9, 0xa8, 0x9b, 0x2d, + 0xcb, 0xf3, 0x69, 0x6d, 0x41, 0x40, 0xe9, 0xd3, 0xf2, 0x4e, 0x92, 0x89, 0x69, 0x59, 0xf2, 0x65, + 0x28, 0xfa, 0x5d, 0x93, 0x51, 0x95, 0x39, 0x89, 0x02, 0xdf, 0xe2, 0x36, 0x27, 0x3e, 0x3a, 0xac, + 0x57, 0xf8, 0x9c, 0x89, 0x1f, 0x28, 0x05, 0xc9, 0x15, 0x80, 0x5d, 0x6f, 0xe0, 0xda, 0x66, 0x70, + 0xb0, 0xb1, 0x26, 0xc2, 0xa0, 0xc4, 0xb5, 0x78, 0x53, 0x73, 0x30, 0x21, 0xc5, 0xbd, 0x6d, 0x5f, + 0xfa, 0x1d, 0x95, 0x00, 0xd1, 0xde, 0x56, 0xbb, 0x23, 0xc5, 0x27, 0xef, 0x42, 0x45, 0xa4, 0x55, + 0xa9, 0xbd, 0x12, 0xaa, 0x2c, 0xc8, 0xd3, 0xe4, 0x06, 0xf5, 0x91, 0xa4, 0x15, 0x81, 0x60, 0x8c, + 0x47, 0xbe, 0x05, 0xd0, 0x76, 0x5c, 0x87, 0x75, 0x05, 0x7a, 0xf5, 0xa9, 0xd1, 0xf5, 0x77, 0xae, + 0x6b, 0x14, 0x4c, 0x20, 0xf2, 0x80, 0xc9, 0xf7, 0xec, 0x8d, 0xed, 0xda, 0x8c, 0xf8, 0x4a, 0x1d, + 0x30, 0x6d, 0x73, 0x22, 0x4a, 0x1e, 0xb9, 0x0c, 0x65, 0xdb, 0xa4, 0x7d, 0xcf, 0xa5, 0x76, 0x6d, + 0x36, 0x4e, 0x5a, 0xac, 0x29, 0x1a, 0x6a, 0x2e, 0xf9, 0x36, 0x94, 0x1c, 0x71, 0x5e, 0xac, 0x9d, + 0x16, 0x5d, 0xfd, 0xfa, 0x68, 0x3b, 0x8a, 0x80, 0x68, 0x02, 0x77, 0x57, 0xf2, 0x6f, 0x54, 0xb0, + 0xc4, 0x82, 0x69, 0x6f, 0x10, 0x0a, 0x0d, 0x73, 0x42, 0xc3, 0x68, 0x49, 0x9a, 0x3b, 0x12, 0x43, + 0x96, 0x29, 0xa8, 0x1f, 0x18, 0x21, 0xf3, 0xef, 0xb5, 0xba, 0x4e, 0xcf, 0x0e, 0xa8, 0x5b, 0x9b, + 0x17, 0xf1, 0x98, 0xf8, 0xde, 0x55, 0x45, 0x43, 0xcd, 0x25, 0xbf, 0x0c, 0xb3, 0xde, 0x20, 0x14, + 0x76, 0xc3, 0xcd, 0x8e, 0xd5, 0xce, 0x08, 0xf1, 0x33, 0xdc, 0x8a, 0xef, 0x24, 0x19, 0x98, 0x96, + 0x33, 0x4e, 0xc3, 0x4c, 0xb2, 0xb6, 0xc7, 0xf8, 0xee, 0x04, 0x44, 0xfd, 0xf8, 0x69, 0x38, 0x6a, + 0x13, 0x03, 0x4a, 0x01, 0x65, 0x83, 0x5e, 0xa8, 0x3c, 0xb5, 0x98, 0x6b, 0x14, 0x14, 0x54, 0x1c, + 0x63, 0x1f, 0x66, 0x79, 0x6f, 0x7b, 0x3d, 0xda, 0x6b, 0x85, 0xd4, 0x67, 0xa4, 0x0d, 0x45, 0xc6, + 0xff, 0x50, 0x63, 0x32, 0xe6, 0xcd, 0x51, 0x48, 0xfd, 0xd8, 0xde, 0x85, 0x02, 0x94, 0xf0, 0xc6, + 0xf7, 0x26, 0xa0, 0xa2, 0xc7, 0xe9, 0x09, 0xd2, 0xf0, 0x2f, 0xc3, 0xb4, 0x4d, 0xdb, 0x26, 0xff, + 0x1a, 0x75, 0x91, 0xcf, 0xcd, 0x6a, 0x4d, 0x92, 0x30, 0xe2, 0x91, 0x7a, 0xb4, 0x13, 0xca, 0x4f, + 0x16, 0x29, 0xaf, 0xe4, 0x41, 0x93, 0xec, 0x41, 0x45, 0xfc, 0xb1, 0x1e, 0x15, 0x1d, 0x8d, 0x3a, + 0xef, 0xf7, 0x22, 0x14, 0x99, 0x48, 0xd0, 0x3f, 0x31, 0xc6, 0xcf, 0x14, 0x0b, 0x15, 0x9f, 0xa4, + 0x58, 0xc8, 0x58, 0x07, 0xee, 0x18, 0xae, 0xaf, 0x92, 0xb7, 0xa0, 0xcc, 0x94, 0xe9, 0xaa, 0x71, + 0xf9, 0xa2, 0xbe, 0x3d, 0x53, 0xf4, 0x47, 0x87, 0xf5, 0x59, 0x21, 0x1c, 0x11, 0x50, 0x37, 0x31, + 0x96, 0xa1, 0x9a, 0x28, 0xae, 0xe0, 0x23, 0xac, 0x2f, 0x3c, 0x13, 0x23, 0xbc, 0x66, 0x86, 0x26, + 0x0a, 0x8e, 0xf1, 0x68, 0x02, 0xe6, 0x91, 0x32, 0x6f, 0x10, 0x58, 0x34, 0x99, 0xd6, 0x35, 0xad, + 0xc4, 0x9d, 0x7b, 0xea, 0x12, 0xc7, 0x73, 0x51, 0x71, 0xf9, 0x76, 0xd3, 0xa7, 0x41, 0x47, 0x2f, + 0x36, 0x35, 0x49, 0x7a, 0xbb, 0xd9, 0x4c, 0x32, 0x31, 0x2d, 0x4b, 0x5e, 0x85, 0x72, 0xdf, 0x74, + 0x9d, 0x36, 0x65, 0x61, 0x36, 0xdf, 0xb2, 0xa9, 0xe8, 0xa8, 0x25, 0xc8, 0x75, 0x38, 0xc3, 0x68, + 0x78, 0x67, 0xdf, 0xa5, 0x81, 0xbe, 0x5c, 0x52, 0x77, 0x7a, 0x2f, 0x44, 0xf7, 0x84, 0xad, 0xac, + 0x00, 0x0e, 0xb7, 0x11, 0x5b, 0xb7, 0xbc, 0x4e, 0x5b, 0xf5, 0x5c, 0xdb, 0xd1, 0x75, 0x65, 0xc9, + 0xad, 0x3b, 0xc3, 0xc7, 0xa1, 0x16, 0x1c, 0xa5, 0x6d, 0x3a, 0xbd, 0x41, 0x40, 0x63, 0x94, 0x52, + 0x1a, 0x65, 0x3d, 0xc3, 0xc7, 0xa1, 0x16, 0xc6, 0x3f, 0x17, 0x60, 0x16, 0x69, 0x18, 0x1c, 0xe8, + 0x41, 0xa9, 0x43, 0xb1, 0x27, 0x6e, 0xef, 0x0a, 0xe2, 0xf6, 0x4e, 0x58, 0xb2, 0xbc, 0xac, 0x93, + 0x74, 0xb2, 0x06, 0xd5, 0x80, 0xb7, 0x50, 0x37, 0xa5, 0x72, 0xc0, 0x8d, 0xe8, 0x34, 0x86, 0x31, + 0xeb, 0x51, 0xfa, 0x27, 0x26, 0x9b, 0x11, 0x17, 0xa6, 0x77, 0x65, 0x85, 0x85, 0xba, 0xae, 0x1a, + 0xcd, 0xd9, 0xab, 0x2a, 0x0d, 0x91, 0x83, 0x89, 0x4a, 0x36, 0x1e, 0xc5, 0x7f, 0x62, 0xa4, 0xc4, + 0xf8, 0x7e, 0x01, 0x20, 0x2e, 0xf5, 0x22, 0x7b, 0x50, 0x66, 0x57, 0x9b, 0x03, 0x6b, 0x4f, 0xe7, + 0xc8, 0x46, 0xbc, 0x72, 0x51, 0x20, 0x89, 0x1b, 0x66, 0x45, 0x41, 0xad, 0xe0, 0xf3, 0x0a, 0x81, + 0xfe, 0x6a, 0x12, 0x74, 0x2b, 0x6e, 0x93, 0xd4, 0xb5, 0x7d, 0xcf, 0x71, 0xc3, 0x6c, 0xb9, 0xc9, + 0x35, 0x45, 0x47, 0x2d, 0xc1, 0x97, 0xc9, 0xae, 0xfc, 0x88, 0x89, 0xf4, 0x32, 0x51, 0x7d, 0x50, + 0x5c, 0x2e, 0x17, 0xd0, 0x4e, 0x5c, 0x69, 0xa2, 0xe5, 0x50, 0x50, 0x51, 0x71, 0xf9, 0xee, 0x18, + 0x25, 0x89, 0x95, 0x69, 0x8b, 0xdd, 0x31, 0xca, 0x27, 0xa3, 0xe6, 0x92, 0x2e, 0xcc, 0x99, 0xc2, + 0x22, 0xe3, 0xc4, 0xf7, 0x53, 0xe5, 0xf0, 0xe3, 0x32, 0xa3, 0x34, 0x0a, 0x66, 0x61, 0xb9, 0x26, + 0x16, 0x37, 0x7f, 0xfa, 0x54, 0xbe, 0xd6, 0xd4, 0x4a, 0xa3, 0x60, 0x16, 0x96, 0x1f, 0x0c, 0x03, + 0xaf, 0x47, 0x57, 0x70, 0x4b, 0x1d, 0x40, 0xf5, 0xc1, 0x10, 0x25, 0x19, 0x23, 0xbe, 0xf1, 0x07, + 0x05, 0x38, 0xdd, 0xb2, 0x02, 0xc7, 0x0f, 0xb5, 0xcb, 0xda, 0x12, 0xf5, 0x61, 0xa1, 0xc9, 0x8f, + 0x6c, 0xca, 0xa6, 0x5e, 0x3c, 0x26, 0x87, 0x28, 0x85, 0x52, 0xe5, 0x63, 0x92, 0x84, 0x31, 0x84, + 0x88, 0xf4, 0x85, 0x53, 0xcc, 0xce, 0x6d, 0x4b, 0x50, 0x51, 0x71, 0x8d, 0x1f, 0x14, 0xa0, 0xac, + 0x6f, 0xf6, 0x5e, 0x82, 0xa2, 0xb8, 0x08, 0x52, 0xb6, 0xa3, 0xf7, 0xc0, 0x55, 0x4e, 0x44, 0xc9, + 0xe3, 0x42, 0xe2, 0x14, 0xaa, 0x80, 0x13, 0x1b, 0xa5, 0x19, 0x84, 0x28, 0x79, 0xdc, 0x68, 0xa9, + 0x6b, 0x2b, 0x7b, 0xd1, 0x46, 0x7b, 0xcd, 0xb5, 0x91, 0xd3, 0x45, 0x59, 0x91, 0x17, 0xf4, 0xcd, + 0x30, 0x9b, 0x87, 0x58, 0x17, 0x54, 0x54, 0x5c, 0xe3, 0x1d, 0x98, 0x53, 0x85, 0x0e, 0x7a, 0xa0, + 0x9e, 0xaa, 0xa2, 0xca, 0xf8, 0x8f, 0x02, 0x54, 0x77, 0x76, 0x6e, 0x6b, 0xff, 0x74, 0x07, 0xce, + 0x31, 0x59, 0xd9, 0xb0, 0xd2, 0x0e, 0x69, 0xb0, 0xea, 0xf5, 0xfd, 0x1e, 0x0d, 0xa9, 0xad, 0xfc, + 0xd5, 0x0b, 0x47, 0x87, 0xf5, 0x73, 0xad, 0x3c, 0x01, 0xcc, 0x6f, 0x47, 0x36, 0xe0, 0x6c, 0x92, + 0xa1, 0x5c, 0xaf, 0xaa, 0xdf, 0x92, 0xf7, 0x33, 0xc3, 0x6c, 0xcc, 0x6b, 0x43, 0xd6, 0x81, 0x24, + 0xc9, 0xb2, 0xe8, 0x41, 0x15, 0x20, 0x9f, 0x97, 0x37, 0x78, 0x59, 0x2e, 0xe6, 0xb4, 0x30, 0x66, + 0xa1, 0x9a, 0xa8, 0x3d, 0x37, 0xfe, 0xf3, 0x02, 0xe8, 0x3b, 0xff, 0x9f, 0x55, 0x0e, 0x8c, 0x14, + 0x2e, 0x5b, 0x3a, 0x78, 0x29, 0x8e, 0x1f, 0xbc, 0x68, 0x5b, 0xcf, 0x04, 0x30, 0x9d, 0x38, 0x80, + 0x29, 0x9d, 0x40, 0x00, 0xa3, 0xbd, 0xcf, 0x50, 0x10, 0xf3, 0x87, 0x05, 0x98, 0x71, 0x3d, 0x9b, + 0x46, 0x3e, 0xae, 0x36, 0x2d, 0x0e, 0xcd, 0x77, 0xc6, 0x1a, 0xc4, 0xc6, 0x56, 0x02, 0x51, 0x26, + 0x96, 0x74, 0xf6, 0x23, 0xc9, 0xc2, 0x94, 0x6a, 0xb2, 0x0e, 0x65, 0xb3, 0xcd, 0xa3, 0xce, 0xf0, + 0x40, 0x15, 0x2f, 0x5c, 0xcc, 0xf3, 0x7a, 0x2b, 0x4a, 0x46, 0x6e, 0x28, 0xd1, 0x2f, 0xd4, 0x6d, + 0xf9, 0x8e, 0xac, 0xab, 0xe3, 0x2a, 0x63, 0xec, 0xc8, 0x51, 0x86, 0x2c, 0x71, 0x96, 0x53, 0x94, + 0x44, 0xb1, 0x9c, 0x01, 0x25, 0x19, 0xd7, 0x8a, 0xa0, 0xbe, 0x2c, 0x43, 0x14, 0x19, 0xf3, 0xa2, + 0xe2, 0x90, 0x4e, 0x14, 0x91, 0x54, 0xc5, 0xe0, 0x36, 0x47, 0x8e, 0xd2, 0x74, 0x90, 0x93, 0x1f, + 0x92, 0x90, 0x9b, 0xc9, 0x8d, 0x63, 0xe6, 0x49, 0x36, 0x8e, 0xd9, 0x63, 0x37, 0x8d, 0x0e, 0x94, + 0x98, 0xd8, 0x96, 0x44, 0x30, 0x5f, 0xbd, 0xb2, 0x3a, 0xda, 0xa9, 0x26, 0xb5, 0xb3, 0xc9, 0xd1, + 0x91, 0x34, 0x54, 0xf0, 0xc4, 0x83, 0x72, 0xa0, 0x0e, 0xed, 0x2a, 0x1f, 0x30, 0xda, 0x5d, 0x44, + 0xf6, 0xe4, 0x2f, 0xed, 0x23, 0xa2, 0xa2, 0x56, 0x42, 0xde, 0x85, 0x49, 0xdb, 0xec, 0xa8, 0xcc, + 0xc0, 0x37, 0x46, 0x2e, 0xdf, 0x88, 0xd4, 0x88, 0xa2, 0xef, 0xb5, 0x95, 0xeb, 0xc8, 0x51, 0xc9, + 0x5e, 0x5c, 0xa5, 0x37, 0x3f, 0x46, 0x2d, 0x75, 0x66, 0xa7, 0x93, 0xb1, 0xe2, 0x50, 0x9d, 0xdf, + 0x35, 0x98, 0x7e, 0xe8, 0xf5, 0x06, 0x7d, 0x95, 0x52, 0xa8, 0x5e, 0x59, 0xcc, 0x9b, 0xed, 0x7b, + 0x42, 0x24, 0x76, 0x02, 0xf2, 0x37, 0xc3, 0xa8, 0x2d, 0xf9, 0x9d, 0x02, 0x9c, 0xe6, 0x4b, 0x47, + 0xdb, 0x01, 0xab, 0x91, 0x31, 0x2c, 0xf5, 0x2e, 0xe3, 0x9b, 0x62, 0x64, 0x61, 0xe7, 0x95, 0xda, + 0xd3, 0x1b, 0x29, 0x0d, 0x98, 0xd1, 0x48, 0x7c, 0x28, 0x33, 0xc7, 0xa6, 0x96, 0x19, 0xb0, 0xda, + 0xd9, 0x13, 0xd3, 0x1e, 0x1f, 0xa6, 0x15, 0x36, 0x6a, 0x2d, 0xe4, 0x77, 0x45, 0xfd, 0xbb, 0x7a, + 0x01, 0xa2, 0x5e, 0xe5, 0x2c, 0x9c, 0xe4, 0xab, 0x9c, 0xb3, 0xb2, 0xf8, 0x3d, 0xa5, 0x01, 0xb3, + 0x2a, 0xf9, 0x31, 0x44, 0xd6, 0x11, 0x66, 0x4b, 0x35, 0xcf, 0x89, 0xdb, 0x22, 0x71, 0x0c, 0x59, + 0xc9, 0x13, 0xc0, 0xfc, 0x76, 0xe4, 0x43, 0x98, 0x0d, 0x92, 0x81, 0x58, 0xed, 0xfc, 0x18, 0xa5, + 0x0a, 0xa9, 0x90, 0x4e, 0xa6, 0xac, 0x52, 0x24, 0x4c, 0xeb, 0x22, 0xaf, 0x43, 0xd5, 0x57, 0x9e, + 0xca, 0x61, 0xfd, 0xda, 0x05, 0xf1, 0x0d, 0x62, 0x47, 0xdd, 0x8e, 0xc9, 0x98, 0x94, 0x21, 0x77, + 0xa1, 0x1a, 0x7a, 0x3d, 0x1a, 0xa8, 0x6b, 0x95, 0x9a, 0x98, 0xfc, 0xa5, 0x3c, 0x4b, 0xde, 0xd1, + 0x62, 0x71, 0xd2, 0x3e, 0xa6, 0x31, 0x4c, 0xe2, 0xf0, 0x80, 0x3e, 0xaa, 0xcc, 0x0d, 0x44, 0xf6, + 0xe2, 0x85, 0x74, 0x40, 0xdf, 0x4a, 0x32, 0x31, 0x2d, 0xcb, 0x43, 0x74, 0x3f, 0x70, 0xbc, 0xc0, + 0x09, 0x0f, 0x56, 0x7b, 0x26, 0x63, 0x02, 0x60, 0x51, 0x00, 0xe8, 0x10, 0x7d, 0x3b, 0x2b, 0x80, + 0xc3, 0x6d, 0x78, 0x1c, 0x14, 0x11, 0x6b, 0x5f, 0x10, 0xc7, 0x37, 0xe1, 0x96, 0xa2, 0xb6, 0xa8, + 0xb9, 0xc7, 0x14, 0x6e, 0x5d, 0x1c, 0xa5, 0x70, 0x8b, 0xd8, 0x70, 0xd1, 0x1c, 0x84, 0x5e, 0x9f, + 0x13, 0xd2, 0x4d, 0x76, 0xbc, 0x3d, 0xea, 0xd6, 0x2e, 0x89, 0xbd, 0xea, 0xd2, 0xd1, 0x61, 0xfd, + 0xe2, 0xca, 0x63, 0xe4, 0xf0, 0xb1, 0x28, 0xa4, 0x0f, 0x65, 0xaa, 0x8a, 0xcf, 0x6a, 0x5f, 0x1c, + 0x63, 0x93, 0x48, 0x57, 0xb0, 0xc9, 0x01, 0x8a, 0x68, 0xa8, 0x55, 0x90, 0x1d, 0xa8, 0x76, 0x3d, + 0x16, 0xae, 0xf4, 0x1c, 0x93, 0x51, 0x56, 0x7b, 0x51, 0xd8, 0x49, 0xee, 0xfe, 0x76, 0x23, 0x12, + 0x8b, 0xcd, 0xe4, 0x46, 0xdc, 0x12, 0x93, 0x30, 0x84, 0x8a, 0xa0, 0x70, 0x20, 0x66, 0xcd, 0x73, + 0x43, 0xfa, 0x41, 0x58, 0x5b, 0x12, 0xdf, 0xf2, 0x4a, 0x1e, 0xf2, 0xb6, 0x67, 0xb7, 0xd2, 0xd2, + 0x72, 0x95, 0x67, 0x88, 0x98, 0xc5, 0x24, 0x6f, 0xc0, 0x8c, 0xef, 0xd9, 0x2d, 0x9f, 0x5a, 0xdb, + 0x66, 0x68, 0x75, 0x6b, 0xf5, 0xf4, 0xa5, 0xd0, 0x76, 0x82, 0x87, 0x29, 0xc9, 0xc5, 0x77, 0xe0, + 0xcc, 0xd0, 0x79, 0xea, 0xa9, 0x6e, 0xd0, 0xfe, 0x9c, 0xc7, 0x3d, 0x89, 0x13, 0xec, 0x49, 0x9f, + 0xfb, 0xaf, 0xc3, 0x19, 0xf5, 0xaa, 0x96, 0x6f, 0xb6, 0xbd, 0x81, 0x7e, 0x87, 0x92, 0x48, 0x67, + 0x61, 0x56, 0x00, 0x87, 0xdb, 0x18, 0x7f, 0x51, 0x80, 0xd9, 0x94, 0xfb, 0x3e, 0xf1, 0x48, 0x78, + 0x1d, 0x48, 0xdf, 0x09, 0x02, 0x2f, 0x90, 0x7b, 0xe0, 0x26, 0xb7, 0x65, 0xa6, 0x9e, 0xb3, 0x88, + 0xb0, 0x6a, 0x73, 0x88, 0x8b, 0x39, 0x2d, 0x8c, 0xbf, 0x29, 0x40, 0x9c, 0x2f, 0xd5, 0x15, 0x67, + 0x85, 0x63, 0x2b, 0xce, 0x5e, 0x85, 0xf2, 0x03, 0xe6, 0xb9, 0xdb, 0x71, 0x5d, 0x9a, 0x1e, 0xd0, + 0x9b, 0xad, 0x3b, 0x5b, 0x42, 0x52, 0x4b, 0x08, 0xe9, 0xf7, 0xd7, 0x9d, 0x5e, 0x38, 0x5c, 0xbd, + 0x75, 0xf3, 0x57, 0x25, 0x1d, 0xb5, 0x04, 0x59, 0x86, 0x8a, 0x4e, 0xd1, 0xab, 0x10, 0x5a, 0x0f, + 0x82, 0xce, 0x4f, 0x63, 0x2c, 0x63, 0xfc, 0x70, 0x02, 0xca, 0xcf, 0xf1, 0x6d, 0x8e, 0x95, 0x7a, + 0x9b, 0x73, 0x02, 0x0f, 0x39, 0xf2, 0xde, 0xe5, 0xec, 0x65, 0xde, 0xe5, 0xac, 0x8e, 0x99, 0xf5, + 0x7f, 0xec, 0x9b, 0x9c, 0x4f, 0x0a, 0x30, 0xf3, 0x1c, 0xdf, 0xe3, 0xec, 0xa6, 0xdf, 0xe3, 0xbc, + 0x35, 0xd6, 0xa7, 0x1d, 0xf3, 0x16, 0xe7, 0xaf, 0x17, 0x20, 0xf5, 0x0e, 0x86, 0xb8, 0x50, 0x89, + 0x16, 0x78, 0x74, 0x93, 0xf2, 0xd6, 0x58, 0x41, 0x61, 0x6c, 0x94, 0x11, 0x85, 0x61, 0xac, 0x82, + 0x5c, 0x01, 0xa0, 0xdc, 0xb3, 0xc9, 0x7c, 0xe5, 0x44, 0xfa, 0xa2, 0xe1, 0x9a, 0xe6, 0x60, 0x42, + 0xea, 0xf9, 0x27, 0x1c, 0xf2, 0xb7, 0xe8, 0xa9, 0x67, 0xb2, 0x45, 0x5f, 0x3c, 0xf1, 0x2d, 0xfa, + 0xc5, 0x67, 0xbf, 0x45, 0x27, 0x02, 0x92, 0xe2, 0x18, 0x01, 0xc9, 0x87, 0xb0, 0x20, 0xff, 0x5c, + 0xed, 0x99, 0x4e, 0x5f, 0xdb, 0x8b, 0x2a, 0x1d, 0xfb, 0x52, 0xee, 0xc6, 0x4c, 0x03, 0xe6, 0xb0, + 0x90, 0xba, 0xe1, 0xbd, 0xb8, 0x65, 0x5c, 0x77, 0x70, 0x2f, 0x07, 0x0e, 0x73, 0x95, 0x64, 0x4f, + 0xb0, 0xd3, 0x4f, 0x70, 0x82, 0xfd, 0x41, 0x01, 0xce, 0x99, 0x79, 0x4f, 0x7d, 0x55, 0x1e, 0xe3, + 0xe6, 0x58, 0xf1, 0x44, 0x0a, 0x51, 0xc5, 0x03, 0x79, 0x2c, 0xcc, 0xef, 0x03, 0x79, 0x39, 0x0e, + 0x49, 0x2b, 0xc2, 0xa8, 0xf2, 0x83, 0xc9, 0xef, 0x64, 0x53, 0x41, 0x20, 0x46, 0xbb, 0x35, 0xb6, + 0xc3, 0x3e, 0x81, 0x74, 0x50, 0x75, 0x8c, 0x74, 0x50, 0x26, 0xbc, 0x98, 0x39, 0xa1, 0xf0, 0xc2, + 0x85, 0x79, 0xa7, 0x6f, 0x76, 0xe8, 0xf6, 0xa0, 0xd7, 0x93, 0x59, 0x7f, 0x56, 0x9b, 0x15, 0xd8, + 0xb9, 0xf5, 0xbe, 0x3c, 0xdc, 0xeb, 0x65, 0x1f, 0x94, 0xe9, 0xfb, 0xb5, 0x8d, 0x0c, 0x12, 0x0e, + 0x61, 0x73, 0xb3, 0xe4, 0xc7, 0xd6, 0x2d, 0x1a, 0xf2, 0xd1, 0x16, 0x99, 0x12, 0xf5, 0x5f, 0x1a, + 0xdc, 0x88, 0xc9, 0x98, 0x94, 0x21, 0xb7, 0xa0, 0x62, 0xbb, 0x4c, 0xdd, 0xae, 0xcd, 0x09, 0x2f, + 0xf5, 0x1a, 0xf7, 0x6d, 0x6b, 0x5b, 0x2d, 0x7d, 0xaf, 0x76, 0x71, 0xf8, 0xff, 0x6c, 0x69, 0x68, + 0x3e, 0xc6, 0xed, 0xc9, 0xa6, 0x00, 0x53, 0xc5, 0xef, 0x32, 0xb5, 0x71, 0xe9, 0x98, 0x13, 0xf2, + 0xda, 0x56, 0x54, 0xab, 0x3f, 0xab, 0xd4, 0xa9, 0x92, 0xf6, 0x18, 0x21, 0xf1, 0x4a, 0xe7, 0xcc, + 0xe3, 0x5e, 0xe9, 0x90, 0xbb, 0x70, 0x21, 0x0c, 0x7b, 0xa9, 0x6c, 0xb7, 0xaa, 0x4b, 0x11, 0x45, + 0x4a, 0x45, 0xf9, 0x94, 0x71, 0x67, 0xe7, 0x76, 0x9e, 0x08, 0x1e, 0xd7, 0x56, 0xa4, 0x8e, 0xc3, + 0x9e, 0x8e, 0x90, 0x97, 0xc6, 0x49, 0x1d, 0xc7, 0x57, 0x0a, 0x2a, 0x75, 0x1c, 0x13, 0x30, 0xa9, + 0xe5, 0xf8, 0x48, 0xff, 0xec, 0x88, 0x91, 0x7e, 0x32, 0xb8, 0x5c, 0x78, 0x6c, 0x70, 0x39, 0x14, + 0x0c, 0x9f, 0x7b, 0x8a, 0x60, 0xf8, 0x5d, 0x51, 0xfe, 0x73, 0x7d, 0x55, 0x25, 0x12, 0xde, 0x1c, + 0x2d, 0x7f, 0xc9, 0x11, 0xe4, 0x25, 0xb0, 0xf8, 0x13, 0x25, 0x26, 0xd9, 0x86, 0x05, 0xdf, 0xb3, + 0x87, 0x62, 0x69, 0x91, 0x39, 0x48, 0x14, 0x8e, 0x6d, 0xe7, 0xc8, 0x60, 0x6e, 0x4b, 0xe1, 0xc0, + 0x63, 0x7a, 0xad, 0x26, 0x06, 0x46, 0x3a, 0xf0, 0x98, 0x8c, 0x49, 0x99, 0x6c, 0x68, 0xf9, 0xc2, + 0x33, 0x0b, 0x2d, 0x17, 0x9f, 0x43, 0x68, 0xf9, 0x85, 0xe7, 0x17, 0x5a, 0x7e, 0x56, 0x86, 0xd3, + 0x99, 0x97, 0xb5, 0xba, 0xf2, 0xae, 0xf0, 0xa4, 0x95, 0x77, 0xa9, 0xd2, 0xb8, 0x89, 0x67, 0x5a, + 0x1a, 0x37, 0x79, 0xe2, 0xa5, 0x71, 0x89, 0x12, 0xc0, 0xa9, 0xcf, 0x29, 0x01, 0x5c, 0x81, 0x39, + 0xcb, 0xeb, 0xfb, 0xe2, 0x89, 0x8e, 0x2a, 0x04, 0x93, 0xc5, 0x1a, 0xfa, 0x5e, 0x79, 0x35, 0xcd, + 0xc6, 0xac, 0x3c, 0xf9, 0x4d, 0x28, 0xba, 0xa2, 0x61, 0x69, 0x8c, 0xda, 0xe3, 0xf4, 0x84, 0x89, + 0xdd, 0x59, 0x95, 0xff, 0x46, 0xb9, 0xda, 0xa2, 0xa0, 0x3d, 0x8a, 0xfe, 0x40, 0xa9, 0x94, 0x1f, + 0x73, 0xe6, 0xd2, 0x85, 0x9f, 0xac, 0x56, 0x11, 0x1d, 0xf9, 0xb5, 0x93, 0xe8, 0x48, 0xba, 0xca, + 0x54, 0x75, 0x29, 0xbe, 0x73, 0x4f, 0x73, 0x31, 0xdb, 0x13, 0x12, 0xc0, 0x79, 0x3f, 0xef, 0x10, + 0xc8, 0xd4, 0x9d, 0xd6, 0xe3, 0x8e, 0xa2, 0x4b, 0x4a, 0xcb, 0xf9, 0xdc, 0x63, 0x24, 0xc3, 0x63, + 0x90, 0x93, 0x85, 0x86, 0xe5, 0x67, 0x55, 0x68, 0xb8, 0x78, 0x20, 0x0b, 0xa0, 0x8f, 0xad, 0x9d, + 0xbe, 0x9b, 0x7e, 0xcf, 0xf0, 0xce, 0x88, 0xff, 0x87, 0x58, 0x54, 0x62, 0x9d, 0xac, 0xdb, 0xfe, + 0xed, 0x02, 0x2c, 0xe4, 0x4d, 0x4b, 0x4e, 0x2f, 0x5a, 0xe9, 0x5e, 0x8c, 0x17, 0x2c, 0x26, 0x7d, + 0xcc, 0x77, 0x4b, 0x89, 0xd0, 0x34, 0xa4, 0xfe, 0xcf, 0xee, 0xad, 0x47, 0xba, 0xb7, 0x4e, 0xbd, + 0x5d, 0x2f, 0x3e, 0xc7, 0xb7, 0xeb, 0xa5, 0x11, 0xde, 0xae, 0x4f, 0x3f, 0xcf, 0xb7, 0xeb, 0xe5, + 0x27, 0x7c, 0xbb, 0x5e, 0xf9, 0xbf, 0xf3, 0x76, 0xfd, 0xb3, 0x02, 0xcc, 0x67, 0x4b, 0xe9, 0x9f, + 0x43, 0x2a, 0x6f, 0x2f, 0x95, 0xca, 0xdb, 0x18, 0xcb, 0xe9, 0xeb, 0xf2, 0xfd, 0x63, 0x52, 0x7a, + 0xc6, 0x4f, 0x0a, 0x30, 0xf4, 0x5c, 0xe0, 0x39, 0x64, 0xdb, 0x1e, 0xa4, 0xb3, 0x6d, 0xd7, 0x4e, + 0xe4, 0x23, 0x8f, 0xc9, 0xba, 0xfd, 0x57, 0xce, 0x27, 0xfe, 0xaf, 0x64, 0xdf, 0x52, 0x2e, 0x70, + 0xe2, 0xd9, 0xbb, 0xc0, 0x66, 0xe3, 0xe3, 0xcf, 0x96, 0x4e, 0x7d, 0xf2, 0xd9, 0xd2, 0xa9, 0x4f, + 0x3f, 0x5b, 0x3a, 0xf5, 0xd1, 0xd1, 0x52, 0xe1, 0xe3, 0xa3, 0xa5, 0xc2, 0x27, 0x47, 0x4b, 0x85, + 0x4f, 0x8f, 0x96, 0x0a, 0x3f, 0x39, 0x5a, 0x2a, 0xfc, 0xf1, 0x3f, 0x2d, 0x9d, 0xfa, 0xf5, 0x72, + 0x84, 0xfb, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xd0, 0xb1, 0x41, 0x4c, 0x04, 0x55, 0x00, 0x00, } func (m *ArchiveStrategy) Marshal() (dAtA []byte, err error) { @@ -2619,6 +2619,11 @@ func (m *DAGTask) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + i -= len(m.OnExit) + copy(dAtA[i:], m.OnExit) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.OnExit))) + i-- + dAtA[i] = 0x5a if m.ContinueOn != nil { { size, err := m.ContinueOn.MarshalToSizedBuffer(dAtA[:i]) @@ -5295,6 +5300,11 @@ func (m *WorkflowStep) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + i -= len(m.OnExit) + copy(dAtA[i:], m.OnExit) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.OnExit))) + i-- + dAtA[i] = 0x5a if m.ContinueOn != nil { { size, err := m.ContinueOn.MarshalToSizedBuffer(dAtA[:i]) @@ -5811,6 +5821,8 @@ func (m *DAGTask) Size() (n int) { l = m.ContinueOn.Size() n += 1 + l + sovGenerated(uint64(l)) } + l = len(m.OnExit) + n += 1 + l + sovGenerated(uint64(l)) return n } @@ -6772,6 +6784,8 @@ func (m *WorkflowStep) Size() (n int) { l = m.ContinueOn.Size() n += 1 + l + sovGenerated(uint64(l)) } + l = len(m.OnExit) + n += 1 + l + sovGenerated(uint64(l)) return n } @@ -7029,6 +7043,7 @@ func (this *DAGTask) String() string { `WithSequence:` + strings.Replace(this.WithSequence.String(), "Sequence", "Sequence", 1) + `,`, `When:` + fmt.Sprintf("%v", this.When) + `,`, `ContinueOn:` + strings.Replace(this.ContinueOn.String(), "ContinueOn", "ContinueOn", 1) + `,`, + `OnExit:` + fmt.Sprintf("%v", this.OnExit) + `,`, `}`, }, "") return s @@ -7683,6 +7698,7 @@ func (this *WorkflowStep) String() string { `WithSequence:` + strings.Replace(this.WithSequence.String(), "Sequence", "Sequence", 1) + `,`, `When:` + fmt.Sprintf("%v", this.When) + `,`, `ContinueOn:` + strings.Replace(this.ContinueOn.String(), "ContinueOn", "ContinueOn", 1) + `,`, + `OnExit:` + fmt.Sprintf("%v", this.OnExit) + `,`, `}`, }, "") return s @@ -10142,6 +10158,38 @@ func (m *DAGTask) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 11: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field OnExit", 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.OnExit = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) @@ -18904,6 +18952,38 @@ func (m *WorkflowStep) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 11: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field OnExit", 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.OnExit = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/pkg/apis/workflow/v1alpha1/generated.proto b/pkg/apis/workflow/v1alpha1/generated.proto index 8a145fe22bef..d54ef3102a0b 100644 --- a/pkg/apis/workflow/v1alpha1/generated.proto +++ b/pkg/apis/workflow/v1alpha1/generated.proto @@ -215,6 +215,11 @@ message DAGTask { // ContinueOn makes argo to proceed with the following step even if this step fails. // Errors and Failed states can be specified optional ContinueOn continueOn = 10; + + // OnExit is a template reference which is invoked at the end of the + // template, irrespective of the success, failure, or error of the + // primary template. + optional string onExit = 11; } // DAGTemplate is a template subtype for directed acyclic graph templates @@ -750,6 +755,9 @@ message Template { // +patchMergeKey=ip repeated k8s.io.api.core.v1.HostAlias hostAliases = 29; + // SecurityContext holds pod-level security attributes and common container settings. + // Optional: Defaults to empty. See type description for default values of each field. + // +optional optional k8s.io.api.core.v1.PodSecurityContext securityContext = 30; // PodSpecPatch holds strategic merge patch to apply against the pod spec. Allows parameterization of @@ -1018,6 +1026,11 @@ message WorkflowStep { // ContinueOn makes argo to proceed with the following step even if this step fails. // Errors and Failed states can be specified optional ContinueOn continueOn = 9; + + // OnExit is a template reference which is invoked at the end of the + // template, irrespective of the success, failure, or error of the + // primary template. + optional string onExit = 11; } // WorkflowTemplate is the definition of a workflow template resource diff --git a/pkg/apis/workflow/v1alpha1/openapi_generated.go b/pkg/apis/workflow/v1alpha1/openapi_generated.go index 63adf97a1d96..a4e5d8b58a43 100644 --- a/pkg/apis/workflow/v1alpha1/openapi_generated.go +++ b/pkg/apis/workflow/v1alpha1/openapi_generated.go @@ -727,6 +727,13 @@ func schema_pkg_apis_workflow_v1alpha1_DAGTask(ref common.ReferenceCallback) com Ref: ref("github.com/argoproj/argo/pkg/apis/workflow/v1alpha1.ContinueOn"), }, }, + "onExit": { + SchemaProps: spec.SchemaProps{ + Description: "OnExit is a template reference which is invoked at the end of the template, irrespective of the success, failure, or error of the primary template.", + Type: []string{"string"}, + Format: "", + }, + }, }, Required: []string{"name", "template"}, }, @@ -2502,7 +2509,8 @@ func schema_pkg_apis_workflow_v1alpha1_Template(ref common.ReferenceCallback) co }, "securityContext": { SchemaProps: spec.SchemaProps{ - Ref: ref("k8s.io/api/core/v1.PodSecurityContext"), + Description: "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.", + Ref: ref("k8s.io/api/core/v1.PodSecurityContext"), }, }, "podSpecPatch": { @@ -3396,6 +3404,13 @@ func schema_pkg_apis_workflow_v1alpha1_WorkflowStep(ref common.ReferenceCallback Ref: ref("github.com/argoproj/argo/pkg/apis/workflow/v1alpha1.ContinueOn"), }, }, + "onExit": { + SchemaProps: spec.SchemaProps{ + Description: "OnExit is a template reference which is invoked at the end of the template, irrespective of the success, failure, or error of the primary template.", + Type: []string{"string"}, + Format: "", + }, + }, }, }, }, diff --git a/pkg/apis/workflow/v1alpha1/workflow_types.go b/pkg/apis/workflow/v1alpha1/workflow_types.go index 99b413d335c6..21aaf48e3c96 100644 --- a/pkg/apis/workflow/v1alpha1/workflow_types.go +++ b/pkg/apis/workflow/v1alpha1/workflow_types.go @@ -395,7 +395,6 @@ type Template struct { // SecurityContext holds pod-level security attributes and common container settings. // Optional: Defaults to empty. See type description for default values of each field. // +optional - SecurityContext *apiv1.PodSecurityContext `json:"securityContext,omitempty" protobuf:"bytes,30,opt,name=securityContext"` // PodSpecPatch holds strategic merge patch to apply against the pod spec. Allows parameterization of @@ -613,6 +612,11 @@ type WorkflowStep struct { // ContinueOn makes argo to proceed with the following step even if this step fails. // Errors and Failed states can be specified ContinueOn *ContinueOn `json:"continueOn,omitempty" protobuf:"bytes,9,opt,name=continueOn"` + + // OnExit is a template reference which is invoked at the end of the + // template, irrespective of the success, failure, or error of the + // primary template. + OnExit string `json:"onExit,omitempty" protobuf:"bytes,11,opt,name=onExit"` } var _ TemplateHolder = &WorkflowStep{} @@ -1217,6 +1221,11 @@ type DAGTask struct { // ContinueOn makes argo to proceed with the following step even if this step fails. // Errors and Failed states can be specified ContinueOn *ContinueOn `json:"continueOn,omitempty" protobuf:"bytes,10,opt,name=continueOn"` + + // OnExit is a template reference which is invoked at the end of the + // template, irrespective of the success, failure, or error of the + // primary template. + OnExit string `json:"onExit,omitempty" protobuf:"bytes,11,opt,name=onExit"` } var _ TemplateHolder = &DAGTask{} diff --git a/workflow/controller/dag.go b/workflow/controller/dag.go index 346b9751de5c..20e5048eba96 100644 --- a/workflow/controller/dag.go +++ b/workflow/controller/dag.go @@ -233,8 +233,8 @@ func (woc *wfOperationCtx) executeDAG(nodeName string, tmplCtx *templateresoluti } // kick off execution of each target task asynchronously - for _, taskNames := range targetTasks { - woc.executeDAGTask(dagCtx, taskNames) + for _, taskName := range targetTasks { + woc.executeDAGTask(dagCtx, taskName) } // check if we are still running any tasks in this dag and return early if we do @@ -303,11 +303,18 @@ func (woc *wfOperationCtx) executeDAGTask(dagCtx *dagContext, taskName string) { dagCtx.visited[taskName] = true node := dagCtx.GetTaskNode(taskName) + task := dagCtx.getTask(taskName) if node != nil && node.Completed() { + // Run the node's onExit node, if any. Only leaf nodes will have their onExit nodes executed here. Nodes that + // have dependencies will have their onExit nodes executed below + hasOnExitNode, onExitNode, err := woc.runOnExitNode(task.Name, task.OnExit, dagCtx.boundaryID) + if hasOnExitNode && (onExitNode == nil || !onExitNode.Completed() || err != nil) { + // The onExit node is either not complete or has errored out, return. + return + } return } // Check if our dependencies completed. If not, recurse our parents executing them if necessary - task := dagCtx.getTask(taskName) dependenciesCompleted := true dependenciesSuccessful := true nodeName := dagCtx.taskNodeName(taskName) @@ -315,7 +322,16 @@ func (woc *wfOperationCtx) executeDAGTask(dagCtx *dagContext, taskName string) { depNode := dagCtx.GetTaskNode(depName) if depNode != nil { if depNode.Completed() { - if !depNode.Successful() && !dagCtx.getTask(depName).ContinuesOn(depNode.Phase) { + depTask := dagCtx.getTask(depName) + // Run the node's onExit node, if any. Only nodes that have dependencies will have their onExit nodes + // executed here. Leaf nodes will have their onExit nodes executed above + hasOnExitNode, onExitNode, err := woc.runOnExitNode(depTask.Name, depTask.OnExit, dagCtx.boundaryID) + if hasOnExitNode && (onExitNode == nil || !onExitNode.Completed() || err != nil) { + // The onExit node is either not complete or has errored out, return. + return + } + + if !depNode.Successful() && !depTask.ContinuesOn(depNode.Phase) { dependenciesSuccessful = false } continue diff --git a/workflow/controller/operator.go b/workflow/controller/operator.go index 9ecead135640..18cd3d0e5548 100644 --- a/workflow/controller/operator.go +++ b/workflow/controller/operator.go @@ -1188,6 +1188,7 @@ func (woc *wfOperationCtx) executeTemplate(nodeName string, orgTmpl wfv1.Templat woc.log.Debugf("Evaluating node %s: template: %s, boundaryID: %s", nodeName, common.GetTemplateHolderString(orgTmpl), boundaryID) node := woc.getNodeByName(nodeName) + if node != nil { if node.Completed() { woc.log.Debugf("Node %s already completed", nodeName) @@ -2138,3 +2139,13 @@ func (woc *wfOperationCtx) substituteParamsInVolumes(params map[string]string) e woc.volumes = newVolumes return nil } + +func (woc *wfOperationCtx) runOnExitNode(parentName, templateRef, boundaryID string) (bool, *wfv1.NodeStatus, error) { + if templateRef != "" { + woc.log.Infof("Running OnExit handler: %s", templateRef) + onExitNodeName := parentName + ".onExit" + onExitNode, err := woc.executeTemplate(onExitNodeName, &wfv1.Template{Template: templateRef}, woc.tmplCtx, woc.wf.Spec.Arguments, boundaryID) + return true, onExitNode, err + } + return false, nil, nil +} diff --git a/workflow/controller/operator_test.go b/workflow/controller/operator_test.go index 927b107495bc..b8d87a895fd4 100644 --- a/workflow/controller/operator_test.go +++ b/workflow/controller/operator_test.go @@ -1935,6 +1935,61 @@ func TestWithParamAsJsonList(t *testing.T) { assert.Equal(t, 4, len(pods.Items)) } +var stepsOnExit = ` +apiVersion: argoproj.io/v1alpha1 +kind: Workflow +metadata: + name: steps-on-exit +spec: + entrypoint: suspend + templates: + - name: suspend + steps: + - - name: leafA + onExit: exitContainer + template: whalesay + - - name: leafB + onExit: exitContainer + template: whalesay + + - name: whalesay + container: + image: docker/whalesay + command: [cowsay] + args: ["hello world"] + + - name: exitContainer + container: + image: docker/whalesay + command: [cowsay] + args: ["goodbye world"] +` + +func TestStepsOnExit(t *testing.T) { + controller := newController() + wfcset := controller.wfclientset.ArgoprojV1alpha1().Workflows("") + + // Test list expansion + wf := unmarshalWF(stepsOnExit) + wf, err := wfcset.Create(wf) + assert.Nil(t, err) + woc := newWorkflowOperationCtx(wf, controller) + + woc.operate() + woc.operate() + + wf, err = wfcset.Get(wf.ObjectMeta.Name, metav1.GetOptions{}) + assert.Nil(t, err) + onExitNodeIsPresent := false + for _, node := range wf.Status.Nodes { + if strings.Contains(node.Name, "onExit") { + onExitNodeIsPresent = true + break + } + } + assert.True(t, onExitNodeIsPresent) +} + var testTemplateScopeWorkflowYaml = ` apiVersion: argoproj.io/v1alpha1 kind: Workflow diff --git a/workflow/controller/steps.go b/workflow/controller/steps.go index 25f316f2533c..8f9d3a80a57c 100644 --- a/workflow/controller/steps.go +++ b/workflow/controller/steps.go @@ -136,7 +136,6 @@ func (woc *wfOperationCtx) executeSteps(nodeName string, tmplCtx *templateresolu node.Outputs = outputs woc.wf.Status.Nodes[node.ID] = *node } - _ = woc.markNodePhase(nodeName, wfv1.NodeSucceeded) return node, nil } @@ -234,11 +233,24 @@ func (woc *wfOperationCtx) executeStepGroup(stepGroup []wfv1.WorkflowStep, sgNod node = woc.getNodeByName(sgNodeName) // Return if not all children completed + completed := true for _, childNodeID := range node.Children { - if !woc.wf.Status.Nodes[childNodeID].Completed() { - return node + childNode := woc.wf.Status.Nodes[childNodeID] + step := nodeSteps[childNode.Name] + if !childNode.Completed() { + completed = false + } else { + hasOnExitNode, onExitNode, err := woc.runOnExitNode(step.Name, step.OnExit, stepsCtx.boundaryID) + if hasOnExitNode && (onExitNode == nil || !onExitNode.Completed() || err != nil) { + // The onExit node is either not complete or has errored out, return. + completed = false + } } } + if !completed { + return node + } + // All children completed. Determine step group status as a whole for _, childNodeID := range node.Children { childNode := woc.wf.Status.Nodes[childNodeID]