forked from dwj7738/My-Powershell-Repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscirptsManageWMIFilters.ps1
More file actions
391 lines (339 loc) · 18.4 KB
/
scirptsManageWMIFilters.ps1
File metadata and controls
391 lines (339 loc) · 18.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
<#
This script will Create, Import and Export Group Policy WMI Filters
Syntax examples:
Create:
ManageWMIFilters.ps1 -Action Create -ReferenceFile DefaultWMIFilters.csv
Export:
ManageWMIFilters.ps1 -Action Export -ReferenceFile WMIFiltersExport.csv
Import:
ManageWMIFilters.ps1 -Action Import -ReferenceFile WMIFiltersExport.csv
It was originally based on the following three scripts:
1) Using Powershell to Automatically Create WMI Filters:
http://gallery.technet.microsoft.com/scriptcenter/f1491111-9f5d-4c83-b436-537eca9e8d94
2) Exporting and Importing WMI Filters with PowerShell: Part 1, Export:
http://blogs.technet.com/b/manny/archive/2012/02/04/perform-a-full-export-and-import-of-wmi-filters-with-powershell.aspx
3) Exporting and Importing WMI Filters with PowerShell: Part 2, Import:
http://blogs.technet.com/b/manny/archive/2012/02/05/exporting-and-importing-wmi-filters-with-powershell-part-2-import.aspx
Another great reference:
- Digging Into Group Policy WMI Filters and Managing them through PowerShell
http://sdmsoftware.com/group-policy-blog/gpmc/digging-into-group-policy-wmi-filters-and-managing-them-through-powershell/
I left the code as 3 separate modules so that it can be easily split and
reused if preferred. Hence the reason why there is currently some duplicate
code between the create and import sections.
Modified all code to completely remove the requirement for the Active
Directory PowerShell Module.
Fixed an issue where it was not calculating the length of the supplied
namespace. ie. The script would only import correctly if the namespace was
root\CIMv2. But when using the root\virtualization namespace it would fail.
This is actually an error found in all GPO WMI creation script I've found.
They all assume that root\CIMv2 is the only namespace used.
If your Active Directory is based on Windows 2003 or has been upgraded
from Windows 2003, you may may have an issue with System Owned Objects.
Importing or adding a WMI Filter object into AD used to be a system only
operation. So you previously needed to enable system only changes on a
domain controller for a successful ldifde import.
If this is the case you will need to set the following registry value:
Key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\NTDS\Parameters
Type: REG_DWORD
Value: Allow System Only Change
Data: 1
Release 1.3
Written by Jeremy@jhouseconsulting.com 11th September 2013
Modified by Jeremy@jhouseconsulting.com 9th June 2014
#>
#-------------------------------------------------------------
param([String]$Action,[String]$ReferenceFile)
Write-Host -ForegroundColor Green "Verifying script parameters...`n"
$helptext = $False
if ([String]::IsNullOrEmpty($Action)) {
write-host -ForeGroundColor Red "Action is a required parameter.`n"
$helptext = $True
} else {
switch ($Action)
{
"Create" {$Create = $true;$Import = $false;$Export = $false}
"Import" {$Create = $false;$Import = $true;$Export = $false}
"Export" {$Create = $false;$Import = $false;$Export = $true}
default {$Create = $false;$Import = $false;$Export = $false}
}
if ($Create -eq $false -AND $Import -eq $false -AND $Export -eq $false) {
write-host -ForeGroundColor Red "The Action parameter is invalid.`n"
$helptext = $True
}
}
if ([String]::IsNullOrEmpty($ReferenceFile)) {
write-host -ForeGroundColor Red "ReferenceFile is a required parameter. Exiting Script.`n"
$helptext = $True
}
If ($helptext) {
$Message = "Syntax examples:"
$Message = $Message + "`n`tCreate:"
$Message = $Message + "`n`t`tManageWMIFilters.ps1 -Action Create -ReferenceFile DefaultWMIFilters.csv"
$Message = $Message + "`n`tExport:"
$Message = $Message + "`n`t`tManageWMIFilters.ps1 -Action Export -ReferenceFile WMIFiltersExport.csv"
$Message = $Message + "`n`tImport:"
$Message = $Message + "`n`t`tManageWMIFilters.ps1 -Action Import -ReferenceFile WMIFiltersExport.csv"
write-host -ForeGroundColor Green $Message
write-host -ForeGroundColor Red "`nExiting Script."
Exit
}
#-------------------------------------------------------------
# Set this to true to set the Allow System Only Change registry value
$EnableAllowSystemOnlyChange = $False
#-------------------------------------------------------------
function Enable-ADSystemOnlyChange([switch] $disable)
{
# This function has been taken directly from the GPWmiFilter.psm1
# module written by Bin Yi from Microsoft.
$valueData = 1
if ($disable)
{
$valueData = 0
}
$key = Get-Item HKLM:\System\CurrentControlSet\Services\NTDS\Parameters -ErrorAction SilentlyContinue
if (!$key) {
New-Item HKLM:\System\CurrentControlSet\Services\NTDS\Parameters -ItemType RegistryKey | Out-Null
}
$kval = Get-ItemProperty HKLM:\System\CurrentControlSet\Services\NTDS\Parameters -Name "Allow System Only Change" -ErrorAction SilentlyContinue
if (!$kval) {
New-ItemProperty HKLM:\System\CurrentControlSet\Services\NTDS\Parameters -Name "Allow System Only Change" -Value $valueData -PropertyType DWORD | Out-Null
} else {
Set-ItemProperty HKLM:\System\CurrentControlSet\Services\NTDS\Parameters -Name "Allow System Only Change" -Value $valueData | Out-Null
}
}
#-------------------------------------------------------------
If ($Import -eq $true) {
if ((Test-Path $ReferenceFile) -eq $False) {
Write-Host -ForegroundColor Red "The $ReferenceFile file is missing. Cannot import WMI Filters.`n"
exit
}
$Header = "Name","Description","Filter"
$WMIFilters = import-csv $ReferenceFile -Delimiter "`t" -Header $Header
$RowCount = $WMIFilters | Measure-Object | Select-Object -expand count
if ($RowCount -gt 0) {
write-host -ForeGroundColor Green "Importing $RowCount WMI Filters`n"
$Domain = [System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain()
$DomainName = $Domain.Name
$DomainDistinguishedName = $Domain.GetDirectoryEntry() | Select-Object -ExpandProperty DistinguishedName
$UseAdministrator = $False
If ($UseAdministrator -eq $False) {
$msWMIAuthor = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name
} Else {
$msWMIAuthor = "Administrator@" + $DomainName
}
foreach ($WMIFilter in $WMIFilters) {
$WMIGUID = [string]"{"+([System.Guid]::NewGuid())+"}"
$WMIDN = "CN="+$WMIGUID+",CN=SOM,CN=WMIPolicy,CN=System,"+$DomainDistinguishedName
$WMICN = $WMIGUID
$WMIdistinguishedname = $WMIDN
$WMIID = $WMIGUID
$now = (Get-Date).ToUniversalTime()
$msWMICreationDate = ($now.Year).ToString("0000") + ($now.Month).ToString("00") + ($now.Day).ToString("00") + ($now.Hour).ToString("00") + ($now.Minute).ToString("00") + ($now.Second).ToString("00") + "." + ($now.Millisecond * 1000).ToString("000000") + "-000"
$msWMIName = $WMIFilter.Name
$msWMIParm1 = $WMIFilter.Description + " "
$msWMIParm2 = $WMIFilter.Filter
$array = @()
$SearchRoot = [adsi]("LDAP://CN=SOM,CN=WMIPolicy,CN=System,"+$DomainDistinguishedName)
$search = new-object System.DirectoryServices.DirectorySearcher($SearchRoot)
$search.filter = "(objectclass=msWMI-Som)"
$results = $search.FindAll()
ForEach ($result in $results) {
$array += $result.properties["mswmi-name"].item(0)
}
if ($array -notcontains $msWMIName) {
write-host -ForeGroundColor Green "Importing the $msWMIName WMI Filter from $ReferenceFile`n"
If ($EnableAllowSystemOnlyChange) {
Enable-ADSystemOnlyChange
}
$SOMContainer = [adsi]("LDAP://CN=SOM,CN=WMIPolicy,CN=System,"+$DomainDistinguishedName)
$NewWMIFilter = $SOMContainer.create('msWMI-Som',"CN="+$WMIGUID)
$NewWMIFilter.put("msWMI-Name",$msWMIName)
$NewWMIFilter.put("msWMI-Parm1",$msWMIParm1)
$NewWMIFilter.put("msWMI-Parm2",$msWMIParm2)
$NewWMIFilter.put("msWMI-Author",$msWMIAuthor)
$NewWMIFilter.put("msWMI-ID",$WMIID)
$NewWMIFilter.put("instanceType",4)
$NewWMIFilter.put("showInAdvancedViewOnly","TRUE")
$NewWMIFilter.put("distinguishedname",$WMIdistinguishedname)
$NewWMIFilter.put("msWMI-ChangeDate",$msWMICreationDate)
$NewWMIFilter.put("msWMI-CreationDate",$msWMICreationDate)
$NewWMIFilter.setinfo()
} Else {
write-host -ForeGroundColor Yellow "The $msWMIName WMI Filter already exists`n"
}
}
} else {
Write-Host -ForegroundColor Red "The data in the $ReferenceFile file is missing.`n"
}
}
#-------------------------------------------------------------
If ($Export -eq $true) {
set-content $ReferenceFile $NULL
$WMIFilters = @()
$Domain = [System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain()
$DomainName = $Domain.Name
$DomainDistinguishedName = $Domain.GetDirectoryEntry() | Select-Object -ExpandProperty DistinguishedName
$SearchRoot = [adsi]("LDAP://CN=SOM,CN=WMIPolicy,CN=System,"+$DomainDistinguishedName)
$search = new-object System.DirectoryServices.DirectorySearcher($SearchRoot)
$search.filter = "(objectclass=msWMI-Som)"
$results = $search.FindAll()
ForEach ($result in $results) {
$obj = New-Object -TypeName PSObject
$obj | Add-Member -MemberType NoteProperty -Name "DistinguishedName" -value $result.properties["distinguishedname"].item(0)
$obj | Add-Member -MemberType NoteProperty -Name "msWMI-Name" -value $result.properties["mswmi-name"].item(0)
$obj | Add-Member -MemberType NoteProperty -Name "msWMI-Parm1" -value $result.properties["mswmi-parm1"].item(0)
$obj | Add-Member -MemberType NoteProperty -Name "msWMI-Parm2" -value $result.properties["mswmi-parm2"].item(0)
$obj | Add-Member -MemberType NoteProperty -Name "Name" -value $result.properties["name"].item(0)
$WMIFilters += $obj
}
$RowCount = $WMIFilters | Measure-Object | Select-Object -expand count
if ($RowCount -ne 0) {
write-host -ForeGroundColor Green "Exporting $RowCount WMI Filters`n"
foreach ($WMIFilter in $WMIFilters) {
write-host -ForeGroundColor Green "Exporting the" $WMIFilter."msWMI-Name" "WMI Filter to $ReferenceFile`n"
$NewContent = $WMIFilter."msWMI-Name" + "`t" + $WMIFilter."msWMI-Parm1" + "`t" + $WMIFilter."msWMI-Parm2"
add-content $NewContent -path $ReferenceFile
}
write-host -ForeGroundColor Green "An export of the WMI Filters has been stored at $ReferenceFile`n"
} else {
write-host -ForeGroundColor Green "There are no WMI Filters to export`n"
}
}
#-------------------------------------------------------------
If ($Create -eq $true) {
if ((Test-Path $ReferenceFile) -eq $False) {
Write-Host -ForegroundColor Red "The $ReferenceFile file is missing. Cannot create WMI Filters.`n"
exit
}
$Domain = [System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain()
$DomainName = $Domain.Name
$DomainDistinguishedName = $Domain.GetDirectoryEntry() | Select-Object -ExpandProperty DistinguishedName
$UseAdministrator = $False
If ($UseAdministrator -eq $False) {
$msWMIAuthor = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name
} Else {
$msWMIAuthor = "Administrator@" + $DomainName
}
# Import WMI Filters From CSV
# Name,Description,Filter
$WMIFilters = import-csv $ReferenceFile
$RowCount = $WMIFilters | Measure-Object | Select-Object -expand count
if ($RowCount -gt 0) {
write-host -ForeGroundColor Green "Creating $RowCount WMI Filters`n"
foreach ($WMIFilter in $WMIFilters) {
$WMIGUID = [string]"{"+([System.Guid]::NewGuid())+"}"
$WMIDN = "CN="+$WMIGUID+",CN=SOM,CN=WMIPolicy,CN=System,"+$DomainDistinguishedName
$WMICN = $WMIGUID
$WMIdistinguishedname = $WMIDN
$WMIID = $WMIGUID
$now = (Get-Date).ToUniversalTime()
$msWMICreationDate = ($now.Year).ToString("0000") + ($now.Month).ToString("00") + ($now.Day).ToString("00") + ($now.Hour).ToString("00") + ($now.Minute).ToString("00") + ($now.Second).ToString("00") + "." + ($now.Millisecond * 1000).ToString("000000") + "-000"
$msWMIName = $WMIFilter.Name
$msWMIParm1 = $WMIFilter.Description + " "
$msWMIParm2 = "1;3;" + $WMIFilter.Namespace.Length.ToString() + ";" + $WMIFilter.Query.Length.ToString() + ";WQL;" + $WMIFilter.Namespace + ";" + $WMIFilter.Query + ";"
$array = @()
$SearchRoot = [adsi]("LDAP://CN=SOM,CN=WMIPolicy,CN=System,"+$DomainDistinguishedName)
$search = new-object System.DirectoryServices.DirectorySearcher($SearchRoot)
$search.filter = "(objectclass=msWMI-Som)"
$results = $search.FindAll()
ForEach ($result in $results) {
$array += $result.properties["mswmi-name"].item(0)
}
if ($array -notcontains $msWMIName) {
write-host -ForeGroundColor Green "Creating the $msWMIName WMI Filter from $ReferenceFile`n"
If ($EnableAllowSystemOnlyChange) {
Enable-ADSystemOnlyChange
}
$SOMContainer = [adsi]("LDAP://CN=SOM,CN=WMIPolicy,CN=System,"+$DomainDistinguishedName)
$NewWMIFilter = $SOMContainer.create('msWMI-Som',"CN="+$WMIGUID)
$NewWMIFilter.put("msWMI-Name",$msWMIName)
$NewWMIFilter.put("msWMI-Parm1",$msWMIParm1)
$NewWMIFilter.put("msWMI-Parm2",$msWMIParm2)
$NewWMIFilter.put("msWMI-Author",$msWMIAuthor)
$NewWMIFilter.put("msWMI-ID",$WMIID)
$NewWMIFilter.put("instanceType",4)
$NewWMIFilter.put("showInAdvancedViewOnly","TRUE")
$NewWMIFilter.put("distinguishedname",$WMIdistinguishedname)
$NewWMIFilter.put("msWMI-ChangeDate",$msWMICreationDate)
$NewWMIFilter.put("msWMI-CreationDate",$msWMICreationDate)
$NewWMIFilter.setinfo()
} Else {
write-host -ForeGroundColor Yellow "The $msWMIName WMI Filter already exists`n"
}
}
} else {
Write-Host -ForegroundColor Red "The data in the $ReferenceFile file is missing.`n"
}
}
# SIG # Begin signature block
# MIINGAYJKoZIhvcNAQcCoIINCTCCDQUCAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB
# gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR
# AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQU2/3V7jkC4NvGrKjbl/ffAe03
# 8OCgggpaMIIFIjCCBAqgAwIBAgIQAupQIxjzGlMFoE+9rHncOTANBgkqhkiG9w0B
# AQsFADByMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYD
# VQQLExB3d3cuZGlnaWNlcnQuY29tMTEwLwYDVQQDEyhEaWdpQ2VydCBTSEEyIEFz
# c3VyZWQgSUQgQ29kZSBTaWduaW5nIENBMB4XDTE0MDcxNzAwMDAwMFoXDTE1MDcy
# MjEyMDAwMFowaTELMAkGA1UEBhMCQ0ExCzAJBgNVBAgTAk9OMREwDwYDVQQHEwhI
# YW1pbHRvbjEcMBoGA1UEChMTRGF2aWQgV2F5bmUgSm9obnNvbjEcMBoGA1UEAxMT
# RGF2aWQgV2F5bmUgSm9obnNvbjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
# ggEBAM3+T+61MoGxUHnoK0b2GgO17e0sW8ugwAH966Z1JIzQvXFa707SZvTJgmra
# ZsCn9fU+i9KhC0nUpA4hAv/b1MCeqGq1O0f3ffiwsxhTG3Z4J8mEl5eSdcRgeb+1
# jaKI3oHkbX+zxqOLSaRSQPn3XygMAfrcD/QI4vsx8o2lTUsPJEy2c0z57e1VzWlq
# KHqo18lVxDq/YF+fKCAJL57zjXSBPPmb/sNj8VgoxXS6EUAC5c3tb+CJfNP2U9vV
# oy5YeUP9bNwq2aXkW0+xZIipbJonZwN+bIsbgCC5eb2aqapBgJrgds8cw8WKiZvy
# Zx2qT7hy9HT+LUOI0l0K0w31dF8CAwEAAaOCAbswggG3MB8GA1UdIwQYMBaAFFrE
# uXsqCqOl6nEDwGD5LfZldQ5YMB0GA1UdDgQWBBTnMIKoGnZIswBx8nuJckJGsFDU
# lDAOBgNVHQ8BAf8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwMwdwYDVR0fBHAw
# bjA1oDOgMYYvaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItYXNzdXJlZC1j
# cy1nMS5jcmwwNaAzoDGGL2h0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zaGEyLWFz
# c3VyZWQtY3MtZzEuY3JsMEIGA1UdIAQ7MDkwNwYJYIZIAYb9bAMBMCowKAYIKwYB
# BQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwgYQGCCsGAQUFBwEB
# BHgwdjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tME4GCCsG
# AQUFBzAChkJodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEy
# QXNzdXJlZElEQ29kZVNpZ25pbmdDQS5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG
# 9w0BAQsFAAOCAQEAVlkBmOEKRw2O66aloy9tNoQNIWz3AduGBfnf9gvyRFvSuKm0
# Zq3A6lRej8FPxC5Kbwswxtl2L/pjyrlYzUs+XuYe9Ua9YMIdhbyjUol4Z46jhOrO
# TDl18txaoNpGE9JXo8SLZHibwz97H3+paRm16aygM5R3uQ0xSQ1NFqDJ53YRvOqT
# 60/tF9E8zNx4hOH1lw1CDPu0K3nL2PusLUVzCpwNunQzGoZfVtlnV2x4EgXyZ9G1
# x4odcYZwKpkWPKA4bWAG+Img5+dgGEOqoUHh4jm2IKijm1jz7BRcJUMAwa2Qcbc2
# ttQbSj/7xZXL470VG3WjLWNWkRaRQAkzOajhpTCCBTAwggQYoAMCAQICEAQJGBtf
# 1btmdVNDtW+VUAgwDQYJKoZIhvcNAQELBQAwZTELMAkGA1UEBhMCVVMxFTATBgNV
# BAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEkMCIG
# A1UEAxMbRGlnaUNlcnQgQXNzdXJlZCBJRCBSb290IENBMB4XDTEzMTAyMjEyMDAw
# MFoXDTI4MTAyMjEyMDAwMFowcjELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lD
# ZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTExMC8GA1UEAxMoRGln
# aUNlcnQgU0hBMiBBc3N1cmVkIElEIENvZGUgU2lnbmluZyBDQTCCASIwDQYJKoZI
# hvcNAQEBBQADggEPADCCAQoCggEBAPjTsxx/DhGvZ3cH0wsxSRnP0PtFmbE620T1
# f+Wondsy13Hqdp0FLreP+pJDwKX5idQ3Gde2qvCchqXYJawOeSg6funRZ9PG+ykn
# x9N7I5TkkSOWkHeC+aGEI2YSVDNQdLEoJrskacLCUvIUZ4qJRdQtoaPpiCwgla4c
# SocI3wz14k1gGL6qxLKucDFmM3E+rHCiq85/6XzLkqHlOzEcz+ryCuRXu0q16XTm
# K/5sy350OTYNkO/ktU6kqepqCquE86xnTrXE94zRICUj6whkPlKWwfIPEvTFjg/B
# ougsUfdzvL2FsWKDc0GCB+Q4i2pzINAPZHM8np+mM6n9Gd8lk9ECAwEAAaOCAc0w
# ggHJMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMBMGA1UdJQQM
# MAoGCCsGAQUFBwMDMHkGCCsGAQUFBwEBBG0wazAkBggrBgEFBQcwAYYYaHR0cDov
# L29jc3AuZGlnaWNlcnQuY29tMEMGCCsGAQUFBzAChjdodHRwOi8vY2FjZXJ0cy5k
# aWdpY2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3J0MIGBBgNVHR8E
# ejB4MDqgOKA2hjRodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vRGlnaUNlcnRBc3N1
# cmVkSURSb290Q0EuY3JsMDqgOKA2hjRodHRwOi8vY3JsMy5kaWdpY2VydC5jb20v
# RGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3JsME8GA1UdIARIMEYwOAYKYIZIAYb9
# bAACBDAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BT
# MAoGCGCGSAGG/WwDMB0GA1UdDgQWBBRaxLl7KgqjpepxA8Bg+S32ZXUOWDAfBgNV
# HSMEGDAWgBRF66Kv9JLLgjEtUYunpyGd823IDzANBgkqhkiG9w0BAQsFAAOCAQEA
# PuwNWiSz8yLRFcgsfCUpdqgdXRwtOhrE7zBh134LYP3DPQ/Er4v97yrfIFU3sOH2
# 0ZJ1D1G0bqWOWuJeJIFOEKTuP3GOYw4TS63XX0R58zYUBor3nEZOXP+QsRsHDpEV
# +7qvtVHCjSSuJMbHJyqhKSgaOnEoAjwukaPAJRHinBRHoXpoaK+bp1wgXNlxsQyP
# u6j4xRJon89Ay0BEpRPw5mQMJQhCMrI2iiQC/i9yfhzXSUWW6Fkd6fp0ZGuy62ZD
# 2rOwjNXpDd32ASDOmTFjPQgaGLOBm0/GkxAG/AeB+ova+YJJ92JuoVP6EpQYhS6S
# kepobEQysmah5xikmmRR7zGCAigwggIkAgEBMIGGMHIxCzAJBgNVBAYTAlVTMRUw
# EwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20x
# MTAvBgNVBAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBDb2RlIFNpZ25pbmcg
# Q0ECEALqUCMY8xpTBaBPvax53DkwCQYFKw4DAhoFAKB4MBgGCisGAQQBgjcCAQwx
# CjAIoAKAAKECgAAwGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGC
# NwIBCzEOMAwGCisGAQQBgjcCARUwIwYJKoZIhvcNAQkEMRYEFL7u9krXQkqSg3rm
# 0OPg+I+DJuGnMA0GCSqGSIb3DQEBAQUABIIBAFz197lCrVYp42etCKLOPNJ5XSnY
# 1Ag2q5oPRxmT4qLNuZ1KNWMfJU3u7Zi3W8NgqwbUN1MyIbNvaUa54JlgAMcwOXKi
# useqwKIcurH4ZqUNalLjI4r7t7mI4R/X0mLLxuBSWJHjnNiYOofU+RPUH0bPssTO
# uTmV58miMsUWuYmbKXsY5T6YwmxxJ2n4ZOWQgXHO+fWjxJeN9HMLEitv3XYMKsc0
# bZd3yOfz8lHuOlOjnzkXXQIibjw837FfXf9TOVawAyn9dbyfVJBnrP91g8rgR1Fm
# GXOeSrnlnWMZwTWiYoZ3AWhpgldaHc6SbvfCwCWslWFR5MvtrLJlovFectY=
# SIG # End signature block