Obs/bin/ObsDep/content/Powershell/Roles/Common/AzureStackPXE.psm1
<###################################################
# # # Copyright (c) Microsoft. All rights reserved. # # # ##################################################> Import-Module NetSecurity # Installs the AzureStackPXE service on the local machine function Install-AzureStackPXE { Param( [Parameter(Mandatory = $true)] $logFile, [Parameter(Mandatory = $true)] $configurationFile, [Parameter(Mandatory = $false)] $idempotent ) $ErrorActionPreference = "Stop" $serviceName = "AzureStackPXE" # Get the path to where the Network Boot Server binaries are unpacked $binaryPath = Join-Path "$env:SystemDrive\CloudDeployment" "NetworkBootServer" # Setup the Network Boot Server service, but don't start it just yet $service = Get-Service -Name $serviceName -ErrorAction Ignore # Remove the service if it already exists (unless this is an idempotent run) if ($service -ne $null -and $idempotent -eq $false) { # Stop service before attempting to remove it Write-Verbose "$serviceName service already exists, stopping and removing" Stop-Service -Name $serviceName -ErrorAction Ignore & "sc.exe" "delete" "$serviceName" } try { # Setup the service if this is not an idempotent run, or if the service didn't previously exist if ($service -eq $null -or $idempotent -eq $false) { Write-Verbose "Installing service $serviceName" New-Service -Name $serviceName -BinaryPathName "$binaryPath\NetworkBootServer.exe -log:$logFile -config:$configurationFile" -DisplayName "Azure Stack Network Boot Server" -StartupType Manual # Restart the service for first, second and subsequent failures after 5000 milliseconds. Reset after 1 day. Write-Verbose "Configuring recovery mechanism for Azure Stack Network Boot Service: '$serviceName'" $out = sc.exe failure $serviceName actions=restart/5000/restart/5000/restart/5000/5000 reset=86400 if ($LASTEXITCODE -ne 0) { Write-Error "[LASTEXITCODE: '$LASTEXITCODE']`n[sc.exe failure $serviceName actions=restart/5000/restart/5000/restart/5000/5000 reset=86400]:`n $($out | Out-String)" } else { Write-Verbose "[sc.exe failure $serviceName actions=restart/5000/restart/5000/restart/5000/5000 reset=86400]:`n $($out | Out-String)" } # Log the recovery settings $out = sc.exe qfailure $serviceName if ($LASTEXITCODE -ne 0) { Write-Error "[LASTEXITCODE: '$LASTEXITCODE']`n[sc.exe qfailure $serviceName]:`n $($out | Out-String)" } else { Write-Verbose "[sc.exe qfailure $serviceName]:`n $($out | Out-String)" } } } catch { throw "Could not create $serviceName service ($_)" } } # Configures firewall rules for the AzureStackPXE service on the local machine function Set-AzureStackPXEFirewallRules { $ErrorActionPreference = "Stop" # The firewall service needs to be started for this to work $firewallServiceName = "MpsSvc" $firewallService = Get-Service -Name $firewallServiceName -ErrorAction Ignore # Exit if the firewall service could not be found if ($firewallService -eq $null) { Write-Verbose "Could not locate the firewall service, exiting" return } # Save initial state of the firewall service, we want to leave it in the same state on exit $firewallServiceStatus = $firewallService.Status # Start service if not already running if ($firewallServiceStatus -ne "Running") { Write-Verbose "Firewall service is stopped, starting temporarily so we can apply rules." Start-Service -Name $firewallService -ErrorAction Ignore } # Remove existing firewall rules. These are relatively inexpensive operations, so we can remove and re-add on idempotent runs Get-NetFirewallRule -Name "AzureStackPXE_DHCP_Inbound" -ErrorAction Ignore | Remove-NetFirewallRule -ErrorAction Ignore Get-NetFirewallRule -Name "AzureStackPXE_TFTP_Inbound" -ErrorAction Ignore | Remove-NetFirewallRule -ErrorAction Ignore Get-NetFirewallRule -Name "AzureStackPXE_DHCP_Outbound" -ErrorAction Ignore | Remove-NetFirewallRule -ErrorAction Ignore Get-NetFirewallRule -Name "AzureStackPXE_TFTP_Outbound" -ErrorAction Ignore | Remove-NetFirewallRule -ErrorAction Ignore # Allow inbound DHCP traffic to ports 67 and 4011 from remote ports 67, 68 and 4011 New-NetFirewallRule -Direction In -Name "AzureStackPXE_DHCP_Inbound" -DisplayName "Azure Stack Network Boot Server DHCP (Inbound)" -Protocol UDP -LocalPort 67, 4011 -RemotePort 67, 68, 4011 | Out-Null # Allow inbound TFTP traffic to port 69 from any remote port New-NetFirewallRule -Direction In -Name "AzureStackPXE_TFTP_Inbound" -DisplayName "Azure Stack Network Boot Server TFTP (Inbound)" -Protocol UDP -LocalPort 69 | Out-Null # Allow outbound DHCP traffic only from the AzureStackPXE service (local ports 67 and 4011) to remote ports 67, 68 and 4011 New-NetFirewallRule -Direction Out -Name "AzureStackPXE_DHCP_Outbound" -DisplayName "Azure Stack Network Boot Server DHCP (Outbound)" -Protocol UDP -LocalPort 67, 4011 -RemotePort 67, 68, 4011 -Service "AzureStackPXE" | Out-Null # Allow outbound TFTP traffic only from the AzureStackPXE service (local port 69) to any remote port New-NetFirewallRule -Direction Out -Name "AzureStackPXE_TFTP_Outbound" -DisplayName "Azure Stack Network Boot Server TFTP (Outbound)" -Protocol UDP -LocalPort 69 -Service "AzureStackPXE" | Out-Null # Restore firewall service to its initial state if ($firewallServiceStatus -eq "Stopped") { Write-Verbose "Stopping firewall service." Stop-Service -Name $firewallService -ErrorAction Ignore } } # Loads the AzureStackPXEConfiguration object from the specified JSON file function Get-AzureStackPXEConfiguration { Param( [Parameter(Mandatory = $true)] $configurationFile ) $json = Get-Content -Path $configurationFile return CreateAzureStackPXEConfiguration($json) } # Creates a new (empty) AzureStackPXEConfiguration object function New-AzureStackPXEConfiguration { $config = CreateAzureStackPXEConfiguration -json $null return $config } # Loads the specified AzureStackPXE assembly function Use-AzureStackPXEAssembly { Param( [Parameter(Mandatory = $true)] $Type ) $binaryPath = Join-Path "$env:SystemDrive\CloudDeployment" "NetworkBootServer" if(!(Test-Path $binaryPath)) { $binaryPath = Join-Path "$PSScriptRoot\..\..\" "NetworkBootServer" } $binaryPath = Join-Path $binaryPath "$Type.dll" try { Write-Verbose "Loading assembly $binaryPath" Add-Type -Path $binaryPath | Out-Null } catch { throw "Failed to load assembly $binaryPath ($_)" } } # Creates a PXE configuration object and deserializes its contents from JSON if specified function CreateAzureStackPXEConfiguration { Param( [Parameter(Mandatory = $false)] $json ) # Deserialize configuration object from JSON if specified, or create a new instance otherwise if ($json -ne $null) { $pxeConfig = [Microsoft.AzureStack.Solution.Deploy.AzureStackPXE.Common.PXEServerConfiguration]::Deserialize($json) # Deserialization should throw an exception on failure, adding a null check for safety if ($pxeConfig -eq $null) { throw "Failed to deserialize AzureStackPXE configuration" } return $pxeConfig } else { $typeName = "Microsoft.AzureStack.Solution.Deploy.AzureStackPXE.Common.PXEServerConfiguration" Write-Verbose "Creating new instance of $typeName" $pxeConfig = New-Object -TypeName $typeName if ($pxeConfig -eq $null) { throw "Failed to create instance of $typeName" } return $pxeConfig } } # Creates a new instance of Microsoft.AzureStack.Solution.Deploy.AzureStackPXE.Common.PXEClient, for the purpose of adding # it to a Configuration object. The client is an in-memory instance and is not sent to the REST endpoint of the service function New-AzureStackPXEClientInstance { Param( [Parameter(Mandatory = $true)] $ClientIdentifier, [Parameter(Mandatory = $true)] $BootBehavior, [Parameter(Mandatory = $true)] $SetToDefaultAfterBoot ) # Create instance of PXEClient $pxeClient = New-Object -TypeName "Microsoft.AzureStack.Solution.Deploy.AzureStackPXE.Common.PXEClient" $pxeClient.ClientIdentifier = $ClientIdentifier $pxeClient.BootBehavior = $BootBehavior $pxeClient.SetToDefaultAfterBoot = $SetToDefaultAfterBoot return $pxeClient } # Builds a HTTP URI for the specified server and port function GetRESTEndpoint { Param( [Parameter(Mandatory = $false)] $PxeServer = "localhost", [Parameter(Mandatory = $false)] $Port = 9000, [Parameter(Mandatory = $false)] $Api = "pxe" ) return "http://$PxeServer" + ":" + "$Port/$Api" } # Uses the AzureStackPXE REST API to get all clients known to the boot server function Get-AzureStackPXEClients { Param( [Parameter(Mandatory = $false)] $PxeServer = "localhost" ) $ErrorActionPreference = "Stop" try { $uri = GetRESTEndpoint -PxeServer $PxeServer $clients = (Invoke-WebRequest -Uri "$uri/pxeclient" -Method Get -TimeoutSec 60 -UseBasicParsing -UseDefaultCredentials -Verbose -ErrorAction Stop).Content | ConvertFrom-Json return $clients } catch { throw "Failed to get PXE clients ($_)" } } # Uses the AzureStackPXE REST API to set the properties of a PXE client function Set-AzureStackPXEClient { Param( [Parameter(Mandatory = $true)] $ClientIdentifier, [Parameter(Mandatory = $true)] $BootBehavior, [Parameter(Mandatory = $true)] $SetToDefaultAfterBoot, [Parameter(Mandatory = $false)] $PxeServer = "localhost" ) $ErrorActionPreference = "Stop" try { $uri = GetRESTEndpoint -PxeServer $PxeServer $json = @{ clientIdentifier = $ClientIdentifier bootBehavior = $BootBehavior setToDefaultAfterBoot = $SetToDefaultAfterBoot } | ConvertTo-Json Invoke-WebRequest -Uri "$uri/pxeclient" -Method Put -Body $json -ContentType "application/json" -UseBasicParsing -UseDefaultCredentials -Verbose Write-Verbose "PXE client $ClientIdentifier updated successfully" } catch { throw "Failed to update PXE client $ClientIdentifier ($_)" } } # Uses the AzureStackPXE REST API to add a PXE client to the known clients list function New-AzureStackPXEClient { Param( [Parameter(Mandatory = $true)] $ClientIdentifier, [Parameter(Mandatory = $true)] $BootBehavior, [Parameter(Mandatory = $true)] $SetToDefaultAfterBoot, [Parameter(Mandatory = $false)] $PxeServer = "localhost" ) $ErrorActionPreference = "Stop" try { $uri = GetRESTEndpoint -PxeServer $PxeServer $json = @{ clientIdentifier = $ClientIdentifier bootBehavior = $BootBehavior setToDefaultAfterBoot = $SetToDefaultAfterBoot } | ConvertTo-Json Invoke-WebRequest -Uri "$uri/pxeclient" -Method Post -Body $json -ContentType "application/json" -UseBasicParsing -UseDefaultCredentials -Verbose Write-Verbose "PXE client $ClientIdentifier created successfully" } catch { throw "Failed to create PXE client $ClientIdentifier ($_)" } } # Tests whether the AzureStackPXE service has been installed and all BareMetal nodes setup for PXE boot function Test-AzureStackPxeDeployed { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [CloudEngine.Configurations.EceInterfaceParameters] $Parameters ) $ErrorActionPreference = [System.Management.Automation.ActionPreference]::Stop # Get physical nodes from BaseMetal role $physicalMachinesRole = $Parameters.Roles["BareMetal"].PublicConfiguration $serviceName = "AzureStackPXE" # Cloud Role $cloudRole = $Parameters.Roles['Cloud'].PublicConfiguration # OEM Model info $OEMRole = $Parameters.Roles["OEM"].PublicConfiguration $OEMModel = $OEMRole.PublicInfo.UpdatePackageManifest.UpdateInfo.Model # Account info $securityInfo = $cloudRole.PublicInfo.SecurityInfo $bareMetalUser = $securityInfo.HardwareUsers.User | Where-Object -Property Role -EQ 'BareMetalAdmin' $bareMetalCredential = $Parameters.GetCredential($bareMetalUser.Credential) # Check that the PXE service has been installed and is currently running if ((Get-Service $serviceName -ErrorAction SilentlyContinue).Status -eq "Running") { # Use AzureStackPXE REST API to get a list of PXE clients Write-Verbose "Getting a list of known PXE clients." $existingPxeClients = Get-AzureStackPXEClients foreach ($node in $physicalMachinesRole.Nodes.Node) { # Check that the node is setup for PXE boot by MAC address or machine id $nodeSetupForPxe = $false if([string]::IsNullOrEmpty($node.MacAddress)) { # Determine the machine UUID from the BMC $currentClientIdentifier = Get-SmBiosGuid -BmcIP $node.BmcIPAddress -Credential $bareMetalCredential -OEMModel $OEMModel -OOBProtocol $node.OOBProtocol -NodeInstance $node.NodeInstance -NodeName $node.Name $currentClientIdentifier=$device.guid.Replace("-","") } else { $currentClientIdentifier = $node.MacAddress } foreach ($existingPxeClient in $existingPxeClients) { if ($existingPxeClient.ClientIdentifier -eq $currentClientIdentifier) { Write-Verbose "Node $($node.Name) $currentClientIdentifier has already been setup for PXE boot." $nodeSetupForPxe = $true break } } # At least one node has not been setup for PXE, return 'false' if ($nodeSetupForPxe -eq $false) { Write-Verbose "Node $($node.Name) $currentClientIdentifier has not been setup for PXE boot." return $false } } # All nodes have been setup for PXE, return 'true' return $true } # AzureStackPXE service not installed, or not running - return 'false' return $false } function Update-AzureStackPxeBootImage { Param( [Parameter(Mandatory = $true)] $BootImage, [Parameter(Mandatory = $false)] [Boolean] $Force = $true ) $ErrorActionPreference = "Stop" # Create RemoteInstall folder if it doesn't exist $remoteInstallFolderPath = "$env:SystemDrive\RemoteInstall" if ((Test-Path $remoteInstallFolderPath) -eq $false) { $null = mkdir $remoteInstallFolderPath -Force } # Create RemoteInstall\x64\Images folder if it doesn't exist $remoteInstallImagesFolderPath = "$remoteInstallFolderPath\Boot\x64\Images" if ((Test-Path $remoteInstallImagesFolderPath) -eq $false) { $null = mkdir $remoteInstallImagesFolderPath -Force } # Make a copy of the WIM image to RemoteInstall\Images. Make sure the image is named "boot.wim", as this is # how the BCD file references it $bootImageLocalPath = "$remoteInstallFolderPath\Boot\x64\Images\boot.wim" Write-Verbose "Copying updated PXE server boot image from $BootImage to $bootImageLocalPath" if ((Test-Path $bootImageLocalPath) -eq $false -or $Force) { Write-Verbose "Copying $BootImage to local file $bootImageLocalPath." Copy-Item -Path $BootImage -Destination "$bootImageLocalPath" -Force } else { Write-Verbose "Skip copying boot image $BootImage locally, as it already exists as $bootImageLocalPath." } } # Uses the AzureStackPXE REST API to create a DHCP client reservation function New-AzureStackDHCPReservation { Param( [Parameter(Mandatory = $true)] $ClientIdentifier, [Parameter(Mandatory = $true)] $IPAddress, [Parameter(Mandatory = $false)] $DhcpServer = "localhost" ) $ErrorActionPreference = "Stop" try { $uri = GetRESTEndpoint -PxeServer $DhcpServer -Api "pxe" $json = @{ MAC = $ClientIdentifier IP = $IPAddress } | ConvertTo-Json Invoke-WebRequest -Uri "$uri/dhcpclient" -Method Post -Body $json -ContentType "application/json" -UseBasicParsing -UseDefaultCredentials -Verbose Write-Verbose "DHCP reservation $ClientIdentifier -> $IPAddress created successfully" } catch { throw "Failed to create DHCP reservation for client $ClientIdentifier ($_)" } } # Uses the AzureStackPXE REST API to remove an existing DHCP client reservation function Remove-AzureStackDHCPReservation { Param( [Parameter(Mandatory = $true)] $ClientIdentifier, [Parameter(Mandatory = $false)] $DhcpServer = "localhost" ) $ErrorActionPreference = "Stop" try { $uri = GetRESTEndpoint -PxeServer $DhcpServer -Api "pxe" Invoke-WebRequest -Uri "$uri/dhcpclient?id=$ClientIdentifier" -Method Delete -ContentType "application/json" -UseBasicParsing -UseDefaultCredentials -Verbose Write-Verbose "DHCP reservation for client $ClientIdentifier removed successfully" } catch { throw "Failed to remove DHCP reservation for client $ClientIdentifier ($_)" } } # Generates a random password with the specified minimum and maximum length function New-RandomPassword { param( [Parameter(Mandatory=$false)] [int] $Minlength = 14, [Parameter(Mandatory=$false)] [int] $Maxlength = 18 ) $ErrorActionPreference = 'Stop' $lowerCaseLetters = 'abcdefghkmnprstuvwxyz' $upperCaseLetters = 'ABCDEFGHKLMNPRSTUVWXY' $numbers = '1234567890' $specialCharacters = '!-_#' $allCharacters = $lowerCaseLetters + $upperCaseLetters + $numbers + $specialCharacters $randomLower = Get-Random -Maximum $lowerCaseLetters.length $randomUpper = Get-Random -Maximum $upperCaseLetters.length $randomNumber = Get-Random -Maximum $numbers.length $randomSpecial = Get-Random -Maximum $specialCharacters.length $password = @() if($MinLength -lt 7) { throw "MinLength cannot be less than 7." } $maxLength = $Maxlength - 3 $minLength = $MinLength - 4 $passwordLength = Get-Random -Minimum $Minlength -Maximum $maxlength $randomAllArray = 1 ..$passwordLength | ForEach-Object { Get-Random -Maximum $allCharacters.length } $password += $allCharacters[$randomAllArray] # Guarantee at least one of each type is used. $password += $lowerCaseLetters[$randomLower] $password += $upperCaseLetters[$randomUpper] $password += $numbers[$randomNumber] $password += $specialCharacters[$randomSpecial] # Sort so that all the guaranteed values are not at the end. $sortedPassword = $password | Sort-Object { Get-Random } $stringPassword = $sortedPassword -Join '' ConvertTo-SecureString -String $stringPassword -AsPlainText -Force } # Get SmBios Guid from BMC IP Address. function Get-SmBiosGuid { [CmdletBinding()] Param ( [Parameter(Mandatory=$true)] [string] $BmcIP, [Parameter(Mandatory = $true)] [PSCredential] $Credential, [Parameter(Mandatory=$true)] [string] $OEMModel, [Parameter(Mandatory=$false)] [string] $NodeName, [Parameter(Mandatory=$false)] [string] $NodeInstance, [Parameter(Mandatory=$false)] [string] $OOBProtocol ) $ErrorActionPreference = 'Stop' if (@("Virtual Machine", "Hyper-V") -notcontains $OEMModel) { $paramHash = @{} if ($OOBProtocol) { $paramHash += @{ OOBProtocol = $OOBProtocol } } if ($NodeInstance) { $paramHash += @{ NodeInstance = $NodeInstance } } Import-Module -Name "$PSScriptRoot\..\..\OOBManagement\bin\Microsoft.AzureStack.OOBManagement.dll" -Force Import-Module -Name "$PSScriptRoot\..\..\OOBManagement\bin\Newtonsoft.Json.dll" -Force # Retrieve the machine UUID from the BMC $device = Get-IpmiDeviceSystemGuid -TargetAddress $BmcIP -Credential $Credential @paramHash } else { $device = Invoke-Command -ComputerName $BmcIP -Credential $Credential -ArgumentList $NodeName -ErrorAction Stop -ScriptBlock { param($NodeName) $hostVm = Get-VM $NodeName Trace-Execution "Retrieved the VM $hostVm, getting the VMManagementServiceInstance" $vmId = $hostVm.VMId $VMManagementServiceInstance = Get-CimInstance -ClassName "Msvm_VirtualSystemManagementService" -Namespace "root\virtualization\v2" Trace-Execution "Retrieved VMManagementServiceInstance, Getting the CimInstance of the VM" $vmInstance = Get-CimInstance -ClassName Msvm_ComputerSystem -Namespace "root\virtualization\v2" | where { $_.Name -like $vmId } Trace-Execution "Retrieved the VM CimInstance, Getting the VMSettingData" $VMSettingData = Get-CimAssociatedInstance -InputObject $vmInstance -ResultClassName "Msvm_VirtualSystemSettingData" -Association "Msvm_SettingsDefineState" Trace-Execution "Retrieved the VMSettingData, now aggregating and returning SmBios information" [System.Guid]::Parse($VMSettingData.BIOSGUID) } } if ($device) { $SMBiosGuid = $device.Guid.Replace("-", "") Trace-Execution "Retrieved the SMBios Guid $SMBiosGuid from BMC IP $BmcIP" } else { Trace-Error "Failed to retrieve the SMBios Guid from BMC IP $BmcIP" } return $SMBiosGuid } Export-ModuleMember -Function Install-AzureStackPXE Export-ModuleMember -Function Set-AzureStackPXEFirewallRules Export-ModuleMember -Function Get-AzureStackPXEConfiguration Export-ModuleMember -Function New-AzureStackPXEConfiguration Export-ModuleMember -Function Get-AzureStackPXEClients Export-ModuleMember -Function New-AzureStackPXEClient Export-ModuleMember -Function New-AzureStackPXEClientInstance Export-ModuleMember -Function New-AzureStackDHCPReservation Export-ModuleMember -Function Remove-AzureStackDHCPReservation Export-ModuleMember -Function Set-AzureStackPXEClient Export-ModuleMember -Function Test-AzureStackPxeDeployed Export-ModuleMember -Function Update-AzureStackPxeBootImage Export-ModuleMember -Function Use-AzureStackPXEAssembly Export-ModuleMember -Function New-RandomPassword Export-ModuleMember -Function Get-SmBiosGuid # SIG # Begin signature block # MIIoLQYJKoZIhvcNAQcCoIIoHjCCKBoCAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCA/m7/2fXzY4eKR # fqAxZjDf8w0JdbfwpID4WAonGQvuOaCCDXYwggX0MIID3KADAgECAhMzAAADrzBA # DkyjTQVBAAAAAAOvMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD # VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p # bmcgUENBIDIwMTEwHhcNMjMxMTE2MTkwOTAwWhcNMjQxMTE0MTkwOTAwWjB0MQsw # CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u # ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB # AQDOS8s1ra6f0YGtg0OhEaQa/t3Q+q1MEHhWJhqQVuO5amYXQpy8MDPNoJYk+FWA # hePP5LxwcSge5aen+f5Q6WNPd6EDxGzotvVpNi5ve0H97S3F7C/axDfKxyNh21MG # 0W8Sb0vxi/vorcLHOL9i+t2D6yvvDzLlEefUCbQV/zGCBjXGlYJcUj6RAzXyeNAN # xSpKXAGd7Fh+ocGHPPphcD9LQTOJgG7Y7aYztHqBLJiQQ4eAgZNU4ac6+8LnEGAL # go1ydC5BJEuJQjYKbNTy959HrKSu7LO3Ws0w8jw6pYdC1IMpdTkk2puTgY2PDNzB # tLM4evG7FYer3WX+8t1UMYNTAgMBAAGjggFzMIIBbzAfBgNVHSUEGDAWBgorBgEE # AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQURxxxNPIEPGSO8kqz+bgCAQWGXsEw # RQYDVR0RBD4wPKQ6MDgxHjAcBgNVBAsTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEW # MBQGA1UEBRMNMjMwMDEyKzUwMTgyNjAfBgNVHSMEGDAWgBRIbmTlUAXTgqoXNzci # tW2oynUClTBUBgNVHR8ETTBLMEmgR6BFhkNodHRwOi8vd3d3Lm1pY3Jvc29mdC5j # b20vcGtpb3BzL2NybC9NaWNDb2RTaWdQQ0EyMDExXzIwMTEtMDctMDguY3JsMGEG # CCsGAQUFBwEBBFUwUzBRBggrBgEFBQcwAoZFaHR0cDovL3d3dy5taWNyb3NvZnQu # Y29tL3BraW9wcy9jZXJ0cy9NaWNDb2RTaWdQQ0EyMDExXzIwMTEtMDctMDguY3J0 # MAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQELBQADggIBAISxFt/zR2frTFPB45Yd # mhZpB2nNJoOoi+qlgcTlnO4QwlYN1w/vYwbDy/oFJolD5r6FMJd0RGcgEM8q9TgQ # 2OC7gQEmhweVJ7yuKJlQBH7P7Pg5RiqgV3cSonJ+OM4kFHbP3gPLiyzssSQdRuPY # 1mIWoGg9i7Y4ZC8ST7WhpSyc0pns2XsUe1XsIjaUcGu7zd7gg97eCUiLRdVklPmp # XobH9CEAWakRUGNICYN2AgjhRTC4j3KJfqMkU04R6Toyh4/Toswm1uoDcGr5laYn # TfcX3u5WnJqJLhuPe8Uj9kGAOcyo0O1mNwDa+LhFEzB6CB32+wfJMumfr6degvLT # e8x55urQLeTjimBQgS49BSUkhFN7ois3cZyNpnrMca5AZaC7pLI72vuqSsSlLalG # OcZmPHZGYJqZ0BacN274OZ80Q8B11iNokns9Od348bMb5Z4fihxaBWebl8kWEi2O # PvQImOAeq3nt7UWJBzJYLAGEpfasaA3ZQgIcEXdD+uwo6ymMzDY6UamFOfYqYWXk # ntxDGu7ngD2ugKUuccYKJJRiiz+LAUcj90BVcSHRLQop9N8zoALr/1sJuwPrVAtx # HNEgSW+AKBqIxYWM4Ev32l6agSUAezLMbq5f3d8x9qzT031jMDT+sUAoCw0M5wVt # CUQcqINPuYjbS1WgJyZIiEkBMIIHejCCBWKgAwIBAgIKYQ6Q0gAAAAAAAzANBgkq # hkiG9w0BAQsFADCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24x # EDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlv # bjEyMDAGA1UEAxMpTWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5 # IDIwMTEwHhcNMTEwNzA4MjA1OTA5WhcNMjYwNzA4MjEwOTA5WjB+MQswCQYDVQQG # EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG # A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSgwJgYDVQQDEx9NaWNyb3NvZnQg # Q29kZSBTaWduaW5nIFBDQSAyMDExMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC # CgKCAgEAq/D6chAcLq3YbqqCEE00uvK2WCGfQhsqa+laUKq4BjgaBEm6f8MMHt03 # a8YS2AvwOMKZBrDIOdUBFDFC04kNeWSHfpRgJGyvnkmc6Whe0t+bU7IKLMOv2akr # rnoJr9eWWcpgGgXpZnboMlImEi/nqwhQz7NEt13YxC4Ddato88tt8zpcoRb0Rrrg # OGSsbmQ1eKagYw8t00CT+OPeBw3VXHmlSSnnDb6gE3e+lD3v++MrWhAfTVYoonpy # 4BI6t0le2O3tQ5GD2Xuye4Yb2T6xjF3oiU+EGvKhL1nkkDstrjNYxbc+/jLTswM9 # sbKvkjh+0p2ALPVOVpEhNSXDOW5kf1O6nA+tGSOEy/S6A4aN91/w0FK/jJSHvMAh # dCVfGCi2zCcoOCWYOUo2z3yxkq4cI6epZuxhH2rhKEmdX4jiJV3TIUs+UsS1Vz8k # A/DRelsv1SPjcF0PUUZ3s/gA4bysAoJf28AVs70b1FVL5zmhD+kjSbwYuER8ReTB # w3J64HLnJN+/RpnF78IcV9uDjexNSTCnq47f7Fufr/zdsGbiwZeBe+3W7UvnSSmn # Eyimp31ngOaKYnhfsi+E11ecXL93KCjx7W3DKI8sj0A3T8HhhUSJxAlMxdSlQy90 # lfdu+HggWCwTXWCVmj5PM4TasIgX3p5O9JawvEagbJjS4NaIjAsCAwEAAaOCAe0w # ggHpMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRIbmTlUAXTgqoXNzcitW2o # ynUClTAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNVHQ8EBAMCAYYwDwYD # VR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBRyLToCMZBDuRQFTuHqp8cx0SOJNDBa # BgNVHR8EUzBRME+gTaBLhklodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2Ny # bC9wcm9kdWN0cy9NaWNSb29DZXJBdXQyMDExXzIwMTFfMDNfMjIuY3JsMF4GCCsG # AQUFBwEBBFIwUDBOBggrBgEFBQcwAoZCaHR0cDovL3d3dy5taWNyb3NvZnQuY29t # L3BraS9jZXJ0cy9NaWNSb29DZXJBdXQyMDExXzIwMTFfMDNfMjIuY3J0MIGfBgNV # HSAEgZcwgZQwgZEGCSsGAQQBgjcuAzCBgzA/BggrBgEFBQcCARYzaHR0cDovL3d3 # dy5taWNyb3NvZnQuY29tL3BraW9wcy9kb2NzL3ByaW1hcnljcHMuaHRtMEAGCCsG # AQUFBwICMDQeMiAdAEwAZQBnAGEAbABfAHAAbwBsAGkAYwB5AF8AcwB0AGEAdABl # AG0AZQBuAHQALiAdMA0GCSqGSIb3DQEBCwUAA4ICAQBn8oalmOBUeRou09h0ZyKb # C5YR4WOSmUKWfdJ5DJDBZV8uLD74w3LRbYP+vj/oCso7v0epo/Np22O/IjWll11l # hJB9i0ZQVdgMknzSGksc8zxCi1LQsP1r4z4HLimb5j0bpdS1HXeUOeLpZMlEPXh6 # I/MTfaaQdION9MsmAkYqwooQu6SpBQyb7Wj6aC6VoCo/KmtYSWMfCWluWpiW5IP0 # wI/zRive/DvQvTXvbiWu5a8n7dDd8w6vmSiXmE0OPQvyCInWH8MyGOLwxS3OW560 # STkKxgrCxq2u5bLZ2xWIUUVYODJxJxp/sfQn+N4sOiBpmLJZiWhub6e3dMNABQam # ASooPoI/E01mC8CzTfXhj38cbxV9Rad25UAqZaPDXVJihsMdYzaXht/a8/jyFqGa # J+HNpZfQ7l1jQeNbB5yHPgZ3BtEGsXUfFL5hYbXw3MYbBL7fQccOKO7eZS/sl/ah # XJbYANahRr1Z85elCUtIEJmAH9AAKcWxm6U/RXceNcbSoqKfenoi+kiVH6v7RyOA # 9Z74v2u3S5fi63V4GuzqN5l5GEv/1rMjaHXmr/r8i+sLgOppO6/8MO0ETI7f33Vt # Y5E90Z1WTk+/gFcioXgRMiF670EKsT/7qMykXcGhiJtXcVZOSEXAQsmbdlsKgEhr # /Xmfwb1tbWrJUnMTDXpQzTGCGg0wghoJAgEBMIGVMH4xCzAJBgNVBAYTAlVTMRMw # EQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVN # aWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNp # Z25pbmcgUENBIDIwMTECEzMAAAOvMEAOTKNNBUEAAAAAA68wDQYJYIZIAWUDBAIB # BQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEO # MAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIMfkeC/aF0XNC8MFQ9Bsu4Mh # mwQCeH1/+dTd2uoUDMJDMEIGCisGAQQBgjcCAQwxNDAyoBSAEgBNAGkAYwByAG8A # cwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20wDQYJKoZIhvcNAQEB # BQAEggEAT2+g4AoToHHqWfSRZ3H2n3zhHS3ufUr/VlXLxUbj6tpT1s0XsDW+SBza # uu/KBwskB0bIxsgNzKBrXM8PCzh//BA4ZWnX4Ob1AqHzly2EOy8HwS+v298Qs2T4 # F2hS126uI/HNQ9n0fswkxajuNstdfunUhVLgr0dOk0UDPRS/PyVnWRt5V9ZYOpMm # L++OuuJEyV/QzHVLnz4G61qNX2z1As4iVfP6MSco1/jnjqSuHC5aOIRNbQgZZqhf # 3k78r5X0GJzxgmRCsrAECYcW6H7cchPNiMqf8ejLZgYdRtNu3U7H13HAzqirCT9Y # Idwr6VltQ1IvycPKiad6BZeP3ZUyCKGCF5cwgheTBgorBgEEAYI3AwMBMYIXgzCC # F38GCSqGSIb3DQEHAqCCF3AwghdsAgEDMQ8wDQYJYIZIAWUDBAIBBQAwggFSBgsq # hkiG9w0BCRABBKCCAUEEggE9MIIBOQIBAQYKKwYBBAGEWQoDATAxMA0GCWCGSAFl # AwQCAQUABCA5EsdHdNw+RZQrR3n6/VaVMeVY3Eg1OIL6ErW3QVBvJQIGZmsNwyY4 # GBMyMDI0MDcwOTA4NTQzMC45NzZaMASAAgH0oIHRpIHOMIHLMQswCQYDVQQGEwJV # UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE # ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1l # cmljYSBPcGVyYXRpb25zMScwJQYDVQQLEx5uU2hpZWxkIFRTUyBFU046N0YwMC0w # NUUwLUQ5NDcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2Wg # ghHtMIIHIDCCBQigAwIBAgITMwAAAfAqfB1ZO+YfrQABAAAB8DANBgkqhkiG9w0B # AQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE # BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD # VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAeFw0yMzEyMDYxODQ1 # NTFaFw0yNTAzMDUxODQ1NTFaMIHLMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2Fz # aGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENv # cnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmljYSBPcGVyYXRpb25z # MScwJQYDVQQLEx5uU2hpZWxkIFRTUyBFU046N0YwMC0wNUUwLUQ5NDcxJTAjBgNV # BAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggIiMA0GCSqGSIb3DQEB # AQUAA4ICDwAwggIKAoICAQC1Hi1Tozh3O0czE8xfRnrymlJNCaGWommPy0eINf+4 # EJr7rf8tSzlgE8Il4Zj48T5fTTOAh6nITRf2lK7+upcnZ/xg0AKoDYpBQOWrL9Ob # FShylIHfr/DQ4PsRX8GRtInuJsMkwSg63bfB4Q2UikMEP/CtZHi8xW5XtAKp95cs # 3mvUCMvIAA83Jr/UyADACJXVU4maYisczUz7J111eD1KrG9mQ+ITgnRR/X2xTDMC # z+io8ZZFHGwEZg+c3vmPp87m4OqOKWyhcqMUupPveO/gQC9Rv4szLNGDaoePeK6I # U0JqcGjXqxbcEoS/s1hCgPd7Ux6YWeWrUXaxbb+JosgOazUgUGs1aqpnLjz0YKfU # qn8i5TbmR1dqElR4QA+OZfeVhpTonrM4sE/MlJ1JLpR2FwAIHUeMfotXNQiytYfR # BUOJHFeJYEflZgVk0Xx/4kZBdzgFQPOWfVd2NozXlC2epGtUjaluA2osOvQHZzGO # oKTvWUPX99MssGObO0xJHd0DygP/JAVp+bRGJqa2u7AqLm2+tAT26yI5veccDmNZ # sg3vDh1HcpCJa9QpRW/MD3a+AF2ygV1sRnGVUVG3VODX3BhGT8TMU/GiUy3h7ClX # OxmZ+weCuIOzCkTDbK5OlAS8qSPpgp+XGlOLEPaM31Mgf6YTppAaeP0ophx345oh # twIDAQABo4IBSTCCAUUwHQYDVR0OBBYEFNCCsqdXRy/MmjZGVTAvx7YFWpslMB8G # A1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMF8GA1UdHwRYMFYwVKBSoFCG # Tmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUy # MFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBsBggrBgEFBQcBAQRgMF4w # XAYIKwYBBQUHMAKGUGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY2Vy # dHMvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIwMTAoMSkuY3J0MAwG # A1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgwDgYDVR0PAQH/BAQD # AgeAMA0GCSqGSIb3DQEBCwUAA4ICAQA4IvSbnr4jEPgo5W4xj3/+0dCGwsz863QG # Z2mB9Z4SwtGGLMvwfsRUs3NIlPD/LsWAxdVYHklAzwLTwQ5M+PRdy92DGftyEOGM # Hfut7Gq8L3RUcvrvr0AL/NNtfEpbAEkCFzseextY5s3hzj3rX2wvoBZm2ythwcLe # ZmMgHQCmjZp/20fHWJgrjPYjse6RDJtUTlvUsjr+878/t+vrQEIqlmebCeEi+VQV # xc7wF0LuMTw/gCWdcqHoqL52JotxKzY8jZSQ7ccNHhC4eHGFRpaKeiSQ0GXtlbGI # bP4kW1O3JzlKjfwG62NCSvfmM1iPD90XYiFm7/8mgR16AmqefDsfjBCWwf3qheIM # fgZzWqeEz8laFmM8DdkXjuOCQE/2L0TxhrjUtdMkATfXdZjYRlscBDyr8zGMlprF # C7LcxqCXlhxhtd2CM+mpcTc8RB2D3Eor0UdoP36Q9r4XWCVV/2Kn0AXtvWxvIfyO # Fm5aLl0eEzkhfv/XmUlBeOCElS7jdddWpBlQjJuHHUHjOVGXlrJT7X4hicF1o23x # 5U+j7qPKBceryP2/1oxfmHc6uBXlXBKukV/QCZBVAiBMYJhnktakWHpo9uIeSnYT # 6Qx7wf2RauYHIER8SLRmblMzPOs+JHQzrvh7xStx310LOp+0DaOXs8xjZvhpn+Wu # Zij5RmZijDCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUwDQYJKoZI # hvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAw # DgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24x # MjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAy # MDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkGA1UEBhMC # VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV # BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp # bWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC # AQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg4r25Phdg # M/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aORmsHFPPF # dvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41JmTamDu6 # GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5LFGc6XBp # Dco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL64NF50Zu # yjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9QZpGdc3E # XzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj0XOmTTd0 # lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqEUUbi0b1q # GFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0kZSU2LlQ # +QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435UsSFF5PA # PBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB3TCCAdkw # EgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTEmr6CkTxG # NSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwGA1UdIARV # MFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWlj # cm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNVHSUEDDAK # BggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNVHQ8EBAMC # AYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo0T2UkFvX # zpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20v # cGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcmwwWgYI # KwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j # b20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDANBgkqhkiG # 9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4sQaTlz0x # M7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th542DYunKmC # VgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRXud2f8449 # xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBewVIVCs/wM # nosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0DLzskYDS # PeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+CljdQDzHVG2d # Y3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFrDZ+kKNxn # GSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFhbHP+Crvs # QWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7ntdAoGokL # jzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+oDEzfbzL # 6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6FwZvKhggNQ # MIICOAIBATCB+aGB0aSBzjCByzELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp # bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw # b3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2EgT3BlcmF0aW9uczEn # MCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOjdGMDAtMDVFMC1EOTQ3MSUwIwYDVQQD # ExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEwBwYFKw4DAhoDFQDC # KAZKKv5lsdC2yoMGKYiQy79p/6CBgzCBgKR+MHwxCzAJBgNVBAYTAlVTMRMwEQYD # VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w # IFBDQSAyMDEwMA0GCSqGSIb3DQEBCwUAAgUA6jcoejAiGA8yMDI0MDcwOTAzMDk0 # NloYDzIwMjQwNzEwMDMwOTQ2WjB3MD0GCisGAQQBhFkKBAExLzAtMAoCBQDqNyh6 # AgEAMAoCAQACAiKoAgH/MAcCAQACAhOSMAoCBQDqOHn6AgEAMDYGCisGAQQBhFkK # BAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAIAgEAAgMBhqAwDQYJ # KoZIhvcNAQELBQADggEBAGXJGj7qmZlXRuJ96Xwk7F0LfTfnnos5WEkYCINpckDy # quKsq3mlkZTfmvu7fL0Uiv5Gt3zEeP0LHpquyv39Kw7RSUTTeGD0dA56iKtYzh7R # df/rD5zIKVHL7ekuXhxfaSnFcr7BC/hz+88OR5qFib82yoshzciOdQtnLNukBGfL # nLCnMAl08oqj1oRyD0wGRTRt+s4NFOaDvQ/KXGPYYb3zcZa/yimi3E6z8cK6MKWv # QqSydl12NymgVqYRqp0XTT4j3UtLLt8+oT+XQKVYGoCBjZrCaX4bOCN1bmFwwpdz # hSvMt0/VAe1ZPhvYztErNNmsbuFZRWw67k+99j52gyAxggQNMIIECQIBATCBkzB8 # MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk # bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1N # aWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAfAqfB1ZO+YfrQABAAAB # 8DANBglghkgBZQMEAgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEE # MC8GCSqGSIb3DQEJBDEiBCDaamDtqBjVUQoYOz0PaLcFE4hluz6vyB8eT5KDSOxd # aDCB+gYLKoZIhvcNAQkQAi8xgeowgecwgeQwgb0EIFwBmqOlcv3kU7mAB5sWR74Q # FAiS6mb+CM6asnFAZUuLMIGYMIGApH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgT # Cldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29m # dCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENB # IDIwMTACEzMAAAHwKnwdWTvmH60AAQAAAfAwIgQg55rv8wlIsvUzoL1rDN5bx3B9 # CjxklL/+FJD+llnnHzkwDQYJKoZIhvcNAQELBQAEggIANGf4gFYwcnFr7ePxlxi9 # rTYKRjFfQVZfI+zjCUjZSFi34Amc0dLmd4+KWwM+ZIZF9whSQWobHRnflPQngMsA # wFSCvmzB1lh1HskpyG9Rk6fXwUPFRgcCz0nZMBMOdI021b9V4+lxbY9eQg/0l7YE # gsytzIRNlPOPQez34JtnRH1SJ2Rby2wH6/O+JbcXRmXiRPkFAu0mqYH8/eBILBz4 # 1SJJJKGo1z7Kpvnv+USnyns5t8gbEGNwabw1TMyZk+HplQH58bTUhSlRiACvA1zl # GiiboucFA1Hidi1eaWzEN6u60J4zLI77kHQR5rIUuOtkYZoStDmBNzZ7ZV0ixJlg # HpZJdUHS5kK7kDBj/o0eCi2BrbDSXkujBJ1hvk91vo/sOo6Rjj0xpJRMNxDsWjKC # 0+wu8XhjIhptmeGD/mL9SZk2a6wiVew6pp7NzNJ3nqYtoK0S9XQivho/2iIDvIYN # hi8PTX1j5I89XPVa70bNFj9qhIqPKTsy/wle//Un2SZpQ5/32lOlufbtmpV0h+g6 # mk1aZ+YbJDDkcsAhq5HEEOydYqwl+gxabSlFgQkRoq0l4pPtObNe/hr2DWoImbH9 # C8a3yj65rOhMJ/alt5G7CAhCqBkHnx8E3996P5xqX55T+1J4N8AJXBu8B9hhXOMY # 9PgZoQHfEwUjyg9tl/HsUFw= # SIG # End signature block |