diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index d986afbe88a1..6e0de9e19873 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -2484,6 +2484,10 @@ "title": "Time at which this node completed", "$ref": "#/definitions/io.k8s.api.core.v1.Time" }, + "hostNodeName": { + "type": "string", + "title": "HostNodeName name of the Kubernetes node on which the Pod is running, if applicable" + }, "id": { "type": "string", "title": "ID is a unique identifier of a node within the worklow\nIt is implemented as a hash of the node name, which makes the ID deterministic" diff --git a/cmd/argo/commands/get.go b/cmd/argo/commands/get.go index ab3ccb6da827..828c77ac0a76 100644 --- a/cmd/argo/commands/get.go +++ b/cmd/argo/commands/get.go @@ -150,7 +150,7 @@ func printWorkflowHelper(wf *wfv1.Workflow, getArgs getFlags) { fmt.Println() // apply a dummy FgDefault format to align tab writer with the rest of the columns if getArgs.output == "wide" { - _, _ = fmt.Fprintf(w, "%s\tTEMPLATE\tPODNAME\tDURATION\tARTIFACTS\tMESSAGE\tRESOURCESDURATION\n", ansiFormat("STEP", FgDefault)) + _, _ = fmt.Fprintf(w, "%s\tTEMPLATE\tPODNAME\tDURATION\tARTIFACTS\tMESSAGE\tRESOURCESDURATION\tNODENAME\n", ansiFormat("STEP", FgDefault)) } else { _, _ = fmt.Fprintf(w, "%s\tTEMPLATE\tPODNAME\tDURATION\tMESSAGE\n", ansiFormat("STEP", FgDefault)) } @@ -447,17 +447,21 @@ func printNode(w *tabwriter.Writer, node wfv1.NodeStatus, nodePrefix string, get var args []interface{} duration := humanize.RelativeDurationShort(node.StartedAt.Time, node.FinishedAt.Time) if node.Type == wfv1.NodeTypePod { - args = []interface{}{nodePrefix, nodeName, templateName, node.ID, duration, node.Message} + args = []interface{}{nodePrefix, nodeName, templateName, node.ID, duration, node.Message, ""} } else { - args = []interface{}{nodePrefix, nodeName, templateName, "", "", node.Message} + args = []interface{}{nodePrefix, nodeName, templateName, "", "", node.Message, ""} } if getArgs.output == "wide" { - msg := args[len(args)-1] - args[len(args)-1] = getArtifactsString(node) - args = append(args, msg, node.ResourcesDuration) - _, _ = fmt.Fprintf(w, "%s%s\t%s\t%s\t%s\t%s\t%s\t%s\n", args...) + msg := args[len(args)-2] + args[len(args)-2] = getArtifactsString(node) + args[len(args)-1] = msg + args = append(args, node.ResourcesDuration, "") + if node.Type == wfv1.NodeTypePod { + args[len(args)-1] = node.HostNodeName + } + _, _ = fmt.Fprintf(w, "%s%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\n", args...) } else { - _, _ = fmt.Fprintf(w, "%s%s\t%s\t%s\t%s\t%s\n", args...) + _, _ = fmt.Fprintf(w, "%s%s\t%s\t%s\t%s\t%s\t%s\n", args...) } } diff --git a/cmd/argo/commands/get_test.go b/cmd/argo/commands/get_test.go index 7aade617687a..c465fb717e10 100644 --- a/cmd/argo/commands/get_test.go +++ b/cmd/argo/commands/get_test.go @@ -25,6 +25,7 @@ func testPrintNodeImpl(t *testing.T, expected string, node wfv1.NodeStatus, node // TestPrintNode func TestPrintNode(t *testing.T) { nodeName := "testNode" + kubernetesNodeName := "testKnodeName" nodePrefix := "" nodeTemplateName := "testTemplate" nodeTemplateRefName := "testTemplateRef" @@ -47,22 +48,26 @@ func TestPrintNode(t *testing.T) { FinishedAt: timestamp, Message: nodeMessage, } - testPrintNodeImpl(t, fmt.Sprintf("%s %s\t%s\t%s\t%s\t%s\n", jobStatusIconMap[wfv1.NodeRunning], nodeName, "", nodeID, "0s", nodeMessage), node, nodePrefix, getArgs) + node.HostNodeName = kubernetesNodeName + testPrintNodeImpl(t, fmt.Sprintf("%s %s\t%s\t%s\t%s\t%s\t%s\n", jobStatusIconMap[wfv1.NodeRunning], nodeName, "", nodeID, "0s", nodeMessage, ""), node, nodePrefix, getArgs) node.TemplateName = nodeTemplateName - testPrintNodeImpl(t, fmt.Sprintf("%s %s\t%s\t%s\t%s\t%s\n", jobStatusIconMap[wfv1.NodeRunning], nodeName, nodeTemplateName, nodeID, "0s", nodeMessage), node, nodePrefix, getArgs) + testPrintNodeImpl(t, fmt.Sprintf("%s %s\t%s\t%s\t%s\t%s\t%s\n", jobStatusIconMap[wfv1.NodeRunning], nodeName, nodeTemplateName, nodeID, "0s", nodeMessage, ""), node, nodePrefix, getArgs) node.Type = wfv1.NodeTypeSuspend - testPrintNodeImpl(t, fmt.Sprintf("%s %s\t%s\t%s\t%s\t%s\n", nodeTypeIconMap[wfv1.NodeTypeSuspend], nodeName, nodeTemplateName, "", "", nodeMessage), node, nodePrefix, getArgs) + testPrintNodeImpl(t, fmt.Sprintf("%s %s\t%s\t%s\t%s\t%s\t%s\n", nodeTypeIconMap[wfv1.NodeTypeSuspend], nodeName, nodeTemplateName, "", "", nodeMessage, ""), node, nodePrefix, getArgs) node.TemplateRef = &wfv1.TemplateRef{ Name: nodeTemplateRefName, Template: nodeTemplateRefName, } - testPrintNodeImpl(t, fmt.Sprintf("%s %s\t%s/%s\t%s\t%s\t%s\n", nodeTypeIconMap[wfv1.NodeTypeSuspend], nodeName, nodeTemplateRefName, nodeTemplateRefName, "", "", nodeMessage), node, nodePrefix, getArgs) + testPrintNodeImpl(t, fmt.Sprintf("%s %s\t%s/%s\t%s\t%s\t%s\t%s\n", nodeTypeIconMap[wfv1.NodeTypeSuspend], nodeName, nodeTemplateRefName, nodeTemplateRefName, "", "", nodeMessage, ""), node, nodePrefix, getArgs) getArgs.output = "wide" - testPrintNodeImpl(t, fmt.Sprintf("%s %s\t%s/%s\t%s\t%s\t%s\t%s\t\n", nodeTypeIconMap[wfv1.NodeTypeSuspend], nodeName, nodeTemplateRefName, nodeTemplateRefName, "", "", getArtifactsString(node), nodeMessage), node, nodePrefix, getArgs) + testPrintNodeImpl(t, fmt.Sprintf("%s %s\t%s/%s\t%s\t%s\t%s\t%s\t%s\t\n", nodeTypeIconMap[wfv1.NodeTypeSuspend], nodeName, nodeTemplateRefName, nodeTemplateRefName, "", "", getArtifactsString(node), nodeMessage, ""), node, nodePrefix, getArgs) + + node.Type = wfv1.NodeTypePod + testPrintNodeImpl(t, fmt.Sprintf("%s %s\t%s/%s\t%s\t%s\t%s\t%s\t%s\t%s\n", jobStatusIconMap[wfv1.NodeRunning], nodeName, nodeTemplateRefName, nodeTemplateRefName, nodeID, "0s", getArtifactsString(node), nodeMessage, "", kubernetesNodeName), node, nodePrefix, getArgs) getArgs.status = "foobar" testPrintNodeImpl(t, "", node, nodePrefix, getArgs) diff --git a/docs/fields.md b/docs/fields.md index 193d013f9269..78656fdf0e56 100644 --- a/docs/fields.md +++ b/docs/fields.md @@ -1513,6 +1513,7 @@ NodeStatus contains status information about an individual node in the workflow |`daemoned`|`boolean`|Daemoned tracks whether or not this node was daemoned and need to be terminated| |`displayName`|`string`|DisplayName is a human readable representation of the node. Unique within a template boundary| |`finishedAt`|[`Time`](#time)|Time at which this node completed| +|`hostNodeName`|`string`|HostNodeName name of the Kubernetes node on which the Pod is running, if applicable| |`id`|`string`|ID is a unique identifier of a node within the worklowIt is implemented as a hash of the node name, which makes the ID deterministic| |`inputs`|[`Inputs`](#inputs)|Inputs captures input parameter values and artifact locations supplied to this template invocation| |`message`|`string`|A human readable message indicating details about why the node is in this condition.| diff --git a/pkg/apiclient/workflow/workflow.swagger.json b/pkg/apiclient/workflow/workflow.swagger.json index 1fe00c67ab31..d7da15d55a0b 100644 --- a/pkg/apiclient/workflow/workflow.swagger.json +++ b/pkg/apiclient/workflow/workflow.swagger.json @@ -1431,6 +1431,10 @@ "type": "string" }, "description": "OutboundNodes tracks the node IDs which are considered \"outbound\" nodes to a template invocation.\nFor every invocation of a template, there are nodes which we considered as \"outbound\". Essentially,\nthese are last nodes in the execution sequence to run, before the template is considered completed.\nThese nodes are then connected as parents to a following step.\n\nIn the case of single pod steps (i.e. container, script, resource templates), this list will be nil\nsince the pod itself is already considered the \"outbound\" node.\nIn the case of DAGs, outbound nodes are the \"target\" tasks (tasks with no children).\nIn the case of steps, outbound nodes are all the containers involved in the last step group.\nNOTE: since templates are composable, the list of outbound nodes are carried upwards when\na DAG/steps template invokes another DAG/steps template. In other words, the outbound nodes of\na template, will be a superset of the outbound nodes of its last children." + }, + "hostNodeName": { + "type": "string", + "title": "HostNodeName name of the Kubernetes node on which the Pod is running, if applicable" } }, "title": "NodeStatus contains status information about an individual node in the workflow" diff --git a/pkg/apiclient/workflowarchive/workflow-archive.swagger.json b/pkg/apiclient/workflowarchive/workflow-archive.swagger.json index 9b13c426ceec..f5b37dbd48f9 100644 --- a/pkg/apiclient/workflowarchive/workflow-archive.swagger.json +++ b/pkg/apiclient/workflowarchive/workflow-archive.swagger.json @@ -830,6 +830,10 @@ "type": "string" }, "description": "OutboundNodes tracks the node IDs which are considered \"outbound\" nodes to a template invocation.\nFor every invocation of a template, there are nodes which we considered as \"outbound\". Essentially,\nthese are last nodes in the execution sequence to run, before the template is considered completed.\nThese nodes are then connected as parents to a following step.\n\nIn the case of single pod steps (i.e. container, script, resource templates), this list will be nil\nsince the pod itself is already considered the \"outbound\" node.\nIn the case of DAGs, outbound nodes are the \"target\" tasks (tasks with no children).\nIn the case of steps, outbound nodes are all the containers involved in the last step group.\nNOTE: since templates are composable, the list of outbound nodes are carried upwards when\na DAG/steps template invokes another DAG/steps template. In other words, the outbound nodes of\na template, will be a superset of the outbound nodes of its last children." + }, + "hostNodeName": { + "type": "string", + "title": "HostNodeName name of the Kubernetes node on which the Pod is running, if applicable" } }, "title": "NodeStatus contains status information about an individual node in the workflow" diff --git a/pkg/apis/workflow/v1alpha1/generated.pb.go b/pkg/apis/workflow/v1alpha1/generated.pb.go index 9ed5fcbf993f..598ece412f27 100644 --- a/pkg/apis/workflow/v1alpha1/generated.pb.go +++ b/pkg/apis/workflow/v1alpha1/generated.pb.go @@ -2025,399 +2025,400 @@ func init() { } var fileDescriptor_c23edafa7e7ea072 = []byte{ - // 6264 bytes of a gzipped FileDescriptorProto + // 6282 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3c, 0x4b, 0x6c, 0x1c, 0xc9, - 0x75, 0x3b, 0x24, 0x67, 0x38, 0xf3, 0x86, 0xa4, 0xa8, 0x12, 0x25, 0xcd, 0x72, 0xb5, 0x1c, 0xb9, - 0x37, 0xbb, 0xd1, 0x26, 0x6b, 0xd2, 0xab, 0xf5, 0x26, 0xeb, 0xcf, 0x7e, 0x38, 0xa4, 0x48, 0x51, - 0x1f, 0x92, 0x7e, 0x43, 0x49, 0xb1, 0x77, 0x61, 0xa7, 0x39, 0x5d, 0x33, 0xd3, 0xe2, 0x4c, 0x77, - 0x6f, 0x57, 0x8f, 0xb8, 0xf4, 0x26, 0xc8, 0xc6, 0x48, 0xe0, 0x7c, 0x60, 0x20, 0x41, 0x00, 0xc3, - 0x80, 0x11, 0x20, 0xf0, 0x25, 0x97, 0xe4, 0x98, 0x5c, 0x02, 0xf8, 0x60, 0xe4, 0x60, 0xf8, 0x12, - 0x27, 0x97, 0x38, 0x41, 0x40, 0x7b, 0x19, 0x24, 0x30, 0xe0, 0x20, 0x3e, 0xe4, 0x10, 0x44, 0xc8, - 0x21, 0xa8, 0x4f, 0x57, 0x7f, 0xa6, 0x47, 0xa2, 0x66, 0x28, 0xc5, 0x89, 0x7d, 0x9a, 0xe9, 0xf7, - 0x5e, 0xbd, 0x57, 0x9f, 0x57, 0x55, 0xef, 0xbd, 0x7a, 0x55, 0xb0, 0xd2, 0xb2, 0x83, 0x76, 0x6f, - 0x77, 0xb1, 0xe1, 0x76, 0x97, 0x4c, 0xbf, 0xe5, 0x7a, 0xbe, 0x7b, 0x57, 0xfc, 0x59, 0xf2, 0xf6, - 0x5a, 0x4b, 0xa6, 0x67, 0xb3, 0xa5, 0x7d, 0xd7, 0xdf, 0x6b, 0x76, 0xdc, 0xfd, 0xa5, 0x7b, 0x2f, - 0x9b, 0x1d, 0xaf, 0x6d, 0xbe, 0xbc, 0xd4, 0xa2, 0x0e, 0xf5, 0xcd, 0x80, 0x5a, 0x8b, 0x9e, 0xef, - 0x06, 0x2e, 0x79, 0x25, 0x62, 0xb2, 0x18, 0x32, 0x11, 0x7f, 0x16, 0xbd, 0xbd, 0xd6, 0x22, 0x67, - 0xb2, 0x18, 0x32, 0x59, 0x0c, 0x99, 0xcc, 0x7f, 0x34, 0x26, 0xb9, 0xe5, 0x72, 0x81, 0x9c, 0xd7, - 0x6e, 0xaf, 0x29, 0xbe, 0xc4, 0x87, 0xf8, 0x27, 0x65, 0xcc, 0x1b, 0x7b, 0xaf, 0xb1, 0x45, 0xdb, - 0xe5, 0x55, 0x5a, 0x6a, 0xb8, 0x3e, 0x5d, 0xba, 0xd7, 0x57, 0x8f, 0xf9, 0x17, 0x63, 0x34, 0x9e, - 0xdb, 0xb1, 0x1b, 0x07, 0x4b, 0xf7, 0x5e, 0xde, 0xa5, 0x41, 0x7f, 0x95, 0xe7, 0x3f, 0x1e, 0x91, - 0x76, 0xcd, 0x46, 0xdb, 0x76, 0xa8, 0x7f, 0x10, 0x35, 0xb9, 0x4b, 0x03, 0x33, 0x4b, 0xc0, 0xd2, - 0xa0, 0x52, 0x7e, 0xcf, 0x09, 0xec, 0x2e, 0xed, 0x2b, 0xf0, 0x4b, 0x0f, 0x2b, 0xc0, 0x1a, 0x6d, - 0xda, 0x35, 0xd3, 0xe5, 0x8c, 0xbf, 0xc9, 0xc1, 0xa9, 0x65, 0xbf, 0xd1, 0xb6, 0xef, 0xd1, 0x7a, - 0xc0, 0x11, 0xad, 0x03, 0xf2, 0x36, 0x8c, 0x07, 0xa6, 0x5f, 0xc9, 0x5d, 0xcc, 0x5d, 0x2a, 0x5f, - 0x7e, 0x6b, 0x71, 0x88, 0x3e, 0x5f, 0xdc, 0x31, 0xfd, 0x90, 0x5d, 0x6d, 0xf2, 0xe8, 0xb0, 0x3a, - 0xbe, 0x63, 0xfa, 0xc8, 0xb9, 0x92, 0x2f, 0xc0, 0x84, 0xe3, 0x3a, 0xb4, 0x32, 0x26, 0xb8, 0x2f, - 0x0f, 0xc5, 0x7d, 0xd3, 0x75, 0x74, 0x6d, 0x6b, 0xc5, 0xa3, 0xc3, 0xea, 0x04, 0x87, 0xa0, 0x60, - 0x6c, 0xfc, 0x38, 0x07, 0xa5, 0x65, 0xbf, 0xd5, 0xeb, 0x52, 0x27, 0x60, 0xc4, 0x07, 0xf0, 0x4c, - 0xdf, 0xec, 0xd2, 0x80, 0xfa, 0xac, 0x92, 0xbb, 0x38, 0x7e, 0xa9, 0x7c, 0xf9, 0x8d, 0xa1, 0x84, - 0x6e, 0x87, 0x6c, 0x6a, 0xe4, 0xdb, 0x87, 0xd5, 0xa7, 0x8e, 0x0e, 0xab, 0xa0, 0x41, 0x0c, 0x63, - 0x52, 0x88, 0x03, 0x25, 0xd3, 0x0f, 0xec, 0xa6, 0xd9, 0x08, 0x58, 0x65, 0x4c, 0x88, 0x7c, 0x7d, - 0x28, 0x91, 0xcb, 0x8a, 0x4b, 0xed, 0xb4, 0x92, 0x58, 0x0a, 0x21, 0x0c, 0x23, 0x11, 0xc6, 0x8f, - 0xc6, 0xa1, 0x18, 0x22, 0xc8, 0x45, 0x98, 0x70, 0xcc, 0x2e, 0x15, 0xa3, 0x57, 0xaa, 0x4d, 0xa9, - 0x82, 0x13, 0x9b, 0x66, 0x97, 0x77, 0x90, 0xd9, 0xa5, 0x9c, 0xc2, 0x33, 0x83, 0xb6, 0x18, 0x81, - 0x18, 0xc5, 0xb6, 0x19, 0xb4, 0x51, 0x60, 0xc8, 0x05, 0x98, 0xe8, 0xba, 0x16, 0xad, 0x8c, 0x5f, - 0xcc, 0x5d, 0xca, 0xcb, 0x0e, 0xbe, 0xe9, 0x5a, 0x14, 0x05, 0x94, 0x97, 0x6f, 0xfa, 0x6e, 0xb7, - 0x32, 0x91, 0x2c, 0xbf, 0xe6, 0xbb, 0x5d, 0x14, 0x18, 0xf2, 0xfb, 0x39, 0x98, 0x0d, 0xab, 0x77, - 0xc3, 0x6d, 0x98, 0x81, 0xed, 0x3a, 0x95, 0xbc, 0x18, 0xf0, 0x2b, 0x23, 0x75, 0x44, 0xc8, 0xac, - 0x56, 0x51, 0x52, 0x67, 0xd3, 0x18, 0xec, 0x13, 0x4c, 0x2e, 0x03, 0xb4, 0x3a, 0xee, 0xae, 0xd9, - 0xe1, 0x7d, 0x50, 0x29, 0x88, 0x5a, 0xeb, 0x21, 0x5c, 0xd7, 0x18, 0x8c, 0x51, 0x91, 0x3d, 0x98, - 0x34, 0xe5, 0xac, 0xa8, 0x4c, 0x8a, 0x7a, 0xaf, 0x0e, 0x59, 0xef, 0xc4, 0xcc, 0xaa, 0x95, 0x8f, - 0x0e, 0xab, 0x93, 0x0a, 0x88, 0xa1, 0x04, 0xf2, 0x12, 0x14, 0x5d, 0x8f, 0x57, 0xd5, 0xec, 0x54, - 0x8a, 0x17, 0x73, 0x97, 0x8a, 0xb5, 0x59, 0x55, 0xbd, 0xe2, 0x96, 0x82, 0xa3, 0xa6, 0x30, 0xfe, - 0xb6, 0x00, 0x7d, 0xad, 0x26, 0x2f, 0x43, 0x59, 0x71, 0xbb, 0xe1, 0xb6, 0x98, 0x18, 0xfc, 0x62, - 0xed, 0xd4, 0xd1, 0x61, 0xb5, 0xbc, 0x1c, 0x81, 0x31, 0x4e, 0x43, 0xee, 0xc0, 0x18, 0x7b, 0x45, - 0x4d, 0xc3, 0x37, 0x87, 0x6a, 0x5d, 0xfd, 0x15, 0xad, 0xa0, 0x85, 0xa3, 0xc3, 0xea, 0x58, 0xfd, - 0x15, 0x1c, 0x63, 0xaf, 0xf0, 0xe5, 0xa3, 0x65, 0x07, 0x42, 0x79, 0x86, 0x5d, 0x3e, 0xd6, 0xed, - 0x40, 0xb3, 0x16, 0xcb, 0xc7, 0xba, 0x1d, 0x20, 0xe7, 0xca, 0x97, 0x8f, 0x76, 0x10, 0x78, 0x42, - 0xf9, 0x86, 0x5d, 0x3e, 0xae, 0xee, 0xec, 0x6c, 0x6b, 0xf6, 0x42, 0xbb, 0x39, 0x04, 0x05, 0x63, - 0xf2, 0x3e, 0xef, 0x49, 0x89, 0x73, 0xfd, 0x03, 0xa5, 0xb5, 0x57, 0x47, 0xd2, 0x5a, 0xd7, 0x3f, - 0xd0, 0xe2, 0xd4, 0x98, 0x68, 0x04, 0xc6, 0xa5, 0x89, 0xd6, 0x59, 0x4d, 0x26, 0x94, 0x74, 0xe8, - 0xd6, 0xad, 0xae, 0xd5, 0x53, 0xad, 0x5b, 0x5d, 0xab, 0xa3, 0x60, 0xcc, 0xc7, 0xc6, 0x37, 0xf7, - 0x95, 0x4e, 0x0f, 0x37, 0x36, 0x68, 0xee, 0x27, 0xc7, 0x06, 0xcd, 0x7d, 0xe4, 0x5c, 0x39, 0x73, - 0x97, 0x31, 0xa1, 0xc2, 0xc3, 0x32, 0xdf, 0xaa, 0xd7, 0x93, 0xcc, 0xb7, 0xea, 0x75, 0xe4, 0x5c, - 0x85, 0x56, 0x35, 0x58, 0xa5, 0x34, 0x8a, 0x56, 0xad, 0xa4, 0x98, 0xaf, 0xaf, 0xd4, 0x91, 0x73, - 0x35, 0x5a, 0x70, 0x36, 0xc4, 0x20, 0xf5, 0x5c, 0x66, 0x8b, 0xa1, 0xa1, 0x4d, 0xb2, 0x04, 0xa5, - 0x86, 0xeb, 0x34, 0xed, 0xd6, 0x4d, 0xd3, 0x53, 0x4b, 0xaa, 0x5e, 0x8b, 0x57, 0x42, 0x04, 0x46, - 0x34, 0xe4, 0x59, 0x18, 0xdf, 0xa3, 0x07, 0x6a, 0x6d, 0x2d, 0x2b, 0xd2, 0xf1, 0xeb, 0xf4, 0x00, - 0x39, 0xdc, 0xf8, 0x66, 0x0e, 0xce, 0x64, 0xa8, 0x05, 0x2f, 0xd6, 0xf3, 0x3b, 0x4a, 0x82, 0x2e, - 0x76, 0x0b, 0x6f, 0x20, 0x87, 0x93, 0x2f, 0xe7, 0xe0, 0x54, 0x4c, 0x4f, 0x96, 0x7b, 0x6a, 0xf9, - 0x1e, 0x7e, 0x5d, 0x4a, 0xf0, 0xaa, 0x9d, 0x57, 0x12, 0x4f, 0xa5, 0x10, 0x98, 0x96, 0x6a, 0xfc, - 0xbd, 0xb0, 0x17, 0x12, 0x30, 0x62, 0xc2, 0x4c, 0x8f, 0x51, 0x9f, 0x6f, 0x2e, 0x75, 0xda, 0xf0, - 0x69, 0xa0, 0x4c, 0x87, 0xe7, 0x17, 0xa5, 0x51, 0xc2, 0x6b, 0xb1, 0xc8, 0x4d, 0xa9, 0xc5, 0x7b, - 0x2f, 0x2f, 0x4a, 0x8a, 0xeb, 0xf4, 0xa0, 0x4e, 0x3b, 0x94, 0xf3, 0xa8, 0x91, 0xa3, 0xc3, 0xea, - 0xcc, 0xad, 0x04, 0x03, 0x4c, 0x31, 0xe4, 0x22, 0x3c, 0x93, 0xb1, 0x7d, 0xd7, 0xb7, 0x94, 0x88, - 0xb1, 0x47, 0x16, 0xb1, 0x9d, 0x60, 0x80, 0x29, 0x86, 0xc6, 0x57, 0x73, 0x30, 0x59, 0x33, 0x1b, - 0x7b, 0x6e, 0xb3, 0xc9, 0x57, 0x64, 0xab, 0xe7, 0xcb, 0x7d, 0x4b, 0x8e, 0x89, 0x5e, 0x91, 0x57, - 0x15, 0x1c, 0x35, 0x05, 0x79, 0x01, 0x0a, 0xb2, 0x3b, 0x44, 0xa5, 0xf2, 0xb5, 0x19, 0x45, 0x5b, - 0x58, 0x13, 0x50, 0x54, 0x58, 0xf2, 0x2a, 0x94, 0xbb, 0xe6, 0x7b, 0x21, 0x03, 0xb1, 0x40, 0x96, - 0x6a, 0x67, 0x14, 0x71, 0xf9, 0x66, 0x84, 0xc2, 0x38, 0x9d, 0xf1, 0xc3, 0x1c, 0x9c, 0x5f, 0xe9, - 0xf4, 0x58, 0x40, 0xfd, 0x3b, 0x6a, 0x24, 0x77, 0x68, 0xd7, 0xeb, 0x98, 0x01, 0x25, 0xbf, 0x0a, - 0x45, 0x6e, 0x42, 0x5a, 0x66, 0x60, 0xaa, 0x4e, 0xff, 0x58, 0xac, 0x47, 0xb4, 0x25, 0x18, 0xe9, - 0x02, 0xa7, 0xe6, 0x7d, 0xb4, 0xb5, 0x7b, 0x97, 0x36, 0x82, 0x9b, 0x34, 0x30, 0xa3, 0xbd, 0x30, - 0x82, 0xa1, 0xe6, 0x4a, 0xf6, 0x60, 0x82, 0x79, 0xb4, 0xa1, 0xfa, 0x7b, 0x63, 0x28, 0x75, 0x4b, - 0x57, 0xbb, 0xee, 0xd1, 0x46, 0x64, 0x38, 0xf0, 0x2f, 0x14, 0x42, 0x8c, 0x7f, 0xcf, 0xc1, 0x33, - 0x03, 0x9a, 0x7a, 0xc3, 0x66, 0x01, 0x79, 0xa7, 0xaf, 0xb9, 0x8b, 0xc7, 0x6b, 0x2e, 0x2f, 0x2d, - 0x1a, 0xab, 0xc7, 0x31, 0x84, 0xc4, 0x9a, 0xfa, 0x2e, 0xe4, 0xed, 0x80, 0x76, 0x43, 0x9b, 0xed, - 0xc6, 0x50, 0x6d, 0x1d, 0x50, 0xfd, 0xda, 0xb4, 0x12, 0x9c, 0xdf, 0xe0, 0x22, 0x50, 0x4a, 0x32, - 0x3e, 0x0b, 0xb0, 0xe2, 0x3a, 0x81, 0xed, 0xf4, 0xe8, 0x96, 0x43, 0x9e, 0x83, 0x3c, 0xf5, 0x7d, - 0xd7, 0x57, 0xfb, 0xb7, 0x2e, 0x72, 0x85, 0x03, 0x51, 0xe2, 0xa4, 0xb6, 0xd9, 0x1d, 0x6a, 0x89, - 0x21, 0x29, 0xc6, 0xb5, 0x8d, 0x43, 0x51, 0x61, 0x8d, 0x45, 0x98, 0x5c, 0x71, 0x7b, 0x4e, 0x40, - 0x7d, 0xce, 0xf7, 0x9e, 0xd9, 0xe9, 0x85, 0x46, 0xa1, 0xe6, 0x7b, 0x9b, 0x03, 0x51, 0xe2, 0x8c, - 0xef, 0x8c, 0xc1, 0xd4, 0x8a, 0xef, 0x3a, 0x61, 0xcd, 0x9f, 0x80, 0x6e, 0xb5, 0x12, 0xba, 0x35, - 0x9c, 0x69, 0x18, 0xaf, 0xf2, 0x20, 0xbd, 0x22, 0x2e, 0x14, 0x58, 0x60, 0x06, 0x3d, 0xa6, 0xac, - 0x92, 0xf5, 0xd1, 0x45, 0x09, 0x76, 0x51, 0xe7, 0xcb, 0x6f, 0x54, 0x62, 0x8c, 0xef, 0xe5, 0x60, - 0x36, 0x4e, 0xfe, 0x04, 0xb4, 0xb7, 0x99, 0xd4, 0xde, 0xe5, 0x91, 0x9b, 0x38, 0x40, 0x65, 0xff, - 0x3b, 0x9f, 0x6c, 0x1a, 0xef, 0x66, 0x6e, 0xf1, 0x4f, 0xed, 0xc7, 0x00, 0xaa, 0x7d, 0xcb, 0x23, - 0x2d, 0x17, 0x62, 0x38, 0x7f, 0x4e, 0x55, 0x62, 0x2a, 0x0e, 0xbd, 0x9f, 0xfa, 0xc6, 0x84, 0x70, - 0xbe, 0x7c, 0x73, 0x77, 0xd7, 0xea, 0x75, 0xa8, 0xda, 0x89, 0x75, 0xc7, 0xd5, 0x15, 0x1c, 0x35, - 0x05, 0x79, 0x07, 0x4e, 0x37, 0x5c, 0xa7, 0xd1, 0xf3, 0x7d, 0xea, 0x34, 0x0e, 0xb6, 0x85, 0x3b, - 0xaf, 0x16, 0xe7, 0x45, 0x55, 0xec, 0xf4, 0x4a, 0x9a, 0xe0, 0x7e, 0x16, 0x10, 0xfb, 0x19, 0x91, - 0x17, 0x61, 0x92, 0xf5, 0x98, 0x47, 0x1d, 0x4b, 0xd8, 0xac, 0xc5, 0xda, 0x29, 0xc5, 0x73, 0xb2, - 0x2e, 0xc1, 0x18, 0xe2, 0xc9, 0x2d, 0x38, 0xcf, 0x02, 0xbe, 0xe1, 0x3a, 0xad, 0x55, 0x6a, 0x5a, - 0x1d, 0xdb, 0xe1, 0xdb, 0x9f, 0xeb, 0x58, 0x4c, 0x98, 0xa1, 0xe3, 0xb5, 0x67, 0x8e, 0x0e, 0xab, - 0xe7, 0xeb, 0xd9, 0x24, 0x38, 0xa8, 0x2c, 0xf9, 0x3c, 0xcc, 0xb3, 0x5e, 0xa3, 0x41, 0x19, 0x6b, - 0xf6, 0x3a, 0xd7, 0xdc, 0x5d, 0x76, 0xd5, 0x66, 0x7c, 0xef, 0xbe, 0x61, 0x77, 0xed, 0x40, 0x98, - 0x9a, 0xf9, 0xda, 0xc2, 0xd1, 0x61, 0x75, 0xbe, 0x3e, 0x90, 0x0a, 0x1f, 0xc0, 0x81, 0x20, 0x9c, - 0x93, 0x4b, 0x4e, 0x1f, 0xef, 0x49, 0xc1, 0x7b, 0xfe, 0xe8, 0xb0, 0x7a, 0x6e, 0x2d, 0x93, 0x02, - 0x07, 0x94, 0xe4, 0x23, 0x18, 0xd8, 0x5d, 0xfa, 0x45, 0xd7, 0xa1, 0xc2, 0x9e, 0x8c, 0x8d, 0xe0, - 0x8e, 0x82, 0xa3, 0xa6, 0x20, 0x77, 0x23, 0xe5, 0xe3, 0x93, 0x42, 0x19, 0x89, 0x8f, 0xbe, 0x5a, - 0xcd, 0x71, 0x8f, 0xf2, 0x4e, 0x8c, 0x13, 0x9f, 0x58, 0x98, 0xe0, 0x6d, 0xfc, 0x5d, 0x0e, 0x48, - 0xff, 0x42, 0x40, 0xae, 0x43, 0xc1, 0x6c, 0x04, 0xdc, 0x5f, 0x94, 0x31, 0x86, 0xe7, 0xb2, 0x0c, - 0x13, 0x29, 0x0a, 0x69, 0x93, 0x72, 0x0d, 0xa1, 0xd1, 0xea, 0xb1, 0x2c, 0x8a, 0xa2, 0x62, 0x41, - 0x5c, 0x38, 0xdd, 0x31, 0x59, 0x10, 0xea, 0xaa, 0xc5, 0x9b, 0xac, 0x16, 0xc9, 0x5f, 0x38, 0x5e, - 0xa3, 0x78, 0x89, 0xda, 0x59, 0xae, 0xb9, 0x37, 0xd2, 0x8c, 0xb0, 0x9f, 0xb7, 0xf1, 0xad, 0x02, - 0x4c, 0xae, 0x2e, 0xaf, 0xef, 0x98, 0x6c, 0xef, 0x18, 0x01, 0x04, 0x3e, 0x38, 0x6a, 0x5b, 0x4b, - 0x4f, 0xaf, 0x70, 0xbb, 0x43, 0x4d, 0x41, 0x5c, 0x28, 0x99, 0x61, 0x38, 0x46, 0x2d, 0xbf, 0x6f, - 0x0c, 0x69, 0xb4, 0x2a, 0x2e, 0xf1, 0x70, 0x88, 0x02, 0x61, 0x24, 0x83, 0x30, 0x28, 0x87, 0xc2, - 0x91, 0x36, 0x95, 0xa7, 0x38, 0x64, 0x18, 0x2b, 0xe2, 0x23, 0x3d, 0xb7, 0x18, 0x00, 0xe3, 0x52, - 0xc8, 0xc7, 0x61, 0xca, 0xa2, 0x7c, 0x16, 0x53, 0xa7, 0x61, 0x53, 0x3e, 0x61, 0xc7, 0x79, 0xbf, - 0xf0, 0x85, 0x6b, 0x35, 0x06, 0xc7, 0x04, 0x15, 0xb9, 0x0b, 0xa5, 0x7d, 0x3b, 0x68, 0x8b, 0xf5, - 0xb5, 0x52, 0x10, 0x8a, 0xf3, 0x89, 0xa1, 0x2a, 0xca, 0x39, 0x44, 0xdd, 0x72, 0x27, 0xe4, 0x89, - 0x11, 0x7b, 0xee, 0xca, 0xf0, 0x0f, 0x11, 0xb3, 0x12, 0x33, 0xb3, 0x94, 0x2c, 0x20, 0x10, 0x18, - 0xd1, 0x10, 0x06, 0x53, 0xfc, 0xa3, 0x4e, 0xdf, 0xed, 0x71, 0x6d, 0x55, 0x7e, 0xdd, 0x70, 0x91, - 0xac, 0x90, 0x89, 0xec, 0x91, 0x3b, 0x31, 0xb6, 0x98, 0x10, 0xc2, 0xb5, 0x6f, 0xbf, 0x4d, 0x1d, - 0x31, 0x85, 0x63, 0xda, 0x77, 0xa7, 0x4d, 0x1d, 0x14, 0x18, 0xe2, 0x02, 0x34, 0xb4, 0xc9, 0x54, - 0x81, 0x11, 0xe2, 0x17, 0x91, 0xe5, 0x55, 0x9b, 0xe1, 0x36, 0x4a, 0xf4, 0x8d, 0x31, 0x11, 0xdc, - 0xe0, 0x72, 0x9d, 0x2b, 0xef, 0xd9, 0x41, 0xa5, 0x2c, 0x2a, 0xa5, 0x67, 0xed, 0x96, 0x80, 0xa2, - 0xc2, 0x1a, 0xdf, 0xca, 0x41, 0x99, 0x4f, 0xa2, 0x50, 0xf1, 0x5f, 0x80, 0x42, 0x60, 0xfa, 0x2d, - 0xe5, 0x0e, 0xc5, 0xca, 0xed, 0x08, 0x28, 0x2a, 0x2c, 0x31, 0x21, 0x1f, 0x98, 0x6c, 0x2f, 0xdc, - 0xb8, 0x3f, 0x3d, 0x54, 0x5b, 0xd4, 0xec, 0x8d, 0xf6, 0x6c, 0xfe, 0xc5, 0x50, 0x72, 0x26, 0x97, - 0xa0, 0xc8, 0x17, 0xda, 0x35, 0x93, 0xc9, 0xb8, 0x4c, 0xb1, 0x36, 0xc5, 0x67, 0xeb, 0x9a, 0x82, - 0xa1, 0xc6, 0x1a, 0xef, 0xc0, 0xcc, 0x95, 0xf7, 0x68, 0xa3, 0x17, 0xb8, 0xbe, 0xf4, 0x6f, 0xc9, - 0x35, 0x20, 0x8c, 0xfa, 0xf7, 0xec, 0x06, 0x5d, 0x6e, 0x34, 0xb8, 0x41, 0xb9, 0x19, 0xad, 0x0e, - 0xf3, 0x4a, 0x1a, 0xa9, 0xf7, 0x51, 0x60, 0x46, 0x29, 0xe3, 0x8f, 0x73, 0x50, 0x8e, 0x79, 0xe1, - 0x7c, 0x6d, 0x68, 0xad, 0xd4, 0x6b, 0xbd, 0xc6, 0x9e, 0x76, 0x1a, 0xdf, 0x18, 0xd6, 0xb5, 0x97, - 0x5c, 0x22, 0x9d, 0xd6, 0x20, 0x8c, 0x64, 0x3c, 0xcc, 0x3d, 0xff, 0xcb, 0x1c, 0x44, 0xe5, 0xf8, - 0x00, 0xee, 0x46, 0x55, 0x8b, 0x0d, 0xa0, 0xe2, 0xab, 0xb0, 0xe4, 0x83, 0x1c, 0x9c, 0x4f, 0x36, - 0x56, 0xf8, 0x9e, 0x8f, 0xee, 0xa6, 0x56, 0x95, 0x80, 0xf3, 0xf5, 0x6c, 0x6e, 0x38, 0x48, 0x8c, - 0x71, 0x1b, 0xf2, 0xeb, 0x66, 0xaf, 0x45, 0x8f, 0x65, 0xea, 0x73, 0x75, 0xf0, 0xa9, 0xd9, 0x09, - 0xc2, 0x6d, 0x45, 0xa9, 0x03, 0x2a, 0x18, 0x6a, 0xac, 0xf1, 0x67, 0x13, 0x50, 0x8e, 0x05, 0xe3, - 0xf8, 0xf4, 0xf4, 0xa9, 0xe7, 0xa6, 0x37, 0x07, 0xa4, 0x9e, 0x8b, 0x02, 0xc3, 0x37, 0x07, 0x9f, - 0xde, 0xb3, 0x19, 0xf7, 0x70, 0x53, 0x9b, 0x03, 0x2a, 0x38, 0x6a, 0x0a, 0x52, 0x85, 0xbc, 0x45, - 0xbd, 0xa0, 0x2d, 0xb4, 0x72, 0xa2, 0x56, 0xe2, 0x55, 0x5d, 0xe5, 0x00, 0x94, 0x70, 0x4e, 0xd0, - 0xa4, 0x41, 0xa3, 0x5d, 0x99, 0x10, 0x0b, 0xaa, 0x20, 0x58, 0xe3, 0x00, 0x94, 0xf0, 0x8c, 0xe0, - 0x43, 0xfe, 0xf1, 0x07, 0x1f, 0x0a, 0x27, 0x1c, 0x7c, 0x20, 0x1e, 0x9c, 0x61, 0xac, 0xbd, 0xed, - 0xdb, 0xf7, 0xcc, 0x80, 0x46, 0xda, 0x33, 0xf9, 0x28, 0x72, 0xce, 0x1f, 0x1d, 0x56, 0xcf, 0xd4, - 0xeb, 0x57, 0xd3, 0x5c, 0x30, 0x8b, 0x35, 0xa9, 0xc3, 0x59, 0xdb, 0x61, 0xb4, 0xd1, 0xf3, 0xe9, - 0x46, 0xcb, 0x71, 0x7d, 0x7a, 0xd5, 0x65, 0x9c, 0x9d, 0x8a, 0x40, 0x3f, 0xab, 0x06, 0xed, 0xec, - 0x46, 0x16, 0x11, 0x66, 0x97, 0x35, 0xbe, 0x93, 0x83, 0xa9, 0x78, 0xfc, 0x91, 0x30, 0x80, 0xf6, - 0xea, 0x5a, 0x5d, 0x2e, 0x25, 0x6a, 0x86, 0xbf, 0x39, 0x74, 0x58, 0x53, 0xb2, 0x89, 0x9c, 0xca, - 0x08, 0x86, 0x31, 0x31, 0xc7, 0x38, 0xe0, 0x78, 0x0e, 0xf2, 0x4d, 0xd7, 0x6f, 0x50, 0xb5, 0x18, - 0xea, 0x59, 0xb2, 0xc6, 0x81, 0x28, 0x71, 0xc6, 0x0f, 0x73, 0x10, 0x93, 0x40, 0x7e, 0x03, 0xa6, - 0xb9, 0x8c, 0xeb, 0xfe, 0x6e, 0xa2, 0x35, 0xb5, 0xa1, 0x5b, 0xa3, 0x39, 0xd5, 0xce, 0x2a, 0xf9, - 0xd3, 0x09, 0x30, 0x26, 0xe5, 0x91, 0x5f, 0x84, 0x92, 0x69, 0x59, 0x3e, 0x65, 0x8c, 0xca, 0xbd, - 0xa2, 0x54, 0x9b, 0x16, 0x46, 0x50, 0x08, 0xc4, 0x08, 0xcf, 0xa7, 0x61, 0xdb, 0x6a, 0x32, 0xae, - 0xd9, 0xca, 0x97, 0xd1, 0xd3, 0x90, 0x0b, 0xe1, 0x70, 0xd4, 0x14, 0xc6, 0x57, 0x26, 0x20, 0x29, - 0x9b, 0x58, 0x70, 0x6a, 0xcf, 0xdf, 0x5d, 0x59, 0x31, 0x1b, 0xed, 0xa1, 0x82, 0x7a, 0x67, 0x8e, - 0x0e, 0xab, 0xa7, 0xae, 0x27, 0x39, 0x60, 0x9a, 0xa5, 0x92, 0x72, 0x9d, 0x1e, 0x04, 0xe6, 0xee, - 0x30, 0x0b, 0x66, 0x28, 0x25, 0xce, 0x01, 0xd3, 0x2c, 0xc9, 0xab, 0x50, 0xde, 0xf3, 0x77, 0xc3, - 0x49, 0x9e, 0x8e, 0xbb, 0x5d, 0x8f, 0x50, 0x18, 0xa7, 0xe3, 0x5d, 0xb8, 0xe7, 0xef, 0xf2, 0x45, - 0x31, 0x3c, 0xeb, 0xd2, 0x5d, 0x78, 0x5d, 0xc1, 0x51, 0x53, 0x10, 0x0f, 0xc8, 0x5e, 0xd8, 0x7b, - 0x3a, 0x32, 0xac, 0xd6, 0xa2, 0x4b, 0x59, 0xad, 0xd1, 0x44, 0xf1, 0x06, 0x9d, 0xe3, 0x9b, 0xe9, - 0xf5, 0x3e, 0x3e, 0x98, 0xc1, 0x9b, 0x7c, 0x16, 0xce, 0xef, 0xf9, 0xbb, 0x6a, 0xab, 0xd8, 0xf6, - 0x6d, 0xa7, 0x61, 0x7b, 0x89, 0x43, 0x2e, 0xbd, 0x9d, 0x5c, 0xcf, 0x26, 0xc3, 0x41, 0xe5, 0x8d, - 0x8f, 0xc2, 0x54, 0xfc, 0x90, 0xe4, 0x21, 0xe1, 0x69, 0xe3, 0x0e, 0x94, 0x84, 0xf7, 0xd6, 0xe2, - 0x66, 0xa3, 0xde, 0x81, 0xc6, 0x1f, 0xb0, 0x03, 0x3d, 0x0f, 0x93, 0x72, 0xf3, 0x64, 0x62, 0x61, - 0xcf, 0xc9, 0x93, 0x31, 0xb9, 0xaf, 0x32, 0x0c, 0x71, 0xc6, 0xbf, 0xe5, 0xa0, 0xb0, 0xe1, 0x78, - 0xbd, 0x9f, 0x92, 0x83, 0xdc, 0x6f, 0x4c, 0xc0, 0x04, 0x37, 0xd6, 0xc9, 0x25, 0x98, 0x08, 0x0e, - 0x3c, 0xb9, 0x89, 0x8f, 0xd7, 0xe6, 0xc2, 0x15, 0x6c, 0xe7, 0xc0, 0xa3, 0xf7, 0xd5, 0x2f, 0x0a, - 0x0a, 0xf2, 0x06, 0x14, 0x9c, 0x5e, 0xf7, 0xb6, 0xd9, 0x51, 0xab, 0xdd, 0x0b, 0xa1, 0x8d, 0xb2, - 0x29, 0xa0, 0xf7, 0x0f, 0xab, 0x73, 0xd4, 0x69, 0xb8, 0x96, 0xed, 0xb4, 0x96, 0xee, 0x32, 0xd7, - 0x59, 0xdc, 0xec, 0x75, 0x77, 0xa9, 0x8f, 0xaa, 0x14, 0x79, 0x11, 0x26, 0x77, 0x5d, 0xb7, 0xc3, - 0x19, 0x8c, 0x27, 0xc3, 0x13, 0x35, 0x09, 0xc6, 0x10, 0xcf, 0xcd, 0x21, 0x16, 0xf8, 0x9c, 0x72, - 0x22, 0x69, 0x0e, 0xd5, 0x05, 0x14, 0x15, 0x96, 0x74, 0xa1, 0xd0, 0x35, 0x3d, 0x4e, 0x97, 0x17, - 0x5d, 0x76, 0x65, 0x68, 0x8f, 0x66, 0xf1, 0xa6, 0xe0, 0x73, 0xc5, 0x09, 0xfc, 0x83, 0x48, 0x9c, - 0x04, 0xa2, 0x12, 0x42, 0x6c, 0x98, 0xec, 0xd8, 0x2c, 0xe0, 0xf2, 0x0a, 0x23, 0x68, 0x05, 0x97, - 0x27, 0x54, 0x34, 0xea, 0x81, 0x1b, 0x92, 0x2d, 0x86, 0xfc, 0xe7, 0x0f, 0xa0, 0x1c, 0xab, 0x11, - 0x99, 0x95, 0xc6, 0xa4, 0x98, 0x15, 0xc2, 0x7e, 0x24, 0x3b, 0xa1, 0xee, 0x8f, 0x8d, 0x60, 0xcb, - 0xea, 0x9a, 0xa8, 0xc9, 0xf2, 0xc9, 0xb1, 0xd7, 0x72, 0x9f, 0x2c, 0x7e, 0xed, 0x4f, 0xaa, 0x4f, - 0x7d, 0xf0, 0x4f, 0x17, 0x9f, 0x32, 0xfe, 0x7a, 0x1c, 0x4a, 0x9a, 0xe4, 0xff, 0xb6, 0xa6, 0xf8, - 0x29, 0x4d, 0xb9, 0x36, 0x5a, 0x7f, 0x1d, 0x4b, 0x5d, 0x96, 0x93, 0xea, 0x32, 0x55, 0xfb, 0xf9, - 0xd8, 0x50, 0xdf, 0x3f, 0xac, 0x56, 0x92, 0x9d, 0x80, 0xe6, 0xfe, 0x4d, 0xca, 0x98, 0xd9, 0xa2, - 0x91, 0x1a, 0x7c, 0xe2, 0x61, 0x6a, 0x30, 0x17, 0x57, 0x83, 0x52, 0xf6, 0x30, 0x76, 0x60, 0xe2, - 0x86, 0xed, 0x1c, 0x27, 0xdc, 0xf2, 0x1c, 0xe4, 0x59, 0xc3, 0xf5, 0xc2, 0x58, 0x8b, 0x5e, 0x50, - 0xeb, 0x1c, 0x88, 0x12, 0x17, 0xae, 0xd0, 0xe3, 0x03, 0x56, 0xe8, 0x0f, 0xc6, 0xa1, 0x18, 0x06, - 0xb4, 0xc8, 0x6f, 0xe7, 0xa0, 0x6c, 0x3a, 0x8e, 0x1b, 0x88, 0xf3, 0xa5, 0x70, 0x31, 0xdd, 0x1c, - 0xaa, 0xf3, 0x43, 0xa6, 0x8b, 0xcb, 0x11, 0x43, 0x39, 0x00, 0x7a, 0x83, 0x8d, 0x61, 0x30, 0x2e, - 0x97, 0xbc, 0x0b, 0x85, 0x8e, 0xb9, 0x4b, 0x3b, 0xe1, 0xda, 0xba, 0x31, 0x5a, 0x0d, 0x6e, 0x08, - 0x5e, 0xa9, 0xd1, 0x97, 0x40, 0x54, 0x82, 0xe6, 0xdf, 0x80, 0xd9, 0x74, 0x45, 0x1f, 0x65, 0xfc, - 0xf8, 0xd0, 0xc7, 0xc4, 0x3c, 0x4a, 0x51, 0xe3, 0x33, 0x50, 0xbe, 0x49, 0x03, 0xdf, 0x6e, 0x08, - 0x06, 0xa1, 0x27, 0x9a, 0xcb, 0xf6, 0x44, 0xa3, 0x5d, 0x74, 0xec, 0x01, 0x47, 0x36, 0x5f, 0x84, - 0x49, 0xc9, 0x92, 0x11, 0x17, 0xc0, 0xf3, 0xdd, 0x2e, 0x0d, 0xda, 0xb4, 0x17, 0x8e, 0xe8, 0x70, - 0x86, 0xf6, 0xb6, 0x66, 0x23, 0xa3, 0x22, 0xd1, 0x37, 0xc6, 0x44, 0x18, 0x7f, 0x3e, 0x05, 0xb0, - 0xe9, 0x5a, 0x54, 0xc5, 0x3f, 0xe7, 0x61, 0xcc, 0xb6, 0x54, 0x6b, 0x40, 0x55, 0x76, 0x6c, 0x63, - 0x15, 0xc7, 0x6c, 0x4b, 0xab, 0xf8, 0xd8, 0x40, 0x15, 0x7f, 0x15, 0xca, 0x96, 0xcd, 0xbc, 0x8e, - 0x79, 0xb0, 0x99, 0x61, 0xa1, 0xad, 0x46, 0x28, 0x8c, 0xd3, 0x91, 0x97, 0xd4, 0xe2, 0x27, 0x57, - 0x99, 0x4a, 0x6a, 0xf1, 0x2b, 0xf2, 0xea, 0xc5, 0x16, 0xc0, 0xd7, 0x60, 0x2a, 0x8c, 0xd8, 0x09, - 0x29, 0x79, 0x51, 0x2a, 0x5c, 0x32, 0xa7, 0x76, 0x62, 0x38, 0x4c, 0x50, 0xa6, 0x23, 0x8a, 0x85, - 0x27, 0x12, 0x51, 0x5c, 0x85, 0x59, 0x16, 0xb8, 0x3e, 0xb5, 0x42, 0x8a, 0x8d, 0xd5, 0x0a, 0x49, - 0x34, 0x74, 0xb6, 0x9e, 0xc2, 0x63, 0x5f, 0x09, 0xb2, 0x0d, 0x73, 0xfb, 0xa9, 0xa3, 0x48, 0xd1, - 0xf8, 0x33, 0x82, 0xd3, 0x05, 0xc5, 0x69, 0xee, 0x4e, 0x06, 0x0d, 0x66, 0x96, 0x24, 0x9f, 0x82, - 0xe9, 0xb0, 0x9a, 0x62, 0x05, 0xaa, 0xcc, 0x09, 0x56, 0xda, 0x87, 0xd9, 0x89, 0x23, 0x31, 0x49, - 0x4b, 0x3e, 0x06, 0x79, 0xaf, 0x6d, 0x32, 0xaa, 0x02, 0x90, 0x61, 0xfc, 0x28, 0xbf, 0xcd, 0x81, - 0xf7, 0x0f, 0xab, 0x25, 0x3e, 0x66, 0xe2, 0x03, 0x25, 0x21, 0xb9, 0x0c, 0xb0, 0xeb, 0xf6, 0x1c, - 0xcb, 0xf4, 0x0f, 0x36, 0x56, 0xd5, 0x59, 0x80, 0xb6, 0xdb, 0x6a, 0x1a, 0x83, 0x31, 0x2a, 0xbe, - 0x55, 0x75, 0xe5, 0xa2, 0xad, 0xe2, 0x88, 0x7a, 0xab, 0xd2, 0x6b, 0xb9, 0xc2, 0x93, 0xb7, 0xa1, - 0x24, 0xce, 0x4d, 0xa8, 0xb5, 0x1c, 0xa8, 0x60, 0xe2, 0xa3, 0x84, 0xd8, 0xb5, 0x3d, 0x57, 0x0f, - 0x99, 0x60, 0xc4, 0x8f, 0x7c, 0x1e, 0xa0, 0x69, 0x3b, 0x36, 0x6b, 0x0b, 0xee, 0xe5, 0x47, 0xe6, - 0xae, 0xdb, 0xb9, 0xa6, 0xb9, 0x60, 0x8c, 0x23, 0xf9, 0x51, 0x0e, 0x4e, 0xfb, 0x94, 0xb9, 0x3d, - 0xbf, 0x41, 0x99, 0xce, 0x2b, 0x38, 0x2b, 0x26, 0xff, 0xed, 0x21, 0x33, 0x2b, 0xc3, 0x19, 0xbd, - 0x88, 0x69, 0xc6, 0x72, 0x65, 0xa5, 0xe1, 0x91, 0x58, 0x1f, 0xfe, 0x7e, 0x16, 0xf0, 0x4b, 0xdf, - 0xaf, 0x56, 0xfb, 0x13, 0x6a, 0x35, 0x73, 0xae, 0x51, 0xbf, 0xf7, 0xfd, 0xea, 0x6c, 0xf8, 0xad, - 0x33, 0x20, 0xfa, 0xdb, 0xc5, 0x97, 0x44, 0xcf, 0xb5, 0x36, 0xb6, 0x2b, 0x53, 0xc9, 0x25, 0x71, - 0x9b, 0x03, 0x51, 0xe2, 0xc8, 0x25, 0x28, 0x5a, 0x26, 0xed, 0xba, 0x0e, 0xb5, 0x2a, 0xd3, 0x51, - 0x68, 0x6b, 0x55, 0xc1, 0x50, 0x63, 0xc9, 0x17, 0xa0, 0x60, 0x0b, 0xd7, 0xa2, 0x32, 0x23, 0x06, - 0xe6, 0x53, 0xc3, 0x19, 0x1f, 0x82, 0x45, 0x0d, 0xf8, 0x5e, 0x23, 0xff, 0xa3, 0x62, 0x4b, 0x1a, - 0x30, 0xe9, 0xf6, 0x02, 0x21, 0xe1, 0x94, 0x90, 0x30, 0x5c, 0x64, 0x77, 0x4b, 0xf2, 0x90, 0x1e, - 0x92, 0xfa, 0xc0, 0x90, 0x33, 0x6f, 0x6f, 0xa3, 0x6d, 0x77, 0x2c, 0x9f, 0x3a, 0x95, 0x59, 0x11, - 0x13, 0x10, 0xed, 0x5d, 0x51, 0x30, 0xd4, 0x58, 0xf2, 0xcb, 0x30, 0xed, 0xf6, 0x02, 0x31, 0x4b, - 0xf8, 0x28, 0xb3, 0xca, 0x69, 0x41, 0x7e, 0x9a, 0xcf, 0xd9, 0xad, 0x38, 0x02, 0x93, 0x74, 0xf3, - 0xab, 0x70, 0x2e, 0x5b, 0x17, 0x1e, 0xb6, 0xfd, 0x8d, 0xc7, 0xb7, 0xbf, 0x19, 0x98, 0x8a, 0xa7, - 0xed, 0x8a, 0x50, 0x70, 0x2c, 0xdb, 0x8b, 0xb8, 0x50, 0x72, 0xeb, 0x27, 0x11, 0x0a, 0xde, 0xaa, - 0xf7, 0x85, 0x82, 0x35, 0x08, 0x23, 0x19, 0x0f, 0x0b, 0x05, 0xff, 0xc5, 0x18, 0x44, 0xe5, 0xc8, - 0x4b, 0x50, 0xa4, 0x8e, 0xe5, 0xb9, 0xb6, 0x13, 0xa4, 0x13, 0x82, 0xae, 0x28, 0x38, 0x6a, 0x8a, - 0x58, 0xe0, 0x78, 0xec, 0x81, 0x81, 0xe3, 0x36, 0x9c, 0x32, 0xc5, 0xb1, 0x6a, 0x14, 0xf1, 0x1b, - 0x7f, 0xa4, 0x88, 0x9f, 0x4e, 0xdb, 0x4a, 0x72, 0xc1, 0x34, 0x5b, 0x2e, 0x89, 0x45, 0xc5, 0x85, - 0xa4, 0x89, 0xa1, 0x24, 0xd5, 0x93, 0x5c, 0x30, 0xcd, 0xd6, 0xf8, 0xab, 0x31, 0x08, 0xb5, 0xf4, - 0xa7, 0xc1, 0x67, 0x27, 0x06, 0x14, 0x7c, 0xca, 0x7a, 0x9d, 0x40, 0x59, 0x2d, 0x62, 0x25, 0x40, - 0x01, 0x41, 0x85, 0xe1, 0x93, 0x94, 0xbe, 0x67, 0x07, 0x2b, 0xae, 0x15, 0xda, 0x2a, 0x62, 0x92, - 0x5e, 0x51, 0x30, 0xd4, 0x58, 0x63, 0x1f, 0xa6, 0x79, 0xbb, 0x3a, 0x1d, 0xda, 0xa9, 0x07, 0xd4, - 0x63, 0xa4, 0x09, 0x79, 0xc6, 0xff, 0xa8, 0xde, 0x1b, 0x31, 0xa1, 0x22, 0xa0, 0x5e, 0xcc, 0x7f, - 0xe0, 0x7c, 0x51, 0xb2, 0x37, 0xbe, 0x3a, 0x06, 0x25, 0xdd, 0xa3, 0xc7, 0x70, 0x4a, 0x9e, 0x87, - 0x49, 0x8b, 0x36, 0x4d, 0xde, 0x6e, 0x35, 0x83, 0xf8, 0xf2, 0xb4, 0x2a, 0x41, 0x18, 0xe2, 0x48, - 0x35, 0x19, 0x0c, 0x2a, 0xf5, 0x05, 0x82, 0xf6, 0xa0, 0x24, 0xfe, 0xac, 0x85, 0x19, 0xe5, 0xc3, - 0x6a, 0xc8, 0xed, 0x90, 0x8b, 0x0c, 0x8a, 0xea, 0x4f, 0x8c, 0xf8, 0xa7, 0x32, 0xc1, 0xf3, 0xc7, - 0xc9, 0x04, 0x37, 0xd6, 0x80, 0x6f, 0x30, 0xeb, 0x2b, 0xe4, 0x75, 0x28, 0x32, 0xb5, 0x78, 0xa9, - 0x7e, 0xf9, 0x88, 0x4e, 0x2a, 0x51, 0xf0, 0xfb, 0x87, 0xd5, 0x69, 0x41, 0x1c, 0x02, 0x50, 0x17, - 0x31, 0xbe, 0x3c, 0x01, 0x31, 0x53, 0xfa, 0x18, 0x3d, 0x6c, 0xa5, 0xbc, 0xa3, 0xb7, 0x86, 0xf5, - 0x8e, 0x42, 0x97, 0x43, 0xaa, 0x66, 0xd2, 0x21, 0xe2, 0xf5, 0x68, 0xd3, 0x8e, 0xa7, 0xc6, 0x47, - 0xd7, 0xe3, 0x2a, 0xed, 0x78, 0x28, 0x30, 0xfa, 0x44, 0x76, 0x62, 0xe0, 0x89, 0xec, 0xdb, 0x90, - 0x6f, 0x99, 0xbd, 0x16, 0x55, 0xd1, 0xce, 0x4f, 0x0e, 0x77, 0x82, 0xc7, 0x39, 0x48, 0x05, 0x11, - 0x7f, 0x51, 0xf2, 0xe4, 0x0a, 0xd2, 0x0e, 0x63, 0x8b, 0xca, 0xf2, 0x1e, 0x4e, 0x41, 0x74, 0x84, - 0x52, 0x2a, 0x88, 0xfe, 0xc4, 0x88, 0x3f, 0xdf, 0xb2, 0x1b, 0x32, 0x67, 0x4e, 0x1d, 0xbd, 0x7c, - 0x7a, 0xc8, 0x83, 0x65, 0xc1, 0x43, 0xce, 0x09, 0xf5, 0x81, 0x21, 0x67, 0x63, 0x09, 0xca, 0xb1, - 0x1c, 0x6a, 0xde, 0xbf, 0x3a, 0x23, 0x2c, 0xd6, 0xbf, 0xab, 0x66, 0x60, 0xa2, 0xc0, 0x18, 0x5f, - 0x1f, 0x07, 0x6d, 0x20, 0xc5, 0x4f, 0x97, 0xcd, 0x46, 0x2c, 0x41, 0x35, 0x91, 0x4b, 0xe2, 0x3a, - 0xa8, 0xb0, 0xdc, 0x5c, 0xef, 0x52, 0xbf, 0xa5, 0x37, 0x5e, 0x35, 0x5d, 0xb5, 0xb9, 0x7e, 0x33, - 0x8e, 0xc4, 0x24, 0x2d, 0xdf, 0xf6, 0xba, 0xa6, 0x63, 0x37, 0x29, 0x0b, 0xd2, 0xa7, 0x08, 0x37, - 0x15, 0x1c, 0x35, 0x05, 0x59, 0x87, 0xd3, 0x8c, 0x06, 0x5b, 0xfb, 0x0e, 0xf5, 0x75, 0x8e, 0x8b, - 0x4a, 0x7a, 0x7a, 0x3a, 0xb4, 0x1a, 0xeb, 0x69, 0x02, 0xec, 0x2f, 0x23, 0x5c, 0x1f, 0x99, 0x6f, - 0xb4, 0xe2, 0x3a, 0x96, 0xad, 0xaf, 0x8f, 0xc4, 0x5d, 0x9f, 0x14, 0x1e, 0xfb, 0x4a, 0x70, 0x2e, - 0x4d, 0xd3, 0xee, 0xf4, 0x7c, 0x1a, 0x71, 0x29, 0x24, 0xb9, 0xac, 0xa5, 0xf0, 0xd8, 0x57, 0x42, - 0x1c, 0x40, 0x76, 0xcc, 0x16, 0xab, 0x4c, 0xc6, 0x0e, 0x20, 0x39, 0x00, 0x25, 0xdc, 0xf8, 0xd7, - 0x1c, 0x4c, 0x23, 0x0d, 0xfc, 0x03, 0xdd, 0x6b, 0x55, 0xc8, 0x77, 0x44, 0xfe, 0x53, 0x4e, 0xe4, - 0x3f, 0x89, 0x22, 0x32, 0xdd, 0x49, 0xc2, 0xc9, 0x2a, 0x94, 0x7d, 0x5e, 0x42, 0xe5, 0x9a, 0xc9, - 0x11, 0x31, 0x42, 0x77, 0x17, 0x23, 0xd4, 0xfd, 0xe4, 0x27, 0xc6, 0x8b, 0x11, 0x07, 0x26, 0x77, - 0x65, 0xbe, 0xb2, 0xb2, 0x1a, 0x86, 0x53, 0x56, 0x95, 0xf3, 0x2c, 0x8e, 0x1e, 0xc2, 0x04, 0xe8, - 0xfb, 0xd1, 0x5f, 0x0c, 0x85, 0x18, 0x5f, 0xcb, 0x01, 0x44, 0x57, 0x3e, 0xc8, 0x1e, 0x14, 0xd9, - 0x2b, 0x09, 0x7b, 0x6d, 0xc8, 0xd4, 0x10, 0xc5, 0x24, 0x96, 0xa3, 0xa7, 0x20, 0xa8, 0x05, 0x3c, - 0xcc, 0x58, 0xfb, 0xe1, 0x38, 0xe8, 0x52, 0x8f, 0xc9, 0x56, 0x7b, 0x81, 0xef, 0xf3, 0xad, 0x28, - 0x6f, 0x5b, 0xd3, 0xa1, 0x80, 0xa2, 0xc2, 0xf2, 0xbd, 0x3e, 0x3c, 0x1b, 0x55, 0xba, 0x2f, 0xf6, - 0xfa, 0xf0, 0x18, 0x15, 0x35, 0x36, 0xcb, 0xfa, 0xcb, 0x3f, 0x31, 0xeb, 0xaf, 0xf0, 0x58, 0xac, - 0x3f, 0xee, 0x79, 0xfb, 0x6e, 0x87, 0x2e, 0xe3, 0xa6, 0xf2, 0xf0, 0xb5, 0xe7, 0x8d, 0x12, 0x8c, - 0x21, 0x9e, 0xbc, 0x0a, 0xe5, 0x1e, 0xa3, 0xf5, 0xd5, 0xeb, 0x2b, 0x3e, 0xb5, 0x98, 0x3a, 0x76, - 0xd6, 0x31, 0x9f, 0x5b, 0x11, 0x0a, 0xe3, 0x74, 0xc6, 0xef, 0xe4, 0x60, 0xa6, 0xde, 0xf0, 0x6d, - 0x2f, 0xd0, 0x4b, 0xe1, 0xa6, 0xb8, 0xa4, 0x11, 0x98, 0xdc, 0x95, 0x56, 0xaa, 0xf8, 0xec, 0x80, - 0x13, 0x37, 0x49, 0x94, 0xb8, 0xc3, 0x21, 0x41, 0x18, 0xb1, 0x10, 0xe1, 0x6b, 0xb1, 0xd8, 0xa6, - 0x55, 0xa2, 0x2e, 0xa0, 0xa8, 0xb0, 0xc6, 0xd7, 0x73, 0x50, 0xd4, 0x89, 0x4b, 0xcf, 0x41, 0x5e, - 0x2c, 0xf0, 0xe9, 0xc4, 0x0b, 0xb1, 0xfc, 0xa3, 0xc4, 0x89, 0x50, 0x6e, 0x60, 0xfa, 0x41, 0x5f, - 0x28, 0x97, 0x03, 0x51, 0xe2, 0xb8, 0xae, 0x53, 0xc7, 0x4a, 0x87, 0x72, 0xaf, 0x38, 0x16, 0x72, - 0xb8, 0xc8, 0xff, 0x76, 0xfd, 0xae, 0x19, 0xa4, 0x83, 0xeb, 0x6b, 0x02, 0x8a, 0x0a, 0x6b, 0xfc, - 0xd7, 0x04, 0x40, 0xbd, 0xb7, 0xdb, 0xb5, 0x83, 0x2d, 0x2f, 0x38, 0x8e, 0xc1, 0xf1, 0x1a, 0x4c, - 0x85, 0xb7, 0x43, 0x37, 0xa3, 0x70, 0x9d, 0x8e, 0x8f, 0xad, 0xc7, 0x70, 0x98, 0xa0, 0xe4, 0x76, - 0x95, 0xed, 0xb0, 0xc0, 0x74, 0x1a, 0x74, 0x63, 0x55, 0x55, 0x5c, 0xdb, 0x55, 0x1b, 0x1a, 0x83, - 0x31, 0x2a, 0x5e, 0x86, 0x72, 0x27, 0x52, 0xce, 0xd3, 0x89, 0x64, 0x99, 0x2b, 0x1a, 0x83, 0x31, - 0x2a, 0xb2, 0x98, 0xf0, 0x27, 0x64, 0x8a, 0xdd, 0xcc, 0x03, 0x7c, 0x81, 0x4f, 0xc1, 0xb4, 0xfe, - 0x5a, 0xb3, 0x3b, 0xe1, 0xb9, 0xa8, 0xde, 0xfb, 0xb6, 0xe3, 0x48, 0x4c, 0xd2, 0x92, 0x37, 0x60, - 0x26, 0x99, 0x6d, 0xa3, 0x34, 0xfa, 0x9c, 0x2a, 0x3d, 0x93, 0x4c, 0xd2, 0xc1, 0x14, 0x35, 0x1f, - 0x27, 0xcb, 0x3f, 0xc0, 0x9e, 0xa3, 0x54, 0x5b, 0x8f, 0xd3, 0xaa, 0x80, 0xa2, 0xc2, 0xf2, 0x6e, - 0xe7, 0x25, 0xa9, 0x2f, 0xe1, 0x22, 0x62, 0x55, 0x8c, 0xba, 0xbd, 0x1e, 0xc3, 0x61, 0x82, 0x92, - 0x4b, 0x50, 0x16, 0x22, 0x24, 0x35, 0x21, 0x65, 0xe3, 0x79, 0x30, 0xe3, 0x26, 0x37, 0x65, 0x19, - 0x8a, 0xfa, 0xf8, 0x31, 0x13, 0x64, 0x13, 0x65, 0x65, 0x3a, 0x4b, 0x6a, 0x0f, 0x4f, 0xf1, 0x37, - 0xde, 0x84, 0x53, 0x2a, 0xbb, 0x59, 0x4f, 0xd2, 0x47, 0xba, 0x52, 0x63, 0xfc, 0x67, 0x0e, 0xca, - 0x3b, 0x3b, 0x37, 0xf4, 0x96, 0x8a, 0x70, 0x8e, 0xc9, 0x74, 0xe6, 0xe5, 0x66, 0x40, 0xfd, 0x15, - 0xb7, 0xeb, 0x75, 0xa8, 0xe6, 0xa5, 0x72, 0x8c, 0xeb, 0x99, 0x14, 0x38, 0xa0, 0x24, 0xd9, 0x80, - 0x33, 0x71, 0x8c, 0xb2, 0x28, 0xd4, 0x1d, 0x1e, 0x99, 0x4c, 0xd3, 0x8f, 0xc6, 0xac, 0x32, 0x69, - 0x56, 0xca, 0xac, 0x50, 0xf7, 0x67, 0xfb, 0x58, 0x29, 0x34, 0x66, 0x95, 0x31, 0xb6, 0xa0, 0x1c, - 0xbb, 0x3c, 0x4d, 0xde, 0x82, 0xd9, 0x86, 0xdb, 0xf5, 0x7c, 0xca, 0x98, 0xed, 0x3a, 0x37, 0xe8, - 0x3d, 0xda, 0x51, 0x4d, 0x16, 0xc9, 0xca, 0x2b, 0x29, 0x1c, 0xf6, 0x51, 0x1b, 0xdf, 0x78, 0x1a, - 0x74, 0x5a, 0xee, 0xcf, 0x92, 0x7b, 0x87, 0x0a, 0xc5, 0x37, 0x74, 0xa8, 0x30, 0x3f, 0x7a, 0xa8, - 0x50, 0xcf, 0xd2, 0x54, 0xb8, 0xb0, 0x15, 0x85, 0x0b, 0x0b, 0x27, 0x10, 0x2e, 0xd4, 0x1b, 0x6f, - 0x5f, 0xc8, 0xf0, 0x77, 0x73, 0x30, 0xe5, 0xb8, 0x16, 0x0d, 0xb7, 0x77, 0x61, 0xd9, 0x96, 0x2f, - 0x6f, 0x8d, 0xd4, 0x89, 0x32, 0x72, 0xac, 0x38, 0xca, 0x48, 0xb1, 0x5e, 0xc2, 0xe2, 0x28, 0x4c, - 0x88, 0x26, 0x6b, 0x50, 0x34, 0x9b, 0x4d, 0xdb, 0xb1, 0x83, 0x03, 0x95, 0x5f, 0x7c, 0x21, 0x6b, - 0xe7, 0x5e, 0x56, 0x34, 0xd2, 0x96, 0x0a, 0xbf, 0x50, 0x97, 0xe5, 0xc6, 0xa8, 0xbe, 0x5a, 0x53, - 0x1a, 0xc1, 0x18, 0x0d, 0x0f, 0x13, 0x63, 0x7e, 0x4e, 0x78, 0x0d, 0x20, 0xba, 0x69, 0x63, 0x40, - 0x41, 0x46, 0x91, 0xc5, 0xba, 0x5b, 0x94, 0x7e, 0xb5, 0x8c, 0x30, 0xa3, 0xc2, 0x90, 0x56, 0x18, - 0xb7, 0x29, 0x8b, 0xce, 0xad, 0x0d, 0x1d, 0xf5, 0xd2, 0xa1, 0xa0, 0xec, 0xc0, 0x0d, 0xb9, 0x16, - 0x37, 0x7e, 0xa6, 0x8e, 0x63, 0xfc, 0x4c, 0x0f, 0x34, 0x7c, 0x5a, 0x50, 0x60, 0xc2, 0xb4, 0x12, - 0xa1, 0xf3, 0xf2, 0xe5, 0x95, 0xe1, 0x0c, 0xfa, 0x84, 0x75, 0x26, 0x7b, 0x47, 0xc2, 0x50, 0xb1, - 0x27, 0x2e, 0x14, 0xc3, 0xf8, 0xbe, 0x8a, 0xbe, 0x0f, 0x97, 0x24, 0x92, 0xf6, 0x8a, 0xc3, 0x3c, - 0x56, 0x09, 0x45, 0x2d, 0x84, 0xbc, 0x0d, 0xe3, 0x96, 0xd9, 0x52, 0x71, 0xf8, 0xb7, 0x86, 0xce, - 0xb0, 0x0e, 0xc5, 0x88, 0xdb, 0xc3, 0xab, 0xcb, 0xeb, 0xc8, 0xb9, 0x92, 0xbd, 0xe8, 0x8a, 0xcf, - 0xec, 0x08, 0x97, 0x72, 0x53, 0x3b, 0xa6, 0x8c, 0x1e, 0xf4, 0x5d, 0x12, 0xba, 0x02, 0x93, 0xf7, - 0xdc, 0x4e, 0xaf, 0xab, 0x02, 0xf8, 0xe5, 0xcb, 0xf3, 0x59, 0xa3, 0x7d, 0x5b, 0x90, 0x44, 0x8b, - 0x80, 0xfc, 0x66, 0x18, 0x96, 0x25, 0x5f, 0xca, 0xc1, 0x0c, 0x9f, 0x3a, 0x5a, 0x0f, 0x58, 0x85, - 0x8c, 0xa0, 0xa9, 0xb7, 0x18, 0xdf, 0x5a, 0x43, 0x0d, 0xd3, 0x26, 0xd2, 0x46, 0x42, 0x02, 0xa6, - 0x24, 0x12, 0x0f, 0x8a, 0xcc, 0xb6, 0x68, 0xc3, 0xf4, 0x59, 0xe5, 0xcc, 0x89, 0x49, 0x8f, 0xfc, - 0x48, 0xc5, 0x1b, 0xb5, 0x14, 0xf2, 0x5b, 0xe2, 0x22, 0xb5, 0x7a, 0x04, 0x41, 0x3d, 0x4c, 0x31, - 0x77, 0x92, 0x0f, 0x53, 0x9c, 0x91, 0xb7, 0xa8, 0x13, 0x12, 0x30, 0x2d, 0x92, 0x6c, 0xc1, 0x59, - 0x79, 0xd5, 0x27, 0x7d, 0xcf, 0xeb, 0xac, 0x48, 0xe3, 0x79, 0xfa, 0xe8, 0xb0, 0x7a, 0x76, 0x39, - 0x8b, 0x00, 0xb3, 0xcb, 0x91, 0xf7, 0x61, 0xda, 0x8f, 0xc7, 0x20, 0x2a, 0xe7, 0x46, 0x48, 0x4e, - 0x4d, 0x44, 0x33, 0xe4, 0x01, 0x51, 0x02, 0x84, 0x49, 0x59, 0xe4, 0x65, 0x28, 0x7b, 0x6a, 0xa5, - 0xb2, 0x59, 0xb7, 0x72, 0x5e, 0xb4, 0x41, 0xec, 0xa8, 0xdb, 0x11, 0x18, 0xe3, 0x34, 0xe4, 0x16, - 0x94, 0x03, 0xb7, 0x43, 0x7d, 0x95, 0x81, 0x52, 0x11, 0x83, 0xbf, 0x90, 0xa5, 0xc9, 0x3b, 0x9a, - 0x2c, 0x72, 0x0e, 0x23, 0x18, 0xc3, 0x38, 0x1f, 0x6e, 0xf0, 0x87, 0xd7, 0xfa, 0x7c, 0xe1, 0xc3, - 0x3c, 0x9d, 0x34, 0xf8, 0xeb, 0x71, 0x24, 0x26, 0x69, 0xc9, 0x3a, 0x9c, 0xf6, 0x7c, 0xdb, 0xf5, - 0xed, 0xe0, 0x60, 0xa5, 0x63, 0x32, 0x26, 0x18, 0xcc, 0x0b, 0x06, 0x3a, 0x7c, 0xb5, 0x9d, 0x26, - 0xc0, 0xfe, 0x32, 0xe4, 0x12, 0x14, 0x43, 0x60, 0xe5, 0x19, 0x61, 0xab, 0x89, 0x65, 0x29, 0x2c, - 0x8b, 0x1a, 0x3b, 0xe0, 0x6e, 0xc5, 0x85, 0x61, 0xee, 0x56, 0x10, 0x0b, 0x2e, 0x98, 0xbd, 0xc0, - 0xed, 0x72, 0x40, 0xb2, 0xc8, 0x8e, 0xbb, 0x47, 0x9d, 0xca, 0x45, 0xb1, 0x57, 0x5d, 0x3c, 0x3a, - 0xac, 0x5e, 0x58, 0x7e, 0x00, 0x1d, 0x3e, 0x90, 0x0b, 0xe9, 0x42, 0x91, 0xaa, 0xfb, 0x21, 0x95, - 0x8f, 0x8c, 0xb0, 0x49, 0x24, 0x2f, 0x99, 0x84, 0xe7, 0x21, 0x12, 0x86, 0x5a, 0x04, 0xd9, 0x81, - 0x72, 0xdb, 0x65, 0xc1, 0x72, 0xc7, 0x36, 0x19, 0x65, 0x95, 0x67, 0x85, 0x9e, 0x64, 0xee, 0x6f, - 0x57, 0x43, 0xb2, 0x48, 0x4d, 0xae, 0x46, 0x25, 0x31, 0xce, 0x86, 0x50, 0x11, 0x0f, 0xe9, 0x89, - 0x51, 0x73, 0x9d, 0x80, 0xbe, 0x17, 0x54, 0x16, 0x44, 0x5b, 0x5e, 0xc8, 0xe2, 0xbc, 0xed, 0x5a, - 0xf5, 0x24, 0xb5, 0x9c, 0xe5, 0x29, 0x20, 0xa6, 0x79, 0x72, 0xcf, 0xce, 0x73, 0xad, 0xba, 0x47, - 0x1b, 0xdb, 0x66, 0xd0, 0x68, 0x57, 0xaa, 0x49, 0x87, 0x7a, 0x3b, 0x86, 0xc3, 0x04, 0x25, 0xf7, - 0x27, 0x7c, 0xca, 0x84, 0xf3, 0xbe, 0x4d, 0x1d, 0xcb, 0x76, 0x5a, 0xdb, 0xae, 0xc5, 0x2a, 0x86, - 0x18, 0x42, 0xe1, 0x4f, 0x60, 0x3f, 0x1a, 0xb3, 0xca, 0x90, 0x06, 0x4c, 0x76, 0x65, 0x8e, 0x50, - 0xe5, 0xb9, 0x11, 0xcc, 0x4a, 0x95, 0x67, 0x24, 0x37, 0x25, 0xf5, 0x81, 0x21, 0xe7, 0xf9, 0x37, - 0xe1, 0x74, 0x9f, 0xfd, 0xf7, 0x48, 0xc9, 0x51, 0x3f, 0xe0, 0xfe, 0x5e, 0xcc, 0xe2, 0x3e, 0x69, - 0x3f, 0x65, 0x1d, 0x4e, 0xab, 0x87, 0xb0, 0xb8, 0x71, 0xd0, 0xe9, 0xe9, 0x07, 0x18, 0x62, 0xa1, - 0x69, 0x4c, 0x13, 0x60, 0x7f, 0x19, 0x3e, 0xa6, 0x0d, 0x79, 0xc3, 0x5f, 0x26, 0xbf, 0x4c, 0x24, - 0xbd, 0xf5, 0x95, 0x18, 0x0e, 0x13, 0x94, 0xc6, 0x9f, 0xe6, 0x60, 0x3a, 0xb1, 0x51, 0x9d, 0x78, - 0xdc, 0x6a, 0x0d, 0x48, 0xd7, 0xf6, 0x7d, 0xd7, 0x97, 0xbb, 0xfd, 0x4d, 0x3e, 0x6b, 0x99, 0xba, - 0xe0, 0x23, 0x12, 0xcb, 0x6f, 0xf6, 0x61, 0x31, 0xa3, 0x84, 0xf1, 0x2f, 0x39, 0x88, 0xce, 0xcf, - 0xf4, 0x6d, 0x8a, 0xdc, 0xc0, 0xdb, 0x14, 0x2f, 0x41, 0xf1, 0x2e, 0x73, 0x9d, 0xed, 0xe8, 0xce, - 0x85, 0x1e, 0x8a, 0x6b, 0xf5, 0xad, 0x4d, 0x41, 0xa9, 0x29, 0x04, 0xf5, 0xbb, 0x6b, 0x76, 0x27, - 0xe8, 0xbf, 0x99, 0x70, 0xed, 0x33, 0x12, 0x8e, 0x9a, 0x82, 0x2c, 0x41, 0x49, 0x87, 0x65, 0x54, - 0x94, 0x48, 0x77, 0x82, 0x0e, 0xdf, 0x60, 0x44, 0x43, 0x5e, 0x8c, 0x0e, 0x26, 0xf3, 0xc9, 0x08, - 0x64, 0xfa, 0x70, 0xd2, 0xf8, 0xe6, 0x18, 0x14, 0x9f, 0xe0, 0x6b, 0x07, 0x8d, 0xc4, 0x6b, 0x07, - 0x27, 0x70, 0x35, 0x3e, 0xeb, 0xa5, 0x83, 0xbd, 0xd4, 0x4b, 0x07, 0x2b, 0x23, 0x1e, 0x18, 0x3f, - 0xf0, 0x95, 0x83, 0x7f, 0xc8, 0xc1, 0xe9, 0x90, 0x34, 0x3a, 0x31, 0xf9, 0x44, 0x2c, 0x25, 0xb9, - 0x54, 0x7b, 0x3e, 0x95, 0x95, 0x77, 0xb6, 0xaf, 0x40, 0x2c, 0x45, 0xef, 0xf3, 0xba, 0xf6, 0x52, - 0x8f, 0xd6, 0x92, 0x82, 0xef, 0x1f, 0x56, 0x8f, 0xf5, 0x9c, 0xde, 0xa2, 0xe6, 0x9d, 0xac, 0x70, - 0x3c, 0x31, 0x6c, 0xfc, 0xc1, 0x89, 0x61, 0xc6, 0x77, 0x73, 0x30, 0xf5, 0x04, 0x5f, 0x6f, 0xd8, - 0x4d, 0xbe, 0xde, 0xf0, 0xfa, 0x48, 0xc3, 0x36, 0xe0, 0xe5, 0x86, 0x7f, 0x3c, 0x07, 0x89, 0x57, - 0x13, 0x88, 0x03, 0xa5, 0x70, 0x85, 0x0c, 0x13, 0x0c, 0x5e, 0x1f, 0x29, 0x0a, 0x10, 0xcd, 0xcd, - 0x10, 0xc2, 0x30, 0x12, 0x91, 0x8a, 0xf9, 0x8e, 0x1d, 0x2b, 0xe6, 0xfb, 0xc4, 0x23, 0x4c, 0xd9, - 0x36, 0xd9, 0xc4, 0x63, 0xb1, 0xc9, 0x2e, 0x9c, 0xb8, 0x4d, 0xf6, 0xec, 0xe3, 0xb7, 0xc9, 0x62, - 0x1e, 0x68, 0x7e, 0x04, 0x0f, 0xf4, 0x7d, 0x98, 0x93, 0x7f, 0x57, 0x3a, 0xa6, 0xdd, 0xd5, 0xfa, - 0xa2, 0x2e, 0x71, 0xbc, 0x98, 0x69, 0x89, 0x51, 0x9f, 0xd9, 0x2c, 0xa0, 0x4e, 0x70, 0x3b, 0x2a, - 0x19, 0x25, 0xb1, 0xde, 0xce, 0x60, 0x87, 0x99, 0x42, 0xd2, 0x2e, 0xcb, 0xe4, 0x31, 0x5c, 0x96, - 0xaf, 0xe7, 0xe0, 0xac, 0x99, 0xf5, 0x48, 0x98, 0x0a, 0x5c, 0x5d, 0x1b, 0xc9, 0x81, 0x4c, 0x70, - 0x54, 0x0e, 0x60, 0x16, 0x0a, 0xb3, 0xeb, 0x40, 0x9e, 0x8f, 0x62, 0x10, 0xf2, 0x00, 0x21, 0x3b, - 0x7a, 0xf0, 0x95, 0x74, 0xec, 0x0f, 0x44, 0x6f, 0xd7, 0x47, 0xde, 0x8c, 0x4e, 0x20, 0xfe, 0x57, - 0x1e, 0x21, 0xfe, 0x97, 0xf2, 0x27, 0xa7, 0x4e, 0xc8, 0x9f, 0x74, 0x60, 0xd6, 0xee, 0x9a, 0x2d, - 0xba, 0xdd, 0xeb, 0x74, 0xe4, 0x09, 0x27, 0xab, 0x4c, 0x0b, 0xde, 0x99, 0x57, 0xfa, 0xb8, 0x7f, - 0xdf, 0x49, 0x3f, 0xf2, 0xa1, 0x93, 0x0d, 0x36, 0x52, 0x9c, 0xb0, 0x8f, 0x37, 0x57, 0x4b, 0xee, - 0xa7, 0x6c, 0xd2, 0x80, 0xf7, 0xb6, 0x08, 0x8d, 0xa9, 0x67, 0x1c, 0xaf, 0x46, 0x60, 0x8c, 0xd3, - 0x90, 0xeb, 0x50, 0xb2, 0x1c, 0xa6, 0x32, 0x09, 0x4e, 0x89, 0x55, 0xea, 0xa3, 0x7c, 0x6d, 0x5b, - 0xdd, 0xac, 0xeb, 0x1c, 0x82, 0x0b, 0x19, 0x19, 0xb8, 0x1a, 0x8f, 0x51, 0x79, 0x72, 0x53, 0x30, - 0x53, 0xf7, 0x5b, 0x65, 0x2c, 0xeb, 0xe2, 0x00, 0x97, 0x68, 0x75, 0x33, 0xbc, 0x8e, 0x3b, 0xad, - 0xc4, 0xa9, 0x5b, 0xab, 0x11, 0x87, 0xd8, 0xcb, 0x09, 0xa7, 0x1f, 0xf4, 0x72, 0x02, 0xb9, 0x05, - 0xe7, 0x83, 0xa0, 0x93, 0x38, 0x22, 0x51, 0x49, 0xce, 0x22, 0xe3, 0x3d, 0x2f, 0x1f, 0xbe, 0xd9, - 0xd9, 0xb9, 0x91, 0x45, 0x82, 0x83, 0xca, 0x8a, 0xb3, 0x82, 0xa0, 0xa3, 0x43, 0x22, 0x0b, 0xa3, - 0x9c, 0x15, 0x44, 0x67, 0x51, 0xea, 0xac, 0x20, 0x02, 0x60, 0x5c, 0xca, 0xe0, 0xd0, 0xce, 0x99, - 0x21, 0x43, 0x3b, 0xf1, 0x68, 0xc2, 0xdc, 0x03, 0xa3, 0x09, 0x7d, 0xd1, 0x8f, 0xb3, 0x8f, 0x10, - 0xfd, 0x78, 0x5b, 0x64, 0x57, 0xaf, 0xaf, 0xa8, 0xc8, 0xd1, 0x70, 0x49, 0x5c, 0x22, 0xf9, 0x4d, - 0x26, 0xbc, 0x88, 0xbf, 0x28, 0x79, 0x92, 0x6d, 0x98, 0xf3, 0x5c, 0xab, 0x2f, 0x78, 0x22, 0x42, - 0x45, 0xb1, 0x5b, 0x08, 0xdb, 0x19, 0x34, 0x98, 0x59, 0x52, 0x2c, 0xe0, 0x11, 0xbc, 0x52, 0x11, - 0x1d, 0x23, 0x17, 0xf0, 0x08, 0x8c, 0x71, 0x9a, 0x74, 0x2c, 0xe1, 0xe9, 0xc7, 0x16, 0x4b, 0x98, - 0x7f, 0x02, 0xb1, 0x84, 0x67, 0x8e, 0x1d, 0x4b, 0xf8, 0x75, 0x38, 0xe3, 0xb9, 0xd6, 0xaa, 0xcd, - 0xfc, 0x9e, 0x78, 0x42, 0xb6, 0xd6, 0xb3, 0x5a, 0x34, 0x10, 0xc1, 0x88, 0xf2, 0xe5, 0xcb, 0xf1, - 0x4a, 0xca, 0x97, 0xac, 0x17, 0xd5, 0x4b, 0xd6, 0x62, 0x92, 0xa7, 0x4a, 0x09, 0xb7, 0x43, 0xc4, - 0x1f, 0x32, 0x90, 0x98, 0x25, 0x27, 0x1e, 0x7f, 0xb8, 0xf8, 0xb8, 0xe2, 0x0f, 0xe4, 0x2d, 0x28, - 0xb2, 0x76, 0x2f, 0xb0, 0xdc, 0x7d, 0x47, 0x44, 0xa5, 0x4a, 0xfa, 0xd9, 0xb0, 0x62, 0x5d, 0xc1, - 0xef, 0x1f, 0x56, 0x67, 0xc3, 0xff, 0xb1, 0xf4, 0x4c, 0x05, 0x19, 0x3d, 0x82, 0xf1, 0x1f, 0x53, - 0x30, 0x93, 0x7a, 0x13, 0x4a, 0x5f, 0x76, 0xc9, 0x1d, 0xf7, 0xb2, 0x4b, 0xe2, 0x36, 0xca, 0xd8, - 0x63, 0xbd, 0x8d, 0x32, 0x7e, 0xe2, 0xb7, 0x51, 0x62, 0xce, 0xd5, 0xc4, 0x43, 0x6e, 0xdd, 0x2c, - 0xc3, 0xa9, 0xf0, 0x9c, 0x9a, 0xaa, 0xdb, 0x08, 0xd2, 0x59, 0xd7, 0x99, 0x46, 0x2b, 0x49, 0x34, - 0xa6, 0xe9, 0xc9, 0xaf, 0x41, 0xde, 0x11, 0x05, 0x0b, 0x23, 0xdc, 0x5e, 0x4c, 0x0e, 0x98, 0xb0, - 0x61, 0xd4, 0x05, 0xc2, 0xf0, 0x08, 0x23, 0x2f, 0x60, 0xf7, 0xc3, 0x3f, 0x28, 0x85, 0x92, 0x77, - 0xa0, 0xe2, 0x36, 0x9b, 0x1d, 0xd7, 0xb4, 0xa2, 0x1b, 0x33, 0xb7, 0xb9, 0x75, 0xaa, 0x0e, 0x05, - 0x4b, 0xb5, 0x8b, 0x8a, 0x41, 0x65, 0x6b, 0x00, 0x1d, 0x0e, 0xe4, 0xc0, 0x4d, 0xcd, 0x53, 0xc9, - 0x9b, 0x5c, 0xac, 0x52, 0x12, 0xcd, 0xfc, 0x95, 0x93, 0x68, 0x66, 0xf2, 0xda, 0x98, 0x6a, 0x70, - 0x94, 0xe3, 0x95, 0xc4, 0x62, 0xba, 0x26, 0xc4, 0x87, 0x73, 0x5e, 0x96, 0x21, 0xce, 0xd4, 0x41, - 0xf2, 0x83, 0xdc, 0x81, 0x05, 0x25, 0xe5, 0x5c, 0xa6, 0x29, 0xcf, 0x70, 0x00, 0xe7, 0xf8, 0x5d, - 0x9a, 0xe2, 0x63, 0xbb, 0x4b, 0xf3, 0x45, 0xf1, 0xb2, 0x94, 0x0c, 0x1c, 0x84, 0x76, 0xde, 0xda, - 0x48, 0x1d, 0xae, 0xe3, 0x10, 0xd1, 0xe4, 0xd1, 0x20, 0x86, 0x31, 0x69, 0xe4, 0xc7, 0x99, 0x57, - 0xb9, 0xa4, 0x1d, 0xfb, 0xb9, 0x93, 0x18, 0xf4, 0x9f, 0xb4, 0xeb, 0x5c, 0xf3, 0x07, 0xf2, 0xfe, - 0xe8, 0xc0, 0x9b, 0xb4, 0xb7, 0x92, 0x77, 0xe9, 0xdf, 0x1c, 0xf1, 0x3e, 0x5b, 0xfc, 0x16, 0xef, - 0x6f, 0xe6, 0x60, 0x2e, 0x6b, 0x12, 0x64, 0xd4, 0xa2, 0x9e, 0xac, 0xc5, 0x68, 0xe1, 0x91, 0x78, - 0x1d, 0x4e, 0xe6, 0x56, 0xd5, 0x1f, 0x16, 0x62, 0x21, 0x9d, 0x80, 0x7a, 0x3f, 0x4b, 0xf0, 0x19, - 0x2a, 0xc1, 0x27, 0xf1, 0x0e, 0x5f, 0xfe, 0x09, 0xbe, 0xc3, 0x57, 0x18, 0xe2, 0x1d, 0xbe, 0xc9, - 0x27, 0xf9, 0x0e, 0x5f, 0xf1, 0x98, 0xef, 0xf0, 0x95, 0x7e, 0x72, 0xde, 0xe1, 0xfb, 0x30, 0x07, - 0xb3, 0xff, 0xdf, 0x1f, 0xca, 0xfe, 0x41, 0x0e, 0xe6, 0xfe, 0x17, 0x5e, 0xc8, 0xbe, 0x9b, 0x8c, - 0x52, 0x5f, 0x39, 0x91, 0x46, 0x0e, 0x88, 0x56, 0xff, 0x51, 0x46, 0x13, 0x45, 0xd4, 0xfa, 0xfd, - 0xc7, 0xf5, 0xd4, 0xf0, 0x5c, 0xd6, 0x53, 0xc3, 0xc9, 0xa7, 0x85, 0x6b, 0x8b, 0xdf, 0xfe, 0x70, - 0xe1, 0xa9, 0xef, 0x7e, 0xb8, 0xf0, 0xd4, 0xf7, 0x3e, 0x5c, 0x78, 0xea, 0x83, 0xa3, 0x85, 0xdc, - 0xb7, 0x8f, 0x16, 0x72, 0xdf, 0x3d, 0x5a, 0xc8, 0x7d, 0xef, 0x68, 0x21, 0xf7, 0x83, 0xa3, 0x85, - 0xdc, 0x1f, 0xfc, 0xf3, 0xc2, 0x53, 0x9f, 0x2b, 0x86, 0x02, 0xfe, 0x27, 0x00, 0x00, 0xff, 0xff, - 0x1c, 0x74, 0x4a, 0x0f, 0xf7, 0x68, 0x00, 0x00, + 0x75, 0x3b, 0x24, 0x87, 0x9c, 0x79, 0x43, 0x52, 0x54, 0x89, 0x92, 0x66, 0xb9, 0x5a, 0x8e, 0xdc, + 0x9b, 0xdd, 0x68, 0x93, 0x35, 0xe9, 0xd5, 0x7a, 0x93, 0xf5, 0x67, 0x3f, 0x1c, 0x52, 0xa4, 0xa8, + 0x0f, 0x49, 0xbf, 0xa1, 0xa4, 0xd8, 0xbb, 0xb0, 0xd3, 0x9c, 0x2e, 0xce, 0xb4, 0x38, 0xd3, 0x3d, + 0xdb, 0xd5, 0x23, 0x2e, 0xbd, 0x09, 0xb2, 0x31, 0x12, 0x38, 0x1f, 0x18, 0x48, 0x10, 0xc0, 0x30, + 0x60, 0x04, 0x08, 0x7c, 0xc9, 0x25, 0xd7, 0xe4, 0x12, 0xc0, 0x07, 0x23, 0x07, 0xc3, 0x97, 0x38, + 0xb9, 0xc4, 0x09, 0x02, 0xda, 0xcb, 0x20, 0x89, 0x01, 0x07, 0xf1, 0x21, 0x87, 0x20, 0x42, 0x0e, + 0x41, 0x7d, 0xba, 0xba, 0xba, 0xa7, 0x47, 0xa2, 0x66, 0x28, 0xc5, 0x89, 0x7d, 0x9a, 0xe9, 0xf7, + 0x5e, 0xbd, 0x57, 0x9f, 0x57, 0xaf, 0x5e, 0xbd, 0x7a, 0x55, 0xb0, 0xdc, 0x70, 0xc3, 0x66, 0x77, + 0x67, 0xa1, 0xee, 0xb7, 0x17, 0xed, 0xa0, 0xe1, 0x77, 0x02, 0xff, 0xae, 0xf8, 0xb3, 0xd8, 0xd9, + 0x6b, 0x2c, 0xda, 0x1d, 0x97, 0x2d, 0xee, 0xfb, 0xc1, 0xde, 0x6e, 0xcb, 0xdf, 0x5f, 0xbc, 0xf7, + 0xb2, 0xdd, 0xea, 0x34, 0xed, 0x97, 0x17, 0x1b, 0xd4, 0xa3, 0x81, 0x1d, 0x52, 0x67, 0xa1, 0x13, + 0xf8, 0xa1, 0x4f, 0x5e, 0x89, 0x99, 0x2c, 0x44, 0x4c, 0xc4, 0x9f, 0x85, 0xce, 0x5e, 0x63, 0x81, + 0x33, 0x59, 0x88, 0x98, 0x2c, 0x44, 0x4c, 0xe6, 0x3e, 0x6a, 0x48, 0x6e, 0xf8, 0x5c, 0x20, 0xe7, + 0xb5, 0xd3, 0xdd, 0x15, 0x5f, 0xe2, 0x43, 0xfc, 0x93, 0x32, 0xe6, 0xac, 0xbd, 0xd7, 0xd8, 0x82, + 0xeb, 0xf3, 0x2a, 0x2d, 0xd6, 0xfd, 0x80, 0x2e, 0xde, 0xeb, 0xa9, 0xc7, 0xdc, 0x8b, 0x06, 0x4d, + 0xc7, 0x6f, 0xb9, 0xf5, 0x83, 0xc5, 0x7b, 0x2f, 0xef, 0xd0, 0xb0, 0xb7, 0xca, 0x73, 0x1f, 0x8f, + 0x49, 0xdb, 0x76, 0xbd, 0xe9, 0x7a, 0x34, 0x38, 0x88, 0x9b, 0xdc, 0xa6, 0xa1, 0x9d, 0x25, 0x60, + 0xb1, 0x5f, 0xa9, 0xa0, 0xeb, 0x85, 0x6e, 0x9b, 0xf6, 0x14, 0xf8, 0xa5, 0x87, 0x15, 0x60, 0xf5, + 0x26, 0x6d, 0xdb, 0xe9, 0x72, 0xd6, 0x5f, 0xe7, 0xe0, 0xd4, 0x52, 0x50, 0x6f, 0xba, 0xf7, 0x68, + 0x2d, 0xe4, 0x88, 0xc6, 0x01, 0x79, 0x1b, 0x46, 0x43, 0x3b, 0x28, 0xe7, 0x2e, 0xe6, 0x2e, 0x95, + 0x2e, 0xbf, 0xb5, 0x30, 0x40, 0x9f, 0x2f, 0x6c, 0xdb, 0x41, 0xc4, 0xae, 0x3a, 0x71, 0x74, 0x58, + 0x19, 0xdd, 0xb6, 0x03, 0xe4, 0x5c, 0xc9, 0x17, 0x60, 0xcc, 0xf3, 0x3d, 0x5a, 0x1e, 0x11, 0xdc, + 0x97, 0x06, 0xe2, 0xbe, 0xe1, 0x7b, 0xba, 0xb6, 0xd5, 0xc2, 0xd1, 0x61, 0x65, 0x8c, 0x43, 0x50, + 0x30, 0xb6, 0x7e, 0x9c, 0x83, 0xe2, 0x52, 0xd0, 0xe8, 0xb6, 0xa9, 0x17, 0x32, 0x12, 0x00, 0x74, + 0xec, 0xc0, 0x6e, 0xd3, 0x90, 0x06, 0xac, 0x9c, 0xbb, 0x38, 0x7a, 0xa9, 0x74, 0xf9, 0x8d, 0x81, + 0x84, 0x6e, 0x45, 0x6c, 0xaa, 0xe4, 0xdb, 0x87, 0x95, 0xa7, 0x8e, 0x0e, 0x2b, 0xa0, 0x41, 0x0c, + 0x0d, 0x29, 0xc4, 0x83, 0xa2, 0x1d, 0x84, 0xee, 0xae, 0x5d, 0x0f, 0x59, 0x79, 0x44, 0x88, 0x7c, + 0x7d, 0x20, 0x91, 0x4b, 0x8a, 0x4b, 0xf5, 0xb4, 0x92, 0x58, 0x8c, 0x20, 0x0c, 0x63, 0x11, 0xd6, + 0x8f, 0x46, 0xa1, 0x10, 0x21, 0xc8, 0x45, 0x18, 0xf3, 0xec, 0x36, 0x15, 0xa3, 0x57, 0xac, 0x4e, + 0xaa, 0x82, 0x63, 0x1b, 0x76, 0x9b, 0x77, 0x90, 0xdd, 0xa6, 0x9c, 0xa2, 0x63, 0x87, 0x4d, 0x31, + 0x02, 0x06, 0xc5, 0x96, 0x1d, 0x36, 0x51, 0x60, 0xc8, 0x05, 0x18, 0x6b, 0xfb, 0x0e, 0x2d, 0x8f, + 0x5e, 0xcc, 0x5d, 0xca, 0xcb, 0x0e, 0xbe, 0xe9, 0x3b, 0x14, 0x05, 0x94, 0x97, 0xdf, 0x0d, 0xfc, + 0x76, 0x79, 0x2c, 0x59, 0x7e, 0x35, 0xf0, 0xdb, 0x28, 0x30, 0xe4, 0xf7, 0x73, 0x30, 0x13, 0x55, + 0xef, 0x86, 0x5f, 0xb7, 0x43, 0xd7, 0xf7, 0xca, 0x79, 0x31, 0xe0, 0x57, 0x86, 0xea, 0x88, 0x88, + 0x59, 0xb5, 0xac, 0xa4, 0xce, 0xa4, 0x31, 0xd8, 0x23, 0x98, 0x5c, 0x06, 0x68, 0xb4, 0xfc, 0x1d, + 0xbb, 0xc5, 0xfb, 0xa0, 0x3c, 0x2e, 0x6a, 0xad, 0x87, 0x70, 0x4d, 0x63, 0xd0, 0xa0, 0x22, 0x7b, + 0x30, 0x61, 0xcb, 0x59, 0x51, 0x9e, 0x10, 0xf5, 0x5e, 0x19, 0xb0, 0xde, 0x89, 0x99, 0x55, 0x2d, + 0x1d, 0x1d, 0x56, 0x26, 0x14, 0x10, 0x23, 0x09, 0xe4, 0x25, 0x28, 0xf8, 0x1d, 0x5e, 0x55, 0xbb, + 0x55, 0x2e, 0x5c, 0xcc, 0x5d, 0x2a, 0x54, 0x67, 0x54, 0xf5, 0x0a, 0x9b, 0x0a, 0x8e, 0x9a, 0xc2, + 0xfa, 0x9b, 0x71, 0xe8, 0x69, 0x35, 0x79, 0x19, 0x4a, 0x8a, 0xdb, 0x0d, 0xbf, 0xc1, 0xc4, 0xe0, + 0x17, 0xaa, 0xa7, 0x8e, 0x0e, 0x2b, 0xa5, 0xa5, 0x18, 0x8c, 0x26, 0x0d, 0xb9, 0x03, 0x23, 0xec, + 0x15, 0x35, 0x0d, 0xdf, 0x1c, 0xa8, 0x75, 0xb5, 0x57, 0xb4, 0x82, 0x8e, 0x1f, 0x1d, 0x56, 0x46, + 0x6a, 0xaf, 0xe0, 0x08, 0x7b, 0x85, 0x9b, 0x8f, 0x86, 0x1b, 0x0a, 0xe5, 0x19, 0xd4, 0x7c, 0xac, + 0xb9, 0xa1, 0x66, 0x2d, 0xcc, 0xc7, 0x9a, 0x1b, 0x22, 0xe7, 0xca, 0xcd, 0x47, 0x33, 0x0c, 0x3b, + 0x42, 0xf9, 0x06, 0x35, 0x1f, 0x57, 0xb7, 0xb7, 0xb7, 0x34, 0x7b, 0xa1, 0xdd, 0x1c, 0x82, 0x82, + 0x31, 0x79, 0x9f, 0xf7, 0xa4, 0xc4, 0xf9, 0xc1, 0x81, 0xd2, 0xda, 0xab, 0x43, 0x69, 0xad, 0x1f, + 0x1c, 0x68, 0x71, 0x6a, 0x4c, 0x34, 0x02, 0x4d, 0x69, 0xa2, 0x75, 0xce, 0x2e, 0x13, 0x4a, 0x3a, + 0x70, 0xeb, 0x56, 0x56, 0x6b, 0xa9, 0xd6, 0xad, 0xac, 0xd6, 0x50, 0x30, 0xe6, 0x63, 0x13, 0xd8, + 0xfb, 0x4a, 0xa7, 0x07, 0x1b, 0x1b, 0xb4, 0xf7, 0x93, 0x63, 0x83, 0xf6, 0x3e, 0x72, 0xae, 0x9c, + 0xb9, 0xcf, 0x98, 0x50, 0xe1, 0x41, 0x99, 0x6f, 0xd6, 0x6a, 0x49, 0xe6, 0x9b, 0xb5, 0x1a, 0x72, + 0xae, 0x42, 0xab, 0xea, 0xac, 0x5c, 0x1c, 0x46, 0xab, 0x96, 0x53, 0xcc, 0xd7, 0x96, 0x6b, 0xc8, + 0xb9, 0x5a, 0x0d, 0x38, 0x1b, 0x61, 0x90, 0x76, 0x7c, 0xe6, 0x8a, 0xa1, 0xa1, 0xbb, 0x64, 0x11, + 0x8a, 0x75, 0xdf, 0xdb, 0x75, 0x1b, 0x37, 0xed, 0x8e, 0x32, 0xa9, 0xda, 0x16, 0x2f, 0x47, 0x08, + 0x8c, 0x69, 0xc8, 0xb3, 0x30, 0xba, 0x47, 0x0f, 0x94, 0x6d, 0x2d, 0x29, 0xd2, 0xd1, 0xeb, 0xf4, + 0x00, 0x39, 0xdc, 0xfa, 0x66, 0x0e, 0xce, 0x64, 0xa8, 0x05, 0x2f, 0xd6, 0x0d, 0x5a, 0x4a, 0x82, + 0x2e, 0x76, 0x0b, 0x6f, 0x20, 0x87, 0x93, 0x2f, 0xe7, 0xe0, 0x94, 0xa1, 0x27, 0x4b, 0x5d, 0x65, + 0xbe, 0x07, 0xb7, 0x4b, 0x09, 0x5e, 0xd5, 0xf3, 0x4a, 0xe2, 0xa9, 0x14, 0x02, 0xd3, 0x52, 0xad, + 0xbf, 0x13, 0xfe, 0x42, 0x02, 0x46, 0x6c, 0x98, 0xee, 0x32, 0x1a, 0xf0, 0xc5, 0xa5, 0x46, 0xeb, + 0x01, 0x0d, 0x95, 0xeb, 0xf0, 0xfc, 0x82, 0x74, 0x4a, 0x78, 0x2d, 0x16, 0xb8, 0x2b, 0xb5, 0x70, + 0xef, 0xe5, 0x05, 0x49, 0x71, 0x9d, 0x1e, 0xd4, 0x68, 0x8b, 0x72, 0x1e, 0x55, 0x72, 0x74, 0x58, + 0x99, 0xbe, 0x95, 0x60, 0x80, 0x29, 0x86, 0x5c, 0x44, 0xc7, 0x66, 0x6c, 0xdf, 0x0f, 0x1c, 0x25, + 0x62, 0xe4, 0x91, 0x45, 0x6c, 0x25, 0x18, 0x60, 0x8a, 0xa1, 0xf5, 0xd5, 0x1c, 0x4c, 0x54, 0xed, + 0xfa, 0x9e, 0xbf, 0xbb, 0xcb, 0x2d, 0xb2, 0xd3, 0x0d, 0xe4, 0xba, 0x25, 0xc7, 0x44, 0x5b, 0xe4, + 0x15, 0x05, 0x47, 0x4d, 0x41, 0x5e, 0x80, 0x71, 0xd9, 0x1d, 0xa2, 0x52, 0xf9, 0xea, 0xb4, 0xa2, + 0x1d, 0x5f, 0x15, 0x50, 0x54, 0x58, 0xf2, 0x2a, 0x94, 0xda, 0xf6, 0x7b, 0x11, 0x03, 0x61, 0x20, + 0x8b, 0xd5, 0x33, 0x8a, 0xb8, 0x74, 0x33, 0x46, 0xa1, 0x49, 0x67, 0xfd, 0x30, 0x07, 0xe7, 0x97, + 0x5b, 0x5d, 0x16, 0xd2, 0xe0, 0x8e, 0x1a, 0xc9, 0x6d, 0xda, 0xee, 0xb4, 0xec, 0x90, 0x92, 0x5f, + 0x85, 0x02, 0x77, 0x21, 0x1d, 0x3b, 0xb4, 0x55, 0xa7, 0x7f, 0xcc, 0xe8, 0x11, 0xed, 0x09, 0xc6, + 0xba, 0xc0, 0xa9, 0x79, 0x1f, 0x6d, 0xee, 0xdc, 0xa5, 0xf5, 0xf0, 0x26, 0x0d, 0xed, 0x78, 0x2d, + 0x8c, 0x61, 0xa8, 0xb9, 0x92, 0x3d, 0x18, 0x63, 0x1d, 0x5a, 0x57, 0xfd, 0xbd, 0x3e, 0x90, 0xba, + 0xa5, 0xab, 0x5d, 0xeb, 0xd0, 0x7a, 0xec, 0x38, 0xf0, 0x2f, 0x14, 0x42, 0xac, 0x7f, 0xcf, 0xc1, + 0x33, 0x7d, 0x9a, 0x7a, 0xc3, 0x65, 0x21, 0x79, 0xa7, 0xa7, 0xb9, 0x0b, 0xc7, 0x6b, 0x2e, 0x2f, + 0x2d, 0x1a, 0xab, 0xc7, 0x31, 0x82, 0x18, 0x4d, 0x7d, 0x17, 0xf2, 0x6e, 0x48, 0xdb, 0x91, 0xcf, + 0x76, 0x63, 0xa0, 0xb6, 0xf6, 0xa9, 0x7e, 0x75, 0x4a, 0x09, 0xce, 0xaf, 0x73, 0x11, 0x28, 0x25, + 0x59, 0x9f, 0x05, 0x58, 0xf6, 0xbd, 0xd0, 0xf5, 0xba, 0x74, 0xd3, 0x23, 0xcf, 0x41, 0x9e, 0x06, + 0x81, 0x1f, 0xa8, 0xf5, 0x5b, 0x17, 0xb9, 0xc2, 0x81, 0x28, 0x71, 0x52, 0xdb, 0xdc, 0x16, 0x75, + 0xc4, 0x90, 0x14, 0x4c, 0x6d, 0xe3, 0x50, 0x54, 0x58, 0x6b, 0x01, 0x26, 0x96, 0xfd, 0xae, 0x17, + 0xd2, 0x80, 0xf3, 0xbd, 0x67, 0xb7, 0xba, 0x91, 0x53, 0xa8, 0xf9, 0xde, 0xe6, 0x40, 0x94, 0x38, + 0xeb, 0x3b, 0x23, 0x30, 0xb9, 0x1c, 0xf8, 0x5e, 0x54, 0xf3, 0x27, 0xa0, 0x5b, 0x8d, 0x84, 0x6e, + 0x0d, 0xe6, 0x1a, 0x9a, 0x55, 0xee, 0xa7, 0x57, 0xc4, 0x87, 0x71, 0x16, 0xda, 0x61, 0x97, 0x29, + 0xaf, 0x64, 0x6d, 0x78, 0x51, 0x82, 0x5d, 0xdc, 0xf9, 0xf2, 0x1b, 0x95, 0x18, 0xeb, 0x7b, 0x39, + 0x98, 0x31, 0xc9, 0x9f, 0x80, 0xf6, 0xee, 0x26, 0xb5, 0x77, 0x69, 0xe8, 0x26, 0xf6, 0x51, 0xd9, + 0xff, 0xce, 0x27, 0x9b, 0xc6, 0xbb, 0x99, 0x7b, 0xfc, 0x93, 0xfb, 0x06, 0x40, 0xb5, 0x6f, 0x69, + 0x28, 0x73, 0x21, 0x86, 0xf3, 0xe7, 0x54, 0x25, 0x26, 0x4d, 0xe8, 0xfd, 0xd4, 0x37, 0x26, 0x84, + 0x73, 0xf3, 0xcd, 0xb7, 0xbb, 0x4e, 0xb7, 0x45, 0xd5, 0x4a, 0xac, 0x3b, 0xae, 0xa6, 0xe0, 0xa8, + 0x29, 0xc8, 0x3b, 0x70, 0xba, 0xee, 0x7b, 0xf5, 0x6e, 0x10, 0x50, 0xaf, 0x7e, 0xb0, 0x25, 0xb6, + 0xf3, 0xca, 0x38, 0x2f, 0xa8, 0x62, 0xa7, 0x97, 0xd3, 0x04, 0xf7, 0xb3, 0x80, 0xd8, 0xcb, 0x88, + 0xbc, 0x08, 0x13, 0xac, 0xcb, 0x3a, 0xd4, 0x73, 0x84, 0xcf, 0x5a, 0xa8, 0x9e, 0x52, 0x3c, 0x27, + 0x6a, 0x12, 0x8c, 0x11, 0x9e, 0xdc, 0x82, 0xf3, 0x2c, 0xe4, 0x0b, 0xae, 0xd7, 0x58, 0xa1, 0xb6, + 0xd3, 0x72, 0x3d, 0xbe, 0xfc, 0xf9, 0x9e, 0xc3, 0x84, 0x1b, 0x3a, 0x5a, 0x7d, 0xe6, 0xe8, 0xb0, + 0x72, 0xbe, 0x96, 0x4d, 0x82, 0xfd, 0xca, 0x92, 0xcf, 0xc3, 0x1c, 0xeb, 0xd6, 0xeb, 0x94, 0xb1, + 0xdd, 0x6e, 0xeb, 0x9a, 0xbf, 0xc3, 0xae, 0xba, 0x8c, 0xaf, 0xdd, 0x37, 0xdc, 0xb6, 0x1b, 0x0a, + 0x57, 0x33, 0x5f, 0x9d, 0x3f, 0x3a, 0xac, 0xcc, 0xd5, 0xfa, 0x52, 0xe1, 0x03, 0x38, 0x10, 0x84, + 0x73, 0xd2, 0xe4, 0xf4, 0xf0, 0x9e, 0x10, 0xbc, 0xe7, 0x8e, 0x0e, 0x2b, 0xe7, 0x56, 0x33, 0x29, + 0xb0, 0x4f, 0x49, 0x3e, 0x82, 0xa1, 0xdb, 0xa6, 0x5f, 0xf4, 0x3d, 0x2a, 0xfc, 0x49, 0x63, 0x04, + 0xb7, 0x15, 0x1c, 0x35, 0x05, 0xb9, 0x1b, 0x2b, 0x1f, 0x9f, 0x14, 0xca, 0x49, 0x7c, 0x74, 0x6b, + 0x35, 0xcb, 0x77, 0x94, 0x77, 0x0c, 0x4e, 0x7c, 0x62, 0x61, 0x82, 0xb7, 0xf5, 0xb7, 0x39, 0x20, + 0xbd, 0x86, 0x80, 0x5c, 0x87, 0x71, 0xbb, 0x1e, 0xf2, 0xfd, 0xa2, 0x8c, 0x31, 0x3c, 0x97, 0xe5, + 0x98, 0x48, 0x51, 0x48, 0x77, 0x29, 0xd7, 0x10, 0x1a, 0x5b, 0x8f, 0x25, 0x51, 0x14, 0x15, 0x0b, + 0xe2, 0xc3, 0xe9, 0x96, 0xcd, 0xc2, 0x48, 0x57, 0x1d, 0xde, 0x64, 0x65, 0x24, 0x7f, 0xe1, 0x78, + 0x8d, 0xe2, 0x25, 0xaa, 0x67, 0xb9, 0xe6, 0xde, 0x48, 0x33, 0xc2, 0x5e, 0xde, 0xd6, 0xb7, 0xc6, + 0x61, 0x62, 0x65, 0x69, 0x6d, 0xdb, 0x66, 0x7b, 0xc7, 0x08, 0x20, 0xf0, 0xc1, 0x51, 0xcb, 0x5a, + 0x7a, 0x7a, 0x45, 0xcb, 0x1d, 0x6a, 0x0a, 0xe2, 0x43, 0xd1, 0x8e, 0xc2, 0x31, 0xca, 0xfc, 0xbe, + 0x31, 0xa0, 0xd3, 0xaa, 0xb8, 0x98, 0xe1, 0x10, 0x05, 0xc2, 0x58, 0x06, 0x61, 0x50, 0x8a, 0x84, + 0x23, 0xdd, 0x55, 0x3b, 0xc5, 0x01, 0xc3, 0x58, 0x31, 0x1f, 0xb9, 0x73, 0x33, 0x00, 0x68, 0x4a, + 0x21, 0x1f, 0x87, 0x49, 0x87, 0xf2, 0x59, 0x4c, 0xbd, 0xba, 0x4b, 0xf9, 0x84, 0x1d, 0xe5, 0xfd, + 0xc2, 0x0d, 0xd7, 0x8a, 0x01, 0xc7, 0x04, 0x15, 0xb9, 0x0b, 0xc5, 0x7d, 0x37, 0x6c, 0x0a, 0xfb, + 0x5a, 0x1e, 0x17, 0x8a, 0xf3, 0x89, 0x81, 0x2a, 0xca, 0x39, 0xc4, 0xdd, 0x72, 0x27, 0xe2, 0x89, + 0x31, 0x7b, 0xbe, 0x95, 0xe1, 0x1f, 0x22, 0x66, 0x25, 0x66, 0x66, 0x31, 0x59, 0x40, 0x20, 0x30, + 0xa6, 0x21, 0x0c, 0x26, 0xf9, 0x47, 0x8d, 0xbe, 0xdb, 0xe5, 0xda, 0xaa, 0xf6, 0x75, 0x83, 0x45, + 0xb2, 0x22, 0x26, 0xb2, 0x47, 0xee, 0x18, 0x6c, 0x31, 0x21, 0x84, 0x6b, 0xdf, 0x7e, 0x93, 0x7a, + 0x62, 0x0a, 0x1b, 0xda, 0x77, 0xa7, 0x49, 0x3d, 0x14, 0x18, 0xe2, 0x03, 0xd4, 0xb5, 0xcb, 0x54, + 0x86, 0x21, 0xe2, 0x17, 0xb1, 0xe7, 0x55, 0x9d, 0xe6, 0x3e, 0x4a, 0xfc, 0x8d, 0x86, 0x08, 0xee, + 0x70, 0xf9, 0xde, 0x95, 0xf7, 0xdc, 0xb0, 0x5c, 0x12, 0x95, 0xd2, 0xb3, 0x76, 0x53, 0x40, 0x51, + 0x61, 0xad, 0x6f, 0xe5, 0xa0, 0xc4, 0x27, 0x51, 0xa4, 0xf8, 0x2f, 0xc0, 0x78, 0x68, 0x07, 0x0d, + 0xb5, 0x1d, 0x32, 0xca, 0x6d, 0x0b, 0x28, 0x2a, 0x2c, 0xb1, 0x21, 0x1f, 0xda, 0x6c, 0x2f, 0x5a, + 0xb8, 0x3f, 0x3d, 0x50, 0x5b, 0xd4, 0xec, 0x8d, 0xd7, 0x6c, 0xfe, 0xc5, 0x50, 0x72, 0x26, 0x97, + 0xa0, 0xc0, 0x0d, 0xed, 0xaa, 0xcd, 0x64, 0x5c, 0xa6, 0x50, 0x9d, 0xe4, 0xb3, 0x75, 0x55, 0xc1, + 0x50, 0x63, 0xad, 0x77, 0x60, 0xfa, 0xca, 0x7b, 0xb4, 0xde, 0x0d, 0xfd, 0x40, 0xee, 0x6f, 0xc9, + 0x35, 0x20, 0x8c, 0x06, 0xf7, 0xdc, 0x3a, 0x5d, 0xaa, 0xd7, 0xb9, 0x43, 0xb9, 0x11, 0x5b, 0x87, + 0x39, 0x25, 0x8d, 0xd4, 0x7a, 0x28, 0x30, 0xa3, 0x94, 0xf5, 0xc7, 0x39, 0x28, 0x19, 0xbb, 0x70, + 0x6e, 0x1b, 0x1a, 0xcb, 0xb5, 0x6a, 0xb7, 0xbe, 0xa7, 0x37, 0x8d, 0x6f, 0x0c, 0xba, 0xb5, 0x97, + 0x5c, 0x62, 0x9d, 0xd6, 0x20, 0x8c, 0x65, 0x3c, 0x6c, 0x7b, 0xfe, 0x17, 0x39, 0x88, 0xcb, 0xf1, + 0x01, 0xdc, 0x89, 0xab, 0x66, 0x0c, 0xa0, 0xe2, 0xab, 0xb0, 0xe4, 0x83, 0x1c, 0x9c, 0x4f, 0x36, + 0x56, 0xec, 0x3d, 0x1f, 0x7d, 0x9b, 0x5a, 0x51, 0x02, 0xce, 0xd7, 0xb2, 0xb9, 0x61, 0x3f, 0x31, + 0xd6, 0x6d, 0xc8, 0xaf, 0xd9, 0xdd, 0x06, 0x3d, 0x96, 0xab, 0xcf, 0xd5, 0x21, 0xa0, 0x76, 0x2b, + 0x8c, 0x96, 0x15, 0xa5, 0x0e, 0xa8, 0x60, 0xa8, 0xb1, 0xd6, 0x9f, 0x8d, 0x41, 0xc9, 0x08, 0xc6, + 0xf1, 0xe9, 0x19, 0xd0, 0x8e, 0x9f, 0x5e, 0x1c, 0x90, 0x76, 0x7c, 0x14, 0x18, 0xbe, 0x38, 0x04, + 0xf4, 0x9e, 0xcb, 0xf8, 0x0e, 0x37, 0xb5, 0x38, 0xa0, 0x82, 0xa3, 0xa6, 0x20, 0x15, 0xc8, 0x3b, + 0xb4, 0x13, 0x36, 0x85, 0x56, 0x8e, 0x55, 0x8b, 0xbc, 0xaa, 0x2b, 0x1c, 0x80, 0x12, 0xce, 0x09, + 0x76, 0x69, 0x58, 0x6f, 0x96, 0xc7, 0x84, 0x41, 0x15, 0x04, 0xab, 0x1c, 0x80, 0x12, 0x9e, 0x11, + 0x7c, 0xc8, 0x3f, 0xfe, 0xe0, 0xc3, 0xf8, 0x09, 0x07, 0x1f, 0x48, 0x07, 0xce, 0x30, 0xd6, 0xdc, + 0x0a, 0xdc, 0x7b, 0x76, 0x48, 0x63, 0xed, 0x99, 0x78, 0x14, 0x39, 0xe7, 0x8f, 0x0e, 0x2b, 0x67, + 0x6a, 0xb5, 0xab, 0x69, 0x2e, 0x98, 0xc5, 0x9a, 0xd4, 0xe0, 0xac, 0xeb, 0x31, 0x5a, 0xef, 0x06, + 0x74, 0xbd, 0xe1, 0xf9, 0x01, 0xbd, 0xea, 0x33, 0xce, 0x4e, 0x45, 0xa0, 0x9f, 0x55, 0x83, 0x76, + 0x76, 0x3d, 0x8b, 0x08, 0xb3, 0xcb, 0x5a, 0xdf, 0xc9, 0xc1, 0xa4, 0x19, 0x7f, 0x24, 0x0c, 0xa0, + 0xb9, 0xb2, 0x5a, 0x93, 0xa6, 0x44, 0xcd, 0xf0, 0x37, 0x07, 0x0e, 0x6b, 0x4a, 0x36, 0xf1, 0xa6, + 0x32, 0x86, 0xa1, 0x21, 0xe6, 0x18, 0x07, 0x1c, 0xcf, 0x41, 0x7e, 0xd7, 0x0f, 0xea, 0x54, 0x19, + 0x43, 0x3d, 0x4b, 0x56, 0x39, 0x10, 0x25, 0xce, 0xfa, 0x61, 0x0e, 0x0c, 0x09, 0xe4, 0x37, 0x60, + 0x8a, 0xcb, 0xb8, 0x1e, 0xec, 0x24, 0x5a, 0x53, 0x1d, 0xb8, 0x35, 0x9a, 0x53, 0xf5, 0xac, 0x92, + 0x3f, 0x95, 0x00, 0x63, 0x52, 0x1e, 0xf9, 0x45, 0x28, 0xda, 0x8e, 0x13, 0x50, 0xc6, 0xa8, 0x5c, + 0x2b, 0x8a, 0xd5, 0x29, 0xe1, 0x04, 0x45, 0x40, 0x8c, 0xf1, 0x7c, 0x1a, 0x36, 0x9d, 0x5d, 0xc6, + 0x35, 0x5b, 0xed, 0x65, 0xf4, 0x34, 0xe4, 0x42, 0x38, 0x1c, 0x35, 0x85, 0xf5, 0x95, 0x31, 0x48, + 0xca, 0x26, 0x0e, 0x9c, 0xda, 0x0b, 0x76, 0x96, 0x97, 0xed, 0x7a, 0x73, 0xa0, 0xa0, 0xde, 0x99, + 0xa3, 0xc3, 0xca, 0xa9, 0xeb, 0x49, 0x0e, 0x98, 0x66, 0xa9, 0xa4, 0x5c, 0xa7, 0x07, 0xa1, 0xbd, + 0x33, 0x88, 0xc1, 0x8c, 0xa4, 0x98, 0x1c, 0x30, 0xcd, 0x92, 0xbc, 0x0a, 0xa5, 0xbd, 0x60, 0x27, + 0x9a, 0xe4, 0xe9, 0xb8, 0xdb, 0xf5, 0x18, 0x85, 0x26, 0x1d, 0xef, 0xc2, 0xbd, 0x60, 0x87, 0x1b, + 0xc5, 0xe8, 0xac, 0x4b, 0x77, 0xe1, 0x75, 0x05, 0x47, 0x4d, 0x41, 0x3a, 0x40, 0xf6, 0xa2, 0xde, + 0xd3, 0x91, 0x61, 0x65, 0x8b, 0x2e, 0x65, 0xb5, 0x46, 0x13, 0x99, 0x0d, 0x3a, 0xc7, 0x17, 0xd3, + 0xeb, 0x3d, 0x7c, 0x30, 0x83, 0x37, 0xf9, 0x2c, 0x9c, 0xdf, 0x0b, 0x76, 0xd4, 0x52, 0xb1, 0x15, + 0xb8, 0x5e, 0xdd, 0xed, 0x24, 0x0e, 0xb9, 0xf4, 0x72, 0x72, 0x3d, 0x9b, 0x0c, 0xfb, 0x95, 0xb7, + 0x3e, 0x0a, 0x93, 0xe6, 0x21, 0xc9, 0x43, 0xc2, 0xd3, 0xd6, 0x1d, 0x28, 0x8a, 0xdd, 0x5b, 0x83, + 0xbb, 0x8d, 0x7a, 0x05, 0x1a, 0x7d, 0xc0, 0x0a, 0xf4, 0x3c, 0x4c, 0xc8, 0xc5, 0x93, 0x09, 0xc3, + 0x9e, 0x93, 0x27, 0x63, 0x72, 0x5d, 0x65, 0x18, 0xe1, 0xac, 0x7f, 0xcb, 0xc1, 0xf8, 0xba, 0xd7, + 0xe9, 0xfe, 0x94, 0x1c, 0xe4, 0x7e, 0x63, 0x0c, 0xc6, 0xb8, 0xb3, 0x4e, 0x2e, 0xc1, 0x58, 0x78, + 0xd0, 0x91, 0x8b, 0xf8, 0x68, 0x75, 0x36, 0xb2, 0x60, 0xdb, 0x07, 0x1d, 0x7a, 0x5f, 0xfd, 0xa2, + 0xa0, 0x20, 0x6f, 0xc0, 0xb8, 0xd7, 0x6d, 0xdf, 0xb6, 0x5b, 0xca, 0xda, 0xbd, 0x10, 0xf9, 0x28, + 0x1b, 0x02, 0x7a, 0xff, 0xb0, 0x32, 0x4b, 0xbd, 0xba, 0xef, 0xb8, 0x5e, 0x63, 0xf1, 0x2e, 0xf3, + 0xbd, 0x85, 0x8d, 0x6e, 0x7b, 0x87, 0x06, 0xa8, 0x4a, 0x91, 0x17, 0x61, 0x62, 0xc7, 0xf7, 0x5b, + 0x9c, 0xc1, 0x68, 0x32, 0x3c, 0x51, 0x95, 0x60, 0x8c, 0xf0, 0xdc, 0x1d, 0x62, 0x61, 0xc0, 0x29, + 0xc7, 0x92, 0xee, 0x50, 0x4d, 0x40, 0x51, 0x61, 0x49, 0x1b, 0xc6, 0xdb, 0x76, 0x87, 0xd3, 0xe5, + 0x45, 0x97, 0x5d, 0x19, 0x78, 0x47, 0xb3, 0x70, 0x53, 0xf0, 0xb9, 0xe2, 0x85, 0xc1, 0x41, 0x2c, + 0x4e, 0x02, 0x51, 0x09, 0x21, 0x2e, 0x4c, 0xb4, 0x5c, 0x16, 0x72, 0x79, 0xe3, 0x43, 0x68, 0x05, + 0x97, 0x27, 0x54, 0x34, 0xee, 0x81, 0x1b, 0x92, 0x2d, 0x46, 0xfc, 0xe7, 0x0e, 0xa0, 0x64, 0xd4, + 0x88, 0xcc, 0x48, 0x67, 0x52, 0xcc, 0x0a, 0xe1, 0x3f, 0x92, 0xed, 0x48, 0xf7, 0x47, 0x86, 0xf0, + 0x65, 0x75, 0x4d, 0xd4, 0x64, 0xf9, 0xe4, 0xc8, 0x6b, 0xb9, 0x4f, 0x16, 0xbe, 0xf6, 0x27, 0x95, + 0xa7, 0x3e, 0xf8, 0xc7, 0x8b, 0x4f, 0x59, 0x7f, 0x35, 0x0a, 0x45, 0x4d, 0xf2, 0x7f, 0x5b, 0x53, + 0x82, 0x94, 0xa6, 0x5c, 0x1b, 0xae, 0xbf, 0x8e, 0xa5, 0x2e, 0x4b, 0x49, 0x75, 0x99, 0xac, 0xfe, + 0xbc, 0x31, 0xd4, 0xf7, 0x0f, 0x2b, 0xe5, 0x64, 0x27, 0xa0, 0xbd, 0x7f, 0x93, 0x32, 0x66, 0x37, + 0x68, 0xac, 0x06, 0x9f, 0x78, 0x98, 0x1a, 0xcc, 0x9a, 0x6a, 0x50, 0xcc, 0x1e, 0xc6, 0x16, 0x8c, + 0xdd, 0x70, 0xbd, 0xe3, 0x84, 0x5b, 0x9e, 0x83, 0x3c, 0xab, 0xfb, 0x9d, 0x28, 0xd6, 0xa2, 0x0d, + 0x6a, 0x8d, 0x03, 0x51, 0xe2, 0x22, 0x0b, 0x3d, 0xda, 0xc7, 0x42, 0x7f, 0x30, 0x0a, 0x85, 0x28, + 0xa0, 0x45, 0x7e, 0x3b, 0x07, 0x25, 0xdb, 0xf3, 0xfc, 0x50, 0x9c, 0x2f, 0x45, 0xc6, 0x74, 0x63, + 0xa0, 0xce, 0x8f, 0x98, 0x2e, 0x2c, 0xc5, 0x0c, 0xe5, 0x00, 0xe8, 0x05, 0xd6, 0xc0, 0xa0, 0x29, + 0x97, 0xbc, 0x0b, 0xe3, 0x2d, 0x7b, 0x87, 0xb6, 0x22, 0xdb, 0xba, 0x3e, 0x5c, 0x0d, 0x6e, 0x08, + 0x5e, 0xa9, 0xd1, 0x97, 0x40, 0x54, 0x82, 0xe6, 0xde, 0x80, 0x99, 0x74, 0x45, 0x1f, 0x65, 0xfc, + 0xf8, 0xd0, 0x1b, 0x62, 0x1e, 0xa5, 0xa8, 0xf5, 0x19, 0x28, 0xdd, 0xa4, 0x61, 0xe0, 0xd6, 0x05, + 0x83, 0x68, 0x27, 0x9a, 0xcb, 0xde, 0x89, 0xc6, 0xab, 0xe8, 0xc8, 0x03, 0x8e, 0x6c, 0xbe, 0x08, + 0x13, 0x92, 0x25, 0x23, 0x3e, 0x40, 0x27, 0xf0, 0xdb, 0x34, 0x6c, 0xd2, 0x6e, 0x34, 0xa2, 0x83, + 0x39, 0xda, 0x5b, 0x9a, 0x8d, 0x8c, 0x8a, 0xc4, 0xdf, 0x68, 0x88, 0xb0, 0xfe, 0x75, 0x12, 0x60, + 0xc3, 0x77, 0xa8, 0x8a, 0x7f, 0xce, 0xc1, 0x88, 0xeb, 0xa8, 0xd6, 0x80, 0xaa, 0xec, 0xc8, 0xfa, + 0x0a, 0x8e, 0xb8, 0x8e, 0x56, 0xf1, 0x91, 0xbe, 0x2a, 0xfe, 0x2a, 0x94, 0x1c, 0x97, 0x75, 0x5a, + 0xf6, 0xc1, 0x46, 0x86, 0x87, 0xb6, 0x12, 0xa3, 0xd0, 0xa4, 0x23, 0x2f, 0x29, 0xe3, 0x27, 0xad, + 0x4c, 0x39, 0x65, 0xfc, 0x0a, 0xbc, 0x7a, 0x86, 0x01, 0x7c, 0x0d, 0x26, 0xa3, 0x88, 0x9d, 0x90, + 0x92, 0x17, 0xa5, 0x22, 0x93, 0x39, 0xb9, 0x6d, 0xe0, 0x30, 0x41, 0x99, 0x8e, 0x28, 0x8e, 0x3f, + 0x91, 0x88, 0xe2, 0x0a, 0xcc, 0xb0, 0xd0, 0x0f, 0xa8, 0x13, 0x51, 0xac, 0xaf, 0x94, 0x49, 0xa2, + 0xa1, 0x33, 0xb5, 0x14, 0x1e, 0x7b, 0x4a, 0x90, 0x2d, 0x98, 0xdd, 0x4f, 0x1d, 0x45, 0x8a, 0xc6, + 0x9f, 0x11, 0x9c, 0x2e, 0x28, 0x4e, 0xb3, 0x77, 0x32, 0x68, 0x30, 0xb3, 0x24, 0xf9, 0x14, 0x4c, + 0x45, 0xd5, 0x14, 0x16, 0xa8, 0x3c, 0x2b, 0x58, 0xe9, 0x3d, 0xcc, 0xb6, 0x89, 0xc4, 0x24, 0x2d, + 0xf9, 0x18, 0xe4, 0x3b, 0x4d, 0x9b, 0x51, 0x15, 0x80, 0x8c, 0xe2, 0x47, 0xf9, 0x2d, 0x0e, 0xbc, + 0x7f, 0x58, 0x29, 0xf2, 0x31, 0x13, 0x1f, 0x28, 0x09, 0xc9, 0x65, 0x80, 0x1d, 0xbf, 0xeb, 0x39, + 0x76, 0x70, 0xb0, 0xbe, 0xa2, 0xce, 0x02, 0xb4, 0xdf, 0x56, 0xd5, 0x18, 0x34, 0xa8, 0xf8, 0x52, + 0xd5, 0x96, 0x46, 0x5b, 0xc5, 0x11, 0xf5, 0x52, 0xa5, 0x6d, 0xb9, 0xc2, 0x93, 0xb7, 0xa1, 0x28, + 0xce, 0x4d, 0xa8, 0xb3, 0x14, 0xaa, 0x60, 0xe2, 0xa3, 0x84, 0xd8, 0xb5, 0x3f, 0x57, 0x8b, 0x98, + 0x60, 0xcc, 0x8f, 0x7c, 0x1e, 0x60, 0xd7, 0xf5, 0x5c, 0xd6, 0x14, 0xdc, 0x4b, 0x8f, 0xcc, 0x5d, + 0xb7, 0x73, 0x55, 0x73, 0x41, 0x83, 0x23, 0xf9, 0x51, 0x0e, 0x4e, 0x07, 0x94, 0xf9, 0xdd, 0xa0, + 0x4e, 0x99, 0xce, 0x2b, 0x38, 0x2b, 0x26, 0xff, 0xed, 0x01, 0x33, 0x2b, 0xa3, 0x19, 0xbd, 0x80, + 0x69, 0xc6, 0xd2, 0xb2, 0xd2, 0xe8, 0x48, 0xac, 0x07, 0x7f, 0x3f, 0x0b, 0xf8, 0xa5, 0xef, 0x57, + 0x2a, 0xbd, 0x09, 0xb5, 0x9a, 0x39, 0xd7, 0xa8, 0xdf, 0xfb, 0x7e, 0x65, 0x26, 0xfa, 0xd6, 0x19, + 0x10, 0xbd, 0xed, 0xe2, 0x26, 0xb1, 0xe3, 0x3b, 0xeb, 0x5b, 0xe5, 0xc9, 0xa4, 0x49, 0xdc, 0xe2, + 0x40, 0x94, 0x38, 0x72, 0x09, 0x0a, 0x8e, 0x4d, 0xdb, 0xbe, 0x47, 0x9d, 0xf2, 0x54, 0x1c, 0xda, + 0x5a, 0x51, 0x30, 0xd4, 0x58, 0xf2, 0x05, 0x18, 0x77, 0xc5, 0xd6, 0xa2, 0x3c, 0x2d, 0x06, 0xe6, + 0x53, 0x83, 0x39, 0x1f, 0x82, 0x45, 0x15, 0xf8, 0x5a, 0x23, 0xff, 0xa3, 0x62, 0x4b, 0xea, 0x30, + 0xe1, 0x77, 0x43, 0x21, 0xe1, 0x94, 0x90, 0x30, 0x58, 0x64, 0x77, 0x53, 0xf2, 0x90, 0x3b, 0x24, + 0xf5, 0x81, 0x11, 0x67, 0xde, 0xde, 0x7a, 0xd3, 0x6d, 0x39, 0x01, 0xf5, 0xca, 0x33, 0x22, 0x26, + 0x20, 0xda, 0xbb, 0xac, 0x60, 0xa8, 0xb1, 0xe4, 0x97, 0x61, 0xca, 0xef, 0x86, 0x62, 0x96, 0xf0, + 0x51, 0x66, 0xe5, 0xd3, 0x82, 0xfc, 0x34, 0x9f, 0xb3, 0x9b, 0x26, 0x02, 0x93, 0x74, 0xdc, 0x6e, + 0x36, 0x7d, 0x16, 0xf2, 0x0f, 0x61, 0x3a, 0xce, 0x25, 0xed, 0xe6, 0x55, 0x03, 0x87, 0x09, 0xca, + 0xb9, 0x15, 0x38, 0x97, 0xad, 0x45, 0x0f, 0x5b, 0x38, 0x47, 0xcd, 0x85, 0x73, 0x1a, 0x26, 0xcd, + 0x84, 0x5f, 0x11, 0x44, 0x36, 0xf2, 0xc4, 0x88, 0x0f, 0x45, 0xbf, 0x76, 0x12, 0x41, 0xe4, 0xcd, + 0x5a, 0x4f, 0x10, 0x59, 0x83, 0x30, 0x96, 0xf1, 0xb0, 0x20, 0xf2, 0x9f, 0x8f, 0x40, 0x5c, 0x8e, + 0xbc, 0x04, 0x05, 0xea, 0x39, 0x1d, 0xdf, 0xf5, 0xc2, 0x74, 0x2a, 0xd1, 0x15, 0x05, 0x47, 0x4d, + 0x61, 0x84, 0x9c, 0x47, 0x1e, 0x18, 0x72, 0x6e, 0xc2, 0x29, 0x5b, 0x1c, 0xc8, 0xc6, 0xb1, 0xc2, + 0xd1, 0x47, 0x8a, 0x15, 0xea, 0x84, 0xaf, 0x24, 0x17, 0x4c, 0xb3, 0xe5, 0x92, 0x58, 0x5c, 0x5c, + 0x48, 0x1a, 0x1b, 0x48, 0x52, 0x2d, 0xc9, 0x05, 0xd3, 0x6c, 0xad, 0xbf, 0x1c, 0x81, 0x48, 0xbf, + 0x7f, 0x1a, 0x76, 0xfb, 0xc4, 0x82, 0xf1, 0x80, 0xb2, 0x6e, 0x2b, 0x54, 0xfe, 0x8e, 0xb0, 0x21, + 0x28, 0x20, 0xa8, 0x30, 0x7c, 0x7a, 0xd3, 0xf7, 0xdc, 0x70, 0xd9, 0x77, 0x22, 0x2f, 0x47, 0x4c, + 0xef, 0x2b, 0x0a, 0x86, 0x1a, 0x6b, 0xed, 0xc3, 0x14, 0x6f, 0x57, 0xab, 0x45, 0x5b, 0xb5, 0x90, + 0x76, 0x18, 0xd9, 0x85, 0x3c, 0xe3, 0x7f, 0x54, 0xef, 0x0d, 0x99, 0x8a, 0x11, 0xd2, 0x8e, 0xb1, + 0xf3, 0xe0, 0x7c, 0x51, 0xb2, 0xb7, 0xbe, 0x3a, 0x02, 0x45, 0xdd, 0xa3, 0xc7, 0xd8, 0xce, 0x3c, + 0x0f, 0x13, 0x0e, 0xdd, 0xb5, 0x79, 0xbb, 0xd5, 0x0c, 0xe2, 0x86, 0x6d, 0x45, 0x82, 0x30, 0xc2, + 0x91, 0x4a, 0x32, 0x8c, 0x54, 0xec, 0x09, 0x21, 0xed, 0x41, 0x51, 0xfc, 0x59, 0x8d, 0x72, 0xd1, + 0x07, 0xd5, 0x90, 0xdb, 0x11, 0x17, 0x19, 0x4e, 0xd5, 0x9f, 0x18, 0xf3, 0x4f, 0xe5, 0x90, 0xe7, + 0x8f, 0x93, 0x43, 0x6e, 0xad, 0x02, 0x5f, 0x9a, 0xd6, 0x96, 0xc9, 0xeb, 0x50, 0x60, 0xca, 0x78, + 0xa9, 0x7e, 0xf9, 0x88, 0x4e, 0x47, 0x51, 0xf0, 0xfb, 0x87, 0x95, 0x29, 0x41, 0x1c, 0x01, 0x50, + 0x17, 0xb1, 0xbe, 0x3c, 0x06, 0x86, 0x13, 0x7e, 0x8c, 0x1e, 0x76, 0x52, 0xfb, 0xaa, 0xb7, 0x06, + 0xdd, 0x57, 0x45, 0x9b, 0x15, 0xa9, 0x9a, 0xc9, 0xad, 0x14, 0xaf, 0x47, 0x93, 0xb6, 0x3a, 0x6a, + 0x7c, 0x74, 0x3d, 0xae, 0xd2, 0x56, 0x07, 0x05, 0x46, 0x9f, 0xe5, 0x8e, 0xf5, 0x3d, 0xcb, 0x7d, + 0x1b, 0xf2, 0x0d, 0xbb, 0xdb, 0xa0, 0x2a, 0x4e, 0xfa, 0xc9, 0xc1, 0xce, 0xfe, 0x38, 0x07, 0xa9, + 0x20, 0xe2, 0x2f, 0x4a, 0x9e, 0x5c, 0x41, 0x9a, 0x51, 0x54, 0x52, 0xf9, 0xec, 0x83, 0x29, 0x88, + 0x8e, 0x6d, 0x4a, 0x05, 0xd1, 0x9f, 0x18, 0xf3, 0xe7, 0x8b, 0x7d, 0x5d, 0x66, 0xdb, 0xa9, 0x43, + 0x9b, 0x4f, 0x0f, 0x78, 0x24, 0x2d, 0x78, 0xc8, 0x39, 0xa1, 0x3e, 0x30, 0xe2, 0x6c, 0x2d, 0x42, + 0xc9, 0xc8, 0xbe, 0xe6, 0xfd, 0xab, 0x73, 0xc9, 0x8c, 0xfe, 0x5d, 0xb1, 0x43, 0x1b, 0x05, 0xc6, + 0xfa, 0xfa, 0x28, 0x68, 0xd7, 0xca, 0x3c, 0x97, 0xb6, 0xeb, 0x46, 0x6a, 0x6b, 0x22, 0x0b, 0xc5, + 0xf7, 0x50, 0x61, 0xb9, 0xa3, 0xdf, 0xa6, 0x41, 0x43, 0x2f, 0xbc, 0x6a, 0xba, 0x6a, 0x47, 0xff, + 0xa6, 0x89, 0xc4, 0x24, 0x2d, 0x5f, 0xf6, 0xda, 0xb6, 0xe7, 0xee, 0x52, 0x16, 0xa6, 0xcf, 0x1f, + 0x6e, 0x2a, 0x38, 0x6a, 0x0a, 0xb2, 0x06, 0xa7, 0x19, 0x0d, 0x37, 0xf7, 0x3d, 0x1a, 0xe8, 0xec, + 0x18, 0x95, 0x2e, 0xf5, 0x74, 0xe4, 0x6f, 0xd6, 0xd2, 0x04, 0xd8, 0x5b, 0x46, 0x6c, 0x9a, 0x64, + 0xa6, 0xd2, 0xb2, 0xef, 0x39, 0xae, 0xbe, 0x78, 0x62, 0x6e, 0x9a, 0x52, 0x78, 0xec, 0x29, 0xc1, + 0xb9, 0xec, 0xda, 0x6e, 0xab, 0x1b, 0xd0, 0x98, 0xcb, 0x78, 0x92, 0xcb, 0x6a, 0x0a, 0x8f, 0x3d, + 0x25, 0xc4, 0xd1, 0x65, 0xcb, 0x6e, 0xb0, 0xf2, 0x84, 0x71, 0x74, 0xc9, 0x01, 0x28, 0xe1, 0xd6, + 0xbf, 0xe4, 0x60, 0x0a, 0x69, 0x18, 0x1c, 0xe8, 0x5e, 0xab, 0x40, 0xbe, 0x25, 0x32, 0xa7, 0x72, + 0x22, 0x73, 0x4a, 0x14, 0x91, 0x89, 0x52, 0x12, 0x4e, 0x56, 0xa0, 0x14, 0xf0, 0x12, 0x2a, 0x4b, + 0x4d, 0x8e, 0x88, 0x15, 0x6d, 0x94, 0x31, 0x46, 0xdd, 0x4f, 0x7e, 0xa2, 0x59, 0x8c, 0x78, 0x30, + 0xb1, 0x23, 0x33, 0x9d, 0x95, 0xd7, 0x30, 0x98, 0xb2, 0xaa, 0x6c, 0x69, 0x71, 0x68, 0x11, 0xa5, + 0x4e, 0xdf, 0x8f, 0xff, 0x62, 0x24, 0xc4, 0xfa, 0x5a, 0x0e, 0x20, 0xbe, 0x2c, 0x42, 0xf6, 0xa0, + 0xc0, 0x5e, 0x49, 0xf8, 0x6b, 0x03, 0x26, 0x95, 0x28, 0x26, 0x46, 0x76, 0x9f, 0x82, 0xa0, 0x16, + 0xf0, 0x30, 0x67, 0xed, 0x87, 0xa3, 0xa0, 0x4b, 0x3d, 0x26, 0x5f, 0xed, 0x05, 0xbe, 0xce, 0x37, + 0xe2, 0x8c, 0x6f, 0x4d, 0x87, 0x02, 0x8a, 0x0a, 0xcb, 0xd7, 0xfa, 0xe8, 0x54, 0x55, 0xe9, 0xbe, + 0x58, 0xeb, 0xa3, 0x03, 0x58, 0xd4, 0xd8, 0x2c, 0xef, 0x2f, 0xff, 0xc4, 0xbc, 0xbf, 0xf1, 0xc7, + 0xe2, 0xfd, 0xf1, 0x3d, 0x7b, 0xe0, 0xb7, 0xe8, 0x12, 0x6e, 0xa8, 0xd8, 0x80, 0xde, 0xb3, 0xa3, + 0x04, 0x63, 0x84, 0x27, 0xaf, 0x42, 0xa9, 0xcb, 0x68, 0x6d, 0xe5, 0xfa, 0x72, 0x40, 0x1d, 0xa6, + 0x0e, 0xac, 0x75, 0xb4, 0xe8, 0x56, 0x8c, 0x42, 0x93, 0xce, 0xfa, 0x9d, 0x1c, 0x4c, 0xd7, 0xea, + 0x81, 0xdb, 0x09, 0xb5, 0x29, 0xdc, 0x10, 0xd7, 0x3b, 0x42, 0x9b, 0x6f, 0xc2, 0x95, 0x2a, 0x3e, + 0xdb, 0xe7, 0xac, 0x4e, 0x12, 0x25, 0x6e, 0x7f, 0x48, 0x10, 0xc6, 0x2c, 0x44, 0xe0, 0x5b, 0x18, + 0xdb, 0xb4, 0x4a, 0xd4, 0x04, 0x14, 0x15, 0xd6, 0xfa, 0x7a, 0x0e, 0x0a, 0x3a, 0xe5, 0xe9, 0x39, + 0xc8, 0x0b, 0x03, 0x9f, 0x4e, 0xd9, 0x10, 0xe6, 0x1f, 0x25, 0x4e, 0x04, 0x81, 0x43, 0x3b, 0x08, + 0x7b, 0x82, 0xc0, 0x1c, 0x88, 0x12, 0xc7, 0x75, 0x9d, 0x7a, 0x4e, 0x3a, 0x08, 0x7c, 0xc5, 0x73, + 0x90, 0xc3, 0x45, 0xe6, 0xb8, 0x1f, 0xb4, 0xed, 0x30, 0x1d, 0x96, 0x5f, 0x15, 0x50, 0x54, 0x58, + 0xeb, 0xbf, 0xc6, 0x00, 0x6a, 0xdd, 0x9d, 0xb6, 0x1b, 0x6e, 0x76, 0xc2, 0xe3, 0x38, 0x1c, 0xaf, + 0xc1, 0x64, 0x74, 0xaf, 0x74, 0x23, 0x0e, 0xf4, 0xe9, 0x1d, 0xe2, 0x9a, 0x81, 0xc3, 0x04, 0x25, + 0xf7, 0xab, 0x5c, 0x8f, 0x85, 0xb6, 0x57, 0xa7, 0xeb, 0x2b, 0xaa, 0xe2, 0xda, 0xaf, 0x5a, 0xd7, + 0x18, 0x34, 0xa8, 0x78, 0x19, 0xca, 0x37, 0x91, 0x72, 0x9e, 0x8e, 0x25, 0xcb, 0x5c, 0xd1, 0x18, + 0x34, 0xa8, 0xc8, 0x42, 0x62, 0x3f, 0x21, 0x93, 0xf3, 0xa6, 0x1f, 0xb0, 0x17, 0xf8, 0x14, 0x4c, + 0xe9, 0xaf, 0x55, 0xb7, 0x15, 0x9d, 0xa8, 0xea, 0xb5, 0x6f, 0xcb, 0x44, 0x62, 0x92, 0x96, 0xbc, + 0x01, 0xd3, 0xc9, 0x3c, 0x1d, 0xa5, 0xd1, 0xe7, 0x54, 0xe9, 0xe9, 0x64, 0x7a, 0x0f, 0xa6, 0xa8, + 0xf9, 0x38, 0x39, 0xc1, 0x01, 0x76, 0x3d, 0xa5, 0xda, 0x7a, 0x9c, 0x56, 0x04, 0x14, 0x15, 0x96, + 0x77, 0x3b, 0x2f, 0x49, 0x03, 0x09, 0x17, 0xb1, 0xae, 0x42, 0xdc, 0xed, 0x35, 0x03, 0x87, 0x09, + 0x4a, 0x2e, 0x41, 0x79, 0x88, 0x90, 0xd4, 0x84, 0x94, 0x8f, 0xd7, 0x81, 0x69, 0x3f, 0xb9, 0x28, + 0xcb, 0x20, 0xd6, 0xc7, 0x8f, 0x99, 0x5a, 0x9b, 0x28, 0x2b, 0x13, 0x61, 0x52, 0x6b, 0x78, 0x8a, + 0xbf, 0xf5, 0x26, 0x9c, 0x52, 0x79, 0xd1, 0x7a, 0x92, 0x3e, 0xd2, 0x65, 0x1c, 0xeb, 0x3f, 0x73, + 0x50, 0xda, 0xde, 0xbe, 0xa1, 0x97, 0x54, 0x84, 0x73, 0x4c, 0x26, 0x42, 0x2f, 0xed, 0x86, 0x34, + 0x58, 0xf6, 0xdb, 0x9d, 0x16, 0xd5, 0xbc, 0x54, 0x76, 0x72, 0x2d, 0x93, 0x02, 0xfb, 0x94, 0x24, + 0xeb, 0x70, 0xc6, 0xc4, 0x28, 0x8f, 0x42, 0xdd, 0xfe, 0x91, 0x69, 0x38, 0xbd, 0x68, 0xcc, 0x2a, + 0x93, 0x66, 0xa5, 0xdc, 0x0a, 0x75, 0xf3, 0xb6, 0x87, 0x95, 0x42, 0x63, 0x56, 0x19, 0x6b, 0x13, + 0x4a, 0xc6, 0xb5, 0x6b, 0xf2, 0x16, 0xcc, 0xd4, 0xfd, 0x76, 0x27, 0xa0, 0x8c, 0xb9, 0xbe, 0x77, + 0x83, 0xde, 0xa3, 0x2d, 0xd5, 0x64, 0x91, 0xe6, 0xbc, 0x9c, 0xc2, 0x61, 0x0f, 0xb5, 0xf5, 0x8d, + 0xa7, 0x41, 0x27, 0xf4, 0xfe, 0x2c, 0x2d, 0x78, 0xa0, 0x20, 0x7e, 0x5d, 0x07, 0x19, 0xf3, 0xc3, + 0x07, 0x19, 0xf5, 0x2c, 0x4d, 0x05, 0x1a, 0x1b, 0x71, 0xa0, 0x71, 0xfc, 0x04, 0x02, 0x8d, 0x7a, + 0xe1, 0xed, 0x09, 0x36, 0xfe, 0x6e, 0x0e, 0x26, 0x3d, 0xdf, 0xa1, 0xd1, 0xf2, 0x2e, 0x3c, 0xdb, + 0xd2, 0xe5, 0xcd, 0xa1, 0x3a, 0x51, 0xc6, 0x9c, 0x15, 0x47, 0x19, 0x63, 0xd6, 0x26, 0xcc, 0x44, + 0x61, 0x42, 0x34, 0x59, 0x85, 0x82, 0xbd, 0xbb, 0xeb, 0x7a, 0x6e, 0x78, 0xa0, 0x32, 0x93, 0x2f, + 0x64, 0xad, 0xdc, 0x4b, 0x8a, 0x46, 0xfa, 0x52, 0xd1, 0x17, 0xea, 0xb2, 0xdc, 0x19, 0xd5, 0x97, + 0x72, 0x8a, 0x43, 0x38, 0xa3, 0xd1, 0x31, 0xa4, 0xb1, 0xcf, 0x89, 0x2e, 0x10, 0xc4, 0x77, 0x74, + 0x2c, 0x18, 0x97, 0xf1, 0x67, 0x61, 0x77, 0x0b, 0x72, 0x5f, 0x2d, 0x63, 0xd3, 0xa8, 0x30, 0xa4, + 0x11, 0xc5, 0x6d, 0x4a, 0xa2, 0x73, 0xab, 0x03, 0x47, 0xbd, 0x74, 0x28, 0x28, 0x3b, 0x70, 0x43, + 0xae, 0x99, 0xce, 0xcf, 0xe4, 0x71, 0x9c, 0x9f, 0xa9, 0xbe, 0x8e, 0x4f, 0x03, 0xc6, 0x99, 0x70, + 0xad, 0x44, 0xd0, 0xbd, 0x74, 0x79, 0x79, 0x30, 0x87, 0x3e, 0xe1, 0x9d, 0xc9, 0xde, 0x91, 0x30, + 0x54, 0xec, 0x89, 0x0f, 0x85, 0xe8, 0x64, 0x40, 0xc5, 0xed, 0x07, 0x4b, 0x2f, 0x49, 0xef, 0x8a, + 0xa3, 0x0c, 0x58, 0x09, 0x45, 0x2d, 0x84, 0xbc, 0x0d, 0xa3, 0x8e, 0xdd, 0x50, 0x11, 0xfc, 0xb7, + 0x06, 0xce, 0xcd, 0x8e, 0xc4, 0x88, 0x7b, 0xc7, 0x2b, 0x4b, 0x6b, 0xc8, 0xb9, 0x92, 0xbd, 0xf8, + 0x72, 0xd0, 0xcc, 0x10, 0xd7, 0x79, 0x53, 0x2b, 0xa6, 0x8c, 0x1e, 0xf4, 0x5c, 0x2f, 0xba, 0x02, + 0x13, 0xf7, 0xfc, 0x56, 0xb7, 0xad, 0x42, 0xff, 0xa5, 0xcb, 0x73, 0x59, 0xa3, 0x7d, 0x5b, 0x90, + 0xc4, 0x46, 0x40, 0x7e, 0x33, 0x8c, 0xca, 0x92, 0x2f, 0xe5, 0x60, 0x9a, 0x4f, 0x1d, 0xad, 0x07, + 0xac, 0x4c, 0x86, 0xd0, 0xd4, 0x5b, 0x8c, 0x2f, 0xad, 0x91, 0x86, 0x69, 0x17, 0x69, 0x3d, 0x21, + 0x01, 0x53, 0x12, 0x49, 0x07, 0x0a, 0xcc, 0x75, 0x68, 0xdd, 0x0e, 0x58, 0xf9, 0xcc, 0x89, 0x49, + 0x8f, 0xf7, 0x91, 0x8a, 0x37, 0x6a, 0x29, 0xe4, 0xb7, 0xc4, 0x15, 0x6c, 0xf5, 0x7c, 0x82, 0x7a, + 0xd2, 0x62, 0xf6, 0x24, 0x9f, 0xb4, 0x38, 0x23, 0xef, 0x5f, 0x27, 0x24, 0x60, 0x5a, 0x24, 0xd9, + 0x84, 0xb3, 0xf2, 0x92, 0x50, 0xfa, 0x86, 0xd8, 0x59, 0x91, 0x00, 0xf4, 0xf4, 0xd1, 0x61, 0xe5, + 0xec, 0x52, 0x16, 0x01, 0x66, 0x97, 0x23, 0xef, 0xc3, 0x54, 0x60, 0xc6, 0x20, 0xc4, 0xf1, 0xce, + 0xa0, 0xdd, 0x99, 0x88, 0x66, 0xc8, 0xa3, 0xa5, 0x04, 0x08, 0x93, 0xb2, 0xc8, 0xcb, 0x50, 0xea, + 0x28, 0x4b, 0xe5, 0xb2, 0x76, 0xf9, 0xbc, 0x68, 0x83, 0x58, 0x51, 0xb7, 0x62, 0x30, 0x9a, 0x34, + 0xe4, 0x16, 0x94, 0x42, 0xbf, 0x45, 0x03, 0x95, 0xbb, 0x52, 0x16, 0x83, 0x3f, 0x9f, 0xa5, 0xc9, + 0xdb, 0x9a, 0x2c, 0xde, 0x1c, 0xc6, 0x30, 0x86, 0x26, 0x1f, 0xee, 0xf0, 0x47, 0x17, 0x02, 0x03, + 0xb1, 0x87, 0x79, 0x3a, 0xe9, 0xf0, 0xd7, 0x4c, 0x24, 0x26, 0x69, 0xc9, 0x1a, 0x9c, 0xee, 0x04, + 0xae, 0x1f, 0xb8, 0xe1, 0xc1, 0x72, 0xcb, 0x66, 0x4c, 0x30, 0x98, 0x13, 0x0c, 0x74, 0xf8, 0x6a, + 0x2b, 0x4d, 0x80, 0xbd, 0x65, 0xc8, 0x25, 0x28, 0x44, 0xc0, 0xf2, 0x33, 0xc2, 0x57, 0x13, 0x66, + 0x29, 0x2a, 0x8b, 0x1a, 0xdb, 0xe7, 0x56, 0xc6, 0x85, 0x41, 0x6e, 0x65, 0x10, 0x07, 0x2e, 0xd8, + 0xdd, 0xd0, 0x6f, 0x73, 0x40, 0xb2, 0xc8, 0xb6, 0xbf, 0x47, 0xbd, 0xf2, 0x45, 0xb1, 0x56, 0x5d, + 0x3c, 0x3a, 0xac, 0x5c, 0x58, 0x7a, 0x00, 0x1d, 0x3e, 0x90, 0x0b, 0x69, 0x43, 0x81, 0xaa, 0x9b, + 0x25, 0xe5, 0x8f, 0x0c, 0xb1, 0x48, 0x24, 0xaf, 0xa7, 0x44, 0xe7, 0x21, 0x12, 0x86, 0x5a, 0x04, + 0xd9, 0x86, 0x52, 0xd3, 0x67, 0xe1, 0x52, 0xcb, 0xb5, 0x19, 0x65, 0xe5, 0x67, 0x85, 0x9e, 0x64, + 0xae, 0x6f, 0x57, 0x23, 0xb2, 0x58, 0x4d, 0xae, 0xc6, 0x25, 0xd1, 0x64, 0x43, 0xa8, 0x88, 0x87, + 0x74, 0xc5, 0xa8, 0xf9, 0x5e, 0x48, 0xdf, 0x0b, 0xcb, 0xf3, 0xa2, 0x2d, 0x2f, 0x64, 0x71, 0xde, + 0xf2, 0x9d, 0x5a, 0x92, 0x5a, 0xce, 0xf2, 0x14, 0x10, 0xd3, 0x3c, 0xf9, 0xce, 0xae, 0xe3, 0x3b, + 0xb5, 0x0e, 0xad, 0x6f, 0xd9, 0x61, 0xbd, 0x59, 0xae, 0x24, 0x37, 0xd4, 0x5b, 0x06, 0x0e, 0x13, + 0x94, 0x7c, 0x3f, 0x11, 0x50, 0x26, 0x36, 0xef, 0x5b, 0xd4, 0x73, 0x5c, 0xaf, 0xb1, 0xe5, 0x3b, + 0xac, 0x6c, 0x89, 0x21, 0x14, 0xfb, 0x09, 0xec, 0x45, 0x63, 0x56, 0x19, 0x52, 0x87, 0x89, 0xb6, + 0xcc, 0x2e, 0x2a, 0x3f, 0x37, 0x84, 0x5b, 0xa9, 0x32, 0x94, 0xe4, 0xa2, 0xa4, 0x3e, 0x30, 0xe2, + 0x3c, 0xf7, 0x26, 0x9c, 0xee, 0xf1, 0xff, 0x1e, 0x29, 0xad, 0xea, 0x07, 0x7c, 0xbf, 0x67, 0x78, + 0xdc, 0x27, 0xbd, 0x4f, 0x59, 0x83, 0xd3, 0xea, 0x09, 0x2d, 0xee, 0x1c, 0xb4, 0xba, 0xfa, 0xe9, + 0x06, 0x23, 0x34, 0x8d, 0x69, 0x02, 0xec, 0x2d, 0xc3, 0xc7, 0xb4, 0x2e, 0xdf, 0x06, 0x90, 0x69, + 0x33, 0x63, 0xc9, 0xdd, 0xfa, 0xb2, 0x81, 0xc3, 0x04, 0xa5, 0xf5, 0xa7, 0x39, 0x98, 0x4a, 0x2c, + 0x54, 0x27, 0x1e, 0xb7, 0x5a, 0x05, 0xd2, 0x76, 0x83, 0xc0, 0x0f, 0xe4, 0x6a, 0x7f, 0x93, 0xcf, + 0x5a, 0xa6, 0xae, 0x06, 0x89, 0x94, 0xf4, 0x9b, 0x3d, 0x58, 0xcc, 0x28, 0x61, 0xfd, 0x73, 0x0e, + 0xe2, 0xf3, 0x33, 0x7d, 0x0f, 0x23, 0xd7, 0xf7, 0x1e, 0xc6, 0x4b, 0x50, 0xb8, 0xcb, 0x7c, 0x6f, + 0x2b, 0xbe, 0xad, 0xa1, 0x87, 0xe2, 0x5a, 0x6d, 0x73, 0x43, 0x50, 0x6a, 0x0a, 0x41, 0xfd, 0xee, + 0xaa, 0xdb, 0x0a, 0x7b, 0xef, 0x34, 0x5c, 0xfb, 0x8c, 0x84, 0xa3, 0xa6, 0x20, 0x8b, 0x50, 0xd4, + 0x61, 0x19, 0x15, 0x25, 0xd2, 0x9d, 0xa0, 0xc3, 0x37, 0x18, 0xd3, 0x90, 0x17, 0xe3, 0x83, 0xc9, + 0x7c, 0x32, 0x02, 0x99, 0x3e, 0x9c, 0xb4, 0xbe, 0x39, 0x02, 0x85, 0x27, 0xf8, 0x4e, 0x42, 0x3d, + 0xf1, 0x4e, 0xc2, 0x09, 0x5c, 0xaa, 0xcf, 0x7a, 0x23, 0x61, 0x2f, 0xf5, 0x46, 0xc2, 0xf2, 0x90, + 0x07, 0xc6, 0x0f, 0x7c, 0x1f, 0xe1, 0xef, 0x73, 0x70, 0x3a, 0x22, 0x8d, 0x4f, 0x4c, 0x3e, 0x61, + 0x24, 0x33, 0x17, 0xab, 0xcf, 0xa7, 0xf2, 0xf9, 0xce, 0xf6, 0x14, 0x30, 0x92, 0xfb, 0x3e, 0xaf, + 0x6b, 0x2f, 0xf5, 0x68, 0x35, 0x29, 0xf8, 0xfe, 0x61, 0xe5, 0x58, 0x0f, 0xf1, 0x2d, 0x68, 0xde, + 0xc9, 0x0a, 0x9b, 0x29, 0x65, 0xa3, 0x0f, 0x4e, 0x29, 0xb3, 0xbe, 0x9b, 0x83, 0xc9, 0x27, 0xf8, + 0xee, 0xc3, 0x4e, 0xf2, 0xdd, 0x87, 0xd7, 0x87, 0x1a, 0xb6, 0x3e, 0x6f, 0x3e, 0xfc, 0xc3, 0x39, + 0x48, 0xbc, 0xb7, 0x40, 0x3c, 0x28, 0x46, 0x16, 0x32, 0x4a, 0x30, 0x78, 0x7d, 0xa8, 0x28, 0x40, + 0x3c, 0x37, 0x23, 0x08, 0xc3, 0x58, 0x44, 0x2a, 0xe6, 0x3b, 0x72, 0xac, 0x98, 0xef, 0x13, 0x8f, + 0x30, 0x65, 0xfb, 0x64, 0x63, 0x8f, 0xc5, 0x27, 0xbb, 0x70, 0xe2, 0x3e, 0xd9, 0xb3, 0x8f, 0xdf, + 0x27, 0x33, 0x76, 0xa0, 0xf9, 0x21, 0x76, 0xa0, 0xef, 0xc3, 0xac, 0xfc, 0xbb, 0xdc, 0xb2, 0xdd, + 0xb6, 0xd6, 0x17, 0x75, 0xfd, 0xe3, 0xc5, 0x4c, 0x4f, 0x8c, 0x06, 0xcc, 0x65, 0x21, 0xf5, 0xc2, + 0xdb, 0x71, 0xc9, 0x38, 0xfd, 0xf5, 0x76, 0x06, 0x3b, 0xcc, 0x14, 0x92, 0xde, 0xb2, 0x4c, 0x1c, + 0x63, 0xcb, 0xf2, 0xf5, 0x1c, 0x9c, 0xb5, 0xb3, 0x9e, 0x17, 0x53, 0x81, 0xab, 0x6b, 0x43, 0x6d, + 0x20, 0x13, 0x1c, 0xd5, 0x06, 0x30, 0x0b, 0x85, 0xd9, 0x75, 0x20, 0xcf, 0xc7, 0x31, 0x08, 0x79, + 0x80, 0x90, 0x1d, 0x3d, 0xf8, 0x4a, 0x3a, 0xf6, 0x07, 0xa2, 0xb7, 0x6b, 0x43, 0x2f, 0x46, 0x27, + 0x10, 0xff, 0x2b, 0x0d, 0x11, 0xff, 0x4b, 0xed, 0x27, 0x27, 0x4f, 0x68, 0x3f, 0xe9, 0xc1, 0x8c, + 0xdb, 0xb6, 0x1b, 0x74, 0xab, 0xdb, 0x6a, 0xc9, 0x13, 0x4e, 0x56, 0x9e, 0x12, 0xbc, 0x33, 0x2f, + 0x03, 0xf2, 0xfd, 0x7d, 0x2b, 0xfd, 0x3c, 0x88, 0x4e, 0x36, 0x58, 0x4f, 0x71, 0xc2, 0x1e, 0xde, + 0x5c, 0x2d, 0x45, 0xea, 0x25, 0x0d, 0x79, 0x6f, 0x8b, 0xd0, 0x98, 0x7a, 0x00, 0xf2, 0x6a, 0x0c, + 0x46, 0x93, 0x86, 0x5c, 0x87, 0xa2, 0xe3, 0x31, 0x95, 0x49, 0x70, 0x4a, 0x58, 0xa9, 0x8f, 0x72, + 0xdb, 0xb6, 0xb2, 0x51, 0xd3, 0x39, 0x04, 0x17, 0x32, 0x72, 0x77, 0x35, 0x1e, 0xe3, 0xf2, 0xe4, + 0xa6, 0x60, 0xa6, 0x6e, 0xc6, 0xca, 0x58, 0xd6, 0xc5, 0x3e, 0x5b, 0xa2, 0x95, 0x8d, 0xe8, 0x22, + 0xef, 0x94, 0x12, 0xa7, 0xee, 0xbb, 0xc6, 0x1c, 0x8c, 0x37, 0x17, 0x4e, 0x3f, 0xe8, 0xcd, 0x05, + 0x72, 0x0b, 0xce, 0x87, 0x61, 0x2b, 0x71, 0x44, 0xa2, 0xd2, 0xa3, 0x45, 0xae, 0x7c, 0x5e, 0x3e, + 0x99, 0xb3, 0xbd, 0x7d, 0x23, 0x8b, 0x04, 0xfb, 0x95, 0x15, 0x67, 0x05, 0x61, 0x4b, 0x87, 0x44, + 0xe6, 0x87, 0x39, 0x2b, 0x88, 0xcf, 0xa2, 0xd4, 0x59, 0x41, 0x0c, 0x40, 0x53, 0x4a, 0xff, 0xd0, + 0xce, 0x99, 0x01, 0x43, 0x3b, 0x66, 0x34, 0x61, 0xf6, 0x81, 0xd1, 0x84, 0x9e, 0xe8, 0xc7, 0xd9, + 0x47, 0x88, 0x7e, 0xbc, 0x2d, 0xf2, 0xb2, 0xd7, 0x96, 0x55, 0xe4, 0x68, 0xb0, 0x24, 0x2e, 0x91, + 0xfc, 0x26, 0x13, 0x5e, 0xc4, 0x5f, 0x94, 0x3c, 0xc9, 0x16, 0xcc, 0x76, 0x7c, 0xa7, 0x27, 0x78, + 0x22, 0x42, 0x45, 0xc6, 0xfd, 0x85, 0xad, 0x0c, 0x1a, 0xcc, 0x2c, 0x29, 0x0c, 0x78, 0x0c, 0x2f, + 0x97, 0x45, 0xc7, 0x48, 0x03, 0x1e, 0x83, 0xd1, 0xa4, 0x49, 0xc7, 0x12, 0x9e, 0x7e, 0x6c, 0xb1, + 0x84, 0xb9, 0x27, 0x10, 0x4b, 0x78, 0xe6, 0xd8, 0xb1, 0x84, 0x5f, 0x87, 0x33, 0x1d, 0xdf, 0x59, + 0x71, 0x59, 0xd0, 0x15, 0x8f, 0xcf, 0x56, 0xbb, 0x4e, 0x83, 0x86, 0x22, 0x18, 0x51, 0xba, 0x7c, + 0xd9, 0xac, 0xa4, 0x7c, 0x03, 0x7b, 0x41, 0xbd, 0x81, 0x2d, 0x26, 0x79, 0xaa, 0x94, 0xd8, 0x76, + 0x88, 0xf8, 0x43, 0x06, 0x12, 0xb3, 0xe4, 0x98, 0xf1, 0x87, 0x8b, 0x8f, 0x2b, 0xfe, 0x40, 0xde, + 0x82, 0x02, 0x6b, 0x76, 0x43, 0xc7, 0xdf, 0xf7, 0x44, 0x54, 0xaa, 0xa8, 0x1f, 0x1c, 0x2b, 0xd4, + 0x14, 0xfc, 0xfe, 0x61, 0x65, 0x26, 0xfa, 0x6f, 0xa4, 0x67, 0x2a, 0xc8, 0xf0, 0x11, 0x8c, 0xff, + 0x98, 0x84, 0xe9, 0xd4, 0x6b, 0x52, 0xfa, 0x9a, 0x4c, 0xee, 0xb8, 0xd7, 0x64, 0x12, 0xf7, 0x58, + 0x46, 0x1e, 0xeb, 0x3d, 0x96, 0xd1, 0x13, 0xbf, 0xc7, 0x62, 0x6c, 0xae, 0xc6, 0x1e, 0x72, 0x5f, + 0x67, 0x09, 0x4e, 0x45, 0xe7, 0xd4, 0x54, 0xdd, 0x63, 0x90, 0x9b, 0x75, 0x9d, 0x69, 0xb4, 0x9c, + 0x44, 0x63, 0x9a, 0x9e, 0xfc, 0x1a, 0xe4, 0x3d, 0x51, 0x70, 0x7c, 0x88, 0x7b, 0x8f, 0xc9, 0x01, + 0x13, 0x3e, 0x8c, 0xba, 0x7a, 0x18, 0x1d, 0x61, 0xe4, 0x05, 0xec, 0x7e, 0xf4, 0x07, 0xa5, 0x50, + 0xf2, 0x0e, 0x94, 0xfd, 0xdd, 0xdd, 0x96, 0x6f, 0x3b, 0xf1, 0x5d, 0x9b, 0xdb, 0xdc, 0x3b, 0x55, + 0x87, 0x82, 0xc5, 0xea, 0x45, 0xc5, 0xa0, 0xbc, 0xd9, 0x87, 0x0e, 0xfb, 0x72, 0xe0, 0xae, 0xe6, + 0xa9, 0xe4, 0x1d, 0x30, 0x56, 0x2e, 0x8a, 0x66, 0xfe, 0xca, 0x49, 0x34, 0x33, 0x79, 0xe1, 0x4c, + 0x35, 0x38, 0xce, 0xf1, 0x4a, 0x62, 0x31, 0x5d, 0x13, 0x12, 0xc0, 0xb9, 0x4e, 0x96, 0x23, 0xce, + 0xd4, 0x41, 0xf2, 0x83, 0xb6, 0x03, 0xf3, 0x4a, 0xca, 0xb9, 0x4c, 0x57, 0x9e, 0x61, 0x1f, 0xce, + 0xe6, 0x2d, 0x9c, 0xc2, 0x63, 0xbb, 0x85, 0xf3, 0x45, 0xf1, 0x26, 0x95, 0x0c, 0x1c, 0x44, 0x7e, + 0xde, 0xea, 0x50, 0x1d, 0xae, 0xe3, 0x10, 0xf1, 0xe4, 0xd1, 0x20, 0x86, 0x86, 0x34, 0xf2, 0xe3, + 0xcc, 0x4b, 0x60, 0xd2, 0x8f, 0xfd, 0xdc, 0x49, 0x0c, 0xfa, 0x4f, 0xda, 0x45, 0xb0, 0xb9, 0x03, + 0x79, 0xf3, 0xb4, 0xef, 0x1d, 0xdc, 0x5b, 0xc9, 0x5b, 0xf8, 0x6f, 0x0e, 0x79, 0x13, 0xce, 0xbc, + 0xff, 0xfb, 0x9b, 0x39, 0x98, 0xcd, 0x9a, 0x04, 0x19, 0xb5, 0xa8, 0x25, 0x6b, 0x31, 0x5c, 0x78, + 0xc4, 0xac, 0xc3, 0xc9, 0xdc, 0xaa, 0xfa, 0xc3, 0x71, 0x23, 0xa4, 0x13, 0xd2, 0xce, 0xcf, 0x12, + 0x7c, 0x06, 0x4a, 0xf0, 0x49, 0xbc, 0xe0, 0x97, 0x7f, 0x82, 0x2f, 0xf8, 0x8d, 0x0f, 0xf0, 0x82, + 0xdf, 0xc4, 0x93, 0x7c, 0xc1, 0xaf, 0x70, 0xcc, 0x17, 0xfc, 0x8a, 0x3f, 0x39, 0x2f, 0xf8, 0x7d, + 0x98, 0x83, 0x99, 0xff, 0xef, 0x4f, 0x6c, 0xff, 0x20, 0x07, 0xb3, 0xff, 0x0b, 0x6f, 0x6b, 0xdf, + 0x4d, 0x46, 0xa9, 0xaf, 0x9c, 0x48, 0x23, 0xfb, 0x44, 0xab, 0xff, 0x28, 0xa3, 0x89, 0x22, 0x6a, + 0xfd, 0xfe, 0xe3, 0x7a, 0xa4, 0x78, 0x36, 0xeb, 0x91, 0xe2, 0xe4, 0xa3, 0xc4, 0xd5, 0x85, 0x6f, + 0x7f, 0x38, 0xff, 0xd4, 0x77, 0x3f, 0x9c, 0x7f, 0xea, 0x7b, 0x1f, 0xce, 0x3f, 0xf5, 0xc1, 0xd1, + 0x7c, 0xee, 0xdb, 0x47, 0xf3, 0xb9, 0xef, 0x1e, 0xcd, 0xe7, 0xbe, 0x77, 0x34, 0x9f, 0xfb, 0xc1, + 0xd1, 0x7c, 0xee, 0x0f, 0xfe, 0x69, 0xfe, 0xa9, 0xcf, 0x15, 0x22, 0x01, 0xff, 0x13, 0x00, 0x00, + 0xff, 0xff, 0x32, 0x9a, 0x2f, 0x7d, 0x31, 0x69, 0x00, 0x00, } func (m *ArchiveStrategy) Marshal() (dAtA []byte, err error) { @@ -4316,6 +4317,13 @@ func (m *NodeStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + i -= len(m.HostNodeName) + copy(dAtA[i:], m.HostNodeName) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.HostNodeName))) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xb2 if len(m.ResourcesDuration) > 0 { keysForResourcesDuration := make([]string, 0, len(m.ResourcesDuration)) for k := range m.ResourcesDuration { @@ -7683,6 +7691,8 @@ func (m *NodeStatus) Size() (n int) { n += mapEntrySize + 2 + sovGenerated(uint64(mapEntrySize)) } } + l = len(m.HostNodeName) + n += 2 + l + sovGenerated(uint64(l)) return n } @@ -9063,6 +9073,7 @@ func (this *NodeStatus) String() string { `WorkflowTemplateName:` + fmt.Sprintf("%v", this.WorkflowTemplateName) + `,`, `TemplateScope:` + fmt.Sprintf("%v", this.TemplateScope) + `,`, `ResourcesDuration:` + mapStringForResourcesDuration + `,`, + `HostNodeName:` + fmt.Sprintf("%v", this.HostNodeName) + `,`, `}`, }, "") return s @@ -16456,6 +16467,38 @@ func (m *NodeStatus) Unmarshal(dAtA []byte) error { } m.ResourcesDuration[k8s_io_api_core_v1.ResourceName(mapkey)] = ((ResourceDuration)(mapvalue)) iNdEx = postIndex + case 22: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field HostNodeName", 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.HostNodeName = 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 3222192ad0d6..464e180716aa 100644 --- a/pkg/apis/workflow/v1alpha1/generated.proto +++ b/pkg/apis/workflow/v1alpha1/generated.proto @@ -575,6 +575,9 @@ message NodeStatus { // a DAG/steps template invokes another DAG/steps template. In other words, the outbound nodes of // a template, will be a superset of the outbound nodes of its last children. repeated string outboundNodes = 17; + + // HostNodeName name of the Kubernetes node on which the Pod is running, if applicable + optional string hostNodeName = 22; } // NoneStrategy indicates to skip tar process and upload the files or directory tree as independent diff --git a/pkg/apis/workflow/v1alpha1/workflow_types.go b/pkg/apis/workflow/v1alpha1/workflow_types.go index 0b64ee88009f..779ce49fb557 100644 --- a/pkg/apis/workflow/v1alpha1/workflow_types.go +++ b/pkg/apis/workflow/v1alpha1/workflow_types.go @@ -1118,6 +1118,9 @@ type NodeStatus struct { // a DAG/steps template invokes another DAG/steps template. In other words, the outbound nodes of // a template, will be a superset of the outbound nodes of its last children. OutboundNodes []string `json:"outboundNodes,omitempty" protobuf:"bytes,17,rep,name=outboundNodes"` + + // HostNodeName name of the Kubernetes node on which the Pod is running, if applicable + HostNodeName string `json:"hostNodeName,omitempty" protobuf:"bytes,22,rep,name=hostNodeName"` } func (n Nodes) GetResourcesDuration() ResourcesDuration { diff --git a/ui/src/app/workflows/components/workflow-node-info/workflow-node-info.tsx b/ui/src/app/workflows/components/workflow-node-info/workflow-node-info.tsx index 8c38fdac4493..e6f8bd2042d5 100644 --- a/ui/src/app/workflows/components/workflow-node-info/workflow-node-info.tsx +++ b/ui/src/app/workflows/components/workflow-node-info/workflow-node-info.tsx @@ -72,7 +72,7 @@ export const WorkflowNodeSummary = (props: Props) => { } ]; if (props.node.type === 'Pod') { - attributes.splice(2, 0, {title: 'POD NAME', value: props.node.id}); + attributes.splice(2, 0, {title: 'POD NAME', value: props.node.id}, {title: 'HOST NODE NAME', value: props.node.hostNodeName}); } if (props.node.resourcesDuration) { attributes.push({ diff --git a/ui/src/models/workflows.ts b/ui/src/models/workflows.ts index 9bf8b23fabe5..8b770fa096ce 100644 --- a/ui/src/models/workflows.ts +++ b/ui/src/models/workflows.ts @@ -720,6 +720,11 @@ export interface NodeStatus { * TemplateScope is the template scope in which the template of this node was retrieved. */ templateScope?: string; + + /** + * HostNodeName name of the Kubernetes node on which the Pod is running, if applicable. + */ + hostNodeName: string; } export interface TemplateRef { diff --git a/workflow/controller/operator.go b/workflow/controller/operator.go index 2eecf2888ed1..e66894e69ddb 100644 --- a/workflow/controller/operator.go +++ b/workflow/controller/operator.go @@ -731,7 +731,7 @@ func (woc *wfOperationCtx) podReconciliation() error { if err != nil { return err } - seenPods := make(map[string]bool) + seenPods := make(map[string]*apiv1.Pod) seenPodLock := &sync.Mutex{} wfNodesLock := &sync.RWMutex{} @@ -742,7 +742,7 @@ func (woc *wfOperationCtx) podReconciliation() error { nodeNameForPod := pod.Annotations[common.AnnotationKeyNodeName] nodeID := woc.wf.NodeID(nodeNameForPod) seenPodLock.Lock() - seenPods[nodeID] = true + seenPods[nodeID] = pod seenPodLock.Unlock() wfNodesLock.Lock() @@ -824,8 +824,13 @@ func (woc *wfOperationCtx) podReconciliation() error { node.Phase = wfv1.NodeError woc.wf.Status.Nodes[nodeID] = node woc.log.Warnf("pod %s deleted", nodeID) - woc.updated = true + } else { + // At this point we are certain that the pod associated with our node is running or has been run; + // it is safe to extract the k8s-node information given this knowledge. + node.HostNodeName = seenPods[nodeID].Spec.NodeName + woc.wf.Status.Nodes[nodeID] = node } + woc.updated = true } return nil }