FrontDoor.Autorest/custom/New-AzFrontDoorWafPolicy.ps1


# ----------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code
# is regenerated.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Create policy with specified rule set name within a resource group.
.Description
Create policy with specified rule set name within a resource group.
.Example
New-AzFrontDoorWafPolicy -Name $policyName -ResourceGroupName $resourceGroupName -Customrule $customRule1,$customRule2 -ManagedRule $managedRule1 -EnabledState Enabled -Mode Prevention -RedirectUrl "https://www.bing.com/" -CustomBlockResponseStatusCode 405 -CustomBlockResponseBody "<html><head><title>You are blocked!</title></head><body></body></html>"
 
.Outputs
Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Models.IWebApplicationFirewallPolicy
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
CUSTOMRULE <ICustomRule[]>: List of rules
  Action <String>: Describes what action to be applied when rule matches.
  MatchCondition <List<IMatchCondition>>: List of match conditions.
    MatchValue <List<String>>: List of possible match values.
    MatchVariable <String>: Request variable to compare with.
    OperatorProperty <String>: Comparison type to use for matching with the variable value.
    [NegateCondition <Boolean?>]: Describes if the result of this condition should be negated.
    [Selector <String>]: Match against a specific key from the QueryString, PostArgs, RequestHeader or Cookies variables. Default is null.
    [Transform <List<String>>]: List of transforms.
  Priority <Int32>: Describes priority of the rule. Rules with a lower value will be evaluated before rules with a higher value.
  RuleType <String>: Describes type of rule.
  [EnabledState <String>]: Describes if the custom rule is in enabled or disabled state. Defaults to Enabled if not specified.
  [GroupByCustomRule <List<IGroupByVariable>>]: Describes the list of variables to group the rate limit requests
    VariableName <String>: Describes the supported variable for group by
  [Name <String>]: Describes the name of the rule.
  [RateLimitDurationInMinutes <Int32?>]: Time window for resetting the rate limit count. Default is 1 minute.
  [RateLimitThreshold <Int32?>]: Number of allowed requests per client within the time window.
 
LOGSCRUBBINGSETTING <IPolicySettingsLogScrubbing>: Defines rules that scrub sensitive fields in the Web Application Firewall logs.
  [ScrubbingRule <List<IWebApplicationFirewallScrubbingRules>>]: List of log scrubbing rules applied to the Web Application Firewall logs.
    MatchVariable <String>: The variable to be scrubbed from the logs.
    SelectorMatchOperator <String>: When matchVariable is a collection, operate on the selector to specify which elements in the collection this rule applies to.
    [Selector <String>]: When matchVariable is a collection, operator used to specify which elements in the collection this rule applies to.
    [State <String>]: Defines the state of a log scrubbing rule. Default value is enabled.
  [State <String>]: State of the log scrubbing config. Default value is Enabled.
 
MANAGEDRULESET <IManagedRuleSet[]>: List of rule sets.
  Type <String>: Defines the rule set type to use.
  Version <String>: Defines the version of the rule set to use.
  [Exclusion <List<IManagedRuleExclusion>>]: Describes the exclusions that are applied to all rules in the set.
    Operator <String>: Comparison operator to apply to the selector when specifying which elements in the collection this exclusion applies to.
    Selector <String>: Selector value for which elements in the collection this exclusion applies to.
    Variable <String>: The variable type to be excluded.
  [RuleGroupOverride <List<IManagedRuleGroupOverride>>]: Defines the rule group overrides to apply to the rule set.
    RuleGroupName <String>: Describes the managed rule group to override.
    [Exclusion <List<IManagedRuleExclusion>>]: Describes the exclusions that are applied to all rules in the group.
    [ManagedRuleOverride <List<IManagedRuleOverride>>]: List of rules that will be disabled. If none specified, all rules in the group will be disabled.
      RuleId <String>: Identifier for the managed rule.
      [Action <String>]: Describes the override action to be applied when rule matches.
      [EnabledState <String>]: Describes if the managed rule is in enabled or disabled state. Defaults to Disabled if not specified.
      [Exclusion <List<IManagedRuleExclusion>>]: Describes the exclusions that are applied to this specific rule.
  [RuleSetAction <String>]: Defines the rule set action.
.Link
https://learn.microsoft.com/powershell/module/az.frontdoor/new-azfrontdoorwafpolicy
#>

function New-AzFrontDoorWafPolicy {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Models.IWebApplicationFirewallPolicy])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
  [Parameter(Mandatory)]
  [Alias('PolicyName')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Path')]
  [System.String]
  # The name of the Web Application Firewall Policy.
  ${Name},

  [Parameter(Mandatory)]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Path')]
  [System.String]
  # Name of the Resource group within the Azure subscription.
  ${ResourceGroupName},

  [Parameter()]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Path')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
  [System.String]
  # The subscription credentials which uniquely identify the Microsoft Azure subscription.
  # The subscription ID forms part of the URI for every service call.
  ${SubscriptionId},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  # If the action type is block, customer can override the response body.
  # The body must be specified in base64 encoding.
  ${CustomBlockResponseBody},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.Int32]
  # If the action type is block, customer can override the response status code.
  ${CustomBlockResponseStatusCode},

  [Parameter(ParameterSetName='CreateExpanded')]
  [AllowEmptyCollection()]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Models.ICustomRule[]]
  # List of rules
  ${Customrule},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.PSArgumentCompleterAttribute("Disabled", "Enabled")]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  # Describes if the policy is in enabled or disabled state.
  # Defaults to Enabled if not specified.
  ${EnabledState} = "Enabled",

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  # Gets a unique read-only string that changes whenever the resource is updated.
  ${Etag},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.Nullable`1[System.Int32]]
  # Defines the JavaScript challenge cookie validity lifetime in minutes.
  # This setting is only applicable to Premium_AzureFrontDoor.
  # Value must be an integer between 5 and 1440 with the default value being 30.
  ${JavascriptChallengeExpirationInMinutes},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.Nullable`1[System.Int32]]
  # Defines the Captcha cookie validity lifetime in minutes.
  # This setting is only applicable to Premium_AzureFrontDoor.
  # Value must be an integer between 5 and 1440 with the default value being 30.
  ${CaptchaExpirationInMinutes},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Models.IPolicySettingsLogScrubbing]
  # Defines rules that scrub sensitive fields in the Web Application Firewall logs.
  ${LogScrubbingSetting},

  [Parameter(ParameterSetName='CreateExpanded')]
  [AllowEmptyCollection()]
    [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
    [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Models.IManagedRuleSetException[]]
    # List of exceptions.
    ${ExceptionListException},

    [Parameter(ParameterSetName='CreateExpanded')]
    [AllowEmptyCollection()]
  [Alias("ManagedRule")]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Models.IManagedRuleSet[]]
  # List of rule sets.
  ${ManagedRuleSet},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.PSArgumentCompleterAttribute("Prevention", "Detection")]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  # Describes if it is in detection mode or prevention mode at policy level.
  ${Mode} = "Prevention",

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  # If action type is redirect, this field represents redirect URL for the client.
  ${RedirectUrl},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.PSArgumentCompleterAttribute("Disabled", "Enabled")]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  # Describes if policy managed rules will inspect the request body content.
  ${RequestBodyCheck} = "Enabled",

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.PSArgumentCompleterAttribute("Classic_AzureFrontDoor", "Standard_AzureFrontDoor", "Premium_AzureFrontDoor")]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  [Alias("Sku")]
  # Name of the pricing tier.
  ${SkuName},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Models.IResourceTags]))]
  [System.Collections.Hashtable]
  # Resource tags.
  ${Tag},

  [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  # Path of Json file supplied to the Create operation
  ${JsonFilePath},

  [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  # Json string supplied to the Create operation
  ${JsonString},

  [Parameter()]
  [Alias('AzureRMContext', 'AzureCredential')]
  [ValidateNotNull()]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Azure')]
  [System.Management.Automation.PSObject]
  # The DefaultProfile parameter is not functional.
  # Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.
  ${DefaultProfile},

  [Parameter()]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Runtime')]
  [System.Management.Automation.SwitchParameter]
  # Run the command as a job
  ${AsJob},

  [Parameter(DontShow)]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Runtime')]
  [System.Management.Automation.SwitchParameter]
  # Wait for .NET debugger to attach
  ${Break},

  [Parameter(DontShow)]
  [ValidateNotNull()]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Runtime')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Runtime.SendAsyncStep[]]
  # SendAsync Pipeline Steps to be appended to the front of the pipeline
  ${HttpPipelineAppend},

  [Parameter(DontShow)]
  [ValidateNotNull()]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Runtime')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Runtime.SendAsyncStep[]]
  # SendAsync Pipeline Steps to be prepended to the front of the pipeline
  ${HttpPipelinePrepend},

  [Parameter()]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Runtime')]
  [System.Management.Automation.SwitchParameter]
  # Run the command asynchronously
  ${NoWait},

  [Parameter(DontShow)]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Runtime')]
  [System.Uri]
  # The URI for the proxy server to use
  ${Proxy},

  [Parameter(DontShow)]
  [ValidateNotNull()]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Runtime')]
  [System.Management.Automation.PSCredential]
  # Credentials for a proxy server to use for the remote call
  ${ProxyCredential},

  [Parameter(DontShow)]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Runtime')]
  [System.Management.Automation.SwitchParameter]
  # Use the default credentials for the proxy
  ${ProxyUseDefaultCredentials}
)

    process {
        $SkuName = $SkuName
        if ($PSBoundParameters.ContainsKey('SkuName')) {
            $null = $PSBoundParameters.Remove('SkuName')
        }
        
        $Customrule = $Customrule
        if ($PSBoundParameters.ContainsKey('Customrule')) {
            $null = $PSBoundParameters.Remove('Customrule')
        }
        
        $ManagedRuleSet = $ManagedRuleSet
        if ($PSBoundParameters.ContainsKey('ManagedRuleSet')) {
            $null = $PSBoundParameters.Remove('ManagedRuleSet')
        }

        $hasExceptionListException = $PSBoundParameters.Remove('ExceptionListException')
        
        $EnabledState = $EnabledState
        if ($PSBoundParameters.ContainsKey('EnabledState')) {
            $null = $PSBoundParameters.Remove('EnabledState')
        }

        $Mode = $Mode
        if ($PSBoundParameters.ContainsKey('Mode')) {
            $null = $PSBoundParameters.Remove('Mode')
        }
        
        $RequestBodyCheck = $RequestBodyCheck
        if ($PSBoundParameters.ContainsKey('RequestBodyCheck')) {
            $null = $PSBoundParameters.Remove('RequestBodyCheck')
        }
        
        $LogScrubbingSetting = $LogScrubbingSetting
        if ($PSBoundParameters.ContainsKey('LogScrubbingSetting')) {
            $null = $PSBoundParameters.Remove('LogScrubbingSetting')
        }
        
        $JavascriptChallengeExpirationInMinutes = $JavascriptChallengeExpirationInMinutes
        if ($PSBoundParameters.ContainsKey('JavascriptChallengeExpirationInMinutes')) {
            $null = $PSBoundParameters.Remove('JavascriptChallengeExpirationInMinutes')
        }

        $CaptchaExpirationInMinutes = $CaptchaExpirationInMinutes
        if ($PSBoundParameters.ContainsKey('CaptchaExpirationInMinutes')) {
            $null = $PSBoundParameters.Remove('CaptchaExpirationInMinutes')
        }

        try {
            $duplicateCheck = Get-AzFrontDoorWafPolicy @PSBoundParameters
            foreach ($policy in $duplicateCheck) {
                if ($policy.Name -eq $Name) {
                    throw "WAF policy with name $Name already exists in resource group $ResourceGroupName"
                }
            }
        }
        catch {
            # If Get-AzFrontDoorWafPolicy throws an error because the resource doesn't exist,
            # we can continue with creating the new WAF policy
            if ($_.Exception.Message -notlike "*was not found*") {
                # Re-throw if it's not a "not found" error
                throw $_
            }
        }
        
        if (![string]::IsNullOrEmpty($SkuName)) {
            $PSBoundParameters.Add('SkuName', $SkuName)
        }
        if ($Customrule) {
            $PSBoundParameters.Add('Customrule', $Customrule)
        }
        if ($ManagedRuleSet) {
            $PSBoundParameters.Add('ManagedRuleSet', $ManagedRuleSet)
        }
        if ($hasExceptionListException) {
            $PSBoundParameters.Add('ExceptionListException', $ExceptionListException)
        }
        if (![string]::IsNullOrEmpty($EnabledState)) {
            $PSBoundParameters.Add('EnabledState', $EnabledState)
        }
        if (![string]::IsNullOrEmpty($Mode)) {
            $PSBoundParameters.Add('Mode', $Mode)
        }
        if (![string]::IsNullOrEmpty($RequestBodyCheck)) {
            $PSBoundParameters.Add('RequestBodyCheck', $RequestBodyCheck)
        }
        if ($LogScrubbingSetting) {
            $PSBoundParameters.Add('LogScrubbingSetting', $LogScrubbingSetting)
        }
        if ($JavascriptChallengeExpirationInMinutes -gt 0) {
            $PSBoundParameters.Add('JavascriptChallengeExpirationInMinutes', $JavascriptChallengeExpirationInMinutes)
        }
        if ($CaptchaExpirationInMinutes -gt 0) {
            $PSBoundParameters.Add('CaptchaExpirationInMinutes', $CaptchaExpirationInMinutes)
        }

        $PolicySettings = [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Models.PolicySettings]::New()
        if ($PSBoundParameters.ContainsKey('CustomBlockResponseBody')) {
            $null = $PSBoundParameters.Remove('CustomBlockResponseBody')
            $CustomBlockResponseBody = [Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($CustomBlockResponseBody))
            $PolicySettings.CustomBlockResponseBody = $CustomBlockResponseBody
        }
        if ($PSBoundParameters.ContainsKey('CustomBlockResponseStatusCode')) {
            $null = $PSBoundParameters.Remove('CustomBlockResponseStatusCode')
            $PolicySettings.CustomBlockResponseStatusCode = $CustomBlockResponseStatusCode
        }
        $null = $PSBoundParameters.Remove("EnabledState")
        $PolicySettings.EnabledState = $EnabledState
        if ($PSBoundParameters.ContainsKey('JavascriptChallengeExpirationInMinutes')) {
            $null = $PSBoundParameters.Remove('JavascriptChallengeExpirationInMinutes')
            $PolicySettings.JavascriptChallengeExpirationInMinutes = $JavascriptChallengeExpirationInMinutes
        }
        if ($PSBoundParameters.ContainsKey('CaptchaExpirationInMinutes')) {
            $null = $PSBoundParameters.Remove('CaptchaExpirationInMinutes')
            $PolicySettings.CaptchaExpirationInMinutes = $CaptchaExpirationInMinutes
        }
        if ($PSBoundParameters.ContainsKey('LogScrubbingSetting')) {
           $null = $PSBoundParameters.Remove('LogScrubbingSetting')
            $PolicySettings.LogScrubbingSetting = $LogScrubbingSetting
        }
        $null = $PSBoundParameters.Remove("Mode")
        $PolicySettings.Mode = $Mode
        if ($PSBoundParameters.ContainsKey('RedirectUrl')) {
            $null = $PSBoundParameters.Remove('RedirectUrl')
            $PolicySettings.RedirectUrl = $RedirectUrl
        }
        $null = $PSBoundParameters.Remove("RequestBodyCheck")
        $PolicySettings.RequestBodyCheck = $RequestBodyCheck

        $PSBoundParameters.Add('PolicySetting', $PolicySettings)

        Az.FrontDoor.internal\New-AzFrontDoorWafPolicy @PSBoundParameters
    }
}

# SIG # Begin signature block
# MIInSQYJKoZIhvcNAQcCoIInOjCCJzYCAQExDzANBglghkgBZQMEAgEFADB5Bgor
# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG
# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCA1YrC+as5n9c0y
# 5APJq4ZZwMUFuxgCH3zWzY0fXSq2o6CCDLowggX1MIID3aADAgECAhMzAAACHU0Z
# yE7XD1dIAAAAAAIdMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD
# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD
# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQzWhcNMjcwNDE1MTg1
# OTQzWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE
# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD
# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB
# DwAwggEKAoIBAQDQvewXxx9gZZFC6Ys1WBay8BJ8kGA4JQnH5CMafqOASlTpK9H8
# o5ZXTXt0caVQTNMUPt445wXYD+dFtaKWTwDn1I52oUSrC9vJin1Gsqt+zyKJL5Dg
# 3eQXbQNR61DmMy20GLTIO3SFed9Rfi/ophgCLGFLDR3r0KvHjwMb/jYWS0celV/4
# Lz27LfAekm8v9E5IXaeiXbAUYZKK090n4CVl3JBtbN+9DtI9SNu/yjvozW52/u7R
# X/Ttpa/KDlpuokZ+Zcbvmtd9ur9gFLvZzh41o9MsE/clQtdaFWGvuo6Jua/ntpgk
# ey3E5/vBFe+MJPG6phdnuo6r57ZudCudiI1bAgMBAAGjggGbMIIBlzAOBgNVHQ8B
# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O
# BBYEFH6QuMwqcPG0hQlQ6c5jCtTTLrVeMEUGA1UdEQQ+MDykOjA4MR4wHAYDVQQL
# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xFjAUBgNVBAUTDTIzMDAxMis1MDc1NTkw
# HwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEwYAYDVR0fBFkwVzBVoFOg
# UYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jcmwvTWljcm9zb2Z0
# JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNybDBtBggrBgEFBQcBAQRh
# MF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMv
# Y2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy
# dDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBKTbYOjzwTG/DXGaz9
# s6+fQeaTtDcFmMY+5UyVFCyj7Pv+5i37qfX8lSL/tBIfYQfWsMuBQlfZurJD6r4H
# VJ2CeH+1fgiq8dcHdVKoZ3Sa2qXoX3cq9iS8cVb06B7+5/XJ7I0OxHH9fDsvJ3T3
# w5V/ZtAIFmLrl+P0CtG+92uzRsn0nTbdFjOkLMLWPLAU3THohKRlSEMgFJpPkm5n
# 5UAZ35xX6FWCrDLsSKb555bTifwa8mJBwdlof0bmfYidH+dxZ1FdDxvLnNl9zeKs
# A4kejaaIqqIPguhwAti5Ql7BlTNoJNwxCvBmqW2MQLnCkYN/VVUsR3V2x/rcTNzo
# Bf/Z/SpROvdaA2ZOOd1uioXJt3tdLQ7vHpqpib0KfWr/FWXW10q38VxfCnRQBqzb
# SuztR7nEMuzX7Ck+B/XaPDXd1qh72+QYyB0Z2VzWmO9zsnb9Uq/dwu8LGeQqnyu6
# 7SDGACvnXii2fb9+US492VTnXSnFKyqwgzUyFMtZK1/sHYTv6bG4TtQUygQxTN+Z
# V+aJIlKO2MqZ7bKrAnOzS9m6NgoTdWOq11bTOZwKlIEV/EhV9SWkDmdpR/hPPT2v
# 6TEj4F8PT/zHjRezIU5c/DGlt/VhY/pK0XkJtEyMmmS1BMtjU/rqBZVMIm3dnxQs
# /TBByr+Cf8Z1r7aifQVQ+WSqzjCCBr0wggSloAMCAQICEzMAAAA5O7Y3Gb8GHWcA
# AAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX
# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg
# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl
# IEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoXDTM2MDMyMjIyMTMwNFow
# VzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEo
# MCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAyNDCCAiIwDQYJ
# KoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeqlRYHNa265v4IY9fH8TKh
# emHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo0dtS/EW6I/yEL/bLSY8h
# KpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATvQVL4tcf03aTycsz8QeCd
# M0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a1uv1zerOYMnsneRRwCbp
# yW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1FyQfK0fVkaya8SmVHQ/t
# Of23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfOGSWHIIV4YrTJTT6PNty5
# REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7ttOu1bVnXfHaqPYl2rPs
# 20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJuz2MXMCt7iw7lFPG9LXK
# Gjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxSCwyoGIq0PhaA7Y+VPct5
# pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOmVQop36wUVUYklUy++vDW
# eEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3SkE/xIkgpfl22MM1itkZ
# 35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8EBAMCAYYwEAYJKwYBBAGC
# NxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPXLQaUEggxMBkGCSsGAQQB
# gjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU
# ci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBPoE2gS4ZJaHR0cDovL2Ny
# bC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0MjAx
# MV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAwTgYIKwYBBQUHMAKGQmh0
# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0MjAx
# MV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOCAgEAFJQfOChP7onn6fLI
# MKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D5W4wMwYeLystcEqfkjz4
# NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBYnbu0+THSuVHTe0VTTPVh
# ily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSIvgn0JksVBVMYVI5QFu/q
# hnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6aR9y34aiM1qmxaxBi6OU
# nyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4wPKC5OmHm1DQIt/MNokbb
# H3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7RTX8AdBPo0I6OEojf39z
# uFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK/fg8B2qjW88MT/WF5V5u
# vZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSKYBv0VisCzfxgeU+dquXW
# 9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkwYTu/9dLeH2pDqeJZAABV
# DWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVTQl0v4q8J/AUmQN5W4n10
# 1cY2L4A7GTQG1h32HHAvfQESWP0xghnlMIIZ4QIBATBuMFcxCzAJBgNVBAYTAlVT
# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jv
# c29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIdTRnITtcPV0gAAAAAAh0w
# DQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYK
# KwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIDhdgJbP
# WBLFDeQFGsVglBxt7VKn2meYqV2H278LeH5JMEIGCisGAQQBgjcCAQwxNDAyoBSA
# EgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20w
# DQYJKoZIhvcNAQEBBQAEggEAo3Dfzg9oyk8d07GRxt5b4EaOdkAEtrvHY7+WSfD0
# +FoTd8NXLWFcMMgQbJn/Bmo4jzmDF2iIzHLWfaJmxudOkNFu713Rrj5b1PjpsZKy
# 8edWh3ohJ6SE6kZ+vzZYG+x8VxLe8ROcQEGWxUrInvhl2jXT3e31nPaj8xjlE259
# bkaXnWhQyCjIo5jHU0mAo1OuXDcQ2jyuxo+JJ1Hb2PehDKF0BQ89nJptmGRFEY3M
# aFuTJqExAyiU+ecRamn1NSNuhM0UrH8obKpvSJN/hXlRF65dpj+3fQc+Zil3tsff
# KzKtDj2tyg4euAIDmkX5Zxne0F361COkW0LLf1AO0iGC6qGCF5cwgheTBgorBgEE
# AYI3AwMBMYIXgzCCF38GCSqGSIb3DQEHAqCCF3AwghdsAgEDMQ8wDQYJYIZIAWUD
# BAIBBQAwggFSBgsqhkiG9w0BCRABBKCCAUEEggE9MIIBOQIBAQYKKwYBBAGEWQoD
# ATAxMA0GCWCGSAFlAwQCAQUABCAul/nkdlOAdX0shn8oliB758ozBg8s4EtbBkhn
# DCrwJwIGal/DoDMTGBMyMDI2MDczMTAzMjIxNC4zNThaMASAAgH0oIHRpIHOMIHL
# MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk
# bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxN
# aWNyb3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRT
# UyBFU046ODYwMy0wNUUwLUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0
# YW1wIFNlcnZpY2WgghHtMIIHIDCCBQigAwIBAgITMwAAAiWAxzfGzap3SQABAAAC
# JTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu
# Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv
# cmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAe
# Fw0yNjAyMTkxOTQwMDFaFw0yNzA1MTcxOTQwMDFaMIHLMQswCQYDVQQGEwJVUzET
# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV
# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmlj
# YSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRTUyBFU046ODYwMy0wNUUw
# LUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggIi
# MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCm8RIP0eLA46VcCPovvmqsIlN6
# qkmz5IsHWmUU0neUqp8uGxadeo+SwWBCwQ5alZI/DNdpXfyiZLZR6XYgpRPFzepI
# l7OCDb4NtEskJCIZDkQMNwrH9YwUyu71GGigsLIxeleHtA3utoVTeHjS1b8UnwOR
# RtknKkyrUArT6ZpB2rodIcmcLcv3x3wwgYlOs0FEg5EsVrZb7LNc/nd0bXDp+HTO
# WWui8eoTVwJeLxcVP869oF8li5SU81aa2tGJ6/Jsejiz9JMW8SJXKBT2DCXMOUkC
# sGjonPZRqfvoMSIQZgtaOTyAJlrvsy0TZ78XrGqoygtQimQnbOAL4KNLSCuW5TZE
# QGTHLOQJGgggb3j5gKC778+RIPJA+n/hmHJ/x4qT/HTTPoVeMCcuBKWrQXR1+/pY
# au3Fwe0tWIyG+LWzkRr/ZNPPupcA2Yci3qn8HR9RwvQopqSNJwn2Ri6am8AQyfVV
# y/BBw0t6jpoRPjwKvuUjfCzpae6duOxQtQ1XDN9PA2yl9sDko/+AXV/SOe8ea8Qo
# Qcv3s3ErkG+Lp6hnvw6OMPian4ggNkRtgtB7ro1OiopOUXJn9Y5EO3JUAXNcuM9m
# +5My1VEuvGytgAH3uxmslTnW3YbrfazaySCSSnWkhaOZ33hgbuUQfH7n2NFEAUc/
# cFzfmCQUikWisnJYywIDAQABo4IBSTCCAUUwHQYDVR0OBBYEFLE40qoXTuMHX3Af
# ZUu1n8nx2h93MB8GA1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMF8GA1Ud
# HwRYMFYwVKBSoFCGTmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3Js
# L01pY3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBsBggr
# BgEFBQcBAQRgMF4wXAYIKwYBBQUHMAKGUGh0dHA6Ly93d3cubWljcm9zb2Z0LmNv
# bS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIw
# MTAoMSkuY3J0MAwGA1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgw
# DgYDVR0PAQH/BAQDAgeAMA0GCSqGSIb3DQEBCwUAA4ICAQAHnfc2yUyoHZbvvyVK
# FuXh5HxxHIvIaR9JWpIfITJlc/Ki03juR+vckzq3tp5fFH5LL7eIFXRIuoewMsvW
# eFrWufrrW4HhmhCwkqArfA1C0xk+HaYs2O48YSxMX9lgS1kTTIb3YsfoFdFpKurP
# f2nc2Yd4wLg+FgwmkxkeyE3MUKVna8SZeVpEjnS5ucFck4srPwK2ORAf70I23GGy
# PhqgIKZphNXhSscTAQsyIqB5GwDMdRV5LK37NfU4YmxvCYh3TFYE/Gh01Q6yJvf9
# HxiEZpwW+oUk0gruHobg3sgIR5rfgUo8l30vUnaDYMcPAClaFMC/QbHZSaUhWXZG
# 1OOcMp0g9vYQNLDEqFX2jlquvzVSSwtHtm1KTldCjRED+kdCybcPxbPalwJigXc1
# BsI9CitnTf0ljwb9NkZ/JVI8/D62rXXzhz4F3u0iVGzwncGaxRxHG/Xv4nTrpkOe
# epoYbNBbMWS2G1qP3Xj7pVf0+4qRyAqJ0stjQjoVOJImVPWRjz5PR3Dn6adQVMBJ
# DM6gDrj1rZTFVgCtTijqGZSGzvXpGkF3vYsyE6ZDma/kGdiUe5saeI6lH66PiWWX
# gqxt7sy2Ezv0yIjSVv+eMOT2QMUiZ6WCc7gVtAmXpfeIus+NmgFvM+Ic1X58e4I9
# EL4ZSAidSpWW0GZTLNC02mryLjCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkA
# AAAAABUwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX
# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg
# Q29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRl
# IEF1dGhvcml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVow
# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl
# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd
# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUA
# A4ICDwAwggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX
# 9gF/bErg4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1q
# UoNEt6aORmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8d
# q6z2Nr41JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byN
# pOORj7I5LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2k
# rnopN6zL64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4d
# Pf0gz3N9QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgS
# Uei/BQOj0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8
# QmguEOqEUUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6Cm
# gyFdXzB0kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzF
# ER1y7435UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQID
# AQABo4IB3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQU
# KqdS/mTEmr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1
# GelyMFwGA1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0
# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0
# bTATBgNVHSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMA
# QTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbL
# j+iiXGJo0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1p
# Y3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0w
# Ni0yMy5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3
# Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz
# LmNydDANBgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwU
# tj5OR2R4sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN
# 3Zi6th542DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU
# 5HhTdSRXud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5
# KYnDvBewVIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGy
# qVvfSaN0DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB6
# 2FD+CljdQDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltE
# AY5aGZFrDZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFp
# AUR+fKFhbHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcd
# FYmNcP7ntdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRb
# atGePu1+oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQd
# VTNYs6FwZvKhggNQMIICOAIBATCB+aGB0aSBzjCByzELMAkGA1UEBhMCVVMxEzAR
# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p
# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg
# T3BlcmF0aW9uczEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOjg2MDMtMDVFMC1E
# OTQ3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw
# BwYFKw4DAhoDFQBTb+bKOPAjCBflhzw5EXBuSWxeDqCBgzCBgKR+MHwxCzAJBgNV
# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w
# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m
# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBCwUAAgUA7hYeUTAiGA8y
# MDI2MDczMDE5MDI0MVoYDzIwMjYwNzMxMTkwMjQxWjB3MD0GCisGAQQBhFkKBAEx
# LzAtMAoCBQDuFh5RAgEAMAoCAQACAhCFAgH/MAcCAQACAhNHMAoCBQDuF2/RAgEA
# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI
# AgEAAgMBhqAwDQYJKoZIhvcNAQELBQADggEBABEaFDqMTDH7CAvtPJUDZn8dUIPY
# 3ABfbamaftqws3bq76VlNY5J4o7U3iZGbQnV6jy/Rs0xSGJVFVXcfEfSp6r3TZ0x
# KWs9xnlxlY2F0+kMCoKiSOwsKEJqx/GGPdzIFn69D5UIx85A10ZJ8Wstp13mr28s
# DZqYvjWj7obHMo4Vv2rcJL/BeWi+rbUcL4FnnMniOrCUpBSD8hNP8GYK7bydPhWG
# 6+4gjSahk1A5bgkJjdkzdynouHyu/VzVWzp6t6ZZTNWlo/VDguqyzoSgpdfRX5kD
# jFbwb0eJViwODVqq1/d9QeaqwBwL7BvdtwmgxSq4/umt9qssOoUPv2EZ0rkxggQN
# MIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQ
# MA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u
# MSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAiWA
# xzfGzap3SQABAAACJTANBglghkgBZQMEAgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0G
# CyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCCJGrs0TASJLfpXqkA66iNo2qp1
# Qy5z0BSJBgHULPqoCjCB+gYLKoZIhvcNAQkQAi8xgeowgecwgeQwgb0EIFYN7oh6
# ON3y92CmAl/lF0CYwrjWWQP6dCUxajPSHKEQMIGYMIGApH4wfDELMAkGA1UEBhMC
# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV
# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp
# bWUtU3RhbXAgUENBIDIwMTACEzMAAAIlgMc3xs2qd0kAAQAAAiUwIgQgmceSIFA/
# KtfSR2gEMmnCldkqU5e1O0X3XJ+f9iIWO8cwDQYJKoZIhvcNAQELBQAEggIAjyGH
# NEPdWKCBP1b4hFNfckuq+elweaAZtl6Ofu8hDrhWWd7wLAHmoYCfyjNFH8t7AdG0
# K62fJ9q/81/YX9x9j0SlQi2fBfSWozltyBgi2PIv1H+s4592MjewWoNQKBvgnglJ
# VmclbLcH9Xr42qURdP7I+wi77Ld0UoeX8wp8OmYTfTRs14558emIToB+QO9cvDty
# jAfnK45rC2HRPnOpoj79q8HhJKjjAxQqndXPtWgWOtZYUdn7kYZDiUgjNPQ9wMwZ
# aogpg0FVpDPlhRWaxEr+FMHKu1DKOD1KQPV2UifUO8A8kEgC8haABENCnCiORbgN
# Y2rmY+Uw+JM3cy9auUcCIKHZ+QLS79F0Kx2hyv8MaTFZwF4hFjAgEGXFrxDWji8u
# UloRWZ8m6Dboq8dKdmo5F5Od8fdCE10Zy4Kh1vK9DxbIDvmR1TSBX63x7U2pLCwl
# 4BfwnJndmEQ1f2XW/ebhKFI0vnyPJAoR8gZDQh6nylxvQ6dPFUqEoApd0eLtJ7Km
# UsAx6lTEW+hkXudc1BNSupYkSDwZ6BwuiJ1/2lweePe9+yBc5tD7+V68DXYtnFy2
# Sja8gGO8XsShf446YV4+hrS3y31F6SyNSal/c9c37s1gKkjrpnl3wNGCV/jqGLEN
# BBPW/eYew+xGpf9ffxxP+iwJ4w42UNFQJQ7EQzE=
# SIG # End signature block