-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathevent aggregator.ps1
514 lines (425 loc) · 19.4 KB
/
event aggregator.ps1
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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
<#
Get all events from all event logs in a given time window and output to grid view or csv
@guyrleech 2019
Modification History
24/07/19 GRL Added -last parameter, defaulted -end if not specified and verification of times/dates
02/09/19 GRL Added -passThru, -duration, -overwrite , -nogridview and pass thru for grid view
17/09/19 GRL Extra parameter validation
12/12/19 GRL Added -ids , -excludeProvider and -excludeIds parameters
26/02/20 GRL Changed -computer to take array
27/02/20 GRL Added -message and -ignore parameters
03/06/20 GRL Added -boot option
05/06/20 GRL Added user name,sid, pid and tid
20/07/20 GRL Added -provider argument
22/07/20 GRL Fixed duplicate entries produced by duplicate events logs returned for providers
25/09/20 GRL Added minutes past hour functionality for troubleshooting recurring problems
31/05/21 GRL Added -credential parameter
07/06/21 GRL Bug fix for checking -minutes when using -minutesPastHour
#>
<#
.SYNOPSIS
Retrieve all events from all 300+ event logs in a given time/date range and show in a sortable/filterable gridview or export to csv
.PARAMETER start
The start time/date to show events from. If no date is given then the current day is used.
.PARAMETER end
The end time/date to show events from. If no date is given then the current day is used.
.PARAMETER last
Show events logged in the preceding period where 's' is seconds, 'm' is minutes, 'h' is hours, 'd' is days, 'w' is weeks and 'y' is years so 12h will retrieve all in the last 12 hours.
.PARAMETER duration
Show events logged from the start specified via -start for the specified period where 's' is seconds, 'm' is minutes, 'h' is hours, 'd' is days, 'w' is weeks and 'y' is years so 2m will retrieve events for 2 minutes from the given start time
.PARAMETER credential
Credential to use to remote to the specified computer(s). If $null is passed, a credential will be prompted for.
.PARAMETER message
Only include events where the message matches the regular expression specified
.PARAMETER ignore
Exclude events where the message matches the regular expression specified
.PARAMETER ids
only include events which have ids in this comma separated list of event ids
.PARAMETER excludeids
Exclude events which have ids in this comma separated list of event ids
.PARAMETER excludeProvider
Exclude events from any provider which matches this regular expression
.PARAMETER csv
The name of a non-existent csv file to write the results to. If not specified then the results will go to an on screne grid view
.PARAMETER badOnly
Only show critical, warning and error events. If not specified then all events will be shown.
.PARAMETER noGridView
Write the events found as objects to the pipeline
.PARAMETER overWrite
Overwrite the csv file if it exists already
.PARAMETER passThru
Selected items in the grid view when OK is clicked will be placed on the pipeline so can be put on clipboard for example
.PARAMETER minutesPastHour
Only include events after this number of minutes past the hour and for the number of minutes specified by -minutes.
.PARAMETER minutes
Only include events before this number of minutes past the hour when added to the minutes specified by -minutesPastHour.
.PARAMETER provider
The name, or pattern, for an event log source/provider to only return events from that
.PARAMETER eventLogs
A pattern matching the event logs to search. By default all event logs are searched.
.PARAMETER computer
One or more remote computers to query. If not specified then the local computer is used.
.EXAMPLE
& '.\event aggregator.ps1' -start 10:38 -end 10:45 -badOnly
Show all critical, warning and error events that occurred between 10:38 and 10:45 today in an on screen gridview
.EXAMPLE
& '.\event aggregator.ps1' -start 07:57 -minutesPastHour 57 -minutes 1.75
Show all events that occurred since 0757 today but only those that occurred between 57:00 minutes and 58:45 past the hour in an on screen gridview
.EXAMPLE
& '.\event aggregator.ps1' -start "10:38 29/06/19" -end "10:45 29/06/19" -csv c:\badevents.csv
Export all events that occurred between 10:38 and 10:45 on the 29th June 2019 top the named csv file
.EXAMPLE
& '.\event aggregator.ps1' -last 5m -Computers fred,bloggs
Show allevents that occurred in the last 5 minutes on computers "fred" and "bloggs" in an on screen gridview
.EXAMPLE
& '.\event aggregator.ps1' -start 10:40 -duration 2m -eventLogs *shell-core/operational*
Show events from the specified event log that occurred between 10:40 and 10:42 today in an on screen gridview
.EXAMPLE
& '.\event aggregator.ps1' -start 10:40 -duration 2m -excludeids 405,3209 -excludeProvider 'kernel|security'
Show events from the specified event log that occurred between 10:40 and 10:42 today in an on screen gridview but exclude events with ids 405 or 3209 and exclude events which match the regular expression so where the provider matches 'kernel' or 'security'
#>
[CmdletBinding()]
Param
(
[Parameter(ParameterSetName='BootTime' ,Mandatory,HelpMessage='Start from boot time')]
[switch]$boot ,
[Parameter(ParameterSetName='StartTime',Mandatory,HelpMessage='Start time/date for event search')]
[string]$start ,
[Parameter(ParameterSetName='StartTime')]
[Parameter(ParameterSetName='BootTime')]
[string]$end ,
[Parameter(ParameterSetName='StartTime')]
[Parameter(ParameterSetName='BootTime')]
[string]$duration ,
[Parameter(ParameterSetName='Last',Mandatory,HelpMessage='Search for events in last seconds/minutes/hours/days/weeks/years')]
[string]$last ,
[double]$minutesPastHour ,
[double]$minutes ,
[int[]]$ids ,
[int[]]$excludeIds ,
[string]$excludeProvider ,
[string]$provider ,
[string]$message ,
[string]$ignore ,
[string]$csv ,
[switch]$badOnly ,
[string]$eventLogs = '*' ,
[switch]$noGridView ,
[switch]$overWrite ,
[switch]$passThru ,
[PSCredential]$credential ,
[string[]]$computer = @( 'localhost' )
)
Function Out-PassThru
{
Process
{
$_
}
}
[hashtable]$arguments = @{}
[string]$command = $null
if( $PSBoundParameters[ 'last' ] )
{
if( $PSBoundParameters[ 'start' ] -or $PSBoundParameters[ 'end' ] -or $PSBoundParameters[ 'boot' ] )
{
Throw 'Cannot use -start, -boot or -end with -last'
}
## see what last character is as will tell us what units to work with
[int]$multiplier = 0
switch( $last[-1] )
{
's' { $multiplier = 1 }
'm' { $multiplier = 60 }
'h' { $multiplier = 3600 }
'd' { $multiplier = 86400 }
'w' { $multiplier = 86400 * 7 }
'y' { $multiplier = 86400 * 365 }
default { Throw "Unknown multiplier `"$($last[-1])`"" }
}
Remove-Variable -Name 'End'
[datetime]$script:end = Get-Date
if( $last.Length -le 1 )
{
$secondsAgo = $multiplier
}
else
{
$secondsAgo = ( ( $last.Substring( 0 , $last.Length - 1 ) -as [decimal] ) * $multiplier )
}
Remove-Variable -Name 'Start'
[datetime]$script:start = $end.AddSeconds( -$secondsAgo )
}
else
{
$parsed = $null
if( $PSBoundParameters[ 'boot' ] )
{
if( $lastbooted = Get-WmiObject -Class Win32_operatingsystem | Select-Object -ExpandProperty LastBootUpTime )
{
$parsed = ([WMI] '').ConvertToDateTime( $lastbooted )
}
else
{
Throw 'Failed to get last boot time via WMI'
}
}
else
{
## Check time formats as bad ones get stripped by query so search whole event log
$parsed = New-Object -TypeName 'DateTime'
if( ! [datetime]::TryParse( $start , [ref]$parsed ) )
{
Throw "Invalid start time/date `"$start`""
}
}
if( $parsed )
{
Remove-Variable -Name 'Start'
[datetime]$script:start = $parsed
}
if( $PSBoundParameters[ 'duration' ] )
{
if( $PSBoundParameters[ 'end' ] )
{
Throw 'Cannot use both -duration and -end'
}
[int]$multiplier = 0
switch( $duration[-1] )
{
's' { $multiplier = 1 }
'm' { $multiplier = 60 }
'h' { $multiplier = 3600 }
'd' { $multiplier = 86400 }
'w' { $multiplier = 86400 * 7 }
'y' { $multiplier = 86400 * 365 }
default { Throw "Unknown multiplier `"$($duration[-1])`"" }
}
if( $duration.Length -le 1 )
{
$secondsDuration = $multiplier
}
else
{
$secondsDuration = ( ( $duration.Substring( 0 , $duration.Length - 1 ) -as [decimal] ) * $multiplier )
}
[datetime]$end = $parsed.AddSeconds( $secondsDuration )
}
elseif( ! $PSBoundParameters[ 'end' ] )
{
Remove-Variable -Name 'End'
[datetime]$script:end = Get-Date
}
elseif( ! [datetime]::TryParse( $end , [ref]$parsed ) )
{
Throw "Invalid end time/date `"$start`""
}
else
{
Remove-Variable -Name 'End'
[datetime]$script:end = $parsed
}
}
if( $start -gt $end )
{
Throw "Start $(Get-Date -Date $start -Format G) is after end $(Get-Date -Date $end -Format G)"
}
if( $start -gt (Get-Date) )
{
Write-Warning "Start $(Get-Date -Date $start -Format G) is in the future by $([math]::Round(($start - (Get-Date)).TotalHours,1)) hours"
}
if( $PSBoundParameters[ 'csv' ] )
{
$arguments += @{
'NoTypeInformation' = $true
'NoClobber' = ( ! $overWrite )
'Path' = $csv }
$command = Get-Command -Name Export-Csv
}
elseif( ! $noGridView )
{
[string]$title = "From $(Get-Date -Date $start -Format G) to $(Get-Date -Date $end -Format G)"
if( $PSBoundParameters[ 'provider' ])
{
$title += ", provider $provider"
}
if( $PSBoundParameters[ 'ids' ])
{
$title += ", ids $($ids -join ',')"
}
if( $PSBoundParameters[ 'badonly' ])
{
$title += ", bad only"
}
if( $PSBoundParameters[ 'message' ])
{
$title += ", message `"$message`""
}
$arguments.Add( 'Title' , $title )
$arguments.Add( 'PassThru' , $passThru )
$command = Get-Command -Name Out-GridView
}
else
{
$command = Get-Command -name Out-PassThru
$arguments = @{}
}
[hashtable]$eventFilter = @{ starttime = $start ; endtime = $end }
if( $badOnly )
{
$eventFilter.Add( 'Level' , @( 1 , 2 , 3 ) )
}
if( $PSBoundParameters[ 'provider' ] )
{
$eventFilter.Add( 'ProviderName' , $provider )
}
if( $PSBoundParameters[ 'ids' ] )
{
$eventFilter.Add( 'ID' , $ids )
}
$results = New-Object -TypeName System.Collections.Generic.List[psobject]
[int]$counter = 0
[int]$secondsPastHour = -1
[int]$secondsPastHourEnd = -1
if( $PSBoundParameters.ContainsKey( 'minutesPastHour' ) )
{
if( $minutesPastHour -lt 0 -or $minutesPastHour -ge 60 )
{
Throw "Minutes past hour value $minutesPastHour is invalid - must >= 0 and < 60"
}
if( ! $PSBoundParameters.ContainsKey( 'minutes' ))
{
Throw 'Must specify the number of minutes to include via -minutes when using -minutesPastHour'
}
if( $minutes -eq 0 )
{
Throw 'Number of minutes must be greater than zero'
}
$secondsPastHour = $minutesPastHour * 60 ## allows fractional minutes
$secondsPastHourEnd = $secondsPastHour + $minutes * 60
}
elseif( $PSBoundParameters[ 'minutes' ] )
{
Throw 'Must specify the number of minutes past the hour via -minutesPastHour to start at when using -minutes'
}
[array]$results = @( $(ForEach( $thisComputer in $Computer )
{
$counter++
Write-Verbose -Message "$counter / $($computer.Count) : $thiscomputer"
[bool]$continue = $true
[hashtable]$computerArgument = @{}
if( $thisComputer -ne 'localhost' -and $thisComputer -ne $env:COMPUTERNAME -and $thisComputer -ne '.' )
{
$computerArgument.Add( 'ComputerName' , $thisComputer ) ## not the most efficient way of doing this but it's better than having to do it manually!
}
if( $PSBoundParameters.ContainsKey( 'credential' ))
{
if( ! $credential )
{
$credential = Get-Credential -Message "For $($computer.Count) remote event logs"
}
if( $credential )
{
$computerArgument.Add( 'credential' , $credential )
}
}
[string[]]$eventLogsToSearch = $eventLogs
if( $eventFilter[ 'ProviderName' ] )
{
if( $providerDetails = Get-WinEvent -ListProvider $provider -ErrorAction SilentlyContinue @computerArgument )
{
$eventLogsToSearch = $providerDetails.LogLinks | Select-Object -ExpandProperty LogName | Sort-Object -Unique
Write-Verbose -Message "Checking providers $($eventFilter.ProviderName) in $($eventLogsToSearch.Count) event logs $($eventLogsToSearch -join ' , ') on $thisComputer"
}
else
{
Write-Warning -Message "No event provider `"$provider`" on $thisComputer"
$continue = $false
}
}
if( $continue )
{
(Get-WinEvent -ListLog $eventLogsToSearch @ComputerArgument -Verbose:$false | Where-Object { $_.RecordCount } ).ForEach( { (Get-WinEvent @ComputerArgument -ErrorAction SilentlyContinue -Verbose:$False -FilterHashtable ( @{ logname = $_.logname } + $eventFilter )).Where(
{
([string]::IsNullOrEmpty( $excludeProvider) -or $_.ProviderName -notmatch $excludeProvider ) -and ( ! $excludeIds -or ! $excludeIds.Count -or $_.Id -notin $excludeIds ) -and ( ! $message -or $_.message -match $message ) -and ( ! $ignore -or $_.message -notmatch $ignore ) `
-and ( $secondsPastHour -lt 0 -or (( $seconds = ( $_.TimeCreated.Minute * 60 + $_.TimeCreated.Seconds ) ) -ge $secondsPastHour -and $seconds -le $secondsPastHourEnd ))
})})
}
}) | Sort-Object -Property TimeCreated | Select-Object -ExcludeProperty TimeCreated,RecordId,ProviderId,*ActivityId,Version,Qualifiers,Level,Task,OpCode,Keywords,Bookmark,*Ids,Properties -Property @{n='Date';e={"$(Get-Date -Date $_.TimeCreated -Format d) $((Get-Date -Date $_.TimeCreated).ToString('HH:mm:ss.fff'))"}},*,@{n='User';e={if( $_.UserId ) { ([System.Security.Principal.SecurityIdentifier]($_.UserId)).Translate([System.Security.Principal.NTAccount]).Value }}} | . $command @arguments )
if( $command -ne 'Export-CSV' )
{
$results
}
# SIG # Begin signature block
# MIINRQYJKoZIhvcNAQcCoIINNjCCDTICAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB
# gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR
# AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQUJKrgCK7eDdQhjeGjginHOeqq
# GyWgggqHMIIFMDCCBBigAwIBAgIQBAkYG1/Vu2Z1U0O1b5VQCDANBgkqhkiG9w0B
# AQsFADBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYD
# VQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVk
# IElEIFJvb3QgQ0EwHhcNMTMxMDIyMTIwMDAwWhcNMjgxMDIyMTIwMDAwWjByMQsw
# CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu
# ZGlnaWNlcnQuY29tMTEwLwYDVQQDEyhEaWdpQ2VydCBTSEEyIEFzc3VyZWQgSUQg
# Q29kZSBTaWduaW5nIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA
# +NOzHH8OEa9ndwfTCzFJGc/Q+0WZsTrbRPV/5aid2zLXcep2nQUut4/6kkPApfmJ
# 1DcZ17aq8JyGpdglrA55KDp+6dFn08b7KSfH03sjlOSRI5aQd4L5oYQjZhJUM1B0
# sSgmuyRpwsJS8hRniolF1C2ho+mILCCVrhxKhwjfDPXiTWAYvqrEsq5wMWYzcT6s
# cKKrzn/pfMuSoeU7MRzP6vIK5Fe7SrXpdOYr/mzLfnQ5Ng2Q7+S1TqSp6moKq4Tz
# rGdOtcT3jNEgJSPrCGQ+UpbB8g8S9MWOD8Gi6CxR93O8vYWxYoNzQYIH5DiLanMg
# 0A9kczyen6Yzqf0Z3yWT0QIDAQABo4IBzTCCAckwEgYDVR0TAQH/BAgwBgEB/wIB
# ADAOBgNVHQ8BAf8EBAMCAYYwEwYDVR0lBAwwCgYIKwYBBQUHAwMweQYIKwYBBQUH
# AQEEbTBrMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQwYI
# KwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEFz
# c3VyZWRJRFJvb3RDQS5jcnQwgYEGA1UdHwR6MHgwOqA4oDaGNGh0dHA6Ly9jcmw0
# LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEFzc3VyZWRJRFJvb3RDQS5jcmwwOqA4oDaG
# NGh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEFzc3VyZWRJRFJvb3RD
# QS5jcmwwTwYDVR0gBEgwRjA4BgpghkgBhv1sAAIEMCowKAYIKwYBBQUHAgEWHGh0
# dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCgYIYIZIAYb9bAMwHQYDVR0OBBYE
# FFrEuXsqCqOl6nEDwGD5LfZldQ5YMB8GA1UdIwQYMBaAFEXroq/0ksuCMS1Ri6en
# IZ3zbcgPMA0GCSqGSIb3DQEBCwUAA4IBAQA+7A1aJLPzItEVyCx8JSl2qB1dHC06
# GsTvMGHXfgtg/cM9D8Svi/3vKt8gVTew4fbRknUPUbRupY5a4l4kgU4QpO4/cY5j
# DhNLrddfRHnzNhQGivecRk5c/5CxGwcOkRX7uq+1UcKNJK4kxscnKqEpKBo6cSgC
# PC6Ro8AlEeKcFEehemhor5unXCBc2XGxDI+7qPjFEmifz0DLQESlE/DmZAwlCEIy
# sjaKJAL+L3J+HNdJRZboWR3p+nRka7LrZkPas7CM1ekN3fYBIM6ZMWM9CBoYs4Gb
# T8aTEAb8B4H6i9r5gkn3Ym6hU/oSlBiFLpKR6mhsRDKyZqHnGKSaZFHvMIIFTzCC
# BDegAwIBAgIQBP3jqtvdtaueQfTZ1SF1TjANBgkqhkiG9w0BAQsFADByMQswCQYD
# VQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGln
# aWNlcnQuY29tMTEwLwYDVQQDEyhEaWdpQ2VydCBTSEEyIEFzc3VyZWQgSUQgQ29k
# ZSBTaWduaW5nIENBMB4XDTIwMDcyMDAwMDAwMFoXDTIzMDcyNTEyMDAwMFowgYsx
# CzAJBgNVBAYTAkdCMRIwEAYDVQQHEwlXYWtlZmllbGQxJjAkBgNVBAoTHVNlY3Vy
# ZSBQbGF0Zm9ybSBTb2x1dGlvbnMgTHRkMRgwFgYDVQQLEw9TY3JpcHRpbmdIZWF2
# ZW4xJjAkBgNVBAMTHVNlY3VyZSBQbGF0Zm9ybSBTb2x1dGlvbnMgTHRkMIIBIjAN
# BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr20nXdaAALva07XZykpRlijxfIPk
# TUQFAxQgXTW2G5Jc1YQfIYjIePC6oaD+3Zc2WN2Jrsc7bj5Qe5Nj4QHHHf3jopLy
# g8jXl7Emt1mlyzUrtygoQ1XpBBXnv70dvZibro6dXmK8/M37w5pEAj/69+AYM7IO
# Fz2CrTIrQjvwjELSOkZ2o+z+iqfax9Z1Tv82+yg9iDHnUxZWhaiEXk9BFRv9WYsz
# qTXQTEhv8fmUI2aZX48so4mJhNGu7Vp1TGeCik1G959Qk7sFh3yvRugjY0IIXBXu
# A+LRT00yjkgMe8XoDdaBoIn5y3ZrQ7bCVDjoTrcn/SqfHvhEEMj1a1f0zQIDAQAB
# o4IBxTCCAcEwHwYDVR0jBBgwFoAUWsS5eyoKo6XqcQPAYPkt9mV1DlgwHQYDVR0O
# BBYEFE16ovlqIk5uX2JQy6og0OCPrsnJMA4GA1UdDwEB/wQEAwIHgDATBgNVHSUE
# DDAKBggrBgEFBQcDAzB3BgNVHR8EcDBuMDWgM6Axhi9odHRwOi8vY3JsMy5kaWdp
# Y2VydC5jb20vc2hhMi1hc3N1cmVkLWNzLWcxLmNybDA1oDOgMYYvaHR0cDovL2Ny
# bDQuZGlnaWNlcnQuY29tL3NoYTItYXNzdXJlZC1jcy1nMS5jcmwwTAYDVR0gBEUw
# QzA3BglghkgBhv1sAwEwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNl
# cnQuY29tL0NQUzAIBgZngQwBBAEwgYQGCCsGAQUFBwEBBHgwdjAkBggrBgEFBQcw
# AYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tME4GCCsGAQUFBzAChkJodHRwOi8v
# Y2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEyQXNzdXJlZElEQ29kZVNp
# Z25pbmdDQS5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAQEAU9zO
# 9UpTkPL8DNrcbIaf1w736CgWB5KRQsmp1mhXbGECUCCpOCzlYFCSeiwH9MT0je3W
# aYxWqIpUMvAI8ndFPVDp5RF+IJNifs+YuLBcSv1tilNY+kfa2OS20nFrbFfl9QbR
# 4oacz8sBhhOXrYeUOU4sTHSPQjd3lpyhhZGNd3COvc2csk55JG/h2hR2fK+m4p7z
# sszK+vfqEX9Ab/7gYMgSo65hhFMSWcvtNO325mAxHJYJ1k9XEUTmq828ZmfEeyMq
# K9FlN5ykYJMWp/vK8w4c6WXbYCBXWL43jnPyKT4tpiOjWOI6g18JMdUxCG41Hawp
# hH44QHzE1NPeC+1UjTGCAigwggIkAgEBMIGGMHIxCzAJBgNVBAYTAlVTMRUwEwYD
# VQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMTAv
# BgNVBAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBDb2RlIFNpZ25pbmcgQ0EC
# EAT946rb3bWrnkH02dUhdU4wCQYFKw4DAhoFAKB4MBgGCisGAQQBgjcCAQwxCjAI
# oAKAAKECgAAwGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGCNwIB
# CzEOMAwGCisGAQQBgjcCARUwIwYJKoZIhvcNAQkEMRYEFCSPlBvKzt0q67AdnicM
# hSZ3sn1QMA0GCSqGSIb3DQEBAQUABIIBAEDkG5PNhKFDNRB9Kq77Z1pNTrYEhYF1
# zGlIOkLyFTC9/MJQADYGlKwX3Gz90yIX1S6yW0VWvUli9nu9wdTF+zUeRJ1D7ZFY
# JJxZQyqHPp7Ph19OGDyPTL2cSojFGyyaa1vYzy9qoJM8wKsDeU5Xk6+ShSmaoiDc
# EWj3QCtAU9mh/yDcU2K6++Rpv22QGnOpcIRO7JrYppsyJHEm598iCn4W8Mqf906L
# e9HYG1NK99WNKHz7CGwT/4LXX2KjB3qBj/O6IG8x/ro8Nq/HpGLZxKh/Bb7m2PUp
# YNIMHQVM7R3ZYVPBeeeVsHOyl9huSRjuFgRjM5CtizHbwGdN/pPPc7Y=
# SIG # End signature block