ComplianceDiagnosticUtils.psm1
function Get-Button{ [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [string] $ButtonName, [Parameter(Mandatory = $false)] [string] $Margin = "0,0,0,0", [Parameter(Mandatory = $false)] [int] $width=214, [Parameter(Mandatory = $false)] [int] $height = 46, [Parameter(Mandatory = $false)] [float] $fontSize = 15.0, [Parameter(Mandatory = $false)] [string] $FontFamily = "Microsoft Sans Serif", [Parameter(Mandatory = $false)] [string] $HorizontalAlignment = "Center", [Parameter(Mandatory = $false)] [string] $VerticalAlignment = "Center" ) $button = New-Object Windows.Controls.Button $button.Content = $ButtonName $button.width = $width $button.height = $height $button.FontFamily = New-Object Windows.Media.FontFamily($FontFamily) $button.Cursor = [Windows.Input.Cursors]::Hand $rgbColor = [Windows.Media.Color]::FromRgb(63, 119, 206) $backgroundBrush = New-Object Windows.Media.SolidColorBrush($rgbColor) $button.Background = $backgroundBrush $button.Foreground = [Windows.Media.Brushes]::White $button.FontSize = $fontSize $button.FontWeight = [Windows.FontWeights]::Medium $button.Margin = $Margin $button.HorizontalAlignment = $HorizontalAlignment $button.VerticalAlignment = $VerticalAlignment $button.BorderThickness = 0 return $button } function Get-FileAttachments() { [CmdletBinding()] param ( [Parameter(Mandatory = $false)] [string] $Multiselect = $true ) $fileDialog = New-Object System.Windows.Forms.OpenFileDialog $fileDialog.Multiselect = $Multiselect $fileDialog.Filter = "All files (*.*)|*.*" $result = $fileDialog.ShowDialog() if ($result -eq [System.Windows.Forms.DialogResult]::OK) { $filedata = [System.Collections.ArrayList]@() foreach ($file in $fileDialog.FileNames) { $fileObject = [PSCustomObject]@{ Name = $file Content = ([System.IO.File]::ReadAllBytes($file)) } $filedata.Add($fileObject) | Out-Null } return $filedata } } function Get-MSLogo(){ # Importing MS image from the local downloaded Path $imagePath = Join-Path $PSScriptRoot 'Images\MSimage.png' # Create an Image for the TabItem header $imageControl = New-Object Windows.Controls.Image # Set the Image control's Source property $imageControl.Source = [Windows.Media.Imaging.BitmapImage]::new([System.Uri]::new($imagePath)) # Set the header of the TabItem to the Image control # Create a Setter for the header $headerSetter = New-Object Windows.Setter $headerSetter.Property = [Windows.Controls.TabItem]::HeaderProperty $headerSetter.Value = $imageControl $disabledTabItemStyle = New-Object Windows.Style $disabledTabItemStyle.TargetType = [Windows.Controls.TabItem] # Customize the appearance of the disabled TabItem $disabledTabItemStyle.Setters.Add([Windows.Setter]::new([Windows.Controls.TabItem]::BackgroundProperty, [Windows.Media.Brushes]::Transparent)) > $null $disabledTabItemStyle.Setters.Add([Windows.Setter]::new([Windows.Controls.TabItem]::BorderBrushProperty, [Windows.Media.Brushes]::Transparent)) > $null $disabledTabItemStyle.Setters.Add([Windows.Setter]::new([Windows.Controls.TabItem]::BorderThicknessProperty, [Windows.Thickness]::new(0))) > $null $disabledTabItemStyle.Setters.Add([Windows.Setter]::new([Windows.Controls.TabItem]::ForegroundProperty, [Windows.Media.Brushes]::Transparent)) > $null # Create a Setter for the IsEnabled property of the TabItem $isEnabledSetter = New-Object Windows.Setter $isEnabledSetter.Property = [Windows.Controls.TabItem]::IsEnabledProperty $isEnabledSetter.Value = $False # $disabledTabItemStyle.Setters.Add($isEnabledSetter) $disabledTabItemStyle.Setters.Add($headerSetter) > $null # Create a TabItem with the custom style $MSLogo = New-Object Windows.Controls.TabItem $MSLogo.Height = 70 $MSLogo.Width = 200 $MSLogo.Padding = "10,20,10,20" $MSLogo.Style = $disabledTabItemStyle return $MSLogo } function Get-LeftTabControl(){ $leftTabControl = New-Object Windows.Controls.TabControl $leftTabControl.TabStripPlacement = [Windows.Controls.Dock]::Left $global:ContextScopeVariables.leftTabControl = $leftTabControl $leftTabControl.Add_SelectionChanged({ param ( $sender, $eventArgs ) if(!$global:ContextScopeVariables.previousTabIndex){ $global:ContextScopeVariables.previousTabIndex = 1 } $currentIndex = $sender.SelectedIndex if ($currentIndex -eq 0) { $global:ContextScopeVariables.leftTabControl.SelectedIndex = $global:ContextScopeVariables.previousTabIndex } else{ $global:ContextScopeVariables.previousTabIndex = $currentIndex } }) return $leftTabControl } function Get-TabItem ($Name){ $tabItem = New-Object Windows.Controls.TabItem $tabItem.Header = $Name $tabItem.Height = "35" $tabItem.FontSize = "14" $tabItem.Width= "200" return $tabItem } function Get-ExoCmdletResult { [CmdletBinding()] param( [Parameter(Mandatory=$true)] [powershell]$ps ) $ps.Runspace = $global:EXOSession $handle = $ps.BeginInvoke() $result = $ps.EndInvoke($handle) $ps.Dispose() return $result } function LoginAndConnect { [CmdletBinding()] param ( [Parameter(Mandatory = $false)] [ValidateSet('O365Default','O365GermanyCloud','O365China','O365USGovGCCHigh', 'O365USGovDoD')] [string] $Environment = "O365Default" ) $connections=Get-ConnectionInformation $rs=Get-Runspace $exch=$rs|?{$_.Name -eq "ExchangeRS" -and $_.RunspaceStateInfo.State -eq "Opened" -and $_.RunspaceAvailability -eq "Available"} $exoConnectionNeeded = $false if ($exch -eq $null) { $global:EXOSession = [runspacefactory]::CreateRunspace() $global:EXOSession.Name = "ExchangeRS" $global:EXOSession.Open() $exoConnectionNeeded = $true } else { $global:EXOSession = $exch } $exoActiveConnections = $connections | ?{$_.State -eq "Connected" -and $_.IsEopSession -eq $false -and $_.TokenStatus -eq "Active"} if ($exoActiveConnections -eq $null -or $exoActiveConnections.Count -eq 0 -or $exoConnectionNeeded) { Write-Host "Connecting to ExchangeManagement Shell. Please check your login prompt." $scriptBlock = { param($Environment) Connect-ExchangeOnline -ExchangeEnvironmentName $Environment } $ps = [powershell]::Create().AddScript($scriptBlock) $ps.AddArgument($Environment) | Out-Null $result = Get-ExoCmdletResult -ps $ps } $eopActiveConnections = $connections| ?{$_.State -eq "Connected" -and $_.TokenStatus -eq "Active"} $eopconnected=$false foreach($c in $eopActiveConnections) { if($c.ConnectionUri -like "*compliance*") { $eopconnected = $true break } } if ($eopconnected -eq $false) { Write-Host "Connecting to Security & Compliance PowerShell. Please check your login prompt." switch ($Environment) { "O365China" {$ConnectionUri = "https://ps.compliance.protection.partner.outlook.cn/powershell-liveid"} "O365USGovGCCHigh" {$ConnectionUri = "https://ps.compliance.protection.office365.us/powershell-liveid/"} "O365USGovDoD" {$ConnectionUri = "https://l5.ps.compliance.protection.office365.us/powershell-liveid/"} default {$ConnectionUri = "https://ps.compliance.protection.outlook.com/powershell-liveid/"} } Connect-IPPSSession -ConnectionUri $ConnectionUri } } function Get-ToolTip{ [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [string] $Text, [Parameter(Mandatory = $false)] [string] $linkText , [Parameter(Mandatory = $false)] [string] $link ) # Create a ToolTip for the TextBox $tooltip = New-Object Windows.Controls.ToolTip # Create a TextBlock for the tooltip content $tooltipContent = New-Object Windows.Controls.TextBlock # Add regular text to the tooltip $tooltipContent.Inlines.Add($Text) if($link){ # Create a Hyperlink $hyperlink = New-Object Windows.Documents.Hyperlink if($linkText){ $hyperlink.Inlines.Add($linkText) } else{ $hyperlink.Inlines.Add($link) } $hyperlink.NavigateUri = $link $hyperlink.Add_Click({ Start-Process $hyperlink.NavigateUri }) # Add the Hyperlink to the TextBlock $tooltipContent.Inlines.Add($hyperlink) } # Set the content of the tooltip to the TextBlock $tooltip.Content = $tooltipContent return $tooltip } function Show-Text{ [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [string] $Text, [Parameter(Mandatory = $false)] [bool] $IsBold = $false, [Parameter(Mandatory = $false)] [System.Windows.Media.Color] $Color, [Parameter(Mandatory = $false)] [string] $padding = "0,10,0,10", [Parameter(Mandatory = $false)] [string] $margin = "0,0,0,10", [Parameter(Mandatory = $false)] [string] $fontSize = 14, [Parameter(Mandatory = $false)] [string] $HorizontalAlignment = "Center", [Parameter(Mandatory = $false)] [string] $VerticalAlignment = "Center", [Parameter(Mandatory = $false)] [string] $Width, [Parameter(Mandatory = $false)] [bool] $ShowHelp = $false ) $textArea = New-Object Windows.Controls.TextBlock $textArea.FontSize = $fontSize $textArea.Text = $text $textArea.Padding = $padding $textArea.Margin = $margin $textArea.HorizontalAlignment = $HorizontalAlignment $textArea.VerticalAlignment = $VerticalAlignment if($IsBold){ $textArea.FontWeight = "Bold" } if($Color){ $brush = [System.Windows.Media.SolidColorBrush]::new($Color) $textArea.Foreground = $brush } if($Width){ $textArea.Width = $Width } if($ShowHelp){ $imagePath = Join-Path $PSScriptRoot 'Images\help3.png' $image = New-Object Windows.Controls.Image $image.Source = [Windows.Media.Imaging.BitmapImage]::new([System.Uri]::new($imagePath)) $run = New-Object Windows.Documents.Run $inlineUIContainer = New-Object Windows.Documents.InlineUIContainer $inlineUIContainer.Child = $image $textArea.Inlines.Add($run) $textArea.Inlines.Add($inlineUIContainer) } return $textArea } function Get-TextBox{ param ( [Parameter(Mandatory = $false)] [string] $Width, [Parameter(Mandatory = $false)] [string] $Height, [Parameter(Mandatory = $false)] [string] $FontSize, [Parameter(Mandatory = $false)] [string] $Margin, [Parameter(Mandatory = $false)] [string] $HorizontalAlignment = "Center", [Parameter(Mandatory = $false)] [string] $VerticalAlignment = "Center", [Parameter(Mandatory = $false)] [string] $Text, [Parameter(Mandatory = $false)] [bool] $IsReadOnly = $false ) $textBox = New-Object Windows.Controls.TextBox $textBox.HorizontalAlignment = $HorizontalAlignment $textBox.VerticalAlignment = $VerticalAlignment # $textBox.VerticalAlignment = [Windows.VerticalAlignment]::Top # $textBox.Margin = New-Object Windows.Thickness(10, 10, 10, 10) if ($Width -ne "") { $textBox.Width = $Width } if ($Height -ne "") { $textBox.Height = $Height } if ($FontSize -ne "") { $textBox.FontSize = $FontSize } if ($Margin -ne "") { $textBox.Margin = $Margin } if ($Text -ne "") { $textBox.Text = $Text } if ($IsReadOnly) { $textBox.IsReadOnly = $true } return $textBox } function Get-ForestInfo(){ if (!$global:ContextScopeVariables.forests){ Write-Host "Getting forest details using connections and Org config" $connections=Get-ConnectionInformation $eopActiveConnections = $connections | ?{$_.State -eq "Connected" -and $_.TokenStatus -eq "Active"} foreach($c in $eopActiveConnections) { if($c.ConnectionUri -like "*compliance*") { $global:ContextScopeVariables.forests=@{} $global:ContextScopeVariables.forests.eopForest = $c.ConnectionUri.Substring(8, 5) break } } $scriptBlock = { $command = Get-Command Get-OrganizationConfig -ErrorAction SilentlyContinue if ($command -eq $null) { return $null } $orgConfig = Get-OrganizationConfig return $orgConfig } $ps = [powershell]::Create().AddScript($scriptBlock) $orgConfig = Get-ExoCmdletResult -ps $ps if($orgConfig -ne $null) { $global:ContextScopeVariables.forests.exoForests = @($orgconfig.AllowedMailboxRegions | ForEach-Object {$_.Substring($_.IndexOf("=")+1)}) } } } function Get-DateTimePickerDialog{ $global:mainForm = New-Object System.Windows.Forms.Form $global:mainForm.StartPosition = [System.Windows.Forms.FormStartPosition]::CenterScreen $global:mainForm.Text = "Pick Time Frame" $global:mainForm.Width = 300 $global:mainForm.Height = 200 # DatePicker Label $datePickerLabel = New-Object System.Windows.Forms.Label $datePickerLabel.Text = "Date" $datePickerLabel.Location = "15, 10" $datePickerLabel.Height = 22 $datePickerLabel.Width = 90 $global:mainForm.Controls.Add($datePickerLabel) # MinTimePicker Label $TimePickerLabel = New-Object System.Windows.Forms.Label $TimePickerLabel.Text = "Time" $TimePickerLabel.Location = "15, 45" $TimePickerLabel.Height = 22 $TimePickerLabel.Width = 90 $global:mainForm.Controls.Add($TimePickerLabel) $UTCLabel = New-Object System.Windows.Forms.Label $UTCLabel.Text = "UTC TIME ONLY" $titleFont = New-Object System.Drawing.Font("Arial", 9, [System.Drawing.FontStyle]::Bold) $UTCLabel.Font = $titleFont $UTCLabel.Location = "25, 75" $UTCLabel.Height = 30 $UTCLabel.Width = 180 $global:mainForm.Controls.Add($UTCLabel) # DatePicker $global:datePicker = New-Object System.Windows.Forms.DateTimePicker $global:datePicker.Location = "110, 7" $global:datePicker.Width = "150" $global:datePicker.Format = [windows.forms.datetimepickerFormat]::custom $global:datePicker.CustomFormat = "dd/MM/yyyy" $global:mainForm.Controls.Add($global:datePicker) # TimePicker $global:timePicker = New-Object System.Windows.Forms.DateTimePicker $global:timePicker.Location = "110, 42" $global:timePicker.Width = "150" $global:timePicker.Format = [windows.forms.datetimepickerFormat]::custom $global:timePicker.CustomFormat = "HH:mm:ss" $global:timePicker.ShowUpDown = $TRUE $global:mainForm.Controls.Add($global:timePicker) # OK Button $global:okButton = New-Object System.Windows.Forms.Button $global:okButton.Location = "95, 110" $global:okButton.ForeColor = "White" $global:okButton.BackColor = [System.Drawing.Color]::FromArgb(63, 119, 206) $global:okButton.Text = "OK" $global:mainForm.Controls.Add($global:okButton) $global:okButton.add_Click({ $prop = $global:ContextScopeVariables.DateTimeProp $globalScope=Get-Variable -Name "ContextScopeVariables" -Scope Global $globalScope.Value[$prop] = "$($global:datePicker.Text) $($global:timePicker.Text)" $globalScope.Value["$($prop)Label"].Text = "$($global:ContextScopeVariables[$prop]) UTC" $globalScope.Value["$($prop)Label"].Height = 40 Set-Variable -Name "ContextScopeVariables" -Value $globalScope.Value -Scope Global $global:mainForm.close() }) [void] $global:mainForm.ShowDialog() return $global:okButton } function Get-DropDown { param ( [Parameter(Mandatory = $false)] [string] $Width, [Parameter(Mandatory = $false)] [string] $Height, [Parameter(Mandatory = $false)] [string] $FontSize, [Parameter(Mandatory = $false)] [string] $Margin, [Parameter(Mandatory = $false)] [string] $HorizontalAlignment = "Center", [Parameter(Mandatory = $false)] [string] $VerticalAlignment = "Center" ) $dropDown1 = New-Object System.Windows.Controls.ComboBox $dropDown1.Margin = New-Object System.Windows.Thickness(0, 0, 10, 0) $dropDown1.HorizontalAlignment = $HorizontalAlignment $dropDown1.VerticalAlignment = $VerticalAlignment if ($Width -ne "") { $dropDown1.Width = $Width } if ($Height -ne "") { $dropDown1.Height = $Height } if ($FontSize -ne "") { $dropDown1.FontSize = $FontSize } if ($Margin -ne "") { $dropDown1.Margin = $Margin } return $dropDown1 } function Get-ComboBox { param ( [Parameter(Mandatory = $false)] [string] $Width, [Parameter(Mandatory = $false)] [string] $Height, [Parameter(Mandatory = $false)] [string] $FontSize, [Parameter(Mandatory = $false)] [string] $Margin, [Parameter(Mandatory = $false)] [string] $HorizontalAlignment = "Center", [Parameter(Mandatory = $false)] [string] $VerticalAlignment = "Center" ) $comboBox1 = New-Object System.Windows.Controls.ComboBox $comboBox1.IsEditable = $true $comboBox1.HorizontalAlignment = $HorizontalAlignment $comboBox1.VerticalAlignment = $VerticalAlignment if ($Width -ne "") { $comboBox1.Width = $Width } if ($Height -ne "") { $comboBox1.Height = $Height } if ($FontSize -ne "") { $comboBox1.FontSize = $FontSize } if ($Margin -ne "") { $comboBox1.Margin = $Margin } return $comboBox1 } function Get-RadioButton { param ( [Parameter(Mandatory = $true)] [string] $value, [Parameter(Mandatory = $false)] [bool] $selected ) $radioButton = New-Object System.Windows.Controls.RadioButton $radioButton.Content = $value $radioButton.IsChecked = $selected return $radioButton } function Get-CheckBox { param ( [Parameter(Mandatory = $true)] [string] $Value, [Parameter(Mandatory = $false)] [string] $Margin, [Parameter(Mandatory = $false)] [string] $HorizontalAlignment = "Center", [Parameter(Mandatory = $false)] [string] $VerticalAlignment = "Center" ) $checkBox = New-Object System.Windows.Controls.CheckBox $checkBox.Content = $Value $checkBox.HorizontalAlignment = $HorizontalAlignment $checkBox.VerticalAlignment = $VerticalAlignment if ($Margin -ne "") { $checkBox.Margin = $Margin } return $checkBox } function Add-ControlToTableAt { param ( [Parameter(Mandatory = $true)] [System.Windows.Controls.Grid] $TableObj, [Parameter(Mandatory = $true)] [int] $row, [Parameter(Mandatory = $true)] [int] $column, [Parameter(Mandatory = $true)] [System.Windows.UIElement] $Control ) $TableObj.Children.Add($Control) > $null [System.Windows.Controls.Grid]::SetRow($Control, $row) [System.Windows.Controls.Grid]::SetColumn($Control, $column) } function Get-TextCollectionControl($butttonName, $labelText){ $Label = Show-Text -Text $labelText -IsBold $true -fontSize 18 $textBox = Get-TextBox -VerticalAlignment "Top" -Margin "10,10,10,10" -Width 300 -Height 25 -FontSize 15 $button = Get-Button -ButtonName $butttonName -Margin "10,0,0,10" -HorizontalAlignment "Center" -VerticalAlignment "Center" $stackpanel = New-Object Windows.Controls.StackPanel $stackpanel.Orientation = [Windows.Controls.Orientation]::Horizontal $stackpanel.Children.Add($Label) > $null $stackpanel.Children.Add($textBox) > $null $stackpanel.Children.Add($button) > $null return New-Object PSObject -Property @{ control = $stackpanel textBox = $textBox button = $button } } function Get-TopTabControl(){ $TopTabControl = New-Object Windows.Controls.TabControl $DiagnosticsTabItem = New-Object Windows.Controls.TabItem $DiagnosticsTabItem.Header = "Diagnostics" $GatherSupportDataTabItem = New-Object Windows.Controls.TabItem $GatherSupportDataTabItem.Header = "Gather Support Data" # $TopTabControl.Items.Add($DiagnosticsTabItem) > $null $TopTabControl.Items.Add($GatherSupportDataTabItem) > $null return New-Object PSObject -Property @{ TopTabControl = $TopTabControl # DiagnosticsTabItem = $DiagnosticsTabItem GatherSupportDataTabItem = $GatherSupportDataTabItem } } function Get-Table($columns, $rows){ $tableGrid = New-Object System.Windows.Controls.Grid $tableGrid.Margin = New-Object System.Windows.Thickness(20) for($i=1; $i -le $columns; $i++){ $column = New-Object System.Windows.Controls.ColumnDefinition $column.Width = New-Object System.Windows.GridLength(1, [System.Windows.GridUnitType]::Star) $tableGrid.ColumnDefinitions.Add($column) > $null } for($j=1; $j -le $rows; $j++){ $row1 = New-Object System.Windows.Controls.RowDefinition $row1.MinHeight = 25.0 $tableGrid.RowDefinitions.Add($row1) > $null } return $tableGrid } function Get-TemplateGrid(){ $grid = New-Object Windows.Controls.Grid # Define two columns with equal width $column1 = New-Object Windows.Controls.ColumnDefinition $column2 = New-Object Windows.Controls.ColumnDefinition $column1.Width = New-Object Windows.GridLength(250, [Windows.GridUnitType]::Pixel) $column1.MinWidth = 50 $column1.MaxWidth = 300 # Create a GridSplitter to allow resizing the columns $gridSplitter = New-Object Windows.Controls.GridSplitter $gridSplitter.ResizeDirection = [Windows.Controls.GridResizeDirection]::Columns $gridSplitter.ResizeBehavior = [Windows.Controls.GridResizeBehavior]::BasedOnAlignment $gridSplitter.HorizontalAlignment = [Windows.HorizontalAlignment]::Center $gridSplitter.VerticalAlignment = [Windows.VerticalAlignment]::Stretch $column2.Width = [Windows.GridLength]::Auto # Add the columns to the Grid $grid.ColumnDefinitions.Add($column1) > $null $grid.ColumnDefinitions.Add($column2) > $null $grid.Children.Add($gridSplitter) > $null # Create a StackPanel to hold your content $border = New-Object Windows.Controls.Border $border.BorderThickness = "0,0,3,0" $border.BorderBrush = [Windows.Media.Brushes]::LightGray $stackPanel = New-Object Windows.Controls.StackPanel $stackPanel.VerticalAlignment = [Windows.VerticalAlignment]::Center $border.Child = $stackPanel # Set the StackPanel as the content of the first column [Windows.Controls.Grid]::SetColumn($border, 0) $grid.Children.Add($border) > $null # Create another StackPanel for the second column $stackPanel2 = New-Object Windows.Controls.StackPanel $stackPanel2.VerticalAlignment = [Windows.VerticalAlignment]::Center # Set the second StackPanel as the content of the second column [Windows.Controls.Grid]::SetColumn($stackPanel2, 1) $grid.Children.Add($stackPanel2) > $null return New-Object PSObject -Property @{ Grid = $grid Column1 = $stackPanel Column2 = $stackPanel2 } } function Get-FileName{ [CmdletBinding()] param ( [System.Collections.ArrayList] $FilePath ) if ($FilePath -eq $null) { return $Null } $fileList = [System.Collections.ArrayList]@() foreach ($file in $FilePath) { $fileList.Add($file.Split('\')[-1]) | Out-Null } return $fileList } function Get-FileButton{ [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [string] $ButtonName, [Parameter(Mandatory = $true)] [string] $GlobalScopeName, [Parameter(Mandatory = $true)] [string] $GlobalVariableName, [Parameter(Mandatory = $true)] [string] $GlobalFileListName, [Parameter(Mandatory = $false)] [string] $Margin = "0,0,0,0", [Parameter(Mandatory = $false)] [int] $width=214, [Parameter(Mandatory = $false)] [int] $height = 46, [Parameter(Mandatory = $false)] [float] $fontSize = 15.0, [Parameter(Mandatory = $false)] [string] $FontFamily = "Microsoft Sans Serif", [Parameter(Mandatory = $false)] [string] $HorizontalAlignment = "Center", [Parameter(Mandatory = $false)] [string] $VerticalAlignment = "Center", [Parameter(Mandatory = $false)] [bool] $Multiselect = $true ) $button = Get-Button -ButtonName $ButtonName -Margin $Margin -width $width -height $height -fontSize $fontSize -FontFamily $FontFamily -HorizontalAlignment $HorizontalAlignment -VerticalAlignment $VerticalAlignment $button.Tag = @{ "GlobalScopeName" = $GlobalScopeName; "GlobalVariableName" = $GlobalVariableName; "GlobalFileListName" = $GlobalFileListName; "Multiselect" = $Multiselect } $button.Add_Click({ $fileDialog = New-Object System.Windows.Forms.OpenFileDialog $fileDialog.Multiselect = $this.Tag["Multiselect"] $fileDialog.Filter = "All files (*.*)|*.*" $result = $fileDialog.ShowDialog() if ($result -eq [System.Windows.Forms.DialogResult]::OK) { $fileList = [System.Collections.ArrayList]@() foreach ($file in $fileDialog.FileNames) { $fileList.Add($file) | Out-Null } $globalScope=Get-Variable -Name $this.Tag["GlobalScopeName"] -Scope Global # Append already added files if ($globalScope.Value[$this.Tag["GlobalFileListName"]] -ne $null -and $fileDialog.Multiselect) { $fileList.AddRange($globalScope.Value[$this.Tag["GlobalFileListName"]]) | Out-Null } $fileList = [System.Collections.ArrayList]@($fileList| Sort-Object| Get-Unique) # Do something with the file data object $t = $fileList -join [Environment]::NewLine $globalScope.Value[$this.Tag["GlobalVariableName"]].Text = $t $globalScope.Value[$this.Tag["GlobalVariableName"]].Height = $fileList.Count * 30 $globalScope.Value[$this.Tag["GlobalFileListName"]] = $fileList Set-Variable -Name $this.Tag["GlobalScopeName"] -Value $globalScope.Value -Scope Global } }) return $button } function Get-ExportFolder{ [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [string] $Component ) $folderDialog = New-Object System.Windows.Forms.FolderBrowserDialog $result = $folderDialog.ShowDialog() if ($result -eq [System.Windows.Forms.DialogResult]::OK) { $FolderPath = $folderDialog.SelectedPath } if (!$FolderPath) { [System.Windows.MessageBox]::Show("Folder not selected.", "Error", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error) return } # Get the created folder path and File Path $currentDate = Get-Date -Format "MM_dd_yyyy_HH_mm" $Folder = $FolderPath + "\" + $Component + $currentDate # Create the destination folder if it doesn't exist if (-not (Test-Path $Folder)) { New-Item -ItemType Directory -Path $Folder | Out-Null } else { [System.Windows.MessageBox]::Show("Zip file already exists. Please choose a different name.", "Error", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error) return } return $Folder } function CleanAndShowFolder{ [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [string] $Folder, [Parameter(Mandatory = $true)] [hashtable] $supportData, [Parameter(Mandatory = $true)] [string] $filePath ) $supportData["Forests"] = $Global:ContextScopeVariables.forests #$supportData | Export-Clixml -Path $filePath $supportData | ConvertTo-Json -Depth 10 | Out-File $filePath # Zip the destination folder Compress-Archive -Path $Folder -DestinationPath $Folder".Zip" -Force $FolderPath = (Get-Item $Folder).parent.FullName Remove-Item -Recurse -Force $Folder # Show a success message and open the folder containing the zipped folder $message = "Files copied and zipped successfully. Zip file path: $Folder.Zip`n`nDo you want to open the folder containing the zip file?" $title = "Success" $buttons = [System.Windows.MessageBoxButton]::YesNo $icon = [System.Windows.MessageBoxImage]::Information $result = [System.Windows.MessageBox]::Show($message, $title, $buttons, $icon) if ($result -eq [System.Windows.MessageBoxResult]::Yes) { Invoke-Item $FolderPath } } Export-ModuleMember -Function * # SIG # Begin signature block # MIInwQYJKoZIhvcNAQcCoIInsjCCJ64CAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCvhosCf8XlFcFK # pluR+v8QQSEGn2fsHrIuAZZlreOPkaCCDXYwggX0MIID3KADAgECAhMzAAADrzBA # 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 # /Xmfwb1tbWrJUnMTDXpQzTGCGaEwghmdAgEBMIGVMH4xCzAJBgNVBAYTAlVTMRMw # EQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVN # aWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNp # Z25pbmcgUENBIDIwMTECEzMAAAOvMEAOTKNNBUEAAAAAA68wDQYJYIZIAWUDBAIB # BQCggbAwGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEO # MAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIKLOSl4cwRSQ63/IGiQrGvIH # 4ra52C5uGZntbWN6m4unMEQGCisGAQQBgjcCAQwxNjA0oBSAEgBNAGkAYwByAG8A # cwBvAGYAdKEcgBpodHRwczovL3d3dy5taWNyb3NvZnQuY29tIDANBgkqhkiG9w0B # AQEFAASCAQAIVTlUuU2nJ7WJt7JGU1UHURrxPmghN57DHeFHcN2Nzuz6Lj4JHF5C # FPkPGbYzD0PRAXuNEAK9UFjtAtcquOODt1RXSK0ejEy6lOOulCT1Nk+WbCOdQ6qB # YE/+g+K93Yn+v//4uUPbD7Wc2f2m6FsnqoxDWi01a+w+hlmq6jsf0JeS6P2UKNQZ # u7eiGF8/c+LCas3gp0Fs7uN2C1+acNnCcqJqjlNLHhfM8V4HrELW2TMGsMgEbTaj # mfTZkTWzCTH+AmqPNMH8ZYwHc/WUcR7RrMwUQa8M9S4KxX1idnv3DjQw2lI8XwLa # FGn4Ar4bWW537i5VYZKvrp9Z52hWj3tFoYIXKTCCFyUGCisGAQQBgjcDAwExghcV # MIIXEQYJKoZIhvcNAQcCoIIXAjCCFv4CAQMxDzANBglghkgBZQMEAgEFADCCAVkG # CyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMBMDEwDQYJYIZI # AWUDBAIBBQAEIJ9VcDo3GzcmUda6V/ymSvK3/fw6UeBlRuc+pJ6aBuS7AgZmM6mh # 6Z8YEzIwMjQwNTA5MTkwNTA5LjA0N1owBIACAfSggdikgdUwgdIxCzAJBgNVBAYT # AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD # VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJ # cmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBF # U046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1w # IFNlcnZpY2WgghF4MIIHJzCCBQ+gAwIBAgITMwAAAeWPasDzPbQLowABAAAB5TAN # BgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv # bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 # aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAeFw0y # MzEwMTIxOTA3MzVaFw0yNTAxMTAxOTA3MzVaMIHSMQswCQYDVQQGEwJVUzETMBEG # A1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWlj # cm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBP # cGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjNCRDQt # NEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNl # MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAqXvgOtq7Y7osusk7cfJO # 871pdqL/943I/kwtZmuZQY04kw/AwjTxX3MF9E81y5yt4hhLIkeOQwhQaa6HSs9X # n/b5QIsas3U/vuf1+r+Z3Ncw3UXOpo8d0oSUqd4lDxHpw/h2u7YbKaa3WusZw17z # TQJwPp3812iiaaR3X3pWo62NkUDVda74awUF5YeJ7P8+WWpwz95ae2RAyzSUrTOY # J8f4G7uLWH4UNFHwXtbNSv/szeOFV0+kB+rbNgIDxlUs2ASLNj68WaDH7MO65T8Y # KEMruSUNwLD7+BWgS5I6XlyVCzJ1ZCMklftnbJX7UoLobUlWqk/d2ko8A//i502q # lHkch5vxNrUl+NFTNK/epKN7nL1FhP8CNY1hDuCx7O4NYz/xxnXWRyjUm9TI5DzH # 8kOQwWpJHCPW/6ZzosoqWP/91YIb8fD2ml2VYlfqmwN6xC5BHsVXt4KpX+V9qOgu # k83H/3MXV2/zJcF3OZYk94KJ7ZdpCesAoOqUbfNe7H201CbPYv3pN3Gcg7Y4aZjE # EABkBagpua1gj4KLPgJjI7QWblndPjRrl3som5+0XoJOhxxz9Sn+OkV9CK0t+N3v # VxL5wsJ6hD6rSfQgAu9X5pxsQ2i5I6uO/9C1jgUiMeUjnN0nMmcayRUnmjOGOLRh # Gxy/VbAkUC7LIIxC8t2Y910CAwEAAaOCAUkwggFFMB0GA1UdDgQWBBTf/5+Hu01z # MSJ8ReUJCAU5eAyHqjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJlpxtTNRnpcjBf # BgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3Bz # L2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAxMCgxKS5jcmww # bAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3Lm1pY3Jvc29m # dC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0El # MjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBYGA1UdJQEB/wQMMAoGCCsGAQUF # BwMIMA4GA1UdDwEB/wQEAwIHgDANBgkqhkiG9w0BAQsFAAOCAgEAM/rCE4WMPVp3 # waQQn2gsG69+Od0zIZD1HgeAEpKU+3elrRdUtyKasmUOcoaAUGJbAjpc6DDzaF2i # UOIwMEstZExMkdZV5RjWBThcHw44jEFz39DzfNvVzRFYS6mALjwj5v7bHZU2AYlS # xAjI9HY+JdCFPk/J6syBqD05Kh1CMXCk10aKudraulXbcRTAV47n7ehJfgl4I1m+ # DJQ7MqnIy+pVq5uj4aV/+mx9bm0hwyNlW3R6WzB+rSok1CChiKltpO+/vGaLFQkZ # NuLFiJ9PACK89wo116Kxma22zs4dsAzv3lm8otISpeJFSMNhnJ4fIDKwwQAtsiF1 # eAcSHrQqhnLOUFfPdXESKsTueG5w3Aza1WI6XAjsSR5TmG51y2dcIbnkm4zD/Bvt # zvVEqKZkD8peVamYG+QmQHQFkRLw4IYN37Nj9P0GdOnyyLfpOqXzhV+lh72IebLs # +qrGowXYKfirZrSYQyekGu4MYT+BH1zxJUnae2QBHLlJ+W64n8wHrXJG9PWZTHeX # Kmk7bZ4+MGOfCgS9XFsONPWOF0w116864N4kbNEsr0c2ZMML5N1lCWP5UyAibxl4 # QhE0XShq+IX5BlxRktbNZtirrIOiTwRkoWJFHmi0GgYu9pgWnEFlQTyacsq4OVih # uOvGHuWfCvFX98zLQX19KjYnEWa0uC0wggdxMIIFWaADAgECAhMzAAAAFcXna54C # m0mZAAAAAAAVMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UE # CBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9z # b2Z0IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZp # Y2F0ZSBBdXRob3JpdHkgMjAxMDAeFw0yMTA5MzAxODIyMjVaFw0zMDA5MzAxODMy # MjVaMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQH # EwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNV # BAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMIICIjANBgkqhkiG9w0B # AQEFAAOCAg8AMIICCgKCAgEA5OGmTOe0ciELeaLL1yR5vQ7VgtP97pwHB9KpbE51 # yMo1V/YBf2xK4OK9uT4XYDP/XE/HZveVU3Fa4n5KWv64NmeFRiMMtY0Tz3cywBAY # 6GB9alKDRLemjkZrBxTzxXb1hlDcwUTIcVxRMTegCjhuje3XD9gmU3w5YQJ6xKr9 # cmmvHaus9ja+NSZk2pg7uhp7M62AW36MEBydUv626GIl3GoPz130/o5Tz9bshVZN # 7928jaTjkY+yOSxRnOlwaQ3KNi1wjjHINSi947SHJMPgyY9+tVSP3PoFVZhtaDua # Rr3tpK56KTesy+uDRedGbsoy1cCGMFxPLOJiss254o2I5JasAUq7vnGpF1tnYN74 # kpEeHT39IM9zfUGaRnXNxF803RKJ1v2lIH1+/NmeRd+2ci/bfV+AutuqfjbsNkz2 # K26oElHovwUDo9Fzpk03dJQcNIIP8BDyt0cY7afomXw/TNuvXsLz1dhzPUNOwTM5 # TI4CvEJoLhDqhFFG4tG9ahhaYQFzymeiXtcodgLiMxhy16cg8ML6EgrXY28MyTZk # i1ugpoMhXV8wdJGUlNi5UPkLiWHzNgY1GIRH29wb0f2y1BzFa/ZcUlFdEtsluq9Q # BXpsxREdcu+N+VLEhReTwDwV2xo3xwgVGD94q0W29R6HXtqPnhZyacaue7e3Pmri # Lq0CAwEAAaOCAd0wggHZMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUC # BBYEFCqnUv5kxJq+gpE8RjUpzxD/LwTuMB0GA1UdDgQWBBSfpxVdAF5iXYP05dJl # pxtTNRnpcjBcBgNVHSAEVTBTMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIB # FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9y # eS5odG0wEwYDVR0lBAwwCgYIKwYBBQUHAwgwGQYJKwYBBAGCNxQCBAweCgBTAHUA # YgBDAEEwCwYDVR0PBAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU # 1fZWy4/oolxiaNE9lJBb186aGMQwVgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDovL2Ny # bC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIw # MTAtMDYtMjMuY3JsMFoGCCsGAQUFBwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0cDov # L3d3dy5taWNyb3NvZnQuY29tL3BraS9jZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0w # Ni0yMy5jcnQwDQYJKoZIhvcNAQELBQADggIBAJ1VffwqreEsH2cBMSRb4Z5yS/yp # b+pcFLY+TkdkeLEGk5c9MTO1OdfCcTY/2mRsfNB1OW27DzHkwo/7bNGhlBgi7ulm # ZzpTTd2YurYeeNg2LpypglYAA7AFvonoaeC6Ce5732pvvinLbtg/SHUB2RjebYIM # 9W0jVOR4U3UkV7ndn/OOPcbzaN9l9qRWqveVtihVJ9AkvUCgvxm2EhIRXT0n4ECW # OKz3+SmJw7wXsFSFQrP8DJ6LGYnn8AtqgcKBGUIZUnWKNsIdw2FzLixre24/LAl4 # FOmRsqlb30mjdAy87JGA0j3mSj5mO0+7hvoyGtmW9I/2kQH2zsZ0/fZMcm8Qq3Uw # xTSwethQ/gpY3UA8x1RtnWN0SCyxTkctwRQEcb9k+SS+c23Kjgm9swFXSVRk2XPX # fx5bRAGOWhmRaw2fpCjcZxkoJLo4S5pu+yFUa2pFEUep8beuyOiJXk+d0tBMdrVX # VAmxaQFEfnyhYWxz/gq77EFmPWn9y8FBSX5+k77L+DvktxW/tM4+pTFRhLy/AsGC # onsXHRWJjXD+57XQKBqJC4822rpM+Zv/Cuk0+CQ1ZyvgDbjmjJnW4SLq8CdCPSWU # 5nR0W2rRnj7tfqAxM328y+l7vzhwRNGQ8cirOoo6CGJ/2XBjU02N7oJtpQUQwXEG # ahC0HVUzWLOhcGbyoYIC1DCCAj0CAQEwggEAoYHYpIHVMIHSMQswCQYDVQQGEwJV # UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE # ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJl # bGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNO # OjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBT # ZXJ2aWNloiMKAQEwBwYFKw4DAhoDFQD3jaIa5gWuwTjDNYN3zkSkzpGLCqCBgzCB # gKR+MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQH # EwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNV # BAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUA # AgUA6edhjjAiGA8yMDI0MDUwOTIyNTE1OFoYDzIwMjQwNTEwMjI1MTU4WjB0MDoG # CisGAQQBhFkKBAExLDAqMAoCBQDp52GOAgEAMAcCAQACAhE3MAcCAQACAhIKMAoC # BQDp6LMOAgEAMDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEA # AgMHoSChCjAIAgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAMj1BMq6wJJAsI5MP # WEm7VLJstWmd/NZOcaEHX7QyevZjolllRLnnoKR1q4TLgITj/cce3kBDnguLC4BO # NJcL4GQzaGfR4VTAGXnfvug6Fr72fU6CFF9InT/KZerSo31O6KhUNfZS7qWns12L # c5VoIc4zVESb2dMHUXCXbmdyv0UxggQNMIIECQIBATCBkzB8MQswCQYDVQQGEwJV # UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE # ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGlt # ZS1TdGFtcCBQQ0EgMjAxMAITMwAAAeWPasDzPbQLowABAAAB5TANBglghkgBZQME # AgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJ # BDEiBCAhw95JQQ6Vdr3y2mKqUJ7nQ6VAdEb5MOrl8zz6ldie7TCB+gYLKoZIhvcN # AQkQAi8xgeowgecwgeQwgb0EIBWp0//+qPEYWF7ZhugRd5vwj+kCh/TULCFvFQf1 # Tr3tMIGYMIGApH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24x # EDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlv # bjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAHl # j2rA8z20C6MAAQAAAeUwIgQgOvtvy485ANOYnuyc7CXyABm1aYzjuGf+cGgW/Jm8 # OWswDQYJKoZIhvcNAQELBQAEggIACJpnC7Gn8+p+S0UPTu3AlTDFZXafVII/qtzc # B3A861jQcuYcM5y4YC7OB1+f+n0Gw+KahROv/yggLqS42quBaYFcQ4032vk5wLp4 # 8563K632S9lmZFzQJRP+tk/52U2i8RIJCbVQCxbtzHtqO3yRbhrMWkGo7Cc6Ule4 # f5GxEhdIXRxf/p1gbaNtRixrQjtxKuMRRcLqkK+jZUdjFjZ4qOGw/A8BsPP4tpZg # p8dRHAPpWQS5XSxjN77NTmBOUMGHDYL9Dl9Y8+6Qum2LFd7iLK6DHNICXSeSVjvD # wGeTsH7ZU3TSDP6LwRaKMBgyu4TF+dlC8QPfcBStTbBgnHRd6WJXhIteYRN3ZC0b # 0ZG2HnbrIEqfYdxTLWYgQ1L9iFV8u4t3pznmSITlXpysbWFFyTi7fugvJnEKnNdE # nz3jFB6UnhKK4qaRDYB1MVbtfFtBprC4gwh4KYOm4Zh/JXgaVwErLAevggqKe47R # GEQRBe6mKnZRK/wyq0CNduDtilUljKgBBKw6GKq6mWd0LKdTt4JfIvkrOPnrydnh # 67XspE08wPfyTru6BqScGL6iTPWuhGOP/PHc6SN3RB+GiE4Sk8tjJbiYQq76Yx9/ # HCgPp+EJDM1sYno4TtzmS5DJYLvY7dW0JgNUJz+/nbezjpEEz+TOh+fzOS4b2Ivb # o01rcqI= # SIG # End signature block |