├── .gitignore
├── LICENSE
├── README.md
└── Win10_Sources
├── Office
├── ReDownload.cmd
├── configuration.xml
├── download.xml
└── setup.cmd
├── autorun.inf
├── autounattend_DE.xml
├── autounattend_EN.xml
├── mOSD.ppkg
├── rzTools
├── CreateISO.cmd
├── Split-WIM.cmd
└── rufus-3.2p.exe
└── sources
└── $OEM$
├── $$
├── Setup
│ └── Scripts
│ │ ├── BootOOBE.ps1
│ │ ├── Office.ps1
│ │ ├── PolicyPPKG.ps1
│ │ ├── SetupComplete.cmd
│ │ ├── StartLayout.ps1
│ │ ├── init2.ps1
│ │ ├── removeapps.ps1
│ │ └── startlayout.xml
├── System32
│ └── sysprep
│ │ └── unattend.xml
├── Temp
│ ├── DevCDRAgent.json
│ ├── _7-Zip.json
│ ├── _AdobeReader DC MUI.json
│ ├── _Code.json
│ ├── _Google Chrome.json
│ ├── _VCRedist2013x64.json
│ ├── _VCRedist2013x86.json
│ ├── _VCRedist2017x64.json
│ ├── _VCRedist2017x86.json
│ ├── rz7-Zip
│ │ └── dummy.txt
│ ├── rzAdobeReader DC MUI
│ │ └── dummy.txt
│ ├── rzCode
│ │ └── dummy.txt
│ ├── rzDevCDRAgent
│ │ └── dummy.txt
│ ├── rzGoogle Chrome
│ │ └── dummy.txt
│ ├── rzVCRedist2013x64
│ │ └── dummy.txt
│ ├── rzVCRedist2013x86
│ │ └── dummy.txt
│ ├── rzVCRedist2017x64
│ │ └── dummy.txt
│ └── rzVCRedist2017x86
│ │ └── dummy.txt
└── provisioning
│ └── Autopilot
│ └── AutopilotConfigurationFile.json
└── $Progs
└── zander tools
├── RZUpdate.exe
└── RZUpdate.exe.config
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | Win10_Sources/rzTools/rufus-3.1p.exe
3 | Win10_Sources/rzTools/RuckZuck.exe
4 | Win10_Sources/rzTools/oscdimg.exe
5 | Win10_Sources/Office/setup.exe
6 | Win10_Sources/mOSD.cat
7 | Win10_Sources/mOSD.exe
8 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2018 Roger Zander
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # "modern" OS deployment (mOSD)
2 | "Modern" also means **simplified**, that's why I will give you an example on how to setup Windows 10 with just the original source (ISO) and a few scripts… Like in the "old" days, where unattended setup was the standard way to setup an OS.
3 | # Quick Start
4 | If you want to see **mOSD** (modern OSD) in action, just do:
5 |
6 | * **download** the original Windows 10 ISO (MSDN or VL Portal)
7 | * **extract the ISO** to your disk (or mount the ISO and copy the content to a writable Directory)
8 | * **download mOSD.exe** from https://github.com/rzander/mOSD/releases/latest and copy it into the extracted ISO folder.
9 | * **run mOSD.exe** to extract the content from the file.
10 | * **rename** autounattend_[**your language**].xml to **autounattend.xml**.
11 | * **update Autopilot Profile** Create Autopilot Profile According to https://www.petervanderwoude.nl/post/offline-windows-autopilot-deployment-profile/ and Update in "sources\$OEM$\$$\provisioning\Autopilot"
12 | * [OPTIONAL] **Run** rzTools\Split-WIM.cmd to split install.wim into two files with less than 4GB (Support FAT32 USB)
13 | * **start** rzTools\CreateISO.cmd as admin to create a new c:\W10.iso
14 | * **use** rzTools\\[rufus.exe](https://rufus.akeo.ie) to create a bootable USB stick from the c:\W10.iso
15 | * **boot** W10.ISO or the created USB Stick...
16 |
17 | >Note: The system will automatically poweroff at the end of the setup before OOBE is starting.
18 |
19 | # Why do we need that?
20 | Because it's:
21 |
22 | * **super fast** (Win10, Office356, 7-Zip, AdobeReader, Chrome, VSCode … in **less than 15min** on a VM)
23 | * independent
24 | * loads all files from a local media (USB) and/or internet
25 | * does not require any Servers -> great for Desaster-Recovery scenarios
26 | * independent of the OS Build, and Language
27 | * Out of the box
28 | * useful to reproduce Issues from Corp. Images (without any GPO's etc.)
29 | * performance benchmarks (compare an OutOfBox W10 vs your corporate W10)
30 | * Easy to create
31 | * just follow the [Quick Start](#quick-start) guide.
32 | * fully unattended
33 | * An end user will be able to rebuild a client.
34 |
35 | ### read more on: https://rzander.azurewebsites.net/modern-os-deployment-mosd/
36 |
--------------------------------------------------------------------------------
/Win10_Sources/Office/ReDownload.cmd:
--------------------------------------------------------------------------------
1 | RD "%~dp0\Office" /S /Q
2 | PUSHD "%~dp0"
3 | "%~dp0setup.exe" /download "%~dp0download.xml"
4 | pause
--------------------------------------------------------------------------------
/Win10_Sources/Office/configuration.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Win10_Sources/Office/download.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Win10_Sources/Office/setup.cmd:
--------------------------------------------------------------------------------
1 | "%~dp0setup.exe" /configure "%~dp0configuration.xml"
2 |
--------------------------------------------------------------------------------
/Win10_Sources/autorun.inf:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/Win10_Sources/autounattend_DE.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 | de-de
9 |
10 | 0807:00000807
11 | de-de
12 | en-US
13 | de-CH
14 | en-US
15 |
16 |
19 |
20 |
21 |
22 |
23 | 1
24 | 300
25 | Primary
26 |
27 |
28 | 2
29 | 100
30 | EFI
31 |
32 |
33 | 3
34 | 128
35 | MSR
36 |
37 |
38 | 4
39 | true
40 | Primary
41 |
42 |
43 |
44 |
45 |
46 | 1
47 | 1
48 |
49 | NTFS
50 | de94bba4-06d1-4d40-a16a-bfd50179d6ac
51 |
52 |
53 |
54 | 2
55 | 2
56 |
57 | FAT32
58 |
59 |
60 |
61 | 3
62 | 4
63 |
64 | C
65 | NTFS
66 |
67 |
68 | 0
69 | true
70 |
71 | OnError
72 |
73 |
74 |
75 |
76 | 0
77 | 4
78 |
79 | OnError
80 |
81 |
82 | /image/name
83 | Windows 10 Enterprise
84 |
85 |
86 |
87 |
88 |
89 | true
90 |
91 |
92 | OnError
93 |
94 |
95 |
96 |
97 |
98 |
101 |
102 |
103 |
104 | C:\Drivers
105 |
106 |
107 |
108 | D:\Drivers
109 |
110 |
111 |
112 | E:\Drivers
113 |
114 |
115 |
116 |
117 |
118 |
121 | *.internal.loc
122 | https://www.google.ch
123 | true
124 |
125 |
128 | W. Europe Standard Time
129 | Zander Tools
130 | Zander Tools
131 |
132 |
135 | 0807:00000807
136 | en-US
137 | de-CH
138 |
139 |
142 |
143 |
144 | powershell.exe -noprofile -command set-executionpolicy bypass -force
145 | 1
146 | PowerShell Execution Policy...
147 |
148 |
149 | powershell.exe -noprofile -File c:\windows\setup\scripts\removeapps.ps1
150 | 2
151 | Cleaning preinstalled Apps...
152 |
153 |
154 | powershell.exe -noprofile -File c:\windows\setup\scripts\StartLayout.ps1
155 | 3
156 | Setting Start-Layout...
157 |
158 |
159 | 4
160 | Installing Provisioning Package...
161 | powershell.exe -noprofile -File c:\windows\setup\scripts\PolicyPPKG.ps1
162 | Never
163 |
164 |
165 |
166 |
169 | 1
170 |
171 |
172 |
173 |
176 |
177 | true
178 | true
179 | true
180 | true
181 | true
182 | 3
183 | true
184 | true
185 | false
186 |
187 |
188 |
191 |
192 | Audit
193 | false
194 |
195 |
196 |
197 |
198 |
201 |
202 |
203 | Copy Files...
204 | powershell.exe -noprofile -command "move-item -Path c:\windows\temp\* -Destination $env:temp -ea SilentlyContinue;exit(0)"
205 | 1
206 |
207 |
208 | Installing VCRedist...
209 | "%programFiles%\zander tools\RZUpdate.exe" "VCRedist2013x64";"VCRedist2013x86";"VCRedist2019x64";"VCRedist2019x86";"RuckZuck provider for OneGet"
210 | 2
211 |
212 |
213 | Installing 7-Zip...
214 | "%programFiles%\zander tools\RZUpdate.exe" "7-Zip"
215 | 3
216 | Never
217 |
218 |
219 | 4
220 | powershell.exe -noprofile -File c:\windows\setup\scripts\Office.ps1
221 | Installing Office365
222 | Never
223 |
224 |
225 | 5
226 | "%programFiles%\zander tools\RZUpdate.exe" "Google Chrome"
227 | Installing Google Chrome...
228 |
229 |
230 | 6
231 | "%programFiles%\zander tools\RZUpdate.exe" "Code"
232 | Installing VS Code...
233 |
234 |
235 | 7
236 | "%programFiles%\zander tools\RZUpdate.exe" "AdobeReader DC MUI"
237 | Installing AdobeReader DC MUI...
238 |
239 |
240 | 8
241 | powershell.exe -noprofile -command "& { Invoke-RestMethod -Uri "https://jaindb.azurewebsites.net/getps" | Invoke-Expression }"
242 | Never
243 | JainDB Inventory
244 |
245 |
246 | 9
247 | "%programFiles%\zander tools\RZUpdate.exe" "DevCDRAgent"
248 | Never
249 | DeviceCommander Agent...
250 |
251 |
252 | 10
253 | powershell.exe -noprofile -File c:\windows\setup\scripts\BootOOBE.ps1
254 | Never
255 | Prepare OOBE
256 |
257 |
258 |
259 |
260 |
262 |
263 |
--------------------------------------------------------------------------------
/Win10_Sources/autounattend_EN.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 | en-US
9 |
10 | 0807:00000807
11 | en-US
12 | de-CH
13 | en-US
14 |
15 |
18 |
19 |
20 |
21 |
22 | 1
23 | 300
24 | Primary
25 |
26 |
27 | 2
28 | 100
29 | EFI
30 |
31 |
32 | 3
33 | 128
34 | MSR
35 |
36 |
37 | 4
38 | true
39 | Primary
40 |
41 |
42 |
43 |
44 |
45 | 1
46 | 1
47 |
48 | NTFS
49 | de94bba4-06d1-4d40-a16a-bfd50179d6ac
50 |
51 |
52 |
53 | 2
54 | 2
55 |
56 | FAT32
57 |
58 |
59 |
60 | 3
61 | 4
62 |
63 | C
64 | NTFS
65 |
66 |
67 | 0
68 | true
69 |
70 | OnError
71 |
72 |
73 |
74 |
75 | 0
76 | 4
77 |
78 | OnError
79 |
80 |
81 | /image/name
82 | Windows 10 Enterprise
83 |
84 |
85 |
86 |
87 |
88 | true
89 |
90 |
91 | OnError
92 |
93 |
94 |
95 |
96 |
97 |
100 |
101 |
102 |
103 | C:\Drivers
104 |
105 |
106 |
107 | D:\Drivers
108 |
109 |
110 |
111 | E:\Drivers
112 |
113 |
114 |
115 |
116 |
117 |
120 | *.internal.loc
121 | https://www.google.ch
122 | true
123 |
124 |
127 | W. Europe Standard Time
128 | Zander Tools
129 | Zander Tools
130 |
131 |
134 | 0807:00000807
135 | en-US
136 | de-CH
137 |
138 |
141 |
142 |
143 | powershell.exe -noprofile -command set-executionpolicy bypass -force
144 | 1
145 | PowerShell Execution Policy...
146 |
147 |
148 | powershell.exe -noprofile -File c:\windows\setup\scripts\removeapps.ps1
149 | 2
150 | Cleaning preinstalled Apps...
151 |
152 |
153 | powershell.exe -noprofile -File c:\windows\setup\scripts\StartLayout.ps1
154 | 3
155 | Setting Start-Layout...
156 |
157 |
158 | 4
159 | Installing Provisioning Package...
160 | powershell.exe -noprofile -File c:\windows\setup\scripts\PolicyPPKG.ps1
161 | Never
162 |
163 |
164 |
165 |
168 | 1
169 |
170 |
171 |
172 |
175 |
176 | true
177 | true
178 | true
179 | true
180 | true
181 | 3
182 | true
183 | true
184 | false
185 |
186 |
187 |
190 |
191 | Audit
192 | false
193 |
194 |
195 |
196 |
197 |
200 |
201 |
202 | Copy Files...
203 | powershell.exe -noprofile -command "move-item -Path c:\windows\temp\* -Destination $env:temp -ea SilentlyContinue;exit(0)"
204 | 1
205 |
206 |
207 | Installing VCRedist...
208 | "%programFiles%\zander tools\RZUpdate.exe" "VCRedist2013x64";"VCRedist2013x86";"VCRedist2019x64";"VCRedist2019x86";"RuckZuck provider for OneGet"
209 | 2
210 |
211 |
212 | Installing 7-Zip...
213 | "%programFiles%\zander tools\RZUpdate.exe" "7-Zip"
214 | 3
215 | Never
216 |
217 |
218 | 4
219 | powershell.exe -noprofile -File c:\windows\setup\scripts\Office.ps1
220 | Installing Office365
221 | Never
222 |
223 |
224 | 5
225 | "%programFiles%\zander tools\RZUpdate.exe" "Google Chrome"
226 | Installing Google Chrome...
227 |
228 |
229 | 6
230 | "%programFiles%\zander tools\RZUpdate.exe" "Code"
231 | Installing VS Code...
232 |
233 |
234 | 7
235 | "%programFiles%\zander tools\RZUpdate.exe" "AdobeReader DC MUI"
236 | Installing AdobeReader DC MUI...
237 |
238 |
239 | 8
240 | powershell.exe -noprofile -command "& { Invoke-RestMethod -Uri "https://jaindb.azurewebsites.net/getps" | Invoke-Expression }"
241 | Never
242 | JainDB Inventory
243 |
244 |
245 | 9
246 | "%programFiles%\zander tools\RZUpdate.exe" "DevCDRAgent"
247 | Never
248 | DeviceCommander Agent...
249 |
250 |
251 | 10
252 | powershell.exe -noprofile -File c:\windows\setup\scripts\BootOOBE.ps1
253 | Never
254 | Prepare OOBE
255 |
256 |
257 |
258 |
259 |
261 |
262 |
--------------------------------------------------------------------------------
/Win10_Sources/mOSD.ppkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rzander/mOSD/61bf0353fcdf84ff0b1cef8ef0d0bf5db0475f6c/Win10_Sources/mOSD.ppkg
--------------------------------------------------------------------------------
/Win10_Sources/rzTools/CreateISO.cmd:
--------------------------------------------------------------------------------
1 | %~dp0oscdimg.exe -m -o -u2 -udfver102 -bootdata:2#p0,e,b%~dp0..\boot\etfsboot.com#pEF,e,b%~dp0..\efi\microsoft\boot\efisys.bin %~dp0..\ c:\W10.iso
2 | pause
--------------------------------------------------------------------------------
/Win10_Sources/rzTools/Split-WIM.cmd:
--------------------------------------------------------------------------------
1 | Dism /Split-Image /ImageFile:%~dp0..\sources\install.wim /SWMFile:%~dp0..\sources\install.swm /FileSize:2000
2 | del %~dp0\..\sources\install.wim
3 | pause
--------------------------------------------------------------------------------
/Win10_Sources/rzTools/rufus-3.2p.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rzander/mOSD/61bf0353fcdf84ff0b1cef8ef0d0bf5db0475f6c/Win10_Sources/rzTools/rufus-3.2p.exe
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Setup/Scripts/BootOOBE.ps1:
--------------------------------------------------------------------------------
1 | Set-Location $PSScriptRoot
2 | get-process sysprep -ea SilentlyContinue | stop-process -Force -ErrorAction SilentlyContinue
3 |
4 | #Cleanup
5 | Remove-Item C:\Windows\Panther\unattend.xml -Force -ea SilentlyContinue
6 | Remove-Item C:\Windows\Setup\Scripts\init.ps1 -Recurse -Force -ea SilentlyContinue #Prevent loop after OOBE
7 | Rename-Item C:\Windows\Setup\Scripts\init2.ps1 init.ps1 -ea SilentlyContinue #Run Cleanup after OOBE
8 |
9 | get-process sysprep -ea SilentlyContinue | stop-process -Force -ErrorAction SilentlyContinue
10 | Start-Sleep 2
11 |
12 | #old &C:\Windows\System32\Sysprep\sysprep.exe /oobe /shutdown /unattend:c:\windows\system32\sysprep\unattend.xml
13 | Start-Process -FilePath "C:\Windows\System32\Sysprep\sysprep.exe" -ArgumentList "/oobe /quiet /reboot /unattend:C:\Windows\system32\sysprep\unattend.xml" -Wait
14 | exit(0)
15 |
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Setup/Scripts/Office.ps1:
--------------------------------------------------------------------------------
1 | Set-Location $PSScriptRoot
2 |
3 | #Install Office
4 | get-volume | Where-Object { $_.DriveType -ne 'Fixed' } | ForEach-Object { if (test-path ($_.DriveLetter + ':\Office\setup.exe')) {
5 | Set-Location ($_.DriveLetter + ':\Office')
6 | $proc = (Start-Process "setup.exe" -ArgumentList "/configure .\configuration.xml" -Wait -PassThru)
7 | $proc.WaitForExit()
8 | }
9 | }
10 |
11 | Import-StartLayout -LayoutPath .\startlayout.xml -MountPath C:\
12 |
13 | exit(0)
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Setup/Scripts/PolicyPPKG.ps1:
--------------------------------------------------------------------------------
1 | #Install ProvisioningPackage from USB/DVD
2 | Get-PSDrive | Where-Object { ($_.used -eq 0) -and -not ($_.CurrentLocation) } | ForEach-Object { if (test-path ($_.Root + 'mOSD.ppkg')) { Install-ProvisioningPackage ($_.Root + 'mOSD.ppkg') -ForceInstall -QuietInstall } }
3 | Start-Sleep 3
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Setup/Scripts/SetupComplete.cmd:
--------------------------------------------------------------------------------
1 | powershell.exe -command set-executionpolicy bypass -force
2 | powershell.exe -file "%~dp0init.ps1"
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Setup/Scripts/StartLayout.ps1:
--------------------------------------------------------------------------------
1 | Set-Location $PSScriptRoot
2 |
3 | Import-StartLayout -LayoutPath .\startlayout.xml -MountPath C:\
4 |
5 | exit(0)
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Setup/Scripts/init2.ps1:
--------------------------------------------------------------------------------
1 | #Cleanup
2 | Remove-Item C:\Windows\Setup\Scripts -Recurse -Force -ea SilentlyContinue #Prevent loop after OOBE
3 |
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Setup/Scripts/removeapps.ps1:
--------------------------------------------------------------------------------
1 | Set-Location $PSScriptRoot
2 |
3 | Get-AppxProvisionedPackage -online | Where-Object { $_.DisplayName -like "*skype*" -or $_.DisplayName -like "*windowscomm*" -or $_.DisplayName -like "*onenote*" -or $_.DisplayName -like "*Office*" } | Remove-AppxProvisionedPackage -online
4 |
5 | $apps=@(
6 | "9E2F88E3.Twitter"
7 | "ClearChannelRadioDigital.iHeartRadio"
8 | "Flipboard.Flipboard"
9 | "king.com.CandyCrushSodaSaga"
10 | "Microsoft.3DBuilder"
11 | #"Microsoft.Appconnector"
12 | "Microsoft.BingFinance"
13 | "Microsoft.BingNews"
14 | "Microsoft.BingSports"
15 | "Microsoft.BingWeather"
16 | "Microsoft.BingFoodAndDrink"
17 | "Microsoft.BingHealthAndFitness"
18 | "Microsoft.BingTravel"
19 | "Microsoft.CommsPhone"
20 | "Microsoft.ConnectivityStore"
21 | "Microsoft.WindowsFeedbackHub"
22 | "Microsoft.Getstarted"
23 | "Microsoft.Messaging"
24 | "Microsoft.MicrosoftOfficeHub"
25 | "Microsoft.MicrosoftSolitaireCollection"
26 | #"Microsoft.Office.OneNote"
27 | #"Microsoft.Office.Sway"
28 | "Microsoft.People"
29 | "Microsoft.SkypeApp"
30 | "Microsoft.Windows.Phone"
31 | #"Microsoft.Windows.Photos"
32 | #"Microsoft.WindowsAlarms"
33 | #"Microsoft.WindowsCalculator"
34 | #"Microsoft.WindowsCamera"
35 | #"Microsoft.WindowsMaps"
36 | "Microsoft.WindowsPhone"
37 | #"Microsoft.WindowsSoundRecorder"
38 | #"Microsoft.WindowsStore"
39 | #"Microsoft.XboxApp"
40 | "Microsoft.ZuneMusic"
41 | "Microsoft.ZuneVideo"
42 | "microsoft.windowscommunicationsapps"
43 | "Microsoft.MinecraftUWP"
44 | "ShazamEntertainmentLtd.Shazam"
45 | )
46 |
47 | foreach ($app in $apps) {
48 | Get-AppxPackage -Name $app | Remove-AppxPackage
49 | Get-AppxPackage -Name $app -AllUsers | Remove-AppxPackage
50 | Get-AppXProvisionedPackage -Online | Where-Object DisplayName -EQ $app | Remove-AppxProvisionedPackage -Online
51 |
52 | $appPath="$Env:LOCALAPPDATA\Packages\$app*"
53 | #Remove-Item $appPath -Recurse -Force -ErrorAction 0
54 | }
55 |
56 | exit(0)
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Setup/Scripts/startlayout.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/System32/sysprep/unattend.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 3
7 | true
8 | true
9 | Work
10 |
11 |
12 |
13 |
14 |
15 |
16 | OOBE
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Temp/DevCDRAgent.json:
--------------------------------------------------------------------------------
1 | {
2 | "ProductName": "DevCDRAgentCore",
3 | "Manufacturer": "Zander Tools",
4 | "Description": "",
5 | "Shortname": "DevCDRAgent",
6 | "ProductURL": "https://github.com/rzander/DevCDR",
7 | "ProductVersion": "1.0.0.16",
8 | "Image": [
9 | 137,
10 | 80,
11 | 78,
12 | 71,
13 | 13,
14 | 10,
15 | 26,
16 | 10,
17 | 0,
18 | 0,
19 | 0,
20 | 13,
21 | 73,
22 | 72,
23 | 68,
24 | 82,
25 | 0,
26 | 0,
27 | 0,
28 | 32,
29 | 0,
30 | 0,
31 | 0,
32 | 32,
33 | 8,
34 | 6,
35 | 0,
36 | 0,
37 | 0,
38 | 115,
39 | 122,
40 | 122,
41 | 244,
42 | 0,
43 | 0,
44 | 0,
45 | 1,
46 | 115,
47 | 82,
48 | 71,
49 | 66,
50 | 0,
51 | 174,
52 | 206,
53 | 28,
54 | 233,
55 | 0,
56 | 0,
57 | 0,
58 | 4,
59 | 103,
60 | 65,
61 | 77,
62 | 65,
63 | 0,
64 | 0,
65 | 177,
66 | 143,
67 | 11,
68 | 252,
69 | 97,
70 | 5,
71 | 0,
72 | 0,
73 | 0,
74 | 9,
75 | 112,
76 | 72,
77 | 89,
78 | 115,
79 | 0,
80 | 0,
81 | 14,
82 | 195,
83 | 0,
84 | 0,
85 | 14,
86 | 195,
87 | 1,
88 | 199,
89 | 111,
90 | 168,
91 | 100,
92 | 0,
93 | 0,
94 | 4,
95 | 109,
96 | 73,
97 | 68,
98 | 65,
99 | 84,
100 | 88,
101 | 71,
102 | 205,
103 | 151,
104 | 193,
105 | 111,
106 | 84,
107 | 85,
108 | 20,
109 | 198,
110 | 251,
111 | 47,
112 | 184,
113 | 116,
114 | 229,
115 | 202,
116 | 196,
117 | 196,
118 | 133,
119 | 49,
120 | 238,
121 | 92,
122 | 105,
123 | 186,
124 | 81,
125 | 113,
126 | 161,
127 | 105,
128 | 92,
129 | 213,
130 | 5,
131 | 27,
132 | 187,
133 | 105,
134 | 194,
135 | 166,
136 | 196,
137 | 133,
138 | 67,
139 | 33,
140 | 96,
141 | 109,
142 | 83,
143 | 169,
144 | 20,
145 | 154,
146 | 182,
147 | 116,
148 | 90,
149 | 234,
150 | 104,
151 | 218,
152 | 41,
153 | 13,
154 | 211,
155 | 74,
156 | 45,
157 | 237,
158 | 52,
159 | 226,
160 | 76,
161 | 43,
162 | 48,
163 | 210,
164 | 10,
165 | 35,
166 | 83,
167 | 8,
168 | 60,
169 | 71,
170 | 8,
171 | 21,
172 | 19,
173 | 28,
174 | 212,
175 | 72,
176 | 42,
177 | 166,
178 | 64,
179 | 99,
180 | 12,
181 | 31,
182 | 253,
183 | 93,
184 | 238,
185 | 153,
186 | 60,
187 | 161,
188 | 173,
189 | 111,
190 | 70,
191 | 76,
192 | 60,
193 | 201,
194 | 151,
195 | 247,
196 | 222,
197 | 157,
198 | 251,
199 | 190,
200 | 239,
201 | 59,
202 | 231,
203 | 158,
204 | 123,
205 | 95,
206 | 91,
207 | 243,
208 | 191,
209 | 136,
210 | 213,
211 | 213,
212 | 85,
213 | 5,
214 | 65,
215 | 160,
216 | 243,
217 | 133,
218 | 111,
219 | 29,
220 | 242,
221 | 249,
222 | 124,
223 | 249,
224 | 126,
225 | 61,
226 | 48,
227 | 55,
228 | 140,
229 | 165,
230 | 165,
231 | 37,
232 | 55,
233 | 94,
234 | 42,
235 | 149,
236 | 228,
237 | 41,
238 | 43,
239 | 11,
240 | 72,
241 | 48,
242 | 145,
243 | 205,
244 | 102,
245 | 149,
246 | 61,
247 | 62,
248 | 243,
249 | 8,
250 | 166,
251 | 167,
252 | 167,
253 | 29,
254 | 102,
255 | 142,
256 | 29,
257 | 45,
258 | 99,
259 | 124,
260 | 124,
261 | 252,
262 | 17,
263 | 196,
264 | 227,
265 | 113,
266 | 199,
267 | 227,
268 | 105,
269 | 163,
270 | 7,
271 | 6,
272 | 150,
273 | 151,
274 | 151,
275 | 53,
276 | 58,
277 | 252,
278 | 137,
279 | 246,
280 | 164,
281 | 206,
282 | 232,
283 | 195,
284 | 201,
285 | 130,
286 | 186,
287 | 210,
288 | 15,
289 | 144,
290 | 200,
291 | 156,
292 | 211,
293 | 240,
294 | 108,
295 | 193,
296 | 97,
297 | 96,
298 | 106,
299 | 65,
300 | 221,
301 | 159,
302 | 231,
303 | 116,
304 | 32,
305 | 117,
306 | 66,
307 | 29,
308 | 135,
309 | 103,
310 | 29,
311 | 62,
312 | 72,
313 | 204,
314 | 56,
315 | 28,
316 | 57,
317 | 156,
318 | 84,
319 | 75,
320 | 75,
321 | 75,
322 | 117,
323 | 85,
324 | 48,
325 | 3,
326 | 19,
327 | 169,
328 | 17,
329 | 197,
330 | 210,
331 | 37,
332 | 181,
333 | 228,
334 | 238,
335 | 168,
336 | 243,
337 | 236,
338 | 170,
339 | 250,
340 | 47,
341 | 252,
342 | 169,
343 | 161,
344 | 226,
345 | 189,
346 | 50,
347 | 6,
348 | 47,
349 | 254,
350 | 165,
351 | 238,
352 | 115,
353 | 114,
354 | 191,
355 | 55,
356 | 207,
357 | 173,
358 | 104,
359 | 123,
360 | 250,
361 | 119,
362 | 53,
363 | 124,
364 | 118,
365 | 83,
366 | 111,
367 | 141,
368 | 220,
369 | 116,
370 | 85,
371 | 137,
372 | 197,
373 | 98,
374 | 110,
375 | 73,
376 | 60,
377 | 109,
378 | 244,
379 | 8,
380 | 27,
381 | 104,
382 | 158,
383 | 184,
384 | 172,
385 | 61,
386 | 179,
387 | 203,
388 | 218,
389 | 123,
390 | 250,
391 | 15,
392 | 237,
393 | 255,
394 | 102,
395 | 69,
396 | 253,
397 | 139,
398 | 119,
399 | 203,
400 | 232,
401 | 205,
402 | 223,
403 | 86,
404 | 231,
405 | 194,
406 | 138,
407 | 218,
408 | 78,
409 | 221,
410 | 82,
411 | 44,
412 | 115,
413 | 75,
414 | 219,
415 | 142,
416 | 253,
417 | 170,
418 | 119,
419 | 198,
420 | 126,
421 | 86,
422 | 221,
423 | 240,
424 | 47,
425 | 110,
426 | 249,
427 | 48,
428 | 64,
429 | 47,
430 | 120,
431 | 218,
432 | 232,
433 | 97,
434 | 6,
435 | 210,
436 | 19,
437 | 99,
438 | 106,
439 | 30,
440 | 91,
441 | 116,
442 | 228,
443 | 136,
444 | 96,
445 | 2,
446 | 193,
447 | 48,
448 | 24,
449 | 199,
450 | 32,
451 | 217,
452 | 99,
453 | 96,
454 | 235,
455 | 104,
456 | 73,
457 | 111,
458 | 36,
459 | 110,
460 | 104,
461 | 110,
462 | 126,
463 | 209,
464 | 45,
465 | 1,
466 | 70,
467 | 60,
468 | 109,
469 | 244,
470 | 160,
471 | 139,
472 | 49,
473 | 64,
474 | 25,
475 | 119,
476 | 36,
477 | 231,
478 | 29,
479 | 57,
480 | 38,
481 | 16,
482 | 66,
483 | 208,
484 | 192,
485 | 115,
486 | 88,
487 | 156,
488 | 236,
489 | 235,
490 | 147,
491 | 63,
492 | 233,
493 | 181,
494 | 193,
495 | 235,
496 | 74,
497 | 159,
498 | 190,
499 | 164,
500 | 246,
501 | 246,
502 | 86,
503 | 215,
504 | 172,
505 | 158,
506 | 54,
507 | 122,
508 | 152,
509 | 1,
510 | 58,
511 | 190,
512 | 57,
513 | 145,
514 | 85,
515 | 227,
516 | 228,
517 | 111,
518 | 14,
519 | 102,
520 | 36,
521 | 140,
522 | 176,
523 | 56,
524 | 217,
525 | 99,
526 | 224,
527 | 149,
528 | 131,
529 | 63,
530 | 232,
531 | 200,
532 | 201,
533 | 239,
534 | 213,
535 | 213,
536 | 249,
537 | 145,
538 | 146,
539 | 201,
540 | 100,
541 | 229,
542 | 6,
543 | 232,
544 | 92,
545 | 176,
546 | 144,
547 | 251,
548 | 74,
549 | 59,
550 | 7,
551 | 166,
552 | 28,
553 | 57,
554 | 64,
555 | 104,
556 | 61,
557 | 132,
558 | 197,
559 | 223,
560 | 28,
561 | 252,
562 | 81,
563 | 181,
564 | 221,
565 | 75,
566 | 138,
567 | 31,
568 | 191,
569 | 172,
570 | 129,
571 | 190,
572 | 94,
573 | 183,
574 | 21,
575 | 61,
576 | 109,
577 | 244,
578 | 48,
579 | 3,
580 | 249,
581 | 51,
582 | 243,
583 | 218,
584 | 221,
585 | 151,
586 | 114,
587 | 77,
588 | 133,
589 | 128,
590 | 25,
591 | 9,
592 | 131,
593 | 113,
594 | 128,
595 | 48,
596 | 32,
597 | 251,
598 | 23,
599 | 247,
600 | 93,
601 | 81,
602 | 219,
603 | 100,
604 | 209,
605 | 109,
606 | 227,
607 | 142,
608 | 142,
609 | 142,
610 | 202,
611 | 13,
612 | 80,
613 | 126,
614 | 59,
615 | 205,
616 | 218,
617 | 15,
618 | 38,
619 | 221,
620 | 154,
621 | 2,
622 | 50,
623 | 92,
624 | 15,
625 | 97,
626 | 113,
627 | 178,
628 | 127,
629 | 97,
630 | 239,
631 | 85,
632 | 109,
633 | 31,
634 | 253,
635 | 206,
636 | 53,
637 | 49,
638 | 59,
639 | 193,
640 | 211,
641 | 70,
642 | 15,
643 | 12,
644 | 176,
645 | 19,
646 | 48,
647 | 112,
648 | 32,
649 | 254,
650 | 169,
651 | 94,
652 | 238,
653 | 189,
654 | 174,
655 | 215,
656 | 251,
657 | 175,
658 | 149,
659 | 133,
660 | 194,
661 | 96,
662 | 28,
663 | 97,
664 | 203,
665 | 28,
666 | 60,
667 | 215,
668 | 90,
669 | 212,
670 | 214,
671 | 193,
672 | 162,
673 | 50,
674 | 233,
675 | 9,
676 | 53,
677 | 53,
678 | 53,
679 | 85,
680 | 111,
681 | 0,
682 | 176,
683 | 134,
684 | 207,
685 | 175,
686 | 101,
687 | 69,
688 | 102,
689 | 155,
690 | 33,
691 | 44,
692 | 254,
693 | 204,
694 | 238,
695 | 64,
696 | 175,
697 | 118,
698 | 5,
699 | 58,
700 | 149,
701 | 73,
702 | 171,
703 | 161,
704 | 161,
705 | 161,
706 | 114,
707 | 3,
708 | 156,
709 | 223,
710 | 246,
711 | 145,
712 | 25,
713 | 74,
714 | 244,
715 | 233,
716 | 217,
717 | 182,
718 | 171,
719 | 174,
720 | 172,
721 | 27,
722 | 129,
723 | 223,
724 | 159,
725 | 126,
726 | 255,
727 | 138,
728 | 158,
729 | 218,
730 | 85,
731 | 212,
732 | 147,
733 | 177,
734 | 162,
735 | 158,
736 | 120,
737 | 55,
738 | 112,
739 | 38,
740 | 190,
741 | 94,
742 | 59,
743 | 3,
744 | 26,
745 | 27,
746 | 27,
747 | 221,
748 | 142,
749 | 242,
750 | 212,
751 | 209,
752 | 2,
753 | 3,
754 | 124,
755 | 1,
756 | 233,
757 | 131,
758 | 225,
759 | 143,
760 | 227,
761 | 122,
762 | 169,
763 | 45,
764 | 175,
765 | 45,
766 | 251,
767 | 10,
768 | 122,
769 | 59,
770 | 126,
771 | 94,
772 | 219,
773 | 134,
774 | 2,
775 | 189,
776 | 151,
777 | 10,
778 | 212,
779 | 122,
780 | 52,
781 | 208,
782 | 254,
783 | 169,
784 | 75,
785 | 58,
786 | 244,
787 | 197,
788 | 69,
789 | 141,
790 | 100,
791 | 46,
792 | 104,
793 | 124,
794 | 174,
795 | 160,
796 | 169,
797 | 19,
798 | 103,
799 | 53,
800 | 123,
801 | 114,
802 | 65,
803 | 185,
804 | 92,
805 | 206,
806 | 237,
807 | 32,
808 | 122,
809 | 128,
810 | 37,
811 | 128,
812 | 199,
813 | 83,
814 | 71,
815 | 15,
816 | 42,
817 | 192,
818 | 139,
819 | 236,
820 | 99,
821 | 142,
822 | 100,
823 | 200,
824 | 190,
825 | 76,
826 | 79,
827 | 58,
828 | 216,
829 | 23,
830 | 144,
831 | 113,
832 | 62,
833 | 58,
834 | 6,
835 | 186,
836 | 30,
837 | 96,
838 | 218,
839 | 128,
840 | 1,
841 | 42,
842 | 233,
843 | 105,
844 | 163,
845 | 7,
846 | 226,
847 | 102,
848 | 32,
849 | 252,
850 | 137,
851 | 229,
852 | 25,
853 | 98,
854 | 122,
855 | 163,
856 | 167,
857 | 167,
858 | 199,
859 | 29,
860 | 54,
861 | 108,
862 | 53,
863 | 142,
864 | 93,
865 | 58,
866 | 30,
867 | 32,
868 | 10,
869 | 40,
870 | 63,
871 | 167,
872 | 161,
873 | 167,
874 | 172,
875 | 44,
876 | 88,
877 | 55,
878 | 178,
879 | 132,
880 | 28,
881 | 50,
882 | 154,
883 | 201,
884 | 96,
885 | 2,
886 | 220,
887 | 35,
888 | 136,
889 | 49,
890 | 206,
891 | 124,
892 | 74,
893 | 111,
894 | 149,
895 | 227,
896 | 28,
897 | 169,
898 | 234,
899 | 111,
900 | 129,
901 | 135,
902 | 3,
903 | 35,
904 | 214,
905 | 68,
906 | 144,
907 | 218,
908 | 238,
909 | 64,
910 | 20,
911 | 19,
912 | 85,
913 | 29,
914 | 52,
915 | 149,
916 | 6,
917 | 6,
918 | 200,
919 | 138,
920 | 44,
921 | 109,
922 | 105,
923 | 204,
924 | 0,
925 | 85,
926 | 192,
927 | 16,
928 | 99,
929 | 155,
930 | 117,
931 | 187,
932 | 153,
933 | 231,
934 | 116,
935 | 141,
936 | 220,
937 | 19,
938 | 182,
939 | 29,
940 | 141,
941 | 156,
942 | 157,
943 | 193,
944 | 215,
945 | 141,
946 | 62,
947 | 160,
948 | 244,
949 | 117,
950 | 117,
951 | 117,
952 | 170,
953 | 175,
954 | 175,
955 | 119,
956 | 125,
957 | 64,
958 | 79,
959 | 80,
960 | 13,
961 | 140,
962 | 33,
963 | 198,
964 | 59,
965 | 44,
966 | 9,
967 | 253,
968 | 66,
969 | 127,
970 | 24,
971 | 232,
972 | 9,
973 | 51,
974 | 78,
975 | 227,
976 | 110,
977 | 102,
978 | 186,
979 | 252,
980 | 77,
981 | 32,
982 | 48,
983 | 195,
984 | 100,
985 | 170,
986 | 128,
987 | 160,
988 | 53,
989 | 27,
990 | 87,
991 | 35,
992 | 6,
993 | 220,
994 | 99,
995 | 4,
996 | 67,
997 | 24,
998 | 181,
999 | 191,
1000 | 35,
1001 | 49,
1002 | 6,
1003 | 48,
1004 | 70,
1005 | 144,
1006 | 12,
1007 | 115,
1008 | 73,
1009 | 96,
1010 | 195,
1011 | 79,
1012 | 54,
1013 | 130,
1014 | 188,
1015 | 68,
1016 | 21,
1017 | 204,
1018 | 12,
1019 | 229,
1020 | 227,
1021 | 133,
1022 | 135,
1023 | 59,
1024 | 159,
1025 | 103,
1026 | 39,
1027 | 184,
1028 | 102,
1029 | 144,
1030 | 57,
1031 | 100,
1032 | 207,
1033 | 60,
1034 | 192,
1035 | 61,
1036 | 194,
1037 | 136,
1038 | 50,
1039 | 135,
1040 | 49,
1041 | 158,
1042 | 225,
1043 | 230,
1044 | 25,
1045 | 19,
1046 | 236,
1047 | 40,
1048 | 47,
1049 | 251,
1050 | 247,
1051 | 192,
1052 | 4,
1053 | 4,
1054 | 8,
1055 | 0,
1056 | 38,
1057 | 2,
1058 | 196,
1059 | 169,
1060 | 0,
1061 | 37,
1062 | 182,
1063 | 101,
1064 | 226,
1065 | 202,
1066 | 92,
1067 | 235,
1068 | 21,
1069 | 222,
1070 | 53,
1071 | 132,
1072 | 19,
1073 | 64,
1074 | 20,
1075 | 14,
1076 | 150,
1077 | 0,
1078 | 19,
1079 | 108,
1080 | 215,
1081 | 218,
1082 | 218,
1083 | 218,
1084 | 127,
1085 | 238,
1086 | 11,
1087 | 8,
1088 | 200,
1089 | 130,
1090 | 151,
1091 | 200,
1092 | 154,
1093 | 103,
1094 | 43,
1095 | 47,
1096 | 194,
1097 | 60,
1098 | 179,
1099 | 84,
1100 | 4,
1101 | 87,
1102 | 91,
1103 | 54,
1104 | 198,
1105 | 201,
1106 | 58,
1107 | 220,
1108 | 39,
1109 | 0,
1110 | 19,
1111 | 100,
1112 | 143,
1113 | 248,
1114 | 134,
1115 | 21,
1116 | 88,
1117 | 47,
1118 | 32,
1119 | 166,
1120 | 2,
1121 | 4,
1122 | 89,
1123 | 147,
1124 | 49,
1125 | 89,
1126 | 145,
1127 | 157,
1128 | 9,
1129 | 3,
1130 | 126,
1131 | 35,
1132 | 75,
1133 | 200,
1134 | 49,
1135 | 110,
1136 | 75,
1137 | 96,
1138 | 39,
1139 | 164,
1140 | 53,
1141 | 49,
1142 | 239,
1143 | 123,
1144 | 234,
1145 | 232,
1146 | 65,
1147 | 6,
1148 | 144,
1149 | 35,
1150 | 68,
1151 | 134,
1152 | 84,
1153 | 192,
1154 | 50,
1155 | 3,
1156 | 214,
1157 | 132,
1158 | 220,
1159 | 179,
1160 | 245,
1161 | 56,
1162 | 212,
1163 | 24,
1164 | 163,
1165 | 114,
1166 | 136,
1167 | 178,
1168 | 11,
1169 | 168,
1170 | 138,
1171 | 167,
1172 | 171,
1173 | 46,
1174 | 112,
1175 | 78,
1176 | 38,
1177 | 16,
1178 | 217,
1179 | 242,
1180 | 132,
1181 | 255,
1182 | 115,
1183 | 50,
1184 | 96,
1185 | 196,
1186 | 132,
1187 | 185,
1188 | 98,
1189 | 214,
1190 | 83,
1191 | 252,
1192 | 251,
1193 | 96,
1194 | 141,
1195 | 17,
1196 | 192,
1197 | 8,
1198 | 25,
1199 | 134,
1200 | 133,
1201 | 121,
1202 | 102,
1203 | 156,
1204 | 108,
1205 | 185,
1206 | 167,
1207 | 49,
1208 | 253,
1209 | 107,
1210 | 143,
1211 | 63,
1212 | 48,
1213 | 66,
1214 | 69,
1215 | 104,
1216 | 50,
1217 | 186,
1218 | 26,
1219 | 112,
1220 | 255,
1221 | 88,
1222 | 179,
1223 | 253,
1224 | 239,
1225 | 163,
1226 | 166,
1227 | 230,
1228 | 62,
1229 | 208,
1230 | 103,
1231 | 1,
1232 | 103,
1233 | 202,
1234 | 145,
1235 | 72,
1236 | 10,
1237 | 0,
1238 | 0,
1239 | 0,
1240 | 0,
1241 | 73,
1242 | 69,
1243 | 78,
1244 | 68,
1245 | 174,
1246 | 66,
1247 | 96,
1248 | 130
1249 | ],
1250 | "MSIProductID": "{CC1B3F35-4E56-403D-B7DB-345160BEC87D}",
1251 | "Architecture": "X64",
1252 | "PSUninstall": "$proc = (Start-Process -FilePath \"msiexec.exe\" -ArgumentList \"/x {CC1B3F35-4E56-403D-B7DB-345160BEC87D} /qb! REBOOT=REALLYSUPPRESS\" -Wait -PassThru);$proc.WaitForExit();$ExitCode = $proc.ExitCode",
1253 | "PSDetection": "[System.Version](Get-Item \"$($env:ProgramFiles)\\DevCDRAgentCore\\DevCDRAgentCore.exe\").VersionInfo.FileVersion -ge [System.Version]\"1.0.0.16\"",
1254 | "PSInstall": "$proc = (Start-Process -FilePath \"msiexec.exe\" -ArgumentList \"/i `\"DevCDRAgentCore.msi`\" /qn ALLUSERS=2 ENDPOINT=https://devcdr.azurewebsites.net/chat REBOOT=REALLYSUPPRESS\" -Wait -PassThru);$proc.WaitForExit();$ExitCode = $proc.ExitCode",
1255 | "PSPreReq": "[Environment]::Is64BitProcess",
1256 | "PSPreInstall": "",
1257 | "PSPostInstall": "",
1258 | "ContentID": "909fe0a0-aa3b-4a6d-8801-4ec0eaf5c6ea",
1259 | "Files": [
1260 | {
1261 | "URL": "https://devcdrcore.azurewebsites.net/DevCDRAgentCore.msi",
1262 | "FileName": "DevCDRAgentCore.msi",
1263 | "FileHash": "fdecff173c9ece56047f277e9e5a2d779bf809ac",
1264 | "HashType": "X509"
1265 | }
1266 | ],
1267 | "Author": "rzander",
1268 | "Category": "SysAdmin",
1269 | "PreRequisites": [
1270 | ""
1271 | ],
1272 | "SWId": 0,
1273 | "IconURL": ""
1274 | }
1275 |
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Temp/_7-Zip.json:
--------------------------------------------------------------------------------
1 | {"ProductName":"7-Zip 18.05 (x64)","Manufacturer":"Igor Pavlov","Description":"7-Zip is a file archiver with a high compression ratio for ZIP and GZIP formats, which is between 2 to 10% better than its peers, depending on the exact data tested. And 7-Zip boosts its very own 7z archive format that also offers a significantly higher compression ratio than its peers. up to 40% higher!","Shortname":"7-Zip","ProductURL":"http://www.7-zip.org/","ProductVersion":"18.05","Image":[137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,48,0,0,0,48,8,6,0,0,0,87,2,249,135,0,0,0,1,115,82,71,66,0,174,206,28,233,0,0,0,4,103,65,77,65,0,0,177,143,11,252,97,5,0,0,0,9,112,72,89,115,0,0,11,18,0,0,11,18,1,210,221,126,252,0,0,1,73,73,68,65,84,104,67,237,206,65,110,195,48,16,67,209,220,255,210,173,186,16,65,124,142,101,195,202,98,10,232,1,220,228,79,12,125,142,227,56,142,111,249,249,103,11,213,81,231,133,234,168,243,130,98,87,254,198,177,160,216,149,191,113,44,40,118,229,111,28,11,138,93,249,27,199,130,34,121,219,217,46,124,47,40,146,183,157,237,194,247,130,34,121,219,217,46,124,47,40,146,183,170,175,188,253,95,197,191,53,22,20,201,91,213,87,222,254,175,226,223,26,11,138,228,173,234,43,111,255,87,241,111,141,5,69,242,118,55,186,106,254,251,213,8,61,40,146,183,213,104,213,217,170,17,122,80,36,111,87,163,187,155,170,115,132,30,20,201,91,53,170,110,254,118,231,238,30,61,40,146,55,142,170,155,185,149,39,183,184,9,138,228,141,163,234,102,110,229,201,45,110,130,34,121,227,168,186,153,187,242,242,46,40,146,55,142,170,155,185,202,147,155,9,183,65,145,188,113,84,221,204,85,158,220,76,184,13,138,228,141,163,234,102,142,238,58,225,62,40,146,55,142,170,155,57,183,106,87,240,159,160,72,222,118,230,170,206,17,122,80,36,111,59,115,85,231,8,61,40,146,183,157,185,170,115,132,30,20,187,242,55,142,5,197,174,252,141,99,65,177,43,127,227,88,80,236,202,223,56,22,120,208,125,161,58,234,188,80,29,117,222,113,28,199,177,235,243,249,5,236,91,239,199,180,132,5,65,0,0,0,0,73,69,78,68,174,66,96,130],"MSIProductID":"","Architecture":"X64","PSUninstall":"$proc = (Start-Process -FilePath \"$($Env:ProgramFiles)\\7-Zip\\Uninstall.exe\" -ArgumentList \"/S\" -Wait -PassThru);$proc.WaitForExit();$ExitCode = $proc.ExitCode","PSDetection":"if(([version](Get-ItemPropertyValue -path \u0027HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\7-Zip\u0027 -Name DisplayVersion -ea SilentlyContinue)) -ge \u002718.05\u0027) { $true } else { $false }","PSInstall":"$proc = (Start-Process -FilePath \"7z1805-x64.exe\" -ArgumentList \"/S\" -Wait -PassThru);$proc.WaitForExit();$ExitCode = $proc.ExitCode","PSPreReq":"[Environment]::Is64BitProcess","PSPreInstall":"try { $proc = (Start-Process -FilePath \"$($Env:ProgramFiles)\\7-Zip\\Uninstall.exe\" -ArgumentList \"/S\" -Wait -PassThru); } catch{}","PSPostInstall":"","ContentID":"rz7-Zip","Files":[{"FileHash":"1DEEFE6649699946590856E901BBE5FF","FileName":"7z1805-x64.exe","HashType":"MD5","URL":"http://www.7-zip.org/a/7z1805-x64.exe"}],"Author":"rzander","Category":"Compression","PreRequisites":[""],"SWId":0,"IconURL":""}
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Temp/_AdobeReader DC MUI.json:
--------------------------------------------------------------------------------
1 | {"ProductName":"Adobe Acrobat Reader DC MUI","Manufacturer":"Adobe Systems Incorporated","Description":"More powerful than other PDF software, Adobe Acrobat Reader DC is the free, trusted standard for viewing, printing, and annotating PDFs. And now, it\u0027s connected to Adobe Document Cloud so its easier than ever to work with PDFs on computers and mobile devices.","Shortname":"AdobeReader DC MUI","ProductURL":"https://acrobat.adobe.com/us/en/products/pdf-reader.html","ProductVersion":"18.011.20058","Image":[137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,128,0,0,0,128,8,6,0,0,0,195,62,97,203,0,0,0,1,115,82,71,66,0,174,206,28,233,0,0,0,4,103,65,77,65,0,0,177,143,11,252,97,5,0,0,0,9,112,72,89,115,0,0,11,18,0,0,11,18,1,210,221,126,252,0,0,27,69,73,68,65,84,120,94,237,221,9,152,20,229,157,199,113,5,134,67,5,21,196,43,18,4,103,0,5,52,65,14,111,69,140,130,171,38,49,94,81,136,160,38,174,49,72,188,141,171,9,186,198,35,187,74,86,81,76,140,155,4,69,69,163,43,94,49,234,26,141,183,2,209,136,171,162,28,10,204,125,79,119,207,221,147,247,87,83,111,205,91,255,250,85,247,219,221,213,51,224,78,61,207,247,121,116,144,71,157,207,175,170,171,123,122,134,237,122,143,222,163,247,232,61,188,163,95,243,248,62,29,205,227,251,250,106,50,59,32,69,251,247,237,104,12,107,92,176,4,26,219,47,188,49,253,58,226,172,162,96,49,84,104,86,208,217,126,157,53,200,70,7,171,31,21,210,190,186,254,29,117,186,145,188,218,175,147,70,248,171,209,237,131,6,248,251,218,128,142,106,217,222,193,170,246,10,107,96,71,229,158,164,61,58,131,113,39,117,240,232,163,26,254,213,192,71,41,6,64,240,17,197,71,238,0,60,252,144,1,80,124,20,138,47,6,192,240,145,196,79,53,128,20,248,238,0,134,187,214,129,3,203,40,162,248,12,220,140,161,235,4,188,21,62,98,248,72,224,243,1,164,192,71,89,224,251,206,254,76,6,96,224,7,7,96,224,119,223,0,138,92,235,192,81,160,26,159,209,89,143,24,186,78,192,119,15,62,74,49,0,130,143,40,62,178,60,251,145,245,0,216,217,31,54,0,129,159,122,0,3,109,6,48,222,181,14,28,206,0,242,137,143,122,244,210,143,178,192,183,25,0,197,71,18,63,108,0,12,31,89,227,171,24,62,202,120,0,2,122,108,255,237,214,142,233,191,221,167,36,124,156,245,25,233,115,210,58,93,81,129,211,122,210,6,210,70,209,23,162,47,73,155,68,155,69,91,138,250,249,42,22,149,144,74,69,101,162,114,93,97,103,21,157,109,175,171,20,85,121,245,117,170,38,213,136,106,69,117,58,137,111,55,0,129,143,20,208,167,69,253,183,251,68,132,143,177,214,146,62,35,125,174,43,44,240,90,39,90,79,218,32,218,72,250,66,244,165,104,19,105,179,194,49,219,34,42,22,149,136,74,69,101,102,251,117,86,222,217,246,186,10,81,165,83,95,175,42,81,181,168,70,84,107,150,175,1,72,112,29,131,71,217,226,179,1,72,124,54,0,137,111,51,128,116,248,81,12,192,197,247,6,192,241,187,6,144,41,126,183,12,64,162,235,24,60,138,18,159,13,64,226,179,1,164,195,183,25,64,166,248,190,1,40,116,251,179,63,251,1,248,240,85,117,18,63,187,1,168,27,58,53,0,96,50,120,36,209,117,91,35,62,27,64,58,252,108,6,144,238,236,15,31,64,68,151,127,85,142,3,80,240,250,46,63,197,0,36,186,46,223,248,108,0,18,159,13,64,226,219,12,32,29,126,202,1,40,244,40,46,255,145,12,160,194,106,0,6,188,142,12,64,130,235,24,60,202,55,62,27,128,196,103,3,72,135,111,51,128,80,124,228,31,64,247,93,254,81,86,3,48,225,201,0,36,184,25,131,71,182,248,200,102,0,54,248,108,0,18,223,102,0,18,63,155,1,184,248,161,103,127,215,0,34,188,252,35,137,95,177,123,110,3,72,21,131,71,81,227,179,1,228,11,159,13,32,29,190,111,0,10,189,59,206,254,110,25,0,48,179,130,71,234,147,157,47,124,54,0,137,207,6,32,241,217,0,36,190,205,0,210,157,253,249,24,0,197,71,185,15,192,125,249,150,12,64,130,155,245,36,62,27,128,196,103,3,144,248,108,0,233,240,125,3,80,232,81,156,253,145,12,64,227,219,15,192,133,15,25,128,4,55,219,22,241,217,0,210,225,179,1,244,196,217,159,135,1,8,124,99,0,169,10,131,15,195,103,240,40,74,124,54,128,108,240,217,0,36,190,111,0,10,157,13,32,29,126,54,3,8,197,71,222,0,92,252,92,6,0,216,180,240,72,125,146,83,193,35,6,143,242,141,207,6,32,241,217,0,36,62,27,64,119,156,253,89,13,192,60,251,179,26,0,190,124,27,50,128,48,248,109,5,159,13,64,226,179,1,72,124,223,0,20,186,205,217,223,53,128,232,206,254,232,6,224,124,205,30,185,95,163,23,3,240,193,35,245,201,77,7,143,24,60,202,5,31,69,133,207,6,32,241,217,0,242,113,246,103,51,0,31,190,170,94,226,91,13,128,189,97,67,13,96,93,26,248,84,248,12,93,23,53,190,237,0,242,133,111,12,32,20,191,107,0,217,159,253,121,28,128,192,103,3,80,159,80,27,120,196,208,17,131,71,121,195,159,182,215,238,197,151,206,57,187,234,103,63,58,191,250,156,25,199,84,140,27,84,0,228,48,124,148,14,159,13,192,197,239,249,179,31,73,252,156,7,160,62,153,185,194,35,6,143,242,134,191,232,231,215,213,53,53,54,38,59,140,163,162,180,180,237,154,31,158,87,173,126,221,6,159,13,64,226,219,156,253,18,63,111,103,63,138,108,0,69,157,168,54,240,136,161,235,24,60,202,27,254,237,215,93,91,11,240,135,127,251,155,216,49,133,251,150,30,57,106,68,233,61,55,223,84,159,108,111,119,134,176,232,23,215,215,171,127,46,83,124,223,0,252,248,61,126,246,231,101,0,192,99,216,102,18,219,140,161,35,6,143,24,60,202,8,127,202,30,195,138,19,177,88,242,201,101,15,196,213,223,155,143,247,91,150,45,185,39,134,1,180,171,33,124,127,250,81,149,234,99,97,3,72,137,143,178,196,207,235,217,143,2,3,24,158,233,0,198,116,150,102,0,18,219,140,161,235,24,60,98,240,40,35,124,180,112,254,197,53,201,100,178,99,198,184,66,160,249,6,48,99,92,81,153,115,9,80,199,202,55,94,111,86,31,179,61,251,37,62,27,128,196,103,3,144,248,54,3,72,135,31,209,0,92,120,253,150,236,144,1,72,108,25,67,215,49,120,196,224,81,198,248,232,217,199,150,199,215,127,250,73,171,250,107,31,190,202,57,219,43,203,203,59,31,7,212,113,252,1,99,241,174,221,116,248,190,1,132,224,179,1,116,251,217,143,36,190,221,0,12,120,50,0,137,204,98,224,58,134,142,24,58,98,240,136,225,111,82,40,190,1,124,252,193,251,45,207,63,254,167,132,250,107,58,0,252,186,235,223,113,203,85,87,212,169,143,89,227,35,255,0,66,241,217,0,210,225,179,1,164,195,143,102,0,18,223,29,0,240,24,182,153,196,54,99,232,58,6,143,24,60,178,194,71,229,165,37,237,127,92,124,103,131,250,235,0,62,250,112,213,74,111,0,234,106,209,168,62,150,37,126,70,103,191,196,103,3,144,248,54,3,240,225,35,137,95,158,167,1,72,108,25,67,215,49,120,196,224,17,195,15,192,187,109,105,168,171,75,46,185,245,102,220,229,7,240,209,218,143,214,120,3,88,179,122,85,139,250,152,213,0,114,192,239,182,179,95,213,16,205,0,138,66,7,32,161,101,12,92,199,208,117,12,30,101,132,143,234,170,171,219,239,189,237,22,61,0,31,62,170,40,45,245,238,1,54,111,220,216,166,62,102,123,246,219,224,179,1,72,124,54,0,137,111,51,0,137,223,53,0,3,223,126,0,198,247,223,137,1,72,100,22,3,215,49,112,29,67,71,12,30,49,120,164,207,246,45,197,155,190,108,123,224,158,197,49,245,215,1,252,253,7,21,148,180,181,181,185,252,29,29,149,101,101,237,234,227,54,248,108,0,54,248,221,122,246,163,236,6,32,240,221,1,0,143,97,155,73,108,25,67,215,49,120,196,224,17,131,71,30,62,90,163,46,235,207,61,246,40,110,2,229,0,74,78,152,176,127,133,107,239,28,37,155,55,225,10,144,13,62,27,128,13,62,27,64,58,124,54,0,137,223,53,0,129,159,175,1,72,104,25,3,215,49,116,29,131,71,12,30,249,240,209,139,43,158,108,124,255,157,183,245,115,124,15,31,93,124,250,247,170,93,123,231,112,159,46,70,129,207,6,144,13,62,27,128,196,103,3,112,240,81,36,3,192,183,96,147,1,72,100,22,3,55,99,232,136,161,235,172,224,221,138,239,251,207,95,53,212,84,85,225,210,238,195,71,139,111,186,177,193,181,119,142,149,175,191,134,161,208,1,228,136,207,6,32,241,217,0,36,62,27,64,40,62,146,248,214,3,112,190,239,94,87,232,27,128,68,102,49,108,51,134,174,99,232,104,179,83,6,248,232,242,31,204,118,206,242,35,71,125,29,144,30,62,122,249,153,167,27,29,121,247,80,15,21,120,26,152,235,217,111,131,207,6,32,241,217,0,210,225,167,31,192,110,131,210,15,128,253,208,5,53,0,192,49,108,51,9,45,99,224,58,134,174,99,240,136,193,35,125,182,23,31,55,174,208,121,185,119,193,217,103,213,168,191,247,13,160,162,180,196,123,6,128,67,61,91,80,255,171,219,12,62,74,137,143,124,248,214,3,16,248,40,197,0,36,50,139,129,155,49,116,29,131,71,12,30,121,248,186,242,146,146,246,7,151,220,131,47,6,121,248,211,139,70,151,187,238,222,113,245,249,243,240,74,96,182,248,108,0,54,248,108,0,18,159,13,64,226,7,7,208,103,251,152,196,207,114,0,5,108,0,18,153,197,176,205,24,184,142,161,35,134,142,2,240,110,37,207,44,127,36,177,238,19,231,6,207,27,192,181,63,186,160,206,117,247,142,83,166,124,179,74,253,90,84,248,108,0,54,248,108,0,18,159,13,192,143,31,24,64,39,126,6,3,112,127,206,142,155,59,0,219,24,182,25,3,55,99,240,136,193,35,6,143,28,236,107,46,56,207,121,63,192,177,99,246,195,23,123,156,199,248,39,151,61,232,123,252,111,110,106,74,142,27,84,128,95,207,23,62,27,128,13,62,27,128,196,15,14,64,225,251,6,224,226,91,14,192,143,143,31,180,164,6,0,56,134,109,38,161,101,12,219,140,161,235,24,60,98,240,200,59,219,39,239,49,172,172,173,181,181,227,87,63,187,26,175,8,150,22,21,108,95,90,94,82,236,123,252,255,112,229,123,120,25,184,59,241,217,0,34,197,247,6,96,224,219,15,64,161,155,165,24,128,68,102,49,108,179,176,59,124,196,208,17,67,215,121,248,186,55,95,254,223,230,53,157,175,245,151,158,124,240,65,149,174,187,119,44,93,124,23,238,17,122,18,159,13,64,226,179,1,248,241,35,25,128,1,175,127,180,154,24,128,4,14,139,97,155,165,130,71,12,30,49,116,20,128,119,43,189,246,194,206,199,252,89,7,142,175,92,244,243,235,124,207,255,113,44,56,251,204,218,12,241,145,28,64,148,248,108,0,18,63,56,0,3,223,25,128,192,183,26,128,239,103,234,117,13,0,96,12,153,37,161,101,217,194,35,6,143,24,60,114,30,243,15,218,117,112,89,60,214,144,92,186,248,206,248,251,239,188,237,125,5,16,7,222,49,52,101,207,221,20,40,197,71,18,30,101,123,246,231,15,191,135,7,32,145,89,249,128,71,12,30,233,23,117,156,30,255,195,239,19,245,181,181,73,188,7,208,60,62,254,199,7,173,221,132,207,6,96,131,207,6,144,22,63,154,1,184,63,73,51,100,0,18,56,172,92,224,17,67,71,12,29,249,224,117,120,154,231,154,251,142,251,23,221,30,239,33,124,54,0,27,252,224,0,8,190,42,46,241,203,134,217,12,192,248,17,170,100,0,18,55,85,249,130,71,12,30,81,124,149,115,135,255,249,199,31,183,186,238,222,49,251,91,199,214,108,37,248,108,0,233,241,249,0,226,163,197,0,128,159,203,0,128,201,144,89,61,1,143,24,60,114,240,167,237,181,123,5,158,14,154,71,125,93,109,114,172,122,254,175,80,83,193,163,158,192,103,3,176,193,239,145,1,164,67,71,12,219,140,129,155,49,116,196,208,117,14,62,186,113,193,252,122,215,221,59,158,125,236,209,38,133,186,173,224,7,7,144,2,223,28,128,198,143,122,0,157,232,61,7,143,24,58,242,224,117,239,189,254,154,239,238,31,199,165,179,207,169,83,176,219,38,62,31,128,135,175,7,96,226,103,60,0,253,99,211,221,1,248,227,216,102,12,219,140,97,155,49,112,29,67,215,5,240,143,26,61,178,82,127,43,152,121,92,123,225,143,234,13,108,89,212,248,40,159,248,49,19,63,235,1,248,126,94,126,215,0,0,198,144,101,18,153,197,176,101,12,93,199,208,117,1,124,117,131,87,182,232,23,215,59,223,6,38,15,124,165,240,192,93,135,0,153,195,103,135,143,108,240,217,0,178,198,87,249,240,85,9,137,159,253,0,58,225,24,56,146,192,97,49,104,25,3,215,49,112,29,133,215,79,239,212,221,127,215,187,63,221,99,241,47,111,138,183,52,55,119,252,254,191,126,157,112,225,123,26,223,110,0,118,248,121,31,128,196,77,21,131,150,49,112,29,3,55,75,137,127,234,161,83,125,239,253,195,145,136,199,146,19,119,222,169,242,190,219,255,35,129,103,6,39,79,158,164,158,10,26,240,91,43,62,31,0,197,71,81,14,0,72,12,55,44,9,28,22,3,55,99,224,186,0,60,50,241,209,35,247,253,54,225,186,123,135,123,247,95,49,97,200,142,149,155,54,108,104,91,179,122,117,235,152,129,5,219,34,62,27,128,131,143,2,3,24,154,233,0,220,63,47,199,114,0,18,55,44,6,45,99,224,58,43,120,52,126,240,14,21,117,181,53,190,31,12,129,227,130,83,78,194,221,191,115,217,159,119,226,204,58,124,61,64,221,39,196,213,39,57,21,60,98,240,104,107,193,15,31,128,194,183,27,128,241,7,37,89,12,64,226,166,138,65,203,24,184,89,24,124,0,95,225,150,95,57,239,220,192,115,127,220,248,141,25,208,207,247,120,191,252,254,223,53,225,126,224,219,83,14,6,18,131,71,12,30,109,149,248,40,199,1,244,119,194,159,146,101,12,64,162,166,139,33,179,24,182,89,0,30,133,193,235,216,115,255,251,23,221,129,155,190,174,203,189,234,192,157,7,87,125,177,110,93,251,186,79,62,105,155,56,100,48,80,109,240,25,60,218,42,240,145,196,183,26,128,239,143,71,235,26,0,144,24,112,88,18,152,197,160,101,25,192,251,240,43,102,30,56,62,112,243,135,227,248,9,7,248,111,248,220,203,254,247,14,59,164,14,87,129,21,203,150,53,169,191,239,9,124,20,25,190,170,81,226,151,230,113,0,18,55,85,12,90,150,10,62,229,89,175,114,30,219,151,222,189,56,112,243,183,234,141,55,90,213,175,249,224,85,30,246,205,87,92,30,199,63,119,253,143,47,138,185,31,235,57,124,251,1,80,124,36,241,51,27,128,241,135,34,134,12,64,194,166,138,33,179,40,60,178,133,71,227,213,221,125,93,77,240,230,239,202,243,230,54,168,95,167,248,168,176,95,159,170,231,31,127,188,25,87,130,179,142,57,26,40,91,59,62,27,128,131,143,36,190,221,0,12,120,49,128,108,98,200,44,138,142,56,124,56,62,250,249,197,63,14,188,237,171,166,170,42,121,192,142,131,0,77,241,117,19,134,236,84,243,241,7,31,180,85,149,151,39,143,41,28,13,200,109,9,63,111,3,0,18,3,102,73,220,176,40,184,78,33,103,12,143,10,11,250,84,172,253,232,163,192,43,127,247,223,161,110,254,82,192,187,57,216,71,141,222,183,182,172,184,184,125,195,218,181,237,83,246,220,29,160,12,30,73,120,180,85,224,35,137,95,186,107,126,6,32,97,211,69,193,117,10,57,43,120,221,185,51,143,15,124,211,71,123,91,91,199,209,251,141,2,24,67,71,250,44,247,58,249,224,73,117,248,9,35,31,174,90,213,166,158,37,0,54,29,60,218,106,240,145,196,143,106,0,18,212,38,138,173,83,192,57,195,187,85,190,246,194,11,129,167,126,127,121,226,137,102,245,9,102,240,40,128,239,86,115,206,113,199,54,36,226,241,228,251,239,188,211,250,141,93,119,1,112,0,255,224,225,195,234,78,60,232,192,134,115,102,76,143,93,124,250,105,241,107,46,56,63,161,110,34,27,111,252,233,130,198,133,151,204,111,252,183,127,189,176,241,210,57,179,19,106,152,241,89,7,77,140,169,135,161,32,124,30,240,85,77,18,223,106,0,236,79,192,118,7,144,105,20,219,76,1,135,160,163,204,224,209,201,147,39,213,226,85,61,121,224,41,158,250,36,103,132,175,155,59,107,102,67,115,83,83,199,7,106,4,55,44,184,36,177,116,241,93,205,127,123,225,47,173,120,120,80,227,112,255,13,254,3,55,145,248,61,72,126,25,26,111,74,197,239,253,159,7,150,182,254,244,156,179,27,213,213,133,193,163,156,240,81,148,3,0,24,67,150,5,144,89,10,56,82,120,221,179,143,46,111,114,63,207,222,241,246,43,175,180,40,72,107,248,131,135,239,86,123,193,201,39,197,22,223,116,83,227,43,207,61,215,82,182,101,139,79,176,82,221,28,190,246,226,11,173,127,188,235,206,230,127,191,244,167,141,23,157,246,189,248,119,15,153,26,59,122,191,209,13,7,237,186,115,189,122,38,225,187,236,171,191,175,87,31,111,152,49,118,76,236,220,19,142,79,220,122,213,149,77,239,190,246,55,239,30,5,15,51,191,187,227,246,150,73,187,13,139,71,132,143,186,6,96,224,231,99,0,1,220,176,20,174,45,58,98,216,102,62,120,116,220,254,99,107,204,159,249,163,143,57,199,31,7,136,80,252,195,71,142,168,189,114,222,220,216,99,255,125,127,211,231,159,124,220,174,175,32,141,137,68,199,234,183,222,108,125,112,201,61,205,234,50,158,184,248,140,211,226,21,165,165,201,242,146,146,228,105,135,31,138,203,182,249,56,111,230,225,139,124,151,124,245,223,149,168,169,170,244,46,87,229,197,197,201,211,14,59,44,17,130,143,108,7,224,224,35,137,31,197,0,2,176,169,82,184,41,208,81,238,240,234,147,233,132,87,240,220,207,165,119,172,126,243,205,86,245,107,62,248,9,131,119,172,249,225,183,79,105,80,176,77,184,20,187,255,104,71,241,151,95,182,63,189,252,145,102,92,230,79,153,60,169,126,236,128,130,192,227,189,58,203,235,63,93,179,166,13,151,246,133,243,127,210,168,62,150,21,190,147,58,211,207,59,241,68,223,55,169,214,215,214,118,28,177,239,72,192,230,140,143,130,3,216,33,139,1,140,112,6,224,125,231,108,186,20,108,212,232,40,8,143,92,252,176,179,127,246,183,102,224,147,95,125,228,168,125,107,127,121,249,101,241,55,94,122,169,165,169,177,243,115,142,231,249,79,63,242,48,206,238,248,244,162,253,128,231,61,238,187,249,240,117,19,135,236,84,175,126,159,115,163,249,226,83,43,90,167,238,181,7,254,29,97,248,65,120,212,117,169,143,225,170,226,252,7,185,199,31,239,186,171,85,225,229,140,143,178,27,128,2,151,165,26,128,66,205,6,29,49,104,89,74,120,149,115,118,63,243,232,242,102,247,243,231,29,27,62,91,219,246,235,133,191,72,172,89,189,202,89,6,110,190,112,55,143,143,125,123,234,100,60,54,75,112,29,133,87,153,103,122,221,213,231,159,151,136,213,215,39,171,43,42,146,63,251,225,5,141,120,172,87,31,207,8,31,109,252,252,115,223,61,198,218,143,214,180,43,188,156,241,85,205,18,191,100,151,8,6,160,64,45,192,81,214,232,200,10,30,41,76,122,231,143,3,151,234,87,254,252,92,203,117,23,93,24,87,103,42,16,157,27,189,20,73,116,157,15,95,167,46,215,13,127,125,246,89,231,155,13,62,92,181,178,109,238,172,19,240,158,2,107,252,201,187,15,143,183,138,239,85,216,180,126,125,82,225,229,140,143,36,126,214,3,80,240,10,207,166,188,162,251,224,117,184,172,187,159,59,239,248,232,239,171,219,174,58,111,94,236,27,67,119,1,170,190,225,147,216,102,12,93,71,241,85,222,217,126,254,201,255,146,88,187,102,141,115,38,255,99,229,202,182,203,230,204,110,12,60,223,23,248,133,125,251,196,158,88,186,52,240,157,74,47,63,243,76,155,194,203,25,31,73,124,171,1,212,40,112,153,26,128,2,138,28,92,151,21,252,119,167,77,173,123,226,129,165,129,27,191,38,117,247,126,244,232,81,128,211,240,145,158,245,110,30,190,174,168,160,111,61,158,215,127,184,106,149,51,4,124,35,234,159,254,240,251,214,249,103,158,209,56,105,216,80,239,41,30,224,79,61,100,26,158,98,6,111,90,212,49,119,214,76,224,229,140,143,36,126,230,3,216,167,179,206,1,80,108,157,68,77,23,71,71,41,224,199,13,236,95,117,249,185,115,26,254,241,222,123,129,51,71,31,75,110,189,21,119,231,121,63,235,69,190,179,253,212,67,15,73,60,244,155,123,91,42,203,202,156,199,38,60,68,149,169,167,121,27,63,251,44,169,158,247,59,255,157,242,104,109,105,233,184,97,193,130,22,5,23,9,62,146,248,118,3,112,209,187,26,160,6,224,160,101,139,173,227,224,40,5,58,58,112,151,33,213,183,93,115,85,188,212,125,81,70,61,222,182,190,243,234,171,129,17,148,108,218,212,142,175,230,169,223,147,46,134,142,24,186,142,193,35,31,190,23,206,246,126,125,99,223,153,58,37,113,203,21,87,52,63,253,240,195,173,107,212,213,1,119,253,137,88,204,185,63,193,13,164,186,49,109,191,247,182,219,90,167,143,41,2,108,100,248,40,203,1,12,112,208,205,220,1,100,19,7,215,165,129,87,143,225,213,119,222,120,67,162,174,186,58,137,151,84,95,122,106,69,203,153,71,31,89,63,77,221,208,177,175,247,207,63,235,76,188,145,131,129,235,24,186,142,161,35,134,174,11,197,15,73,223,221,155,73,116,93,78,248,170,150,40,7,0,48,6,44,11,34,203,210,160,35,117,3,165,206,248,171,227,248,26,62,158,223,175,88,246,96,243,9,19,14,0,134,115,105,95,241,208,178,192,211,62,188,108,171,126,141,161,35,6,174,147,224,102,12,29,101,10,143,242,129,143,40,62,10,12,96,231,232,7,16,4,102,89,160,235,212,89,220,176,121,227,70,231,37,217,103,31,125,180,249,184,253,199,2,66,63,166,87,159,59,243,132,192,155,61,226,13,13,73,117,227,135,127,46,19,120,100,98,155,49,116,93,166,248,12,30,49,120,20,9,62,146,248,153,13,224,107,93,185,3,176,207,15,158,22,29,29,59,166,176,230,245,23,95,116,158,210,189,247,250,107,173,223,153,54,5,16,30,60,154,184,243,224,154,77,27,54,248,94,56,193,177,240,146,159,224,205,30,153,224,75,112,51,134,174,203,39,62,131,71,182,240,200,195,71,18,223,110,0,10,188,90,164,6,80,69,161,205,50,4,215,225,125,120,55,92,50,63,142,63,223,15,55,72,151,253,96,142,186,121,234,227,131,215,45,187,119,73,224,105,223,91,127,125,185,85,188,170,199,192,117,12,92,199,192,117,153,194,35,6,143,186,5,31,73,124,171,1,72,124,58,0,63,182,142,2,167,234,155,67,119,173,121,233,169,167,156,199,243,167,30,126,168,121,210,110,67,1,200,240,107,230,157,56,171,65,190,226,87,171,110,14,143,24,57,2,120,185,192,35,134,174,203,20,31,207,249,109,225,17,131,71,57,225,171,90,163,27,64,39,88,78,216,70,14,234,244,49,133,181,235,63,253,180,45,214,80,159,188,108,206,108,220,189,7,208,117,120,25,23,95,134,117,221,189,227,39,103,156,142,151,94,25,184,25,3,215,49,112,29,135,71,28,30,49,120,196,224,17,131,71,57,227,35,137,95,156,227,0,178,77,194,86,207,156,56,190,14,223,162,133,155,189,89,7,77,4,132,254,53,15,93,87,84,208,183,6,111,192,112,205,189,227,129,187,23,227,109,94,12,92,39,177,205,24,184,142,163,35,142,174,99,240,136,193,35,6,143,34,193,71,18,223,126,0,123,251,83,3,0,14,195,101,121,208,172,67,247,249,90,109,233,230,205,237,235,215,174,109,63,108,196,62,128,194,199,3,240,186,187,111,254,165,239,107,230,56,86,190,241,122,235,184,65,3,36,184,142,129,235,24,184,25,135,71,28,29,133,93,242,81,174,240,136,193,163,148,248,72,226,23,15,177,25,128,192,183,24,128,15,56,85,184,185,195,43,120,149,229,101,201,35,71,141,4,8,69,215,93,242,253,179,98,242,113,127,203,23,95,180,79,219,123,79,252,94,91,116,196,176,205,56,58,226,232,58,134,142,24,60,98,240,136,193,35,6,143,210,226,35,137,31,197,0,2,168,25,84,115,201,89,103,58,63,170,229,162,83,191,155,238,21,187,154,179,142,62,170,1,111,203,50,143,186,154,234,228,204,137,19,0,102,11,143,36,182,25,71,71,28,92,151,233,89,143,24,60,98,240,136,193,35,43,124,85,155,196,207,101,0,64,97,168,233,242,161,190,250,252,159,91,254,239,253,247,219,228,199,141,28,216,83,38,31,220,0,108,215,221,57,240,230,139,51,142,60,2,195,137,2,30,113,120,196,209,117,12,29,49,116,29,131,71,12,30,217,194,35,138,143,36,190,213,0,170,20,184,175,189,50,26,128,4,245,133,155,190,165,119,47,198,119,223,154,31,215,103,179,211,233,71,28,222,80,91,85,229,195,111,80,248,103,31,59,29,248,12,218,140,65,203,56,58,226,224,186,173,237,172,71,161,248,163,183,87,3,16,248,118,3,80,224,178,144,1,152,136,86,225,236,87,207,251,241,154,189,15,93,119,233,236,115,226,141,226,189,246,21,165,37,201,239,76,155,146,14,159,65,203,56,58,226,224,102,12,29,49,116,29,131,71,12,30,49,120,36,209,117,41,241,243,49,128,92,171,189,227,250,235,26,241,109,90,115,103,205,212,151,114,167,67,247,217,187,110,197,67,203,2,239,236,249,224,221,119,219,14,31,57,2,72,12,29,49,104,89,16,220,140,131,235,162,60,235,17,131,71,12,30,49,120,148,22,63,234,1,0,138,161,166,202,3,214,237,191,195,192,186,191,191,253,86,27,222,252,240,204,242,229,45,75,110,189,165,233,197,21,79,182,224,107,227,230,129,155,191,95,47,92,216,52,118,64,1,67,71,12,90,198,193,117,28,92,151,13,60,98,232,136,161,235,24,60,178,133,71,1,124,58,128,193,249,27,64,0,59,172,241,59,237,80,119,255,162,59,154,226,177,88,224,149,61,188,141,106,217,146,37,205,71,236,251,117,32,101,131,142,130,216,102,28,220,140,161,235,24,58,98,232,58,134,142,24,58,98,240,136,193,35,138,175,106,151,248,91,178,27,192,64,57,128,0,106,134,57,160,227,7,239,88,63,251,91,51,226,120,123,245,149,243,230,38,112,135,63,110,96,255,252,160,35,142,109,198,192,117,12,93,199,208,117,12,30,49,120,196,224,17,131,71,12,191,93,39,241,45,7,48,176,163,106,79,127,106,0,192,96,152,54,73,212,116,49,224,176,56,182,25,199,54,139,250,114,143,24,186,142,193,35,6,143,194,225,83,224,35,137,111,53,128,74,5,46,203,112,0,18,212,38,134,27,22,135,150,113,108,179,84,240,136,161,235,24,186,142,161,35,134,174,179,133,71,86,248,72,226,231,99,0,18,50,147,24,110,170,56,180,25,135,150,117,55,60,98,232,136,193,35,6,143,172,241,145,196,223,50,120,199,156,6,16,69,12,54,85,28,90,198,161,101,249,130,71,12,29,49,116,29,131,71,12,30,49,248,48,252,36,146,248,185,12,0,24,12,52,93,18,212,38,142,44,227,200,172,92,224,17,3,215,49,116,29,67,71,12,93,199,224,81,198,248,72,226,111,217,201,102,0,123,40,116,145,229,0,36,100,38,113,100,22,71,102,109,109,240,136,161,35,134,142,50,186,228,171,60,124,228,193,187,248,81,14,64,2,102,26,199,13,139,3,179,210,161,35,134,109,198,192,205,24,186,142,161,35,134,174,99,240,40,39,124,36,241,115,25,0,32,24,164,109,65,212,116,113,224,176,182,86,120,196,208,17,67,215,101,114,201,71,1,124,36,241,187,115,0,65,80,155,56,110,88,14,58,82,159,172,84,49,108,51,134,109,198,192,117,12,92,199,208,117,12,29,133,157,245,97,248,20,94,213,129,36,190,213,0,42,20,184,175,221,211,14,32,8,153,73,28,55,172,168,208,17,195,54,99,224,102,12,93,199,208,17,67,215,229,124,201,119,115,240,145,196,223,172,130,177,107,29,56,58,7,160,192,101,238,0,162,137,195,166,203,6,29,49,104,25,195,54,99,216,102,12,92,199,208,117,12,29,101,122,214,35,6,143,60,124,36,241,115,25,0,190,124,203,65,211,197,65,109,138,242,108,71,12,219,140,97,155,49,112,29,3,215,49,116,93,222,240,145,15,127,199,206,96,236,90,7,142,220,7,192,33,109,179,5,215,49,100,25,131,150,49,108,51,6,110,198,208,117,12,29,229,21,94,39,241,163,29,0,71,204,180,124,160,35,6,45,99,216,102,12,219,140,129,235,24,186,174,91,240,145,196,207,108,0,195,187,42,228,120,217,228,129,35,245,73,176,137,1,179,24,50,139,97,155,49,108,51,6,174,99,224,186,108,224,17,131,71,20,221,76,226,219,13,192,128,55,6,0,48,6,154,42,31,54,82,255,243,54,49,220,84,49,100,22,195,54,99,216,102,12,220,140,161,235,162,60,235,17,5,151,101,53,128,114,5,46,179,24,64,182,216,58,6,155,42,6,204,98,208,50,134,109,198,176,205,24,184,174,219,207,122,179,200,6,16,108,80,103,238,31,79,30,69,222,159,112,149,105,67,121,222,79,202,150,121,63,59,47,172,29,188,188,239,175,79,215,206,60,239,27,51,144,126,119,78,170,124,95,189,19,95,200,33,175,234,153,177,199,123,22,140,93,235,192,65,6,160,112,34,134,214,81,76,219,20,100,88,20,29,81,108,179,158,133,207,22,223,129,71,4,155,5,99,215,58,112,116,14,128,96,69,21,197,204,36,5,201,162,224,136,66,203,162,131,71,217,224,103,3,143,50,129,215,193,216,181,14,28,145,15,128,34,102,154,130,12,139,162,35,10,45,235,121,248,238,198,71,48,118,173,3,71,78,3,160,120,217,166,16,195,162,224,58,10,45,235,97,120,148,43,60,34,184,54,193,216,181,14,28,253,84,69,170,185,170,27,84,55,247,246,149,10,166,176,133,49,172,3,71,31,213,112,213,84,213,137,170,147,122,251,74,5,83,216,194,24,214,244,192,165,97,176,106,168,106,88,111,95,169,96,10,91,122,249,239,61,122,143,222,163,247,232,61,122,143,222,163,247,232,61,122,143,222,227,255,199,177,221,118,255,4,160,47,44,240,23,136,101,176,0,0,0,0,73,69,78,68,174,66,96,130],"MSIProductID":"ac76ba86-7ad7-1033-7b44-ac0f074e4100","Architecture":"X64","PSUninstall":"$proc = (Start-Process -FilePath \"msiexec.exe\" -ArgumentList \"/x {AC76BA86-7AD7-FFFF-7B44-AC0F074E4100} /qb! \" -PassThru);$proc.WaitForExit();$ExitCode = $proc.ExitCode","PSDetection":"if(([version](Get-ItemPropertyValue -path \u0027HKLM:\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{AC76BA86-7AD7-FFFF-7B44-AC0F074E4100}\u0027 -Name DisplayVersion -ea SilentlyContinue)) -ge \u002718.011.20058\u0027) { $true } else { $false }","PSInstall":"$proc = (Start-Process -FilePath \"AcroRdrDC1500720033_MUI.exe\" -ArgumentList \"/sAll /rs /msi EULA_ACCEPT=YES REBOOT=REALLYSUPPRESS\" -Wait -PassThru);$proc.WaitForExit();\r\nStart-Sleep 3;\r\n$proc = (Start-Process -FilePath \"msiexec.exe\" -ArgumentList \"/p AcroRdrDCUpd1801120058_MUI.msp /qn\" -Wait -PassThru);$proc.WaitForExit();$ExitCode = $proc.ExitCode;$ExitCode = $proc.ExitCode;","PSPreReq":"[Environment]::Is64BitProcess","PSPreInstall":"$proc = (Start-Process -FilePath \"msiexec.exe\" -ArgumentList \"/x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} REBOOT=REALLYSUPPRESS /qn \" -PassThru);$proc.WaitForExit();\r\n$proc = (Start-Process -FilePath \"msiexec.exe\" -ArgumentList \"/x {AC76BA86-7AD7-1031-7B44-AC0F074E4100} REBOOT=REALLYSUPPRESS /qn \" -PassThru);$proc.WaitForExit();","PSPostInstall":"","ContentID":"rzAdobeReader DC MUI","Files":[{"FileHash":"ca2914c1e6273464bb81205e1c7047d88f748931","FileName":"AcroRdrDC1500720033_MUI.exe","HashType":"X509","URL":"http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1500720033/AcroRdrDC1500720033_MUI.exe"},{"FileHash":"eaa843ca2833a2e1ebedebe7d04f0ca2b4d97344","FileName":"AcroRdrDCUpd1801120058_MUI.msp","HashType":"X509","URL":"http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDCUpd1801120058_MUI.msp"}],"Author":"rzander","Category":"Office","PreRequisites":[""],"SWId":0,"IconURL":""}
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Temp/_Code.json:
--------------------------------------------------------------------------------
1 | {"ProductName":"Microsoft Visual Studio Code","Manufacturer":"Microsoft Corporation","Description":"Build and debug modern web and cloud applications. Code is free and available on your favorite platform - Linux, Mac OSX, and Windows.","Shortname":"Code","ProductURL":"https://code.visualstudio.com/","ProductVersion":"1.26.1","Image":[137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,1,0,0,0,1,0,8,6,0,0,0,92,114,168,102,0,0,0,1,115,82,71,66,0,174,206,28,233,0,0,0,4,103,65,77,65,0,0,177,143,11,252,97,5,0,0,0,9,112,72,89,115,0,0,11,18,0,0,11,18,1,210,221,126,252,0,0,13,215,73,68,65,84,120,94,237,157,219,145,219,72,18,69,101,194,152,32,19,214,4,153,32,19,100,194,124,207,215,152,32,19,100,194,154,32,3,244,49,38,140,9,227,193,44,51,0,110,163,208,183,193,23,170,42,171,238,57,17,103,55,86,210,118,39,72,230,101,85,18,32,62,1,88,243,199,175,127,46,126,191,248,121,253,19,0,176,225,143,95,255,110,252,121,241,235,250,55,0,48,61,101,0,92,253,251,226,159,23,127,91,255,21,0,76,137,14,128,173,63,46,126,89,255,53,0,76,133,110,122,229,95,23,191,93,100,85,0,48,13,186,217,143,100,104,8,48,13,186,201,239,149,161,33,192,208,232,198,126,84,134,134,0,67,162,27,250,21,25,26,2,12,131,110,226,51,100,104,8,144,30,221,188,103,202,208,16,32,45,186,105,107,201,208,16,32,21,186,81,107,203,208,16,32,5,186,65,91,202,208,16,160,27,186,41,123,24,171,2,134,134,0,77,209,205,216,211,24,26,198,170,128,161,33,64,117,116,19,102,49,134,134,223,214,74,1,224,116,116,227,101,243,58,52,100,85,0,112,42,186,225,50,203,208,16,224,52,116,147,141,32,67,67,128,151,209,205,53,146,12,13,1,158,70,55,213,168,50,52,4,120,8,221,72,163,203,208,16,224,46,116,3,205,36,67,67,128,15,209,77,51,163,12,13,1,222,161,155,101,102,25,26,2,252,31,221,36,46,254,92,31,5,0,83,116,99,248,8,96,141,106,10,39,1,172,81,77,225,36,128,53,170,41,156,4,176,70,53,133,147,0,214,168,166,112,18,192,26,213,20,78,2,88,163,154,194,73,0,107,84,83,56,9,96,141,106,10,39,193,140,229,130,16,46,10,185,162,154,194,73,48,98,185,8,228,250,228,115,207,186,96,219,12,142,130,9,101,243,239,245,189,103,157,126,60,124,4,3,142,155,127,107,92,51,254,251,69,159,237,129,126,28,124,132,201,185,191,249,183,250,92,51,174,143,223,71,152,152,231,154,127,239,220,219,3,125,204,62,194,164,156,211,252,91,175,95,52,57,215,246,64,31,171,143,48,33,231,55,255,222,248,249,255,89,127,219,216,232,227,243,17,38,163,126,243,111,29,255,123,232,245,113,249,8,19,209,182,249,183,142,187,61,208,199,227,35,76,66,191,230,223,27,117,140,243,61,244,250,24,124,132,9,200,211,252,91,255,186,152,127,123,160,107,247,17,6,39,103,243,111,141,115,10,242,222,166,74,215,236,35,12,76,254,230,223,155,111,123,160,235,244,17,6,101,188,230,223,186,108,15,50,12,13,117,125,62,194,128,140,221,252,91,255,89,143,168,31,186,46,31,97,48,230,105,254,197,222,168,154,156,132,129,152,173,249,195,222,168,154,156,132,65,152,177,249,195,222,168,154,156,132,1,152,181,249,195,222,168,154,156,132,228,204,220,252,97,111,84,77,78,66,98,102,111,254,176,55,170,38,39,33,33,241,249,248,31,191,254,91,60,81,179,218,27,85,147,147,144,140,165,249,227,68,25,253,132,205,102,111,84,77,78,66,34,220,154,63,236,141,170,201,73,72,130,99,243,135,189,81,53,57,9,9,112,109,254,176,55,170,38,39,161,51,206,205,31,246,70,213,228,36,116,196,189,249,195,222,168,154,156,132,78,208,252,139,189,81,53,57,9,29,160,249,223,236,141,170,201,201,110,184,222,149,150,230,47,237,141,170,201,201,166,196,205,36,150,91,82,199,215,72,71,1,113,170,171,211,141,40,105,254,189,189,81,53,57,89,157,247,77,191,55,26,98,142,187,204,28,65,243,107,123,163,106,114,178,10,183,155,126,111,124,115,236,216,119,152,57,130,230,255,216,222,168,154,156,60,141,199,155,94,57,223,150,128,230,63,182,55,170,38,39,95,230,245,166,223,27,205,50,199,128,144,230,191,109,111,84,77,78,190,76,157,107,214,99,75,48,246,61,233,105,254,251,236,141,170,201,201,83,168,247,197,21,223,215,223,48,22,52,255,253,246,70,213,228,228,105,212,11,129,177,182,4,52,255,99,246,70,213,228,228,169,212,11,129,49,182,4,52,255,227,246,70,213,228,228,233,44,183,124,210,191,236,117,243,110,9,104,254,231,236,141,170,201,201,42,212,13,129,124,91,130,113,154,63,86,82,181,86,105,207,217,27,85,147,147,213,168,27,2,121,182,4,17,70,99,52,127,212,24,231,106,124,217,252,89,127,123,163,106,114,178,42,117,67,32,236,187,37,88,26,42,194,72,213,150,201,120,215,95,78,176,34,0,74,84,77,78,86,167,126,8,244,217,18,140,209,252,81,95,121,138,53,1,80,162,106,114,178,9,245,67,160,237,150,96,140,230,95,150,252,123,8,128,18,85,147,147,205,168,31,2,97,253,45,193,24,205,255,182,228,223,67,0,148,168,154,156,108,74,155,16,168,183,37,200,223,252,239,151,252,123,8,128,18,85,147,147,205,105,19,2,231,111,9,242,55,191,94,242,239,33,0,74,84,77,78,118,161,77,8,132,231,108,9,242,55,255,199,75,254,61,4,64,137,170,201,201,110,180,11,129,120,103,124,254,59,6,242,55,255,239,107,165,247,65,0,148,168,154,156,236,74,187,16,136,6,254,178,254,214,251,201,221,252,241,29,12,143,127,149,26,1,80,162,106,114,178,59,237,66,32,252,115,253,173,183,201,221,252,113,235,240,231,86,53,4,64,137,170,201,201,20,180,13,129,159,23,143,155,39,119,243,63,182,228,223,67,0,148,168,154,156,76,67,219,16,248,120,75,144,183,249,159,91,242,239,33,0,74,84,77,78,166,162,109,8,132,229,150,32,111,243,63,191,228,223,67,0,148,168,154,156,76,71,251,16,88,182,4,121,155,255,181,37,255,30,2,160,68,213,228,100,74,218,135,64,52,126,182,230,63,103,201,191,135,0,40,81,53,57,153,150,246,33,144,201,243,150,252,123,8,128,18,85,147,147,169,241,12,129,115,151,252,123,8,128,18,85,147,147,233,241,9,129,58,75,254,61,4,64,137,170,201,201,33,136,11,123,114,14,232,206,178,222,146,127,15,1,80,162,106,114,114,24,242,78,233,95,181,238,146,127,15,1,80,162,106,114,114,40,230,10,129,54,75,254,61,4,64,137,170,201,201,225,152,35,4,218,45,249,247,16,0,37,170,38,39,135,100,236,16,184,255,130,164,26,16,0,37,170,38,39,135,101,188,16,136,90,31,191,36,249,108,8,128,18,85,147,147,67,51,78,8,220,190,2,177,21,4,64,137,170,201,201,225,201,31,2,125,151,252,123,8,128,18,85,147,147,83,144,51,4,114,44,249,247,16,0,37,170,38,39,167,33,87,8,228,89,242,239,33,0,74,84,77,78,78,69,44,183,213,65,182,53,66,40,103,243,7,4,64,137,170,201,201,105,200,117,205,64,159,147,124,238,129,0,40,81,53,57,57,5,121,47,24,106,123,154,239,61,16,0,37,170,38,39,135,39,255,213,130,253,206,250,83,16,0,37,170,38,39,135,102,156,75,133,243,108,9,8,128,18,85,147,147,195,50,230,247,4,244,223,18,16,0,37,170,38,39,135,100,204,230,191,218,119,75,64,0,148,168,154,156,28,142,177,155,255,106,191,45,1,1,80,162,106,114,114,40,230,104,254,173,237,183,4,4,64,137,170,201,201,97,152,175,249,175,182,221,18,16,0,37,170,38,39,135,96,222,230,191,218,110,75,64,0,148,168,154,156,76,207,252,205,127,53,78,33,254,182,30,117,61,8,128,18,85,147,147,169,241,105,254,173,63,46,214,219,18,16,0,37,170,38,39,211,226,217,252,87,255,186,88,103,75,64,0,148,168,154,156,76,73,251,171,250,162,225,66,245,119,189,172,179,37,32,0,74,84,77,78,166,99,89,2,235,98,235,248,125,253,189,113,135,224,108,33,16,158,187,37,32,0,74,84,77,78,166,162,109,243,199,59,236,215,245,55,47,228,13,129,243,182,4,4,64,137,170,201,201,52,180,109,254,104,168,207,235,111,46,201,27,2,231,108,9,8,128,18,85,147,147,41,104,219,252,203,146,255,136,188,33,16,190,182,37,32,0,74,84,77,78,118,167,93,243,191,95,242,31,145,59,4,158,223,18,16,0,37,170,38,39,187,210,174,249,63,94,242,31,145,59,4,158,219,18,16,0,37,170,38,39,187,209,174,249,111,47,249,143,200,29,2,225,99,91,2,2,160,68,213,228,100,23,218,52,255,99,75,254,35,242,135,192,253,91,2,2,160,68,213,228,100,115,218,52,255,115,75,254,35,242,135,192,125,91,2,2,160,68,213,228,100,83,218,52,255,107,75,254,35,242,135,64,120,188,37,32,0,74,84,77,78,54,163,126,243,159,243,57,249,45,198,8,129,143,183,4,4,64,137,170,201,201,38,212,111,254,143,95,240,53,24,35,4,116,32,18,0,37,170,38,39,171,83,191,249,143,151,188,181,24,35,4,194,31,107,197,11,4,64,137,170,201,201,170,212,109,254,54,75,254,35,198,9,129,168,113,25,138,18,0,37,170,38,39,171,81,183,249,219,46,249,143,24,39,4,150,143,69,9,128,18,85,147,147,85,168,219,252,125,150,252,71,140,19,2,97,220,186,92,253,121,31,123,163,106,114,242,116,234,53,127,255,37,255,17,99,133,64,30,123,163,106,114,242,84,234,53,127,158,37,255,17,75,8,228,122,135,205,110,111,84,77,78,158,70,189,230,207,183,228,191,69,189,199,98,62,123,163,106,114,242,20,234,188,224,115,47,249,111,65,8,220,103,111,84,77,78,190,76,157,23,250,24,75,254,91,16,2,183,237,141,170,201,201,151,137,119,233,229,246,86,250,23,60,110,52,205,88,75,254,35,8,129,99,123,163,106,114,242,52,150,1,216,43,97,48,246,146,255,8,66,224,99,123,163,106,114,178,10,143,135,193,28,75,254,35,8,1,109,111,84,77,78,86,231,118,24,204,181,228,63,130,16,120,111,111,84,77,78,54,229,125,24,204,185,228,63,130,16,40,237,141,170,201,73,232,0,33,240,102,111,84,77,78,66,39,8,129,197,222,168,154,156,132,142,16,2,4,64,111,161,51,238,33,208,27,85,147,147,144,0,231,16,232,141,170,201,73,72,130,107,8,244,70,213,228,36,36,194,49,4,122,163,106,114,18,146,225,22,2,189,81,53,57,9,9,113,10,129,222,168,154,156,132,164,184,132,64,111,84,77,78,66,98,28,66,160,55,170,38,39,33,57,179,135,64,111,84,77,78,194,0,204,28,2,189,81,53,57,9,131,176,92,69,169,159,196,145,237,141,170,201,73,24,136,25,67,160,55,170,38,39,97,48,102,11,129,222,168,154,156,132,1,153,39,4,126,174,71,212,15,93,151,143,48,40,99,135,64,12,53,179,220,220,85,213,231,35,12,204,88,33,240,247,197,223,47,102,187,177,171,170,213,71,24,156,252,33,16,247,74,252,186,86,155,15,93,179,143,48,1,249,66,32,238,241,16,203,252,207,107,133,121,209,245,251,8,147,144,35,4,114,46,243,143,208,199,225,35,76,68,191,16,136,175,121,207,187,204,63,66,31,143,143,48,25,237,66,32,150,249,223,47,230,95,230,31,161,143,205,71,152,144,186,33,16,203,252,248,249,115,220,205,73,31,163,143,48,41,231,135,64,44,243,191,172,63,125,30,244,177,250,8,19,243,122,8,204,177,204,63,66,31,183,143,48,57,207,133,64,220,173,217,227,190,141,250,248,125,4,3,238,15,129,248,236,126,190,101,254,17,250,113,240,17,76,248,56,4,98,153,255,231,197,121,151,249,71,232,199,196,71,48,162,12,129,56,69,215,239,246,236,123,182,205,224,40,152,17,39,236,100,185,18,47,3,170,41,156,4,176,70,53,133,147,0,214,168,166,112,18,192,26,213,20,78,2,88,163,154,194,73,0,107,84,83,56,9,96,141,106,10,39,1,172,81,77,225,36,128,53,170,41,156,4,176,70,53,133,147,151,255,136,239,112,139,115,193,227,191,191,92,244,60,39,28,60,81,77,225,228,250,32,252,118,49,206,19,143,47,125,184,254,101,156,43,30,255,59,194,33,254,46,194,97,142,111,129,1,184,178,109,6,71,223,161,195,96,107,92,61,22,225,16,151,142,70,56,196,185,229,94,151,144,194,60,232,215,184,143,135,220,14,131,189,241,125,113,17,14,241,45,50,17,14,177,106,224,194,19,200,139,126,29,251,120,55,143,135,193,222,248,150,153,8,135,237,188,129,45,5,244,69,191,86,125,124,138,215,195,96,239,251,121,3,64,11,244,235,209,199,151,89,194,32,222,209,227,29,94,255,146,231,85,243,6,182,20,112,30,250,117,231,227,169,196,71,136,245,194,96,175,154,55,240,17,38,60,134,126,109,249,88,141,182,97,176,119,59,111,88,182,20,204,27,64,161,95,63,62,54,161,111,24,236,221,206,27,248,8,211,29,253,26,241,177,57,185,194,96,235,126,222,192,71,152,14,232,215,130,143,93,201,27,6,123,183,243,134,168,151,121,195,44,232,231,219,199,52,140,19,6,123,163,222,242,35,76,230,13,227,160,159,83,31,83,50,110,24,236,221,110,41,152,55,100,68,63,111,62,166,231,45,12,98,25,174,15,98,60,175,243,6,78,153,238,141,126,126,124,28,138,104,146,165,105,102,10,131,189,215,121,67,4,3,243,134,218,232,231,192,199,97,241,8,131,189,17,12,204,27,206,68,63,206,62,78,129,103,24,108,229,18,237,103,209,143,167,143,211,65,24,236,189,110,41,152,55,40,244,99,230,227,212,16,6,183,140,79,89,246,243,6,175,45,133,126,92,124,180,129,48,120,212,247,243,134,25,209,199,238,163,37,132,193,43,206,117,137,182,62,70,31,237,33,12,206,84,205,27,114,127,132,169,143,195,71,216,176,188,155,197,59,91,188,203,233,7,12,159,117,59,111,200,243,17,166,174,213,71,248,0,194,160,165,219,121,67,219,143,48,117,61,62,194,29,16,6,189,220,207,27,206,255,8,83,255,94,31,225,65,8,131,44,110,231,13,207,159,50,173,127,182,143,240,2,132,65,86,239,191,68,91,255,255,125,132,147,32,12,70,113,187,165,136,231,76,253,27,31,161,2,132,1,142,34,84,134,48,192,204,66,67,150,48,136,189,169,126,50,16,91,11,29,136,129,212,50,156,34,12,176,175,208,25,194,0,123,10,137,32,12,176,181,144,20,194,0,91,8,3,64,24,96,45,97,48,8,3,60,83,24,24,194,0,95,243,231,250,74,130,225,33,12,240,62,227,132,180,56,49,141,123,77,76,203,219,221,148,70,191,181,26,158,103,92,61,25,111,16,220,71,194,10,194,192,221,120,183,231,30,17,112,129,48,112,49,222,237,227,106,71,150,249,240,1,132,193,140,198,165,206,223,214,103,24,224,78,8,131,145,101,168,7,39,66,24,140,34,67,61,168,12,97,144,81,134,122,208,1,194,160,167,12,245,32,17,75,24,112,55,165,250,50,212,131,228,112,107,181,179,101,168,7,131,66,24,188,34,67,61,152,8,194,224,94,25,234,193,228,16,6,123,227,113,136,161,30,239,246,96,134,119,24,196,80,239,235,250,72,0,152,227,17,6,49,212,139,99,100,168,7,240,33,243,133,65,156,47,193,80,15,224,97,222,194,96,196,187,41,49,212,3,56,141,49,110,173,198,80,15,160,58,249,194,128,161,30,64,23,250,133,1,67,61,128,84,180,9,3,134,122,0,233,57,63,12,226,103,49,212,3,24,142,231,195,128,161,30,192,84,220,23,6,12,245,0,166,167,12,131,208,116,168,247,233,211,255,0,22,213,238,1,5,222,246,89,0,0,0,0,73,69,78,68,174,66,96,130],"MSIProductID":"","Architecture":"X64","PSUninstall":"$proc = (Start-Process -FilePath \"$(${Env:ProgramFiles(x86)})\\Microsoft VS Code\\unins000.exe \" -ArgumentList \"/SP- /VERYSILENT /NORESTART\" -Wait -PassThru);$proc.WaitForExit();$ExitCode = $proc.ExitCode","PSDetection":"if(([version](Get-ItemPropertyValue -path \u0027HKLM:\\SOFTWARE\\MICROSOFT\\WINDOWS\\CURRENTVERSION\\UNINSTALL\\{EA457B21-F73E-494C-ACAB-524FDE069978}_IS1\u0027 -Name DisplayVersion -ea SilentlyContinue)) -ge \u00271.26.1\u0027) { $true } else { $false }","PSInstall":"$proc = (Start-Process -FilePath \"VSCodeSetup-x64-1.26.1.exe\" -ArgumentList \"/SP- /VERYSILENT /NORESTART /MERGETASKS=!runcode\" -PassThru);$proc.WaitForExit();$ExitCode = $proc.ExitCode","PSPreReq":"[Environment]::Is64BitProcess","PSPreInstall":"$proc = (Start-Process -FilePath \"$(${Env:ProgramFiles(x86)})\\Microsoft VS Code\\unins000.exe \" -ArgumentList \"/SP- /VERYSILENT /NORESTART\" -Wait -PassThru);$proc.WaitForExit()","PSPostInstall":"start-sleep 3","ContentID":"rzCode","Files":[{"FileHash":"9dc17888b5cfad98b3cb35c1994e96227f061675","FileName":"VSCodeSetup-x64-1.26.1.exe","HashType":"X509","URL":"https://go.microsoft.com/fwlink/?Linkid=852157"}],"Author":"rzander","Category":"Development","PreRequisites":[""],"SWId":0,"IconURL":""}
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Temp/_VCRedist2013x64.json:
--------------------------------------------------------------------------------
1 | {"Architecture":"X64","Author":"rzander","Category":"Runtime","ContentID":"rzVCRedist2013x64","Description":"The Visual C++ Redistributable Packages install run-time components that are required to run C++ applications that are built by using Visual Studio 2013. ","Files":[{"FileHash":"98ed99a67886d020c564923b7df25e9ac019df26","FileName":"vcredist_x64.exe","HashType":"X509","URL":"https://download.visualstudio.microsoft.com/download/pr/10912041/cee5d6bca2ddbcd039da727bf4acb48a/vcredist_x64.exe"}],"Image":[137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,32,0,0,0,32,8,6,0,0,0,115,122,122,244,0,0,0,1,115,82,71,66,0,174,206,28,233,0,0,0,4,103,65,77,65,0,0,177,143,11,252,97,5,0,0,0,9,112,72,89,115,0,0,14,195,0,0,14,195,1,199,111,168,100,0,0,1,245,73,68,65,84,88,71,181,150,193,177,130,48,20,69,89,184,180,27,10,114,71,11,110,255,202,18,156,97,231,226,87,96,5,22,192,222,2,44,132,159,163,185,252,199,131,40,137,112,103,238,68,225,145,123,242,8,104,85,170,227,241,216,127,227,56,77,153,78,167,83,95,170,219,237,214,115,253,110,183,43,135,16,64,85,253,100,25,173,14,208,116,253,224,58,28,11,195,48,86,193,58,183,57,128,15,103,28,194,219,110,91,128,143,225,91,2,44,10,223,18,96,81,248,55,0,20,123,115,49,242,29,72,133,215,205,171,22,101,1,80,232,197,133,58,110,59,240,46,188,8,128,162,195,225,48,50,23,121,128,209,163,150,8,207,6,72,133,95,46,191,83,128,12,163,9,0,95,82,246,225,30,160,68,179,29,72,77,232,195,45,0,19,149,122,2,128,180,90,107,31,46,128,53,124,189,94,251,253,126,63,238,130,55,133,115,0,115,181,57,38,156,145,185,98,252,252,109,72,1,72,231,243,121,100,253,214,47,209,87,0,10,106,186,54,84,181,125,215,53,131,89,93,93,215,79,51,167,119,114,31,112,192,107,14,128,189,81,135,103,188,105,219,36,0,166,22,8,230,176,38,60,251,22,112,110,8,239,194,11,134,151,76,132,0,192,66,40,28,19,6,132,86,109,61,10,71,41,0,133,51,14,0,17,194,119,193,174,158,16,52,215,5,28,99,255,245,169,3,132,63,30,15,162,166,16,193,118,245,10,191,223,239,79,3,17,99,210,18,64,23,38,214,8,128,58,32,0,65,88,16,173,74,0,136,96,117,100,49,128,13,71,190,3,109,88,169,55,53,113,138,138,207,90,53,215,200,171,117,128,99,178,86,231,1,108,240,234,29,176,193,178,118,52,214,45,194,182,102,181,14,216,73,49,225,93,120,10,112,197,45,9,251,194,66,200,171,116,128,207,188,253,108,184,0,120,12,95,127,66,94,16,22,100,81,56,122,215,1,70,106,212,5,133,91,0,158,6,15,129,179,0,230,58,160,112,9,8,27,46,128,176,53,39,16,139,195,145,194,188,227,233,145,128,120,109,202,121,0,130,179,194,75,37,16,172,208,188,224,170,250,3,208,37,193,82,223,51,199,108,0,0,0,0,73,69,78,68,174,66,96,130],"MSIProductID":"050d4fc8-5d48-4b8f-8972-47c82c46020f","Manufacturer":"Microsoft Corporation","PSDetection":"if((Get-ItemProperty -path \u0027HKLM:\\SOFTWARE\\WOW6432NODE\\MICROSOFT\\WINDOWS\\CURRENTVERSION\\UNINSTALL\\{042D26EF-3DBE-4C25-95D3-4C1B11B235A7}\u0027 -Name DisplayVersion -ea SilentlyContinue | select -exp DisplayVersion) -eq \u002712.0.40664.0\u0027) { $true } else { $false }","PSInstall":"$proc = (Start-Process -FilePath \"vcredist_x64.exe\" -ArgumentList \"/q /norestart\" -Wait -PassThru);$proc.WaitForExit();$ExitCode = $proc.ExitCode","PSPostInstall":"","PSPreInstall":"$SW = gci \"HKLM:\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\\" | foreach { gp $_.PSPath } | select UninstallString,DisplayName | where { $_.DisplayName -like \"Microsoft Visual C++ 2013 Redistributable (x64) - *\" }\r\n$SW | % { start-process $_.UninstallString.Split(\"/\")[0].replace(\"`\"\", \"\") -ArgumentList \u0027/uninstall /quiet /norestart\u0027 -Wait }","PSPreReq":"[Environment]::Is64BitProcess","PSUninstall":"$proc = (Start-Process -FilePath \"$($env:ProgramData)\\Package Cache\\{042d26ef-3dbe-4c25-95d3-4c1b11b235a7}\\vcredist_x64.exe\" -ArgumentList \"/uninstall /quiet /norestart\" -PassThru);$proc.WaitForExit();$ExitCode = $proc.ExitCode","PreRequisites":[""],"ProductName":"Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.40664","ProductURL":"https://www.microsoft.com/en-us/download/details.aspx?id=40784","ProductVersion":"12.0.40664.0","SWId":0,"Shortname":"VCRedist2013x64","IconURL":""}
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Temp/_VCRedist2013x86.json:
--------------------------------------------------------------------------------
1 | {"ProductName":"Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.40664","Manufacturer":"Microsoft Corporation","Description":"The Visual C++ Redistributable Packages install run-time components that are required to run C++ applications that are built by using Visual Studio 2013. ","Shortname":"VCRedist2013x86","ProductURL":"https://support.microsoft.com/en-us/help/4032938/update-for-visual-c-2013-redistributable-package","ProductVersion":"12.0.40664.0","Image":[137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,32,0,0,0,32,8,6,0,0,0,115,122,122,244,0,0,0,1,115,82,71,66,0,174,206,28,233,0,0,0,4,103,65,77,65,0,0,177,143,11,252,97,5,0,0,0,9,112,72,89,115,0,0,14,195,0,0,14,195,1,199,111,168,100,0,0,1,245,73,68,65,84,88,71,181,150,193,177,130,48,20,69,89,184,180,27,10,114,71,11,110,255,202,18,156,97,231,226,87,96,5,22,192,222,2,44,132,159,163,185,252,199,131,40,137,112,103,238,68,225,145,123,242,8,104,85,170,227,241,216,127,227,56,77,153,78,167,83,95,170,219,237,214,115,253,110,183,43,135,16,64,85,253,100,25,173,14,208,116,253,224,58,28,11,195,48,86,193,58,183,57,128,15,103,28,194,219,110,91,128,143,225,91,2,44,10,223,18,96,81,248,55,0,20,123,115,49,242,29,72,133,215,205,171,22,101,1,80,232,197,133,58,110,59,240,46,188,8,128,162,195,225,48,50,23,121,128,209,163,150,8,207,6,72,133,95,46,191,83,128,12,163,9,0,95,82,246,225,30,160,68,179,29,72,77,232,195,45,0,19,149,122,2,128,180,90,107,31,46,128,53,124,189,94,251,253,126,63,238,130,55,133,115,0,115,181,57,38,156,145,185,98,252,252,109,72,1,72,231,243,121,100,253,214,47,209,87,0,10,106,186,54,84,181,125,215,53,131,89,93,93,215,79,51,167,119,114,31,112,192,107,14,128,189,81,135,103,188,105,219,36,0,166,22,8,230,176,38,60,251,22,112,110,8,239,194,11,134,151,76,132,0,192,66,40,28,19,6,132,86,109,61,10,71,41,0,133,51,14,0,17,194,119,193,174,158,16,52,215,5,28,99,255,245,169,3,132,63,30,15,162,166,16,193,118,245,10,191,223,239,79,3,17,99,210,18,64,23,38,214,8,128,58,32,0,65,88,16,173,74,0,136,96,117,100,49,128,13,71,190,3,109,88,169,55,53,113,138,138,207,90,53,215,200,171,117,128,99,178,86,231,1,108,240,234,29,176,193,178,118,52,214,45,194,182,102,181,14,216,73,49,225,93,120,10,112,197,45,9,251,194,66,200,171,116,128,207,188,253,108,184,0,120,12,95,127,66,94,16,22,100,81,56,122,215,1,70,106,212,5,133,91,0,158,6,15,129,179,0,230,58,160,112,9,8,27,46,128,176,53,39,16,139,195,145,194,188,227,233,145,128,120,109,202,121,0,130,179,194,75,37,16,172,208,188,224,170,250,3,208,37,193,82,223,51,199,108,0,0,0,0,73,69,78,68,174,66,96,130],"MSIProductID":"050d4fc8-5d48-4b8f-8972-47c82c46020f","Architecture":"X64","PSUninstall":"$proc = (Start-Process -FilePath \"$($env:ProgramData)\\Package Cache\\{9dff3540-fc85-4ed5-ac84-9e3c7fd8bece}\\vcredist_x86.exe\" -ArgumentList \"/uninstall /quiet /norestart\" -PassThru);$proc.WaitForExit();$ExitCode = $proc.ExitCode","PSDetection":"if((Get-ItemProperty -path \u0027HKLM:\\SOFTWARE\\WOW6432NODE\\MICROSOFT\\WINDOWS\\CURRENTVERSION\\UNINSTALL\\{9DFF3540-FC85-4ED5-AC84-9E3C7FD8BECE}\u0027 -Name DisplayVersion -ea SilentlyContinue | select -exp DisplayVersion) -eq \u002712.0.40664.0\u0027) { $true } else { $false }","PSInstall":"$proc = (Start-Process -FilePath \"vcredist_x86.exe\" -ArgumentList \"/q /norestart\" -Wait -PassThru);$proc.WaitForExit();$ExitCode = $proc.ExitCode","PSPreReq":"[Environment]::Is64BitProcess","PSPreInstall":"$SW = gci \"HKLM:\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\\" | foreach { gp $_.PSPath } | select UninstallString,DisplayName | where { $_.DisplayName -like \"Microsoft Visual C++ 2013 Redistributable (x86) - *\" }\r\n$SW | % { start-process $_.UninstallString.Split(\"/\")[0].replace(\"`\"\", \"\") -ArgumentList \u0027/uninstall /quiet /norestart\u0027 -Wait }","PSPostInstall":"","ContentID":"rzVCRedist2013x86","Files":[{"FileHash":"98ed99a67886d020c564923b7df25e9ac019df26","FileName":"vcredist_x86.exe","HashType":"X509","URL":"https://download.visualstudio.microsoft.com/download/pr/10912113/5da66ddebb0ad32ebd4b922fd82e8e25/vcredist_x86.exe"}],"Author":"rzander","Category":"Runtime","PreRequisites":[""],"SWId":0,"IconURL":""}
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Temp/_VCRedist2017x64.json:
--------------------------------------------------------------------------------
1 | {"ProductName":"Microsoft Visual C++ 2017 Redistributable (x64) - 14.15.26706","Manufacturer":"Microsoft Corporation","Description":"The Visual C++ Redistributable Packages install run-time components that are required to run C++ applications built using Visual Studio 2017. ","Shortname":"VCRedist2017x64","ProductURL":"https://www.visualstudio.com/downloads/","ProductVersion":"14.15.26706.0","Image":[137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,128,0,0,0,128,8,6,0,0,0,195,62,97,203,0,0,0,1,115,82,71,66,0,174,206,28,233,0,0,0,4,103,65,77,65,0,0,177,143,11,252,97,5,0,0,0,9,112,72,89,115,0,0,11,18,0,0,11,18,1,210,221,126,252,0,0,87,200,73,68,65,84,120,94,237,189,7,116,91,215,149,53,252,185,164,206,164,76,236,73,50,153,100,146,73,179,157,216,113,250,36,118,18,219,233,78,38,177,29,247,58,19,219,113,175,114,147,100,217,234,86,47,20,197,222,123,47,96,239,4,8,54,16,0,123,239,189,147,98,81,111,251,223,231,2,143,4,33,146,34,69,201,113,102,253,119,173,179,30,240,240,26,222,222,103,159,115,238,125,229,255,45,212,44,22,203,101,246,143,31,232,182,210,227,252,123,175,239,220,150,186,189,133,150,187,216,199,243,127,190,189,95,39,108,177,253,204,247,219,74,143,75,91,127,161,237,200,252,101,237,99,165,7,180,146,246,247,220,247,165,104,239,247,255,89,246,254,230,91,225,124,27,89,233,159,210,214,95,234,190,101,222,98,235,56,182,197,126,95,238,182,23,219,214,66,205,113,157,133,62,59,182,249,230,203,188,133,150,95,78,91,210,54,28,23,210,118,236,60,207,254,81,53,231,239,139,53,109,217,197,182,39,109,177,109,46,117,27,90,115,254,205,121,61,205,230,251,238,216,22,154,175,181,243,253,46,77,91,198,113,89,231,207,50,117,110,11,205,95,78,115,220,134,227,62,103,154,243,12,237,251,57,11,178,205,55,79,107,242,219,124,219,90,108,190,253,171,106,243,205,115,108,218,111,218,114,231,91,126,190,230,184,252,124,235,58,207,59,223,62,156,127,95,202,242,246,143,170,105,223,23,91,103,37,237,130,182,47,11,107,102,159,245,190,183,150,150,83,87,183,183,159,125,140,246,114,123,59,30,234,232,192,237,157,157,248,17,237,219,180,255,236,232,56,251,89,206,251,231,246,246,211,87,218,87,185,36,237,239,125,30,230,107,151,228,152,180,13,126,16,254,108,73,73,255,71,44,150,145,138,202,202,9,84,85,77,162,166,102,10,181,181,135,81,95,127,20,13,13,199,208,216,120,124,170,169,233,68,103,115,243,201,10,154,129,22,219,214,118,198,143,182,135,246,34,237,46,18,231,214,150,150,211,215,181,182,158,249,50,63,127,129,164,249,12,237,195,93,93,184,194,190,155,255,191,125,80,91,102,102,221,131,89,89,245,103,114,114,154,32,150,155,219,130,252,252,54,24,12,29,48,26,187,80,84,212,77,235,69,113,113,31,74,75,251,97,50,13,192,108,30,86,86,94,62,134,138,138,113,69,156,234,234,41,33,207,241,186,186,195,163,180,102,146,167,160,161,225,104,6,9,20,66,50,185,144,68,27,104,143,183,181,157,254,13,237,7,252,253,43,156,255,57,218,85,156,255,201,218,218,233,43,169,50,151,219,15,235,3,225,28,75,105,151,252,56,151,186,131,197,150,3,112,249,177,99,199,63,106,255,58,167,213,213,141,173,45,41,233,44,203,205,109,168,205,207,175,157,52,26,235,72,130,106,100,102,86,33,57,217,130,244,180,74,164,167,87,211,106,212,52,45,77,62,215,34,35,163,22,217,217,13,180,70,69,154,188,188,86,232,245,54,226,20,20,116,146,60,66,156,30,18,167,31,84,25,18,103,16,101,101,67,160,218,192,106,29,37,113,14,137,77,81,121,122,73,160,218,170,170,137,76,146,32,150,36,242,163,109,163,173,170,169,153,126,140,243,126,193,207,215,208,62,207,207,87,209,62,65,251,56,237,74,206,91,240,63,95,106,96,230,219,254,37,39,131,214,22,218,145,204,39,216,151,157,62,125,250,163,103,206,156,185,138,211,155,142,31,63,254,230,232,232,120,68,83,83,171,94,175,47,250,188,125,209,153,214,221,125,220,72,67,95,223,73,122,117,7,129,172,38,160,21,200,201,54,115,106,38,224,69,72,76,204,71,146,206,64,50,20,35,47,215,74,160,43,161,207,175,36,216,53,200,202,170,224,50,86,36,36,152,184,92,25,146,146,44,118,179,42,75,78,174,64,74,74,37,151,169,82,4,162,226,112,157,122,170,141,16,167,153,251,19,197,177,145,199,104,20,226,116,146,52,162,56,189,84,156,1,154,70,156,97,33,207,36,201,211,106,181,142,149,151,151,143,167,210,130,42,43,15,185,209,214,146,12,79,210,238,160,253,176,186,122,242,223,249,219,191,144,92,159,32,201,62,198,121,31,174,173,157,184,40,225,72,59,247,75,1,123,201,132,88,108,193,249,126,115,158,55,61,125,228,99,4,251,198,83,167,78,189,56,53,53,237,57,56,56,88,214,213,213,125,162,182,182,129,222,103,166,71,22,243,36,23,158,201,205,53,254,197,190,202,76,35,248,237,61,61,199,48,107,71,209,219,123,148,132,56,134,254,254,99,24,24,56,134,193,193,227,232,238,158,68,99,211,32,189,183,141,219,108,36,80,53,4,175,92,17,37,39,187,140,102,34,65,108,100,73,136,207,71,74,178,17,185,57,22,181,140,16,42,47,79,148,196,130,228,36,19,34,35,11,16,27,91,68,43,70,124,124,233,140,37,36,148,113,125,51,73,83,174,44,53,181,74,153,168,143,40,142,16,199,166,56,77,138,56,54,213,105,39,17,219,85,184,42,44,236,86,196,17,197,33,121,78,149,149,13,142,50,100,85,152,205,67,249,12,89,209,12,113,46,1,1,25,171,55,110,116,187,117,205,154,61,255,76,83,231,113,201,64,217,155,44,191,20,92,150,212,46,104,37,135,246,218,107,59,174,111,110,110,27,233,96,0,109,108,108,100,44,174,161,180,86,209,155,203,121,18,204,60,49,37,2,62,61,174,128,222,151,191,195,190,154,106,4,252,114,218,17,13,248,158,158,35,202,122,123,15,147,0,211,115,172,191,127,202,201,180,249,135,237,70,210,144,48,66,156,174,174,105,38,145,146,39,136,71,55,16,164,90,238,219,74,0,45,200,202,180,240,88,44,4,182,16,186,68,3,1,215,147,20,70,206,55,33,59,203,204,101,196,172,84,13,33,68,17,194,195,243,149,69,70,26,20,113,162,162,140,136,142,46,68,76,76,49,9,84,98,39,143,9,58,157,133,38,235,217,20,39,53,85,194,213,44,113,178,178,26,20,113,68,109,36,132,249,248,164,140,190,251,174,235,219,36,1,147,96,27,6,206,192,174,20,27,105,23,99,27,139,182,85,171,182,93,79,128,167,235,235,235,152,132,213,50,49,171,84,224,139,231,107,224,103,103,83,190,211,243,120,162,179,203,237,171,169,70,224,255,131,192,31,159,15,120,1,184,191,127,146,54,113,30,147,101,166,102,214,147,109,104,219,179,145,202,166,44,18,102,186,187,79,240,243,73,218,41,126,62,69,162,156,65,107,235,113,146,246,16,61,183,155,68,105,33,57,26,144,150,90,129,212,20,11,50,168,24,217,36,77,90,106,49,195,137,158,128,231,40,210,164,167,149,144,80,165,252,79,38,78,205,4,94,8,161,7,189,27,193,193,217,8,9,201,65,104,104,30,194,194,230,146,39,38,166,72,89,92,156,141,52,225,225,122,108,216,224,145,77,18,124,202,126,74,150,213,86,4,238,133,174,236,188,222,170,85,219,175,207,203,43,156,22,207,183,90,43,153,108,89,120,50,203,52,217,39,243,229,132,229,242,4,102,243,79,167,79,71,71,167,92,109,95,149,4,56,250,83,2,117,82,192,234,235,115,4,223,25,248,67,139,216,44,17,250,250,102,137,48,75,130,217,240,162,145,160,187,251,164,178,174,174,211,232,236,20,59,131,142,14,177,179,52,40,107,105,177,89,115,243,89,52,53,217,172,174,238,20,85,109,148,255,171,155,192,183,144,36,181,12,55,22,149,123,36,39,155,145,153,97,229,188,34,146,36,159,255,53,151,10,146,167,66,81,74,114,33,201,95,72,85,40,33,248,5,36,70,142,40,0,124,125,83,225,233,153,136,119,222,113,9,179,159,146,57,109,49,140,46,8,191,249,86,114,158,167,125,119,156,191,216,206,132,0,244,240,105,241,124,1,191,168,200,68,240,139,24,31,41,171,89,122,122,15,193,215,101,241,143,167,83,62,83,78,71,68,232,238,176,175,74,2,28,185,159,118,166,183,87,8,224,12,254,44,200,3,3,227,204,3,198,156,108,156,243,207,37,194,44,9,52,37,112,86,1,49,141,0,167,236,4,56,109,39,128,152,141,0,173,173,142,36,176,25,35,28,26,26,108,86,95,15,18,194,102,181,181,160,250,157,101,57,122,6,21,149,167,25,2,79,83,5,79,80,1,199,24,2,186,72,142,102,18,162,138,255,223,68,5,40,37,65,36,95,41,35,89,204,71,98,99,171,155,60,61,179,51,189,189,243,63,107,63,45,170,45,132,213,82,113,209,218,204,50,206,43,159,175,45,117,217,215,94,219,126,125,70,70,254,180,6,190,193,80,196,88,87,64,240,243,25,3,41,153,10,252,52,198,205,20,50,95,71,121,76,216,166,29,11,1,90,37,32,105,222,111,139,237,154,71,219,128,213,0,31,26,26,197,240,240,136,221,70,103,230,207,146,64,91,79,148,96,33,21,152,75,0,9,3,11,17,160,173,237,92,2,52,53,45,76,0,27,9,64,18,216,172,162,98,214,172,86,155,89,44,96,69,113,150,142,114,134,33,242,20,237,52,191,131,164,104,152,240,240,200,252,166,253,148,174,168,45,23,231,21,183,215,95,223,113,67,74,74,206,116,113,177,3,248,153,4,159,158,159,152,152,169,192,167,231,19,252,68,198,199,56,198,201,104,179,125,85,81,128,125,54,2,104,222,63,151,0,2,174,13,252,49,7,240,109,38,132,176,17,96,92,45,59,31,1,68,89,22,39,192,201,101,17,64,108,169,4,168,172,156,37,128,0,175,153,0,174,153,201,100,155,134,134,90,71,147,146,218,63,177,16,112,231,3,244,66,215,59,167,45,103,5,109,89,33,64,82,82,214,52,107,124,149,233,83,13,40,109,217,10,252,216,216,52,38,63,201,252,131,137,8,10,138,131,191,127,12,188,189,35,143,122,122,134,125,70,214,37,56,209,54,2,44,166,0,54,249,183,41,192,172,205,42,192,194,4,176,129,127,241,8,112,161,10,112,62,2,132,132,152,123,229,124,44,165,45,27,212,133,218,197,216,144,108,227,173,183,118,125,49,60,92,55,158,155,107,36,248,204,244,147,109,224,199,196,204,5,223,207,47,154,224,71,192,221,61,228,140,235,129,96,149,7,48,62,23,11,64,115,179,127,199,4,208,70,2,91,14,224,152,7,216,190,159,43,255,179,57,192,108,53,176,148,28,64,3,127,150,0,231,203,1,52,240,207,71,128,242,242,89,240,205,230,115,9,96,50,157,133,151,87,158,73,157,80,182,83,167,78,125,228,212,169,211,223,63,122,244,236,87,157,49,90,8,179,243,98,57,223,2,231,91,233,188,27,181,183,55,223,220,249,41,2,60,44,158,207,50,143,201,78,6,227,125,42,34,34,146,201,236,120,74,126,44,179,221,40,254,201,112,184,187,133,226,128,75,16,246,238,13,216,41,235,18,148,110,205,75,23,38,129,102,182,144,48,95,226,103,51,71,233,119,44,5,157,189,127,182,10,56,215,251,231,171,2,150,78,128,234,234,165,19,160,180,20,204,1,108,4,208,233,204,233,199,143,159,250,159,177,177,227,145,67,67,167,154,75,74,218,166,189,188,162,191,171,78,240,251,213,4,240,165,130,238,216,222,124,115,215,167,3,252,99,134,109,224,167,171,100,47,60,60,73,129,31,24,104,3,223,211,51,28,110,7,131,225,178,63,8,123,246,248,99,231,78,31,75,87,215,177,143,17,152,211,54,112,52,18,204,230,3,11,19,193,217,230,150,127,139,131,63,159,247,47,173,2,16,211,192,159,79,254,197,52,240,29,227,191,150,252,105,4,144,239,178,126,67,195,73,134,153,41,78,71,72,146,254,179,86,235,16,215,155,32,201,78,178,68,76,206,178,159,222,15,70,115,38,134,227,247,87,94,121,239,147,62,222,17,195,54,207,183,129,31,28,108,243,124,31,159,40,120,120,132,225,160,107,48,246,239,15,36,248,126,216,177,195,27,239,189,231,121,210,104,108,252,241,44,1,196,156,123,2,103,21,65,51,91,142,32,96,207,2,110,179,195,78,192,207,202,254,124,224,47,230,253,237,237,179,224,59,18,96,177,18,80,108,161,4,80,35,128,76,51,50,90,233,249,205,156,90,24,42,165,247,208,202,207,245,170,27,89,198,26,100,24,92,6,176,214,172,217,253,43,251,233,93,81,59,175,83,47,213,227,23,35,192,196,196,212,111,19,18,178,142,68,69,165,18,124,157,61,211,87,201,222,44,248,251,2,177,123,183,13,252,173,91,61,177,105,211,193,179,177,177,134,125,4,229,140,0,52,11,214,92,34,216,200,224,72,136,185,102,251,109,118,217,185,192,139,105,192,207,202,190,99,233,55,75,128,89,233,159,207,251,29,147,63,49,13,124,71,2,156,79,254,115,115,135,120,14,66,233,20,169,170,135,80,186,144,165,187,56,63,175,21,50,212,45,163,147,13,13,199,165,39,209,36,99,4,75,197,102,73,205,113,99,43,217,176,172,235,184,126,126,190,233,199,70,163,121,68,146,61,173,204,243,247,183,37,123,30,30,161,112,61,16,132,125,123,3,176,107,151,31,182,111,247,198,150,45,30,216,184,241,32,182,109,243,100,120,72,29,168,173,29,61,219,214,38,158,125,138,177,221,102,125,125,39,8,170,35,41,4,212,197,204,17,112,205,28,189,222,177,231,207,17,252,185,158,191,152,244,47,39,249,155,175,252,43,47,63,141,131,7,147,120,78,228,28,101,171,241,4,25,59,200,204,172,87,67,215,50,218,88,83,51,205,117,198,207,16,252,135,236,167,247,253,109,75,37,134,35,9,94,123,109,251,157,4,252,248,108,153,39,224,71,50,211,39,248,42,217,83,241,158,4,240,165,247,251,240,179,55,54,108,216,143,167,158,122,27,247,222,243,60,238,190,251,101,60,246,216,26,60,255,252,22,172,94,125,128,33,34,156,39,199,128,194,194,22,158,204,126,158,248,49,74,178,16,228,132,34,71,127,255,73,69,144,165,129,62,215,235,103,187,125,231,79,250,150,2,190,163,244,59,18,96,62,239,119,148,254,132,132,6,236,219,23,206,74,40,141,142,146,135,184,184,18,164,164,84,33,55,167,89,73,126,121,249,56,183,125,140,21,83,126,231,234,213,187,63,164,78,244,251,217,28,193,95,42,17,164,145,173,63,160,204,79,7,5,197,242,207,217,50,125,183,131,33,56,120,32,88,101,251,18,247,247,237,243,199,139,47,110,196,227,143,191,133,251,238,123,145,246,18,254,247,127,223,194,189,247,190,136,7,30,120,3,15,61,244,22,30,121,120,53,167,111,226,254,251,95,35,41,94,194,159,254,244,28,238,186,235,69,60,242,200,26,60,253,244,70,188,254,198,30,170,70,0,19,202,20,213,231,94,94,222,75,0,70,9,208,4,193,147,225,99,81,142,83,106,106,27,232,209,128,119,236,239,119,244,122,49,27,240,18,243,47,54,248,142,222,95,90,122,76,17,219,211,83,71,213,203,84,131,66,50,228,44,215,37,200,48,114,89,217,32,215,157,164,114,28,58,187,113,163,219,139,246,83,251,143,209,86,175,222,243,249,253,251,253,199,4,124,201,246,197,243,229,243,59,239,236,197,223,254,182,134,0,191,66,48,159,226,244,85,60,252,240,235,4,121,213,140,221,121,231,179,120,232,193,55,21,248,143,62,186,134,74,240,54,254,231,127,214,145,28,239,42,123,252,241,13,120,242,137,141,220,206,38,146,96,11,158,124,114,163,250,253,225,135,215,144,40,175,115,157,213,54,114,188,190,23,235,215,123,146,108,81,106,228,45,59,91,70,37,199,8,218,52,65,60,70,128,133,4,103,149,117,118,218,76,3,223,177,179,231,66,192,119,148,254,133,188,63,40,168,0,46,46,145,106,240,39,36,36,87,141,6,202,181,6,57,217,77,244,254,110,46,55,170,188,63,54,182,100,224,141,55,118,44,105,84,112,57,78,122,73,219,51,79,173,255,166,167,103,196,132,155,91,8,94,123,109,43,65,89,133,219,127,255,56,238,188,227,25,220,127,223,203,202,203,239,189,103,126,251,243,159,158,198,163,244,240,199,30,91,59,3,252,95,255,186,94,217,147,4,255,111,4,252,169,167,54,43,123,250,233,173,120,230,153,109,120,246,217,237,120,254,185,29,120,241,133,157,120,233,165,93,120,249,229,61,120,229,149,189,120,109,213,126,188,194,207,207,63,191,131,203,111,33,121,222,229,178,91,177,106,213,94,188,251,174,55,67,80,56,9,154,206,196,203,194,140,187,155,32,202,69,167,199,9,242,41,130,45,67,194,115,73,160,1,191,18,240,197,242,242,70,184,239,96,198,254,4,134,199,116,68,68,24,120,12,50,16,84,3,125,190,84,4,253,226,249,84,145,105,42,156,223,6,251,105,189,160,182,36,82,200,66,23,147,61,123,118,5,110,104,106,154,226,73,109,161,231,85,241,207,25,152,236,196,81,1,220,8,218,122,69,128,187,239,126,158,114,254,44,61,254,25,220,65,98,200,84,236,143,127,124,146,224,207,2,255,184,0,255,132,0,191,201,14,250,22,130,110,3,254,57,1,158,224,190,248,226,78,218,46,130,191,91,129,255,234,43,251,20,248,175,191,126,0,111,188,113,80,217,155,111,186,97,245,91,238,88,187,198,19,111,191,237,141,119,214,249,144,4,190,88,187,214,147,191,187,114,157,189,220,198,14,126,118,161,114,248,48,55,9,163,114,73,143,101,33,61,179,142,249,199,48,1,57,129,218,154,83,4,250,52,237,236,12,9,206,7,190,99,214,111,181,158,85,137,159,139,139,132,198,100,42,65,182,186,144,36,41,169,92,93,28,34,151,158,201,133,173,117,117,71,228,2,146,241,85,171,182,126,193,118,86,223,103,15,95,234,206,230,91,110,247,46,255,13,157,157,114,233,22,102,108,120,24,24,29,5,198,198,128,145,145,51,60,153,3,200,201,169,162,196,233,121,162,109,228,120,234,169,245,184,227,207,207,42,153,127,130,50,47,242,46,82,63,11,252,123,202,219,159,123,110,22,120,1,253,188,192,175,246,96,13,77,224,215,122,97,221,58,130,255,142,128,239,71,160,3,152,124,6,178,252,12,194,230,205,193,44,69,67,240,222,123,161,244,186,112,18,32,146,201,105,20,231,133,178,66,9,32,97,188,184,190,27,54,110,96,217,186,61,28,174,174,58,248,249,230,50,57,181,168,58,190,168,232,16,189,246,12,237,172,178,249,192,23,211,233,90,232,253,65,112,115,139,183,39,127,249,76,254,164,244,171,66,126,110,139,186,116,76,146,63,201,254,93,93,163,125,236,167,244,210,182,243,129,189,92,230,237,222,21,48,67,128,129,1,27,248,206,54,50,50,215,132,28,98,131,131,39,24,135,39,233,5,237,244,136,10,38,71,249,244,152,4,108,222,20,136,87,95,221,71,169,223,142,23,40,245,226,241,74,234,95,222,139,85,10,120,151,25,224,5,244,183,232,237,2,188,242,248,25,224,125,9,186,191,2,126,35,129,223,60,7,248,48,2,31,198,178,52,66,129,191,107,87,12,235,243,88,38,106,113,76,88,227,153,75,36,208,107,117,44,97,147,120,60,201,4,48,141,196,77,227,188,68,46,23,77,82,132,112,59,1,216,187,39,154,192,37,49,182,231,16,92,185,194,167,158,137,93,47,9,114,20,37,37,39,184,221,48,21,251,189,188,146,232,253,89,170,244,75,76,100,233,151,33,165,95,135,42,253,164,227,39,59,187,225,200,171,175,110,253,145,253,148,94,218,118,161,210,178,208,122,123,118,219,8,48,31,248,206,192,139,137,42,28,58,180,176,141,143,139,157,85,38,29,60,213,213,253,200,207,175,227,201,45,134,191,95,58,203,202,104,229,209,175,189,38,4,112,148,122,27,240,54,111,247,199,6,1,126,163,0,31,140,45,91,4,176,80,59,240,225,10,120,241,248,115,129,79,100,229,162,99,5,147,196,74,38,69,1,239,225,145,206,236,61,131,32,102,17,232,108,230,17,57,140,229,185,8,8,200,99,70,159,79,96,13,8,102,146,39,230,235,155,205,229,83,56,47,131,158,158,195,237,134,114,27,210,21,46,29,63,185,84,192,98,117,173,224,108,233,55,70,249,63,42,4,73,96,233,167,206,175,243,121,214,190,203,244,66,177,59,167,93,232,134,230,91,111,207,238,64,69,128,243,129,47,30,63,31,224,154,77,76,204,111,142,191,11,41,198,198,206,112,91,167,73,184,227,60,121,195,48,22,52,51,110,91,120,130,245,4,42,21,187,119,69,43,240,55,108,8,80,114,47,224,11,240,219,41,229,219,183,139,212,71,19,244,24,5,250,222,189,78,192,211,155,221,220,82,148,183,219,128,207,156,1,222,207,239,92,224,67,130,141,42,111,8,15,43,102,114,87,66,5,19,121,55,19,252,92,238,35,72,121,191,116,252,216,74,63,185,248,212,140,140,244,90,20,24,108,151,158,231,229,53,34,47,183,234,204,214,45,238,127,182,159,206,101,183,197,136,113,209,8,179,88,219,187,39,112,131,116,194,44,6,190,120,181,35,216,142,160,46,215,156,215,151,169,144,75,246,51,52,116,6,131,170,179,232,4,51,249,73,102,216,157,12,45,181,244,188,82,2,150,79,96,83,21,224,66,130,61,123,98,249,57,97,30,224,51,22,1,94,207,237,20,176,148,43,68,88,168,92,45,60,11,124,116,116,25,130,131,11,168,64,174,216,186,197,155,219,15,97,120,144,238,112,173,244,43,70,124,92,137,234,255,207,201,177,50,71,104,69,79,207,52,171,143,145,147,47,188,176,241,86,251,233,156,211,230,3,119,57,160,190,47,4,216,183,55,120,67,175,3,1,150,2,190,51,168,142,54,50,118,2,77,221,125,232,25,156,152,247,119,205,156,183,169,145,96,33,235,235,59,163,58,136,186,186,132,28,135,153,119,244,171,235,250,147,147,43,9,158,73,129,39,177,220,221,61,157,224,103,242,115,150,2,94,188,93,128,151,223,29,129,23,208,229,250,62,1,62,38,198,76,146,89,232,241,84,159,13,238,84,26,127,146,43,156,164,146,228,47,5,81,17,57,72,75,43,70,105,73,35,154,154,6,209,217,41,35,152,135,85,14,212,222,62,182,32,1,22,106,243,1,235,56,111,201,192,59,47,120,33,140,217,191,143,4,232,181,17,192,249,164,59,131,63,31,144,98,147,147,244,222,209,35,168,239,234,130,169,169,6,166,198,106,212,180,183,98,106,202,246,219,124,235,136,57,110,91,204,153,4,26,41,197,134,134,102,171,20,71,147,220,165,183,87,58,135,78,19,12,146,175,233,40,99,243,40,75,193,30,170,71,19,75,182,106,196,197,90,17,21,105,82,224,135,133,21,41,175,183,93,220,105,3,62,62,190,92,153,128,191,101,179,23,193,15,69,96,64,18,116,137,122,20,26,171,89,33,180,177,140,236,229,182,135,208,214,54,74,18,10,1,142,240,152,78,94,16,1,164,157,143,4,43,106,203,217,208,254,125,33,138,0,142,39,94,108,41,224,79,18,224,254,145,41,212,118,180,17,248,106,187,85,161,180,209,102,163,135,142,97,122,26,202,22,34,131,227,62,196,22,35,193,224,224,92,240,251,250,102,173,167,103,214,200,67,101,221,221,32,49,164,183,240,12,90,90,78,66,238,84,46,47,159,32,57,68,61,218,89,18,54,208,179,235,153,216,213,81,17,140,12,29,145,148,249,108,38,121,102,20,23,213,192,98,110,226,242,173,76,100,59,153,175,244,82,121,134,69,242,57,29,228,247,78,52,54,246,178,10,186,48,2,124,96,154,203,254,115,9,112,62,240,39,39,207,162,103,104,28,85,237,205,40,155,1,190,122,6,248,210,6,177,74,52,247,244,206,16,192,145,8,206,219,115,220,151,216,66,36,112,86,129,197,8,32,192,139,105,93,198,182,49,131,179,36,194,105,122,178,144,65,146,208,35,144,62,124,201,55,10,11,203,25,219,75,161,215,91,152,152,86,178,12,172,133,185,172,81,17,64,20,192,98,105,102,221,95,195,229,42,56,173,96,126,82,69,85,232,82,4,120,233,165,205,183,217,79,231,165,111,154,119,95,44,9,113,113,9,221,32,183,98,105,39,219,185,204,115,4,106,252,208,25,116,246,143,160,162,181,113,14,240,226,245,38,2,175,140,192,11,248,37,13,21,106,153,169,169,51,231,144,64,204,89,13,28,247,41,54,31,1,196,68,242,231,35,65,111,239,44,1,52,207,159,143,4,173,173,167,233,185,54,53,144,26,94,110,73,239,232,56,172,64,157,33,128,177,138,86,201,242,213,202,154,191,8,233,233,133,84,11,185,53,174,4,6,131,220,52,83,1,147,169,122,134,0,243,41,192,74,228,124,73,235,202,66,154,217,103,93,80,115,117,9,155,33,128,120,158,35,8,26,56,163,227,167,208,218,59,0,107,75,189,2,117,14,248,51,192,219,188,190,148,192,11,248,98,197,180,158,161,81,28,57,2,28,62,188,60,18,8,17,71,135,78,96,172,127,140,54,138,209,190,17,140,246,79,98,152,149,194,124,4,112,86,129,133,8,32,225,160,169,233,212,140,2,72,31,190,70,128,172,44,185,125,44,15,177,49,89,180,76,230,5,89,252,158,203,210,80,238,137,148,203,229,75,23,36,192,249,176,88,46,78,43,194,181,186,166,230,163,230,178,178,47,151,91,203,63,215,216,216,248,79,181,181,181,11,62,150,197,245,64,248,12,1,156,189,127,120,244,56,51,250,94,152,155,107,9,122,205,146,188,126,6,252,250,10,20,213,151,163,162,173,81,17,64,179,197,72,48,57,118,20,211,125,205,56,210,94,128,99,141,177,56,90,23,130,163,53,65,56,90,237,143,35,85,190,56,82,233,133,35,21,158,152,170,14,199,120,67,62,134,59,58,209,223,119,118,94,21,88,40,12,8,1,154,155,133,0,39,20,1,164,27,183,163,227,136,2,53,61,221,200,50,49,145,73,98,42,19,196,12,36,36,100,43,66,172,148,0,243,205,95,17,192,11,181,66,163,241,99,165,166,178,39,122,186,123,210,166,166,167,186,167,166,166,154,199,198,198,140,77,77,77,193,177,177,177,91,243,242,242,158,41,44,44,252,83,73,73,201,247,203,72,16,30,196,213,30,30,81,91,133,0,142,222,223,63,124,24,117,157,93,4,124,22,248,69,189,190,145,160,139,57,128,95,76,240,197,138,234,202,153,12,30,153,67,2,103,53,152,26,29,199,145,174,18,28,107,73,192,177,230,56,28,107,138,33,1,162,112,172,62,156,36,8,117,32,129,15,73,224,137,195,229,110,56,108,113,193,97,243,94,76,89,60,48,210,104,66,127,175,92,133,52,75,0,199,48,224,72,0,45,15,144,48,32,143,176,145,48,160,17,32,35,195,200,114,81,119,65,4,176,67,160,154,6,238,37,1,121,177,150,154,154,250,45,15,15,143,209,244,244,12,140,211,157,143,30,61,138,99,199,142,49,97,41,229,31,11,230,31,144,1,145,168,147,145,145,145,135,146,146,146,122,226,227,227,43,226,98,19,218,36,161,169,168,108,70,109,67,59,44,117,117,40,173,35,184,245,2,176,128,237,0,252,60,94,47,224,139,236,43,233,119,4,94,153,149,102,65,83,79,23,143,101,150,0,98,2,252,225,201,227,56,214,103,197,241,182,20,28,107,77,166,37,145,4,137,36,65,60,73,16,75,18,68,227,168,34,129,77,9,142,84,251,145,4,222,84,1,15,28,182,186,146,4,251,49,93,182,27,211,165,59,48,85,118,0,195,205,117,243,18,192,145,4,66,0,201,3,36,17,148,49,252,218,218,89,5,184,88,4,88,74,187,36,228,88,189,122,245,215,126,248,195,31,246,124,247,198,27,241,219,223,254,22,143,62,250,40,92,93,93,89,222,120,42,18,76,243,172,83,17,40,151,125,148,194,54,102,183,149,140,123,121,72,74,206,64,124,98,10,124,2,130,224,238,237,139,88,93,18,146,82,210,144,156,158,142,164,140,116,164,230,176,52,42,45,68,113,181,21,37,53,229,40,169,165,17,96,241,118,45,230,207,241,122,59,248,133,4,95,76,230,29,57,122,122,14,9,142,142,143,224,68,87,46,78,116,100,208,210,113,188,61,141,68,72,181,17,161,69,103,83,3,69,130,40,27,9,106,133,4,1,246,80,48,87,5,166,77,59,49,93,178,13,211,197,91,48,86,153,128,222,110,185,228,108,126,2,136,205,77,4,167,249,251,251,79,128,165,182,37,17,69,91,104,227,198,141,95,185,233,166,155,186,191,253,237,111,227,91,223,250,22,190,246,181,175,225,190,251,238,195,131,15,62,136,45,91,182,80,122,15,43,18,28,33,2,162,14,39,79,158,226,31,177,34,95,95,140,234,198,118,88,171,155,80,106,173,131,161,208,66,82,72,23,106,56,246,237,247,192,222,253,238,216,127,192,19,7,92,61,17,21,29,143,4,93,10,82,50,178,80,86,97,69,89,37,65,175,224,73,169,178,160,136,4,41,174,229,84,172,142,224,43,51,195,88,107,70,247,240,16,142,31,183,129,127,108,180,155,224,103,225,68,167,131,117,100,146,4,25,36,65,26,73,64,69,16,18,40,37,136,193,209,134,72,146,32,140,36,152,85,129,195,229,238,54,21,48,239,163,10,236,162,10,108,39,9,182,98,186,104,19,14,149,121,161,183,243,240,162,121,128,86,10,74,8,184,84,4,120,223,67,192,139,47,190,248,165,159,252,228,39,221,55,220,112,3,110,164,10,92,127,253,245,120,236,177,199,240,196,19,79,96,235,214,173,10,120,33,128,16,65,76,72,32,106,224,237,235,69,175,102,18,87,71,143,166,244,23,150,155,161,55,151,33,167,168,24,169,185,122,36,166,229,32,50,33,13,65,97,113,240,11,136,132,143,95,56,162,163,147,169,32,53,12,29,77,156,54,162,170,134,33,164,190,5,117,13,77,168,109,228,247,134,122,88,170,43,21,57,10,43,204,12,45,85,24,31,231,190,135,187,112,188,51,27,199,197,251,149,229,217,167,57,156,159,69,18,144,8,138,4,162,4,18,14,226,72,0,123,40,168,13,198,17,165,2,204,5,152,12,58,135,129,233,146,247,168,2,155,48,93,184,30,19,165,174,232,238,56,182,32,1,28,19,193,247,67,1,222,23,50,108,219,182,237,223,110,190,249,230,46,71,2,60,242,200,35,138,0,27,54,108,152,67,0,249,44,54,58,62,129,196,212,52,100,102,103,193,68,144,138,170,41,223,148,249,162,106,214,195,213,244,222,138,50,20,148,155,160,183,150,40,203,53,21,35,179,200,136,52,67,62,116,217,57,72,204,202,70,124,26,45,57,27,201,105,122,100,228,24,161,55,90,96,182,212,208,187,90,208,218,222,141,78,25,27,232,233,70,87,103,7,90,153,56,54,212,148,161,169,170,8,237,53,133,232,107,40,196,104,139,1,19,173,122,76,183,231,227,72,71,54,142,81,9,142,73,56,104,145,156,128,42,208,40,42,16,161,18,194,35,53,129,84,1,123,24,176,106,97,96,143,61,12,8,1,54,83,5,214,99,202,248,14,198,202,252,8,238,153,15,4,1,46,105,179,90,173,138,93,238,238,238,255,250,211,159,254,180,221,145,0,15,63,252,48,158,124,242,73,69,0,241,248,185,10,64,2,140,77,208,227,45,208,151,22,161,178,158,9,96,141,144,128,201,27,73,80,92,67,73,151,207,36,67,97,85,25,205,140,66,249,44,10,81,102,66,110,73,49,178,11,141,200,52,22,32,143,196,200,225,119,141,28,201,121,121,208,101,145,32,233,217,200,96,82,154,147,158,133,210,34,19,26,235,154,208,217,222,197,56,220,142,58,121,28,141,197,138,242,178,82,212,89,141,36,133,9,157,141,149,232,98,222,208,213,80,130,238,90,3,250,107,50,49,82,155,140,241,218,56,76,215,69,224,136,168,128,10,3,94,182,60,192,234,156,7,8,1,54,40,2,76,21,172,197,80,101,214,2,4,56,253,119,39,192,69,87,133,192,192,192,207,48,7,104,21,2,124,231,59,223,81,118,255,253,247,227,233,167,159,182,19,64,250,230,103,9,32,10,48,54,118,72,129,41,25,124,161,2,91,3,157,73,156,40,64,117,25,171,130,10,52,116,182,163,185,189,7,185,134,82,100,21,20,65,111,50,161,184,146,57,0,67,135,165,158,161,128,25,120,121,83,61,204,245,213,36,14,67,9,213,164,184,74,182,83,142,134,234,28,244,213,36,163,167,54,27,189,245,6,244,52,152,104,22,116,112,159,173,117,213,104,172,174,69,109,69,45,170,42,170,209,198,208,209,217,88,143,174,230,90,116,52,214,160,153,199,81,86,202,227,35,209,202,10,13,176,22,231,163,190,44,11,109,150,20,116,154,162,49,96,14,194,8,99,254,184,201,5,83,37,204,3,156,8,48,105,120,27,61,45,67,231,16,64,74,65,33,64,125,253,255,1,5,208,90,76,76,204,39,169,0,77,2,188,40,128,70,128,103,158,121,6,239,188,243,174,42,9,157,9,48,206,16,144,79,2,20,51,179,87,158,175,76,146,56,158,120,230,3,141,172,22,6,134,70,208,222,215,141,198,46,146,160,167,3,221,253,125,232,27,28,64,255,192,0,6,7,7,49,60,50,130,209,209,49,140,141,143,43,27,28,29,69,215,64,63,234,218,91,96,97,41,217,222,160,199,96,67,6,38,91,115,49,213,174,199,161,54,3,38,219,141,152,104,47,194,120,91,17,198,90,141,232,169,51,160,156,249,66,119,157,17,189,181,5,232,170,41,65,59,21,167,190,188,28,245,149,117,168,46,23,181,168,133,165,172,22,166,210,74,152,89,186,154,138,45,48,228,22,32,135,9,105,70,90,18,218,141,222,170,18,152,46,218,136,105,227,187,54,2,232,87,99,180,212,111,81,2,116,117,9,1,202,255,241,9,144,154,154,250,137,159,253,236,103,141,34,253,66,0,81,2,33,192,115,207,61,135,183,223,126,91,17,96,106,106,106,78,30,112,104,98,146,242,93,106,143,251,86,122,60,75,189,90,122,48,79,188,161,184,8,197,229,101,104,104,111,67,11,173,161,161,17,53,213,213,52,137,239,181,252,222,128,230,166,102,214,214,237,60,137,93,42,161,28,30,30,86,165,230,212,228,20,14,115,251,147,83,44,61,135,73,162,214,34,146,32,27,135,90,243,8,188,1,83,29,70,146,161,80,17,97,146,132,152,106,203,163,199,51,20,212,26,113,164,53,13,211,77,41,152,108,72,64,79,121,34,6,171,116,232,171,72,66,183,85,135,46,107,58,58,172,217,84,128,2,52,243,216,170,203,42,144,158,153,3,171,33,6,189,37,190,4,95,20,96,46,1,38,242,223,68,119,147,140,220,253,31,39,128,78,167,251,103,18,160,86,11,1,50,149,50,80,8,240,214,91,107,88,134,29,87,4,112,84,128,201,137,105,228,83,98,69,246,37,190,151,82,190,141,37,69,200,163,220,214,182,52,161,169,181,5,102,179,25,37,197,37,252,211,38,48,223,64,85,85,149,34,128,60,83,176,165,165,133,39,129,170,208,221,173,8,48,52,52,68,53,24,197,161,67,135,20,9,132,116,39,78,156,196,17,134,159,177,145,126,140,118,88,8,186,222,70,2,5,126,1,141,223,133,24,205,57,40,43,207,71,105,105,42,90,8,120,87,101,14,70,107,19,112,168,38,10,99,85,17,24,173,12,195,104,121,48,70,44,1,24,54,251,97,176,212,7,197,233,17,40,101,238,49,216,152,135,206,2,119,76,24,55,98,210,104,75,2,103,9,240,6,134,204,209,115,8,160,229,0,23,35,4,188,248,226,166,219,22,138,231,239,107,41,152,152,152,248,79,183,220,114,75,165,0,255,221,239,126,87,17,224,238,187,239,193,11,47,188,132,55,222,120,83,37,129,147,147,147,78,4,152,66,30,193,45,170,181,194,204,120,158,207,132,174,136,158,213,216,214,66,32,74,144,199,100,206,96,48,160,168,168,72,17,64,200,80,81,81,129,154,154,26,165,0,66,0,81,128,249,8,32,74,35,251,60,113,226,4,78,157,58,69,2,158,192,4,21,97,116,176,27,135,58,76,54,224,37,28,180,229,19,252,92,90,54,38,154,50,208,86,153,130,58,115,34,134,106,146,8,126,44,198,171,163,48,78,240,199,43,130,48,86,238,135,49,179,55,51,124,15,140,148,30,68,89,78,36,178,50,169,10,21,105,104,204,113,65,95,214,219,24,202,125,155,177,127,221,28,2,28,210,175,35,88,182,219,201,222,207,36,240,125,37,64,82,82,210,63,221,122,235,173,86,199,16,112,223,125,15,96,237,218,117,120,233,165,23,9,200,97,42,128,51,1,166,145,87,98,66,57,147,177,156,252,60,148,84,88,89,207,215,35,43,35,131,39,36,131,127,58,87,17,160,176,176,16,37,37,37,138,0,229,12,15,66,128,122,46,215,220,220,204,19,218,54,19,2,132,0,35,204,9,52,2,216,20,192,70,0,181,63,18,112,108,252,16,151,99,168,232,169,161,10,228,51,55,200,193,68,11,173,57,147,4,72,199,100,163,200,191,14,135,106,227,9,126,52,45,146,224,135,16,252,64,140,89,253,48,106,246,34,1,220,72,0,87,152,179,35,144,150,154,140,90,99,20,234,178,246,163,35,117,53,250,179,8,186,19,1,38,242,94,71,79,99,135,3,1,86,90,6,86,113,93,217,222,92,2,204,7,248,74,72,176,172,117,95,125,245,213,143,255,234,87,191,42,145,94,64,27,1,174,199,3,15,60,132,117,235,54,226,217,103,159,85,242,63,41,177,217,129,0,135,15,31,65,121,101,61,178,245,57,40,173,42,135,133,224,234,116,137,252,211,169,252,211,153,200,206,206,134,94,175,135,209,104,156,81,1,45,12,212,213,213,161,169,169,105,134,0,189,189,189,51,10,48,49,49,161,246,33,4,56,121,242,164,50,249,46,196,144,60,97,144,9,100,255,224,16,250,186,91,48,222,170,199,100,75,6,14,17,252,67,13,41,56,84,79,207,103,252,31,175,165,247,83,254,197,251,199,20,1,2,48,102,241,165,2,56,16,32,43,20,233,105,169,168,43,8,71,125,246,126,180,167,190,133,254,76,33,128,168,192,26,18,224,45,59,1,94,67,127,149,113,69,4,144,235,1,244,122,51,207,65,13,215,19,197,59,76,245,179,17,192,17,168,149,122,253,5,175,191,105,211,166,143,221,126,251,237,250,89,2,216,20,96,221,186,13,120,242,201,191,169,147,239,20,2,142,246,245,13,246,150,20,155,97,101,41,102,38,248,172,36,144,152,168,67,74,114,50,210,210,210,20,1,242,243,243,231,132,1,30,160,10,3,90,30,208,218,218,202,147,216,169,8,32,85,129,70,0,81,0,201,59,108,242,111,203,63,228,183,1,130,223,221,211,67,48,58,208,219,221,143,110,174,59,214,66,37,104,76,182,129,95,207,184,95,71,239,175,161,247,87,69,50,254,135,218,228,223,234,111,151,127,79,140,153,14,98,184,228,0,74,50,195,80,88,96,64,115,73,36,234,51,247,162,61,229,77,244,101,18,116,61,189,127,134,0,175,99,34,247,53,12,89,226,103,8,176,244,174,224,92,164,164,232,121,30,74,184,140,168,158,36,147,242,108,163,217,139,66,153,3,252,125,146,64,103,166,184,186,186,126,132,4,200,214,8,32,137,224,221,119,223,203,18,112,3,254,250,215,191,82,154,71,231,36,129,140,207,250,236,236,220,86,19,75,170,186,186,70,254,241,8,196,198,198,242,143,39,240,143,39,41,21,152,47,12,148,149,149,205,228,1,142,4,232,33,168,142,4,144,125,136,2,8,1,100,42,228,147,223,36,84,116,117,117,162,179,173,3,253,173,221,172,36,90,212,247,145,102,146,160,33,145,224,211,251,5,124,137,253,213,225,244,254,96,155,247,83,254,109,222,239,142,49,122,255,112,177,11,138,50,194,96,49,155,208,85,145,136,186,140,61,104,75,126,3,125,25,111,50,230,11,248,34,255,111,218,9,176,138,138,17,168,8,176,148,193,160,232,232,116,158,135,28,229,249,165,165,245,252,175,93,36,205,16,1,151,139,66,39,153,243,28,162,77,94,48,1,150,227,229,231,44,187,208,202,225,225,225,87,254,241,143,127,76,187,238,186,235,102,58,130,254,252,231,59,73,128,141,106,76,64,228,89,43,1,9,254,49,198,239,236,148,148,244,230,154,218,6,68,132,135,35,50,50,82,134,139,17,23,23,71,21,72,68,178,131,10,104,36,112,12,3,142,137,224,124,10,32,251,145,248,47,242,47,225,70,230,201,49,200,114,146,56,246,119,244,160,181,177,25,85,149,149,168,98,105,217,194,80,50,88,207,92,160,150,224,139,244,87,133,83,254,181,216,79,239,183,248,144,0,54,239,31,45,61,64,2,236,71,105,70,168,82,128,118,115,60,234,168,0,173,186,215,156,8,96,139,255,138,0,37,222,51,4,152,111,56,88,46,8,9,9,209,209,9,178,144,149,85,202,202,167,22,21,246,139,66,235,235,251,248,95,251,185,124,23,255,123,19,157,64,194,64,39,215,189,176,50,112,49,2,44,248,219,249,88,67,239,189,236,191,255,251,191,83,28,67,192,31,255,248,39,69,128,71,31,125,68,73,175,40,128,128,193,90,189,53,33,49,49,173,189,163,99,58,37,37,5,1,1,1,8,11,11,83,36,136,142,142,70,124,124,188,82,1,249,77,84,64,203,5,52,21,224,177,168,60,64,75,4,69,206,69,1,4,96,233,7,16,111,151,253,8,1,196,132,120,50,95,142,65,242,133,174,118,18,166,173,7,213,36,145,36,149,170,194,176,88,185,173,86,12,213,50,15,80,224,83,250,203,237,210,79,240,71,69,250,233,253,2,254,72,241,62,12,23,238,133,41,43,4,121,185,89,104,47,139,71,109,250,110,18,96,21,250,210,95,199,161,252,213,179,242,207,248,111,83,0,63,18,207,249,130,144,89,2,136,204,103,101,149,204,185,40,212,106,105,102,226,219,100,191,70,176,76,229,0,178,236,165,234,7,112,198,248,124,152,159,211,238,186,235,174,68,25,14,214,8,112,251,237,127,80,73,224,195,15,63,164,0,178,103,230,125,197,197,197,198,204,172,44,58,114,249,89,95,95,95,4,5,5,81,254,66,84,24,16,18,72,46,224,24,10,178,178,178,84,73,40,201,32,215,157,9,3,146,8,58,18,192,81,1,164,4,20,239,23,2,8,33,164,58,16,249,151,101,7,187,250,208,220,216,132,138,202,10,85,89,136,178,20,20,20,160,164,212,132,134,250,90,12,87,198,224,80,5,61,191,220,193,243,89,250,141,154,92,49,90,226,66,2,236,197,72,225,30,152,51,3,145,154,146,136,166,162,112,212,144,0,45,138,0,175,97,60,79,75,254,108,222,47,54,108,10,179,39,128,179,125,0,142,151,132,105,23,133,22,20,84,40,19,50,164,165,25,232,4,6,134,130,194,11,42,3,87,210,150,13,190,180,59,239,188,51,86,8,32,253,0,18,2,126,247,187,223,227,237,183,223,197,67,15,61,168,106,117,42,64,47,1,50,134,135,135,165,215,215,55,76,202,149,66,222,62,222,84,0,127,4,6,6,33,52,52,84,145,64,11,5,66,2,77,5,36,12,104,42,32,4,208,202,65,201,3,68,210,53,2,168,158,64,42,141,86,1,200,84,201,255,240,16,186,120,12,221,29,244,254,246,30,42,72,245,140,247,11,177,36,217,204,206,202,70,81,113,9,26,107,172,24,165,247,143,91,153,245,151,49,238,155,196,243,221,102,188,127,180,104,15,21,96,23,44,89,254,72,79,213,161,38,223,15,213,233,59,169,0,175,160,47,109,21,14,229,73,236,183,101,255,26,1,6,172,169,14,21,128,118,81,232,236,85,193,114,81,104,114,178,188,83,32,11,49,209,114,131,168,92,20,186,164,142,160,37,17,96,33,64,101,254,138,61,95,107,84,128,8,77,1,132,0,191,249,205,111,177,118,237,59,44,7,31,80,113,154,113,185,169,172,204,156,169,211,37,89,75,204,249,103,221,125,118,193,203,203,29,62,62,62,42,12,4,6,6,42,18,56,134,2,157,78,199,248,152,62,163,2,226,169,114,133,145,99,30,32,165,160,99,8,16,2,72,230,175,197,255,241,241,113,244,15,244,163,147,224,15,48,243,111,106,144,155,46,202,21,145,132,80,66,44,9,51,82,122,10,225,138,77,22,180,84,228,210,251,197,243,61,233,249,2,190,43,227,56,193,47,222,131,145,162,93,24,54,238,160,2,4,32,141,10,80,155,231,139,218,180,29,104,211,189,76,2,188,74,5,32,248,14,242,47,214,87,83,225,148,0,206,189,44,220,249,162,208,248,248,185,101,224,82,8,48,31,112,218,188,249,64,214,204,62,107,78,59,103,254,66,11,58,182,187,239,190,59,80,114,0,45,9,252,229,47,127,137,53,107,222,85,99,2,2,18,129,105,136,139,139,205,52,153,77,19,17,150,23,225,153,240,26,60,3,119,193,195,219,157,74,224,3,127,63,127,134,130,224,57,249,128,168,128,36,132,142,21,129,132,1,30,143,202,3,132,0,82,9,136,194,56,42,128,16,64,147,127,33,70,79,119,15,122,58,123,208,219,209,141,202,10,121,43,137,89,229,19,178,61,217,174,128,47,225,70,194,142,144,206,108,173,64,175,57,18,135,202,40,251,244,252,209,146,253,10,252,81,130,63,90,184,131,4,216,6,75,118,32,82,146,18,80,155,235,139,186,244,237,104,39,1,122,83,95,193,56,203,62,71,240,165,12,236,104,158,180,199,127,169,255,109,241,95,110,12,105,111,183,17,192,185,12,92,42,1,206,23,2,28,113,91,10,134,23,212,180,13,83,1,252,28,203,192,219,110,187,141,10,240,174,26,19,104,106,106,58,221,210,218,146,22,18,28,154,105,25,136,56,235,55,248,13,120,151,255,1,158,41,47,193,51,120,59,60,189,14,194,219,155,225,192,63,64,229,4,26,9,164,52,148,170,192,49,23,16,175,21,0,171,171,229,68,212,207,33,128,120,187,86,1,136,252,203,119,73,254,68,129,6,123,251,209,88,207,228,138,234,33,42,34,219,17,233,23,240,165,226,16,240,133,112,66,188,164,228,84,212,84,152,49,68,249,31,99,204,183,121,254,78,198,254,237,24,37,248,195,5,239,193,148,17,168,70,2,43,179,189,80,151,182,149,4,120,9,61,169,47,219,9,160,129,191,138,132,217,239,32,255,182,14,32,137,255,54,2,76,47,155,0,102,51,171,150,150,129,37,17,224,125,109,4,218,83,202,192,89,2,252,82,117,4,221,119,223,189,146,172,157,98,178,149,147,16,151,82,145,117,248,175,240,62,250,113,248,12,255,39,188,171,127,5,175,140,231,225,17,250,30,60,124,72,2,230,4,154,18,176,180,156,83,21,136,10,104,97,64,98,183,150,8,74,41,232,76,0,145,127,73,4,69,17,164,244,235,237,233,69,119,103,55,202,185,142,38,253,2,190,144,74,192,23,175,151,253,72,2,42,196,11,9,9,65,174,190,0,141,166,36,18,128,192,23,239,38,248,59,108,4,32,248,67,134,173,40,78,15,64,42,21,64,8,80,159,186,25,173,137,47,144,0,47,145,0,4,222,129,0,253,149,133,51,217,191,38,255,53,53,83,36,192,4,137,177,116,2,20,21,85,170,82,176,167,103,146,255,245,194,238,14,214,218,37,81,3,198,122,151,107,174,185,70,17,64,76,20,96,243,230,109,184,231,158,123,196,91,235,117,186,196,130,172,220,116,68,157,184,30,222,39,62,10,159,99,159,132,23,73,224,81,243,75,184,101,61,11,55,33,129,175,27,73,224,5,127,42,129,70,2,173,42,208,84,64,98,182,132,1,241,100,233,17,116,36,128,36,124,18,247,133,0,82,117,136,252,119,119,241,183,129,65,102,248,245,48,201,245,7,92,87,37,125,140,251,154,236,75,210,41,100,147,36,84,242,16,91,62,18,70,111,51,97,160,200,5,99,133,219,8,190,120,254,54,244,232,119,99,48,127,19,9,16,136,184,152,8,84,101,251,160,62,101,19,90,19,158,71,47,21,77,17,192,110,135,242,223,70,123,235,209,115,228,191,186,122,146,4,62,180,4,2,24,85,25,88,85,213,65,192,109,119,7,75,55,240,98,4,56,31,184,242,251,37,33,192,67,15,61,180,219,145,0,183,220,114,43,214,175,223,65,2,220,45,146,91,239,235,235,95,104,172,137,129,223,209,171,225,123,236,159,225,115,252,227,240,152,190,10,7,6,174,195,222,234,219,177,47,243,121,28,8,223,6,119,63,87,149,19,4,248,251,35,36,212,86,30,74,40,208,84,64,98,182,148,110,90,34,40,165,160,16,64,192,150,152,175,197,127,233,126,238,237,163,247,83,1,186,58,187,88,235,75,29,61,11,190,230,249,178,109,169,60,36,236,8,233,36,33,245,243,243,99,130,234,201,125,166,161,169,44,25,227,134,141,24,41,216,138,1,195,14,212,233,195,49,144,183,1,69,105,1,72,140,139,70,113,226,62,52,164,81,1,18,158,35,1,94,192,120,206,171,51,4,24,96,50,217,218,58,247,150,48,77,254,133,0,173,173,83,231,18,128,85,64,82,146,116,129,151,115,153,54,174,211,203,245,7,73,150,165,17,224,239,214,72,128,157,223,248,198,55,102,66,192,47,126,113,11,222,125,119,59,238,189,247,110,102,215,169,13,30,110,158,21,5,13,17,240,235,249,62,252,70,191,10,239,169,127,197,193,169,207,97,247,240,215,240,94,199,127,97,171,229,30,236,72,95,133,125,97,219,225,230,103,11,7,1,244,68,1,70,0,18,137,22,143,21,240,180,48,32,137,96,115,75,179,170,2,100,160,103,98,114,2,199,237,241,127,116,100,20,221,61,36,198,224,16,234,106,235,212,117,5,146,244,201,250,82,89,72,110,33,224,139,228,107,94,239,79,210,73,85,226,229,229,5,55,55,38,167,204,75,36,92,116,27,246,97,172,96,35,134,133,8,250,13,36,192,70,20,165,250,35,59,45,25,133,241,251,80,71,5,104,137,127,214,78,0,27,248,99,172,20,218,219,78,206,200,191,214,249,35,217,191,60,218,221,106,29,39,1,38,103,8,16,26,42,9,104,62,21,142,21,138,169,129,149,202,236,237,225,139,17,224,146,120,179,189,45,107,219,143,63,254,248,22,27,1,164,31,224,6,252,252,231,63,87,10,112,255,253,247,225,192,129,3,245,46,46,7,42,11,171,146,17,82,244,2,130,234,238,129,95,231,205,112,31,248,14,118,247,127,7,27,59,126,130,181,245,183,99,77,201,255,96,125,234,106,236,8,219,5,87,63,55,248,248,218,74,68,33,129,72,180,86,22,230,231,231,169,68,78,202,185,170,154,106,52,82,5,6,9,180,196,253,211,167,79,171,60,96,160,127,192,222,247,223,165,226,190,212,251,57,57,242,196,13,91,194,167,197,123,217,182,236,67,58,165,4,120,119,119,119,117,83,11,143,25,123,247,238,69,108,188,14,181,69,241,24,163,156,15,19,252,225,252,119,73,128,119,81,154,230,141,172,212,4,88,83,61,80,155,180,14,205,113,207,216,8,144,77,5,200,123,19,221,141,61,42,249,155,207,251,229,1,143,86,235,24,9,48,161,8,32,61,129,185,185,242,198,180,185,183,135,95,42,2,44,101,29,89,102,89,219,126,242,201,39,215,107,10,32,61,129,63,251,217,207,177,113,227,110,85,5,236,221,187,111,104,215,174,93,86,67,97,46,34,117,94,136,200,217,129,224,226,85,240,169,124,20,251,234,255,140,205,141,191,199,91,181,127,198,75,214,71,240,162,225,37,188,169,219,132,45,33,251,225,226,231,1,79,95,111,229,157,146,15,196,209,99,165,44,148,78,155,228,180,12,36,50,91,79,78,205,64,74,90,38,50,178,114,80,92,90,166,136,112,228,176,188,19,160,143,159,7,37,255,80,33,67,164,95,66,136,38,251,178,61,145,124,205,235,229,46,38,13,252,253,251,247,99,223,190,125,216,179,103,15,220,60,60,185,190,30,3,249,91,48,146,191,14,195,121,235,48,144,75,2,16,248,148,196,72,52,234,3,80,173,35,1,98,73,128,100,33,0,235,254,106,51,1,114,236,250,157,173,253,37,249,147,103,252,201,139,168,91,90,108,4,144,158,192,252,124,243,57,207,7,88,10,1,228,220,47,151,4,11,129,187,220,237,168,70,47,84,43,61,251,236,179,171,191,254,245,175,207,16,224,230,155,127,134,77,155,118,49,4,220,203,147,235,117,214,197,197,165,213,80,96,64,92,124,12,98,19,195,17,153,236,143,176,204,189,240,209,191,139,189,37,47,99,125,217,211,120,185,244,105,60,81,240,10,30,207,92,143,231,99,119,99,93,176,27,118,251,122,145,4,62,8,12,14,82,161,32,81,151,132,120,93,10,114,13,70,212,212,55,161,163,167,159,214,135,198,150,14,152,43,170,145,195,249,101,204,15,6,6,165,252,235,82,113,95,18,71,71,217,215,192,23,175,23,153,23,224,197,227,53,224,197,243,103,108,207,110,232,82,210,209,88,16,136,145,188,181,24,206,125,27,3,57,111,195,68,2,196,199,134,163,62,215,11,213,73,239,162,201,78,128,190,138,124,5,190,109,224,103,214,251,29,147,63,145,127,179,89,158,248,33,111,29,125,255,9,112,73,26,21,224,21,81,0,237,146,48,33,192,134,13,59,21,1,168,0,99,97,97,161,167,242,242,242,233,129,73,148,96,29,129,140,71,156,46,10,17,73,140,189,233,110,56,144,181,3,27,114,54,226,197,236,13,120,52,125,43,30,72,220,143,199,34,189,241,106,128,31,222,243,241,135,155,175,31,194,163,98,144,72,48,42,106,234,48,118,104,10,227,147,211,24,25,29,195,48,227,189,188,14,110,144,137,96,39,9,97,178,86,161,212,108,81,253,253,5,140,251,82,235,11,248,18,70,68,242,69,81,4,124,15,15,15,198,122,183,25,224,53,240,29,73,176,135,4,240,243,15,130,201,144,73,207,95,143,193,220,181,24,204,89,135,162,100,15,68,71,134,160,34,221,133,4,88,207,16,240,2,154,75,243,149,236,139,205,23,251,103,189,127,148,4,24,190,104,4,248,64,52,230,0,47,92,123,237,181,51,10,240,147,159,252,196,158,3,220,207,19,186,127,60,40,56,248,148,72,112,124,156,173,139,87,226,176,142,150,152,68,175,212,69,35,84,23,10,175,36,95,108,75,242,192,170,36,119,60,18,231,141,59,194,67,112,119,64,20,158,242,142,196,22,223,112,46,159,130,138,234,58,76,76,31,197,208,136,188,1,108,80,37,127,98,50,224,51,98,255,60,32,210,95,223,8,67,97,49,227,107,22,201,150,168,212,67,234,123,145,124,91,146,55,11,252,140,183,219,193,223,183,215,78,134,125,123,177,123,247,110,236,36,9,210,73,162,246,156,189,84,128,183,48,148,179,6,5,137,7,17,21,17,138,170,116,87,148,167,238,67,69,177,212,233,83,202,243,157,189,95,234,254,89,239,31,83,222,47,79,251,108,110,30,251,191,67,128,167,158,122,234,233,111,126,243,155,51,4,248,241,127,253,23,214,111,216,129,7,31,124,64,78,244,36,179,250,169,148,212,52,5,132,200,176,100,245,9,52,241,76,33,132,78,136,144,20,135,144,196,40,28,136,15,195,186,152,48,60,30,30,131,187,2,146,240,7,207,12,108,11,75,69,17,51,242,145,241,41,12,211,235,165,236,211,192,215,62,43,18,216,109,128,185,64,109,67,51,114,242,244,8,103,41,41,94,47,114,47,192,51,28,217,1,183,1,173,145,96,55,99,254,142,221,59,177,109,215,54,218,14,184,144,32,161,30,129,200,11,72,134,57,203,4,75,110,48,6,139,60,209,89,158,131,162,236,52,164,242,248,205,25,190,40,41,172,32,176,195,4,90,186,124,229,41,226,167,156,234,126,91,230,95,94,126,72,197,126,33,128,201,52,72,96,47,46,1,254,174,161,224,233,167,159,254,219,53,215,92,115,102,134,0,63,254,49,67,192,118,53,24,196,4,112,146,201,213,64,66,162,78,73,176,196,96,201,192,133,12,146,141,171,209,191,248,4,36,144,12,9,12,15,49,156,6,37,38,96,119,84,2,94,11,73,193,67,62,249,8,212,229,240,68,52,97,98,234,136,242,124,1,93,76,122,255,196,164,215,79,166,50,36,172,145,64,110,32,169,98,9,24,29,19,107,3,254,128,203,60,128,239,82,96,139,151,187,187,184,33,198,43,12,5,33,153,168,141,42,102,98,103,70,69,100,1,178,252,117,136,11,141,33,64,70,180,52,30,226,113,28,231,103,51,82,152,3,20,21,10,104,45,138,0,213,213,19,252,237,228,76,226,39,143,150,183,245,250,205,122,191,16,192,100,26,98,21,35,111,53,25,253,199,80,128,165,48,235,185,231,158,123,130,57,192,89,27,1,174,199,143,126,244,35,18,96,7,9,112,63,67,193,250,126,158,240,65,1,59,48,208,214,223,47,73,152,72,178,16,34,44,60,12,145,17,36,68,12,9,17,27,205,68,49,30,241,9,148,109,230,11,190,113,169,36,66,54,50,115,245,232,27,28,198,232,152,92,217,107,3,95,122,254,164,28,148,49,1,109,140,64,148,64,35,193,40,173,187,183,23,6,99,177,146,251,221,4,121,199,158,157,216,190,123,135,2,223,203,149,137,156,79,4,138,194,178,81,31,83,138,150,88,11,170,162,10,145,29,152,132,48,122,190,171,139,171,90,103,39,85,193,213,245,32,50,50,179,9,230,48,1,57,130,252,188,34,132,134,5,160,152,53,123,73,105,43,247,61,168,202,59,145,253,185,137,223,108,236,183,90,71,41,253,195,202,251,75,74,152,184,54,142,92,82,2,56,227,54,31,142,218,60,199,223,228,243,124,203,46,218,30,126,248,225,191,49,7,56,43,157,64,162,0,223,255,254,15,84,14,32,10,240,214,91,171,219,183,109,219,62,20,197,36,76,100,88,18,48,233,109,19,211,134,130,53,82,72,167,140,40,132,237,218,128,104,68,197,198,35,38,41,13,5,37,37,24,57,52,201,68,111,120,70,1,36,187,151,49,1,9,41,201,41,201,200,231,119,33,129,212,254,154,10,8,33,234,27,91,16,192,68,206,199,197,19,201,254,113,176,132,27,208,18,103,161,89,97,141,52,32,205,63,30,129,110,190,216,191,111,63,118,237,217,165,72,34,192,239,177,231,5,98,251,72,32,201,89,76,101,109,148,248,227,172,219,141,8,14,9,32,248,245,40,42,110,33,168,3,4,109,204,238,249,34,253,179,101,223,108,236,31,86,177,95,188,95,30,250,220,208,48,252,129,83,128,101,3,175,181,63,252,225,15,255,75,224,207,8,1,196,190,255,253,239,97,221,186,247,72,128,7,177,122,245,234,142,205,91,182,78,70,82,242,221,220,14,170,236,91,76,106,111,49,73,202,132,24,82,143,107,228,144,100,45,128,106,33,164,136,140,140,82,227,244,99,19,83,24,24,24,156,33,128,212,248,178,238,206,157,59,225,201,122,93,200,147,155,147,195,19,219,160,126,87,42,64,53,104,235,234,70,133,161,28,77,49,102,148,133,231,33,217,39,6,190,7,189,153,228,217,98,190,0,190,139,128,43,160,237,225,193,217,36,25,140,33,209,10,139,106,208,220,116,76,41,128,95,128,47,191,215,162,144,4,40,41,233,87,30,110,243,124,155,244,75,226,167,117,250,136,244,139,247,151,150,14,112,217,94,42,86,55,201,242,193,34,192,188,158,191,84,70,220,118,219,109,143,17,248,211,226,253,18,2,164,28,124,231,157,109,234,41,33,107,214,172,233,218,186,117,235,49,145,123,145,98,73,194,52,147,250,91,76,58,96,52,59,120,240,32,205,29,238,140,219,158,36,138,12,14,153,172,149,24,157,152,36,1,250,21,1,100,36,80,146,199,205,155,55,147,56,190,136,74,142,67,116,122,28,146,50,211,97,52,22,242,68,245,205,132,1,73,8,75,203,172,220,183,11,193,222,165,188,92,58,121,4,88,199,156,192,249,179,6,190,216,238,93,187,168,74,225,4,188,130,4,59,76,5,40,70,64,80,0,195,75,21,140,133,77,4,178,143,32,75,34,56,69,155,237,241,155,79,250,139,139,123,120,140,93,252,15,67,23,133,0,243,97,116,193,158,188,148,54,223,198,127,255,251,223,63,72,240,79,9,1,174,191,222,246,156,128,117,235,182,42,2,108,222,188,101,98,227,198,77,83,33,193,33,170,174,214,78,180,179,105,101,153,109,186,127,230,187,59,73,80,108,50,99,156,181,191,140,239,107,23,120,202,152,128,16,38,36,62,10,81,249,105,208,25,50,144,82,152,129,124,67,129,82,1,45,23,16,194,84,212,212,115,89,91,247,174,35,192,218,190,29,191,59,47,35,38,132,145,112,149,157,91,64,128,15,49,31,48,34,36,60,20,134,130,42,146,160,81,121,180,188,197,75,188,94,204,185,230,23,233,23,149,16,240,101,89,121,236,251,223,139,0,242,155,246,251,98,203,45,169,81,134,213,6,158,127,254,249,187,153,3,156,152,205,1,190,71,207,223,168,198,2,118,238,220,117,106,211,166,205,211,65,33,193,51,222,110,243,114,155,73,134,46,222,46,61,114,182,169,7,14,186,187,193,213,157,138,224,121,16,158,222,94,208,23,20,98,104,84,222,252,61,52,115,145,135,12,8,249,50,108,4,37,68,33,34,63,21,177,57,233,136,207,77,97,253,95,168,8,96,203,3,134,209,223,215,175,122,13,221,184,205,189,118,207,215,0,158,15,248,249,126,23,2,248,48,60,101,101,231,17,156,33,164,165,234,17,22,25,142,60,131,149,199,86,15,121,141,155,201,100,123,145,147,99,220,159,205,250,103,165,95,192,55,24,58,24,42,6,47,10,1,86,218,206,75,160,197,88,82,85,85,165,126,91,181,106,213,159,175,187,238,186,227,26,1,190,247,189,239,50,246,111,192,61,247,220,203,4,47,248,244,59,239,188,83,229,31,16,112,214,139,96,74,220,214,76,98,191,151,15,141,243,61,196,124,61,225,231,239,135,152,224,72,228,68,164,160,42,182,8,29,186,74,84,235,43,208,218,211,139,161,17,219,29,62,226,221,50,58,152,153,145,137,112,230,22,186,188,12,68,167,234,144,156,157,197,114,82,167,134,136,181,126,2,185,27,168,166,65,8,224,142,61,140,229,142,0,59,127,118,4,221,209,132,0,18,142,50,73,0,139,165,143,251,38,1,162,35,144,157,103,70,158,190,150,9,105,43,193,147,215,184,142,207,1,223,38,253,54,240,37,241,43,44,20,229,234,228,242,109,36,128,40,194,197,37,192,138,61,250,66,219,107,175,189,246,123,18,224,152,220,32,42,4,144,28,224,141,55,222,85,93,193,241,241,241,167,15,28,112,45,103,41,53,28,26,38,239,7,244,131,143,191,47,124,252,124,225,27,224,135,96,86,1,241,161,177,208,71,101,162,58,161,4,237,73,149,232,72,169,70,67,138,25,166,164,2,100,235,50,40,185,89,168,99,54,63,66,21,232,239,239,87,36,16,144,249,135,33,161,69,134,122,11,138,10,17,151,152,168,42,3,185,18,88,164,95,8,32,99,2,213,117,13,240,242,244,82,189,124,123,246,238,81,230,12,242,66,166,17,66,212,42,45,61,147,153,127,39,50,51,139,17,17,27,69,66,148,33,151,4,144,119,8,20,23,247,42,224,231,130,63,27,247,53,240,69,45,242,243,5,224,126,254,246,193,73,2,151,213,156,153,182,110,221,186,95,51,4,28,17,240,21,1,110,252,30,94,125,109,45,238,35,1,18,19,117,167,163,163,163,75,182,108,125,175,62,62,62,225,172,0,150,20,158,0,99,76,54,106,8,120,91,82,5,218,146,43,81,147,92,138,34,93,30,50,226,83,145,152,144,72,48,19,16,175,75,64,92,66,60,162,99,162,85,37,208,63,98,187,206,79,72,32,0,203,53,129,50,218,39,61,138,50,220,43,195,190,242,187,132,10,249,93,170,129,150,182,118,212,212,54,146,100,209,240,245,240,198,65,214,247,82,242,205,5,250,92,175,215,212,64,35,128,235,65,87,38,158,201,244,222,122,2,110,101,137,26,141,244,44,19,114,243,171,249,189,153,0,247,48,222,143,44,0,190,38,253,54,240,115,115,155,9,112,239,69,39,192,197,80,128,115,182,161,205,88,108,227,91,182,108,185,229,27,223,248,198,97,1,95,84,224,187,12,1,79,190,248,28,238,190,231,30,196,19,64,122,101,235,234,181,107,27,139,83,12,104,213,149,163,57,201,138,10,93,33,242,227,51,145,20,151,128,216,184,88,196,196,199,34,158,160,75,183,176,100,248,182,139,52,99,84,103,145,31,203,66,249,220,220,222,133,193,225,81,69,0,141,4,98,114,229,143,118,97,136,141,0,54,240,101,126,115,123,7,154,170,154,80,153,206,19,29,155,142,184,128,8,248,123,248,42,34,236,219,103,3,123,207,158,185,97,192,145,4,218,231,3,204,93,164,131,42,39,183,10,185,121,22,69,128,156,220,114,21,2,114,114,154,233,221,114,237,193,208,34,224,119,40,233,23,181,200,201,225,241,84,94,124,2,204,215,46,6,41,22,108,218,112,240,142,29,59,110,34,1,166,4,124,69,0,134,128,199,159,127,74,17,64,70,225,8,70,243,134,13,27,234,162,195,34,251,146,226,117,136,140,102,226,70,9,141,142,143,33,232,182,11,63,101,172,95,128,151,113,2,89,71,58,132,152,63,168,144,225,225,225,174,192,200,204,201,69,239,224,8,122,251,108,213,128,22,14,4,112,153,58,91,155,128,223,222,137,214,210,6,244,234,27,208,145,93,133,234,164,34,228,71,166,32,54,32,140,68,240,194,65,2,187,95,128,94,36,65,148,28,64,20,64,8,160,207,23,201,47,71,40,115,128,60,18,64,222,78,38,128,10,192,2,252,249,192,23,239,207,206,110,164,83,244,92,116,2,44,23,236,133,150,159,119,254,98,27,231,137,250,49,67,192,164,70,128,239,80,9,254,250,220,147,36,192,221,106,48,230,232,209,163,77,204,246,45,59,119,239,234,78,207,200,56,155,72,79,79,78,74,158,1,93,36,92,198,4,164,187,88,187,56,51,32,192,54,108,43,177,87,74,66,49,47,47,111,152,44,229,232,238,31,82,177,93,234,125,1,90,83,4,27,33,6,213,252,182,246,118,180,51,113,172,171,111,68,141,193,130,246,188,106,12,230,54,96,40,187,14,93,25,22,84,39,231,65,31,151,132,216,224,80,248,51,33,61,200,10,101,159,157,0,142,68,208,62,203,113,36,37,165,208,211,27,9,154,85,85,1,185,162,0,121,181,10,80,189,190,93,245,242,45,5,124,121,3,104,69,69,215,5,19,160,163,99,252,228,99,143,189,50,67,0,193,198,25,159,243,125,191,168,141,39,232,71,215,92,115,205,132,70,0,177,71,159,122,66,41,128,244,249,159,58,117,170,137,49,58,159,185,66,115,82,114,242,97,1,94,13,9,19,124,13,120,237,18,45,233,253,19,175,215,70,239,4,120,233,52,146,207,210,115,152,68,226,212,55,183,160,171,183,31,77,45,109,176,221,37,220,129,110,185,249,147,38,183,139,181,209,235,219,187,251,208,212,218,142,234,170,106,152,141,101,168,204,43,69,91,78,57,6,115,106,48,78,47,30,101,101,209,149,95,140,234,140,108,232,169,58,177,161,193,240,247,241,96,153,42,131,70,182,204,127,54,68,176,10,240,244,64,74,106,58,140,133,173,200,206,41,67,72,88,8,210,153,12,102,229,200,179,143,27,8,98,171,2,126,41,224,103,102,214,18,228,206,11,38,64,87,215,228,201,219,111,191,95,8,32,160,206,0,235,8,242,66,159,47,73,99,109,255,61,86,1,227,114,123,152,128,127,131,16,224,233,39,240,23,18,64,58,80,72,128,102,214,229,45,36,64,131,155,187,71,127,90,90,170,146,122,1,94,70,5,5,120,237,226,76,241,122,1,90,250,11,196,3,133,0,26,248,242,187,212,255,146,240,149,150,89,212,213,64,114,17,72,107,71,23,147,189,14,180,117,116,163,131,192,183,112,42,243,186,186,229,4,54,193,106,177,194,84,88,10,43,1,111,206,51,97,32,191,28,19,133,149,152,42,181,96,172,164,20,221,133,6,84,229,166,33,47,41,26,49,97,1,240,243,246,96,104,208,134,141,247,200,136,38,124,73,202,164,148,116,130,219,138,228,212,124,18,32,24,186,180,28,164,101,152,89,165,212,41,128,37,211,63,63,248,117,72,79,175,70,185,165,99,5,4,152,56,245,187,223,221,39,175,140,185,220,110,138,8,191,254,245,175,47,127,234,169,167,46,19,227,247,247,175,189,253,246,219,55,220,120,227,141,163,114,119,144,34,1,237,177,167,30,199,95,238,189,91,1,122,236,216,177,222,19,39,78,156,34,25,42,72,130,166,68,93,210,89,241,120,77,238,101,48,72,250,255,197,235,5,104,109,204,94,166,34,189,50,79,126,147,251,247,100,192,71,84,67,148,64,186,125,107,89,226,53,211,211,219,58,123,209,222,37,214,163,186,127,229,34,81,185,60,92,202,69,25,49,180,145,160,24,101,122,174,163,47,66,15,85,97,162,212,140,195,214,50,76,87,149,96,180,194,128,206,178,44,84,232,117,200,73,137,64,116,184,31,124,125,220,185,127,23,69,0,185,74,57,37,57,11,197,69,29,76,84,115,17,27,19,138,152,180,20,36,165,149,40,64,115,115,27,21,240,231,7,191,6,105,169,85,176,152,219,87,68,128,223,254,246,158,95,93,117,213,85,31,250,220,231,62,247,33,66,112,133,221,20,25,126,240,131,31,92,78,135,84,164,112,176,75,215,158,127,254,249,111,255,240,135,63,28,150,187,131,52,2,60,242,196,255,226,174,123,239,81,3,63,114,169,182,24,189,177,226,141,55,222,108,242,241,245,27,20,2,136,220,59,94,149,43,203,10,232,226,249,206,224,203,178,114,133,175,92,223,39,234,33,87,248,202,224,143,12,5,151,91,173,4,185,145,177,177,147,39,200,118,147,136,236,79,72,32,213,128,132,133,218,186,58,213,111,80,42,15,155,48,20,160,170,160,0,157,197,69,24,183,20,227,72,117,17,142,53,20,224,112,99,30,70,234,51,209,94,145,12,139,49,6,89,105,193,136,138,244,129,151,167,11,19,211,72,164,167,201,51,139,58,145,146,166,39,25,73,224,148,88,232,82,139,144,154,42,87,247,54,16,248,246,197,193,207,32,248,105,85,36,146,220,163,216,182,2,2,28,58,253,155,223,252,229,215,31,103,227,233,255,40,237,35,180,15,211,132,12,242,166,150,43,233,144,51,132,112,152,42,149,160,205,16,226,188,225,65,22,56,223,66,239,188,243,206,55,72,128,126,141,0,223,226,244,129,191,62,134,187,238,254,11,14,186,29,84,64,200,141,155,39,79,158,28,246,246,246,170,220,188,101,235,168,140,242,73,172,215,174,202,21,176,157,193,23,66,8,49,100,25,233,249,19,239,151,176,161,221,40,34,183,139,73,63,128,92,34,46,3,68,210,47,208,203,114,80,186,129,181,251,4,229,134,17,73,10,229,183,154,154,90,69,162,226,162,98,20,27,12,40,47,208,163,173,212,64,239,47,192,209,6,3,142,183,228,225,120,71,54,14,119,165,97,164,45,9,109,117,177,176,148,132,35,51,35,128,251,103,226,154,82,128,2,99,11,178,178,141,4,53,26,65,186,72,232,82,138,152,204,202,171,221,235,8,100,219,188,224,203,111,153,153,53,36,80,53,82,83,42,153,251,200,29,202,210,123,120,97,4,232,236,84,4,248,237,71,63,250,209,79,240,244,255,147,221,132,12,31,163,57,18,66,76,8,161,41,132,35,41,148,189,241,198,27,218,247,249,219,82,8,176,101,203,150,175,81,118,250,132,0,146,3,124,235,218,235,112,223,99,15,171,16,224,202,236,90,110,217,210,238,220,109,110,110,174,222,184,105,243,164,191,191,237,178,108,1,89,198,1,180,193,31,109,188,64,230,9,49,68,29,52,239,23,18,200,248,191,132,2,185,216,83,46,247,214,110,21,147,59,133,180,91,197,164,63,64,187,83,72,221,40,50,58,170,250,9,228,78,34,89,78,136,84,76,226,8,9,204,198,60,52,150,230,97,168,58,15,211,45,57,56,222,157,129,19,125,105,56,62,152,132,233,193,120,12,245,68,161,189,37,134,251,78,166,201,141,154,77,172,255,141,4,58,14,254,9,17,72,72,150,183,123,155,149,180,11,240,243,121,126,6,61,95,192,151,151,64,39,37,87,144,0,12,71,166,149,17,224,215,191,254,203,239,120,234,63,249,137,79,124,226,83,50,165,9,25,254,249,67,31,250,144,152,51,33,28,201,112,229,151,190,244,165,43,191,250,213,175,206,33,131,40,195,121,213,64,218,124,132,32,104,255,65,2,116,9,1,190,69,5,184,238,218,107,113,223,163,66,128,123,176,159,222,44,222,40,4,176,169,192,169,209,128,128,160,126,151,3,238,8,12,146,119,229,202,181,248,182,186,91,243,124,73,250,180,177,2,81,9,145,125,185,165,91,18,70,233,32,18,249,119,188,87,144,199,3,185,87,80,0,150,74,64,74,67,185,68,76,238,17,20,21,144,253,11,41,228,55,121,176,132,220,85,36,132,42,226,186,70,170,128,169,48,23,117,101,217,232,175,205,196,100,71,58,142,245,167,226,196,104,2,78,76,196,225,248,100,4,134,73,134,200,216,4,36,102,20,65,111,104,134,161,64,46,56,77,132,127,92,24,18,116,5,60,166,50,37,237,210,31,32,224,203,116,62,240,147,237,224,39,36,48,20,149,202,117,4,23,78,128,95,253,234,46,33,192,167,63,242,145,143,124,154,83,141,4,159,188,242,202,43,197,20,25,104,231,83,6,77,29,132,8,98,23,214,8,216,191,51,4,116,201,149,193,162,0,215,94,123,13,238,127,244,33,69,0,185,186,86,0,16,48,196,228,233,225,237,237,93,39,246,236,217,7,79,47,95,5,182,230,249,98,206,224,75,146,40,30,43,94,47,242,47,165,163,16,64,110,243,210,158,25,32,10,32,23,136,8,1,100,164,80,36,95,188,222,81,5,36,33,148,126,2,249,93,42,131,89,37,16,18,112,59,198,28,212,148,101,162,187,33,29,19,61,73,56,54,18,143,147,83,49,56,123,60,2,93,237,233,112,15,13,66,84,106,30,244,249,205,40,48,200,157,70,9,240,37,1,226,18,245,76,74,75,20,192,226,245,206,158,47,9,159,200,126,82,146,60,11,209,74,181,144,215,198,150,17,236,230,21,19,128,41,192,213,60,253,159,161,253,11,77,17,129,224,139,205,40,130,132,9,46,39,68,16,18,44,72,132,79,127,250,211,87,156,87,1,22,90,96,199,142,29,255,118,211,77,55,117,200,13,162,146,3,92,123,205,181,184,247,225,7,21,1,118,177,134,214,8,160,41,129,188,54,38,35,35,15,219,182,237,130,135,167,55,85,96,246,194,16,45,233,147,240,32,4,200,202,204,66,73,169,205,251,37,249,211,226,191,148,130,66,0,237,225,81,66,0,199,199,198,72,242,39,160,203,62,69,5,36,12,73,110,32,228,144,101,52,37,144,117,139,88,29,20,144,4,69,198,108,84,148,165,163,163,33,25,163,189,241,56,114,40,26,167,79,68,161,180,36,3,251,67,124,145,156,81,134,188,156,70,42,128,1,249,134,120,120,199,133,35,54,33,159,97,73,30,243,82,78,208,235,9,126,61,167,181,51,224,75,194,167,129,159,144,96,86,224,199,197,201,157,202,77,43,34,192,109,183,221,241,7,158,250,207,18,220,207,114,170,17,225,51,87,92,113,197,191,208,102,136,64,2,136,57,170,129,150,56,58,18,225,202,79,126,242,147,66,132,249,155,6,252,66,4,160,7,127,246,230,155,111,110,17,2,72,41,120,45,167,119,62,112,15,238,186,239,30,108,219,185,29,211,118,224,133,4,50,61,118,252,24,189,117,64,189,15,232,160,171,27,124,252,252,225,42,25,63,243,1,1,95,146,62,169,14,164,127,192,100,46,86,215,246,139,247,107,183,138,107,9,160,246,216,24,1,209,241,177,49,146,7,104,97,64,246,39,42,32,54,243,212,16,18,68,146,66,41,15,171,170,42,81,102,102,56,160,18,20,48,28,20,144,4,102,83,58,154,27,116,24,234,143,193,196,120,10,34,227,98,224,22,201,156,37,65,199,4,176,6,25,89,121,200,205,79,100,18,24,131,216,248,60,30,91,177,2,88,3,94,202,194,197,192,23,194,20,21,53,172,136,0,183,220,242,223,127,186,252,242,203,191,64,251,60,33,248,28,237,95,105,66,132,171,72,0,69,132,15,127,248,195,159,102,142,240,105,146,68,66,132,144,192,145,8,138,0,95,252,226,23,133,4,74,1,56,93,188,45,68,0,122,239,213,36,64,195,140,2,124,243,26,220,113,223,221,248,139,70,0,59,240,54,5,144,39,121,30,133,185,180,131,53,115,165,138,251,30,158,62,36,129,31,203,45,79,5,190,191,191,31,2,73,128,244,156,68,232,11,51,88,138,209,251,19,108,247,17,168,235,0,236,9,160,140,254,105,4,16,5,112,38,128,132,1,237,201,97,154,10,8,41,228,55,89,70,35,65,101,165,237,209,49,18,78,68,9,10,10,114,96,42,77,71,35,73,96,181,228,226,96,136,63,188,99,162,176,35,220,19,209,41,122,196,38,49,7,201,73,69,24,43,131,232,120,121,207,191,140,72,218,242,0,91,166,95,165,226,189,128,47,146,63,11,126,169,34,75,116,116,33,203,215,250,21,17,224,103,63,187,253,46,130,255,31,4,250,63,8,193,191,211,190,64,83,100,224,252,207,210,102,194,3,151,145,240,48,19,22,104,90,72,16,18,168,126,132,207,125,238,115,23,158,3,16,196,207,252,252,231,63,175,213,20,224,26,18,224,207,36,192,221,15,220,139,173,219,182,17,248,89,2,8,25,78,208,27,139,139,27,249,135,187,17,29,149,12,31,111,31,68,69,199,204,196,125,229,253,17,33,200,47,139,227,137,139,81,222,175,201,191,22,255,53,2,72,8,208,114,0,33,128,84,2,146,236,73,188,151,196,79,194,128,236,83,20,64,72,32,159,133,24,242,187,60,58,78,242,1,41,33,133,4,66,36,217,158,144,64,175,167,18,152,13,4,56,30,174,17,129,112,161,2,108,11,117,199,129,232,80,132,198,197,50,217,203,65,168,16,32,46,135,128,26,9,114,169,138,245,98,90,178,183,16,248,242,214,112,163,177,110,69,4,184,233,166,223,220,199,83,255,117,218,87,105,95,161,253,7,65,255,34,167,95,160,244,11,17,28,67,195,76,142,64,19,34,8,1,4,124,145,127,149,4,218,59,142,150,214,156,149,96,237,218,181,159,254,197,47,126,81,37,4,144,74,224,154,111,126,19,127,190,231,46,220,243,224,253,216,244,158,237,213,113,90,8,176,129,113,84,17,32,39,187,129,211,78,202,102,150,122,106,168,92,58,46,4,8,12,8,132,46,59,16,169,6,219,61,3,82,250,137,252,203,24,130,84,4,18,255,165,2,144,78,32,45,7,144,120,46,222,108,27,27,176,61,65,84,228,126,161,199,199,9,57,36,20,136,98,56,146,64,83,2,217,182,94,111,128,107,168,47,60,162,66,177,61,204,139,230,169,44,48,58,92,93,134,30,145,161,67,84,108,22,143,209,128,184,216,18,36,211,227,157,147,61,145,252,185,224,23,32,60,92,30,132,45,4,168,188,64,2,140,159,254,201,79,126,245,16,79,253,183,105,215,210,190,73,47,255,58,9,240,159,252,252,101,218,23,249,89,20,225,223,104,142,68,16,18,136,10,136,247,139,244,207,148,130,43,234,62,166,231,126,234,150,91,110,49,203,13,162,162,0,114,155,152,140,3,60,248,240,195,216,180,121,243,28,2,200,231,163,4,193,88,208,128,220,28,185,184,162,129,30,215,64,112,237,67,193,81,49,8,141,244,65,170,233,32,98,152,101,203,208,176,116,253,74,246,175,197,127,141,0,154,2,8,1,4,60,1,81,192,212,18,65,199,48,32,242,175,169,128,28,139,166,2,162,22,66,2,73,10,69,69,180,199,200,137,170,4,197,68,226,96,120,16,246,70,248,97,91,152,135,2,127,7,45,32,38,130,137,96,1,115,128,104,132,68,166,33,60,76,207,227,148,48,96,113,242,122,137,247,37,42,68,104,224,71,144,44,97,97,242,20,144,154,21,17,224,199,63,190,245,127,120,234,191,119,217,101,151,125,135,83,69,4,126,254,38,167,95,163,125,133,4,208,20,65,35,193,85,52,81,0,137,255,51,158,255,151,191,252,101,121,192,59,123,191,52,150,110,159,164,2,148,202,45,226,162,0,66,0,121,62,208,35,143,60,138,45,36,128,214,17,164,41,192,209,35,71,249,199,43,145,146,100,33,168,229,200,102,230,108,54,55,211,187,211,232,73,148,250,252,64,196,231,185,34,42,34,122,198,251,29,9,160,61,60,210,145,0,162,0,66,0,41,5,133,0,243,133,1,201,5,52,21,144,132,80,170,2,173,52,20,229,144,16,34,36,168,173,169,69,26,243,140,125,244,254,131,145,65,120,47,204,29,219,67,61,24,2,104,33,30,8,75,140,65,102,86,54,124,98,24,14,34,210,88,170,230,42,89,23,208,5,124,205,235,5,124,1,62,42,202,56,7,252,144,16,57,254,234,11,38,64,71,199,248,233,31,252,224,23,127,227,169,255,47,130,254,35,78,191,71,211,136,112,29,77,17,129,4,144,208,32,36,248,156,36,133,246,14,162,15,75,188,151,241,2,199,46,225,21,181,173,91,183,126,226,182,219,110,51,126,131,4,208,20,224,206,59,239,84,175,145,221,180,105,147,34,128,156,112,141,0,242,125,96,96,20,213,53,242,134,144,90,100,102,152,152,49,151,209,43,44,156,166,64,151,156,128,196,100,219,195,155,226,98,109,15,145,150,126,0,137,255,146,0,106,207,13,20,153,214,146,64,141,0,162,0,226,209,66,0,41,249,132,0,90,24,16,245,209,84,64,62,75,66,40,191,203,114,26,9,90,154,91,96,100,89,232,18,234,195,196,47,84,129,254,158,29,248,45,33,110,120,47,216,29,145,201,73,60,198,36,120,51,52,132,132,167,33,40,40,91,129,27,27,91,106,247,250,89,201,23,240,229,55,145,125,1,63,52,52,15,193,193,57,4,189,106,69,4,248,222,247,110,126,142,167,254,23,180,159,209,126,74,251,33,77,35,194,183,104,18,22,36,36,124,129,85,128,120,191,230,249,90,239,223,197,107,244,242,79,220,124,211,77,5,159,255,252,231,241,229,47,127,89,189,62,246,142,59,238,32,1,30,195,186,117,235,212,73,119,84,0,27,9,88,159,115,190,120,229,240,232,8,134,71,198,208,222,213,143,30,130,33,64,203,251,3,146,9,122,60,189,95,202,64,241,126,137,255,142,79,14,149,113,0,25,30,214,8,48,223,187,4,36,15,16,185,23,21,144,99,208,42,2,81,1,249,46,228,144,101,228,153,66,61,172,12,202,203,43,112,48,194,31,62,177,161,216,29,230,141,247,66,220,177,149,160,111,13,118,195,214,144,131,156,186,34,92,39,4,77,130,103,84,8,21,32,29,129,129,153,4,87,175,64,183,121,125,209,28,175,23,240,5,120,177,144,144,28,18,70,254,131,0,126,225,4,248,238,119,111,122,137,167,254,215,180,95,82,5,110,161,183,11,17,126,66,251,1,237,6,154,16,224,75,52,137,253,2,190,100,251,139,130,239,168,238,243,41,253,130,77,151,146,242,49,55,15,143,164,23,94,124,249,228,3,247,223,175,46,12,253,221,239,126,135,39,158,120,92,245,234,73,44,22,0,196,243,5,0,153,30,59,102,27,174,237,234,234,86,30,43,224,77,179,90,16,96,4,144,156,156,108,117,163,168,92,250,45,132,208,18,64,173,2,56,31,1,180,7,73,203,190,197,203,197,219,69,133,108,251,182,37,132,114,44,90,40,16,19,249,63,16,238,139,224,132,88,146,32,16,91,8,186,120,252,86,69,2,130,79,2,188,199,105,80,28,203,210,196,4,120,70,7,171,16,224,231,151,174,192,141,138,42,156,35,249,142,94,47,178,31,28,156,173,212,34,32,64,84,172,98,153,4,152,164,29,98,120,27,81,57,192,119,190,243,147,85,60,245,183,211,126,75,19,34,200,5,34,55,209,190,79,66,92,71,66,124,137,159,21,248,87,95,125,181,128,127,14,160,206,32,203,247,101,1,239,216,234,27,155,190,80,84,82,246,231,138,202,138,157,244,208,18,198,234,97,218,25,1,78,18,42,109,212,78,0,146,33,91,121,145,132,128,40,192,200,219,68,251,251,7,80,85,89,53,67,18,33,135,222,160,231,201,140,70,154,189,227,39,51,51,139,149,195,108,9,168,17,64,182,47,73,160,214,25,36,82,46,121,128,212,250,34,239,90,53,224,152,11,136,10,136,50,201,231,233,201,105,152,184,13,151,112,31,132,39,198,193,55,62,28,155,21,224,118,207,231,231,45,65,54,219,26,228,6,127,74,127,60,85,201,35,50,16,1,97,137,240,241,73,81,192,10,232,142,94,175,197,123,241,122,1,63,48,48,75,129,239,239,159,78,2,88,151,72,128,33,18,122,132,255,173,147,121,146,188,61,164,147,68,24,63,125,195,13,255,245,38,65,190,131,167,254,191,105,50,46,32,23,136,136,2,124,155,243,165,127,64,74,63,201,246,175,144,129,30,78,151,231,213,75,109,206,27,101,41,118,69,93,93,253,167,56,189,145,229,212,255,50,99,15,160,7,214,208,19,39,212,85,186,76,210,228,218,125,73,230,74,74,74,9,148,12,213,202,0,206,16,255,92,3,6,135,6,21,48,71,72,10,121,225,148,60,219,63,65,174,22,102,18,40,143,153,41,48,22,48,129,178,19,160,112,86,1,156,9,224,152,7,12,41,194,217,94,42,165,229,2,162,0,56,123,22,99,163,227,72,201,205,194,254,48,95,196,16,84,95,74,255,230,16,87,74,191,0,79,35,224,10,252,192,131,216,28,232,170,166,254,209,97,72,77,75,135,39,19,68,247,224,48,120,123,235,72,128,76,5,186,102,179,94,47,146,63,23,124,95,95,121,228,157,244,57,44,78,0,121,85,76,121,121,27,137,94,201,210,116,246,89,193,66,128,235,175,255,241,26,158,238,191,208,254,68,251,13,77,242,0,73,2,165,83,72,178,125,41,243,46,223,190,125,251,178,64,95,18,73,150,195,36,2,247,97,46,255,89,122,233,205,245,245,117,175,116,118,118,197,118,118,244,54,55,52,180,30,169,172,20,169,150,123,253,134,21,17,132,16,53,148,241,81,130,34,32,157,56,113,28,39,79,157,228,247,17,5,120,44,19,194,180,180,12,38,127,242,74,21,19,79,72,169,34,128,212,238,66,42,33,128,214,23,160,17,64,11,3,242,8,153,113,18,224,48,21,224,132,188,74,110,98,18,37,229,22,120,68,135,192,155,165,158,46,53,5,222,241,97,216,44,94,46,178,111,7,93,77,3,4,120,87,108,82,118,0,126,140,253,114,69,146,59,21,96,155,223,65,184,123,198,19,220,12,5,250,172,215,107,146,159,101,7,63,99,6,124,111,239,100,230,50,50,32,180,48,1,228,133,17,50,63,55,87,158,113,168,61,44,90,18,221,46,21,2,174,191,254,71,107,121,122,133,0,191,167,9,248,215,208,164,75,88,50,253,57,146,191,20,188,206,187,140,44,176,28,224,231,107,153,153,25,151,25,141,133,31,211,235,141,95,74,210,101,254,46,63,223,180,169,170,170,53,195,98,105,236,105,104,232,61,81,88,88,161,78,132,209,40,127,216,68,175,174,230,159,237,162,231,74,119,174,45,76,72,230,47,15,155,146,106,161,144,33,160,146,97,163,154,164,145,139,61,164,10,16,21,145,7,72,10,1,58,73,0,81,29,9,57,195,114,183,16,67,129,188,141,52,187,200,168,74,184,131,161,1,234,169,36,58,230,24,123,35,124,177,49,232,0,222,83,30,111,243,250,205,36,128,0,191,153,160,11,240,155,2,92,212,212,55,42,88,117,77,123,72,137,232,231,138,109,174,62,204,3,82,29,128,159,43,249,98,126,126,105,4,63,133,225,34,153,121,145,142,225,108,30,2,176,34,42,46,150,171,140,75,153,244,202,179,130,11,73,0,237,97,209,229,204,115,218,84,34,40,73,224,13,55,252,120,53,79,169,72,191,148,129,210,27,40,241,94,73,62,109,94,156,22,195,111,165,216,158,211,22,34,140,118,47,129,52,122,244,229,111,175,123,231,19,9,9,186,111,166,164,100,222,205,212,97,127,85,117,95,73,101,229,208,112,85,213,192,25,185,106,198,104,148,55,105,200,27,68,45,148,247,70,2,218,135,150,182,86,148,89,204,170,55,78,202,66,245,194,135,162,98,122,142,60,68,186,158,113,83,8,208,142,118,38,130,98,66,132,22,38,134,197,166,50,4,69,71,194,87,128,103,72,201,202,202,65,96,82,12,147,61,130,173,60,159,192,219,227,189,200,189,128,173,77,55,18,252,141,1,182,169,119,100,48,19,212,56,120,145,8,219,72,128,55,246,109,87,158,45,82,239,12,188,191,127,198,12,248,222,222,73,10,124,79,207,68,30,183,105,134,0,242,74,24,131,190,28,25,233,69,144,151,70,201,91,195,180,135,69,231,228,200,192,81,37,115,39,121,248,229,97,134,178,83,36,121,255,145,111,127,251,7,143,240,20,222,72,19,201,151,238,221,15,127,233,75,95,186,160,254,252,5,193,215,64,116,94,96,190,121,23,163,189,183,117,203,229,94,222,1,159,49,24,74,111,52,24,202,159,180,90,59,252,27,26,198,25,21,70,38,107,106,6,81,86,38,23,99,152,145,193,10,161,196,108,66,67,179,173,230,111,104,108,128,169,204,172,18,197,20,122,179,26,51,96,197,144,206,207,82,62,74,31,130,204,147,178,82,30,29,215,64,149,56,52,126,8,45,157,221,8,103,146,234,26,25,130,205,1,7,177,222,111,63,54,250,239,83,32,43,143,183,155,13,248,3,216,160,72,224,2,31,18,32,150,21,138,119,116,40,182,251,31,196,139,187,223,133,139,103,36,129,207,116,242,122,145,252,20,90,178,3,248,9,112,119,143,103,69,83,170,8,32,79,10,149,215,195,68,69,101,176,130,144,183,134,105,15,139,54,144,160,197,42,20,180,182,202,197,44,242,124,132,163,136,143,55,14,220,122,235,157,207,242,116,125,131,38,61,124,82,226,201,80,238,188,120,204,135,225,165,192,110,14,41,156,119,120,190,198,252,224,50,150,112,231,44,159,158,158,117,197,174,93,251,255,213,106,173,251,169,213,218,250,70,93,221,80,124,109,195,96,91,106,129,225,104,92,118,58,226,51,82,145,156,153,142,188,2,3,44,21,229,148,254,22,245,248,88,149,11,48,25,148,138,67,194,130,228,4,210,227,39,93,194,90,71,144,100,255,199,37,199,56,113,146,149,200,164,122,254,96,78,81,9,124,163,163,176,55,212,31,27,188,247,227,29,159,189,88,239,191,159,182,15,27,252,93,212,116,35,191,123,71,4,33,150,33,64,194,136,70,128,245,7,93,149,183,107,177,94,66,130,163,228,107,158,239,225,17,143,131,7,37,151,41,81,4,144,103,5,59,190,49,68,123,111,96,110,174,188,23,65,46,94,145,155,96,198,25,234,186,241,250,235,59,77,87,95,253,101,41,249,164,196,147,126,125,173,99,103,193,54,31,22,203,193,230,146,180,11,61,128,162,34,203,135,12,134,162,127,51,20,155,126,157,91,92,178,33,197,152,151,155,168,207,236,141,201,73,63,30,157,145,140,184,140,20,164,100,177,100,52,218,8,33,178,63,52,50,172,174,71,144,218,95,64,23,147,4,83,236,200,225,35,170,67,74,72,49,193,4,177,175,175,31,99,204,55,70,71,15,193,90,221,128,116,131,17,110,225,161,216,234,239,142,181,158,187,176,206,123,55,85,98,47,188,152,52,70,197,68,35,61,39,7,187,2,221,241,194,238,119,240,170,203,102,120,251,38,205,137,245,142,146,175,121,190,155,91,28,92,93,99,233,225,197,51,4,112,126,90,184,188,44,82,171,2,132,0,1,1,41,199,127,249,203,7,124,175,188,242,163,82,226,73,223,190,36,122,11,122,189,115,187,228,128,95,76,150,45,117,189,180,244,204,203,242,11,10,62,154,99,200,249,70,150,49,255,174,148,130,236,125,58,67,86,73,92,94,250,72,116,110,234,201,184,236,84,232,178,24,2,178,51,145,111,208,147,16,21,42,119,144,247,7,75,231,207,81,233,16,34,25,132,24,221,61,131,48,177,148,44,46,46,162,236,102,163,147,121,195,169,147,182,55,143,78,76,78,163,189,179,23,57,198,18,132,49,92,188,231,231,1,223,176,80,132,83,41,90,169,44,187,131,60,240,252,174,119,240,242,254,141,216,225,41,207,30,78,158,241,122,13,120,241,122,13,252,131,174,49,56,176,63,138,73,108,33,147,62,141,0,137,136,140,76,67,86,102,201,204,211,194,107,107,187,25,174,170,241,204,51,27,58,191,248,197,27,238,187,236,178,203,63,253,177,143,125,76,128,215,70,241,212,121,186,152,224,174,120,91,43,217,128,182,238,133,110,35,41,43,237,178,220,194,130,79,100,27,242,190,147,81,144,247,100,178,33,219,159,234,80,23,157,155,54,17,147,155,122,54,49,151,241,53,147,249,64,22,67,134,161,0,86,86,15,109,29,237,234,185,194,13,141,242,94,163,73,213,55,32,29,70,50,12,44,165,163,214,41,117,156,36,145,215,209,31,62,124,20,189,125,131,234,137,37,113,9,137,104,108,106,196,78,42,192,243,187,222,38,1,54,96,141,155,188,12,75,3,94,228,94,188,62,206,6,252,193,88,184,30,32,248,46,209,216,191,47,2,201,73,70,150,178,66,0,110,43,54,11,250,124,233,24,178,149,129,86,75,11,215,139,57,126,235,47,238,15,250,247,47,92,39,131,57,34,243,151,95,117,213,85,87,124,225,11,95,56,167,83,103,197,192,57,52,217,214,146,183,167,45,232,60,189,144,182,146,117,231,107,185,5,250,43,244,198,130,127,205,51,234,111,78,53,100,191,73,117,72,140,211,103,116,82,29,14,167,100,68,156,205,74,13,64,82,114,20,147,71,11,234,153,76,90,170,74,152,63,152,88,98,53,49,20,116,171,14,165,99,199,109,185,130,45,84,208,88,138,202,212,108,182,168,238,105,230,24,103,246,121,121,247,188,180,105,253,212,43,123,55,159,125,245,224,102,236,245,8,179,3,111,247,120,2,47,94,239,74,224,93,232,249,46,251,35,176,119,111,40,75,89,185,156,77,171,2,44,170,12,148,129,177,116,230,6,127,251,219,59,77,215,95,255,155,59,40,247,114,78,102,198,236,237,118,78,155,239,220,57,206,187,216,231,246,156,38,59,184,228,59,89,97,203,45,212,127,56,175,200,240,239,233,5,249,183,103,26,51,55,235,245,145,121,101,121,110,125,181,6,247,99,173,229,41,103,251,219,43,208,215,81,141,230,38,43,204,21,165,148,226,82,244,247,117,49,113,28,39,240,182,60,225,216,209,99,42,119,48,151,201,229,95,105,210,171,121,50,54,54,246,233,159,254,244,87,223,126,230,153,53,15,188,189,105,239,206,245,219,14,214,237,222,29,60,117,224,64,212,25,87,1,254,64,180,242,122,151,253,145,244,252,112,130,31,134,221,187,67,144,152,104,152,33,128,244,3,200,203,34,246,239,11,58,114,235,173,15,190,247,173,111,221,42,101,157,156,79,177,203,191,250,213,175,170,123,254,228,127,104,205,241,156,47,247,252,59,47,187,232,250,75,221,240,165,58,128,229,108,119,57,45,173,216,244,241,130,162,220,175,27,243,98,239,205,207,137,116,41,202,11,45,169,44,140,24,110,181,234,78,213,149,165,162,48,45,8,69,153,225,40,202,75,65,185,169,0,45,77,181,24,236,239,197,248,161,49,117,193,72,90,186,16,160,233,84,92,92,236,115,244,84,233,129,147,43,109,148,60,175,94,189,251,223,104,247,111,216,224,230,190,117,139,79,203,142,237,1,199,246,236,9,61,187,135,192,11,248,187,118,5,51,219,215,207,16,32,46,46,251,244,19,79,172,54,92,119,221,173,63,176,95,156,169,221,226,165,121,254,5,181,11,61,167,231,252,174,205,88,108,197,243,109,84,107,11,45,231,56,223,249,243,82,183,237,216,22,90,207,106,177,158,51,47,175,176,232,50,125,113,225,39,179,11,178,110,212,27,82,159,42,212,235,130,107,140,177,53,221,133,126,135,219,244,30,103,107,114,188,96,202,12,132,49,51,10,133,121,169,72,75,77,129,46,53,9,225,186,184,51,33,161,33,79,95,121,229,149,114,69,174,244,194,205,217,182,118,12,107,214,236,254,202,154,53,123,158,36,33,2,55,109,242,236,217,178,197,251,116,92,156,220,214,86,126,118,239,222,128,230,91,110,185,255,254,79,125,234,83,87,74,140,103,162,39,165,221,135,228,130,13,219,86,230,158,143,229,182,149,172,251,15,219,86,250,167,11,138,203,175,48,91,42,62,107,45,49,254,172,190,52,243,173,230,162,216,204,142,162,144,158,142,2,207,51,173,249,30,234,229,209,137,186,196,179,73,41,201,166,87,94,121,229,90,42,128,116,198,136,231,206,105,243,29,199,218,181,251,46,163,58,124,103,255,254,160,23,214,175,223,247,228,213,87,127,69,214,117,174,231,231,61,254,127,8,48,229,32,151,123,160,218,58,142,235,45,119,27,90,187,208,245,22,106,229,165,166,203,76,165,230,143,84,148,22,255,167,181,56,255,143,117,197,201,219,91,74,227,75,245,121,25,62,238,110,110,159,181,223,80,113,65,251,180,203,189,163,212,95,212,99,255,135,106,26,112,23,27,192,229,182,197,142,195,98,49,95,102,46,53,93,110,45,43,251,231,210,210,66,241,218,149,54,33,192,21,23,218,135,191,212,230,252,95,46,233,57,190,24,27,191,164,7,248,62,53,199,255,176,200,255,145,249,231,253,175,243,173,47,243,52,179,207,90,176,57,46,163,125,94,108,189,165,108,115,230,0,180,207,106,230,18,219,66,203,47,119,59,23,218,150,178,159,149,30,203,197,220,135,182,220,114,142,201,113,217,133,62,95,148,38,27,188,232,27,189,68,109,161,227,188,24,199,191,216,121,152,239,183,197,246,185,216,118,236,31,207,219,150,179,191,21,55,217,248,165,220,193,98,219,95,202,126,181,245,181,101,157,215,113,252,238,184,172,243,114,23,187,45,180,253,243,205,95,206,113,45,103,157,11,217,254,37,105,142,7,176,208,193,172,228,32,151,186,238,197,220,199,7,101,91,75,111,255,239,255,253,127,112,71,131,73,253,202,74,86,0,0,0,0,73,69,78,68,174,66,96,130],"MSIProductID":"","Architecture":"X64","PSUninstall":"$proc = (Start-Process -FilePath \"$($env:ProgramData)\\Package Cache\\{95ac1cfa-f4fb-4d1b-8912-7f9d5fbb140d}\\VC_redist.x64.exe \" -ArgumentList \"/uninstall /quiet /norestart\" -Wait -PassThru);$proc.WaitForExit();$ExitCode = $proc.ExitCode","PSDetection":"if(([version](Get-ItemPropertyValue -path \u0027HKLM:\\SOFTWARE\\Microsoft\\VisualStudio\\14.0\\VC\\Runtimes\\x64\u0027 -Name Version -ea SilentlyContinue).substring(1)) -ge \u002714.15.26706\u0027) { $true } else { $false }","PSInstall":"$proc = (Start-Process -FilePath \"vc_redist.x64.exe\" -ArgumentList \"/Q /norestart\" -Wait -PassThru);$proc.WaitForExit();$ExitCode = $proc.ExitCode","PSPreReq":"[Environment]::Is64BitProcess","PSPreInstall":"$SW = gci \"HKLM:\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\\" | foreach { gp $_.PSPath } | select UninstallString,DisplayName | where { $_.DisplayName -like \"Microsoft Visual C++ 2017 Redistributable (x64) - *\" }\r\n$SW | % { start-process $_.UninstallString.Split(\"/\")[0].replace(\"`\"\", \"\") -ArgumentList \u0027/uninstall /quiet /norestart\u0027 -Wait }","PSPostInstall":"","ContentID":"rzVCRedist2017x64","Files":[{"FileHash":"5ead300dc7e4d637948ecb0ed829a072bd152e17","FileName":"vc_redist.x64.exe","HashType":"X509","URL":"https://aka.ms/vs/15/release/vc_redist.x64.exe"}],"Author":"rzander","Category":"Runtime","PreRequisites":[""],"SWId":0,"IconURL":""}
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Temp/rz7-Zip/dummy.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rzander/mOSD/61bf0353fcdf84ff0b1cef8ef0d0bf5db0475f6c/Win10_Sources/sources/$OEM$/$$/Temp/rz7-Zip/dummy.txt
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Temp/rzAdobeReader DC MUI/dummy.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rzander/mOSD/61bf0353fcdf84ff0b1cef8ef0d0bf5db0475f6c/Win10_Sources/sources/$OEM$/$$/Temp/rzAdobeReader DC MUI/dummy.txt
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Temp/rzCode/dummy.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rzander/mOSD/61bf0353fcdf84ff0b1cef8ef0d0bf5db0475f6c/Win10_Sources/sources/$OEM$/$$/Temp/rzCode/dummy.txt
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Temp/rzDevCDRAgent/dummy.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rzander/mOSD/61bf0353fcdf84ff0b1cef8ef0d0bf5db0475f6c/Win10_Sources/sources/$OEM$/$$/Temp/rzDevCDRAgent/dummy.txt
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Temp/rzGoogle Chrome/dummy.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rzander/mOSD/61bf0353fcdf84ff0b1cef8ef0d0bf5db0475f6c/Win10_Sources/sources/$OEM$/$$/Temp/rzGoogle Chrome/dummy.txt
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Temp/rzVCRedist2013x64/dummy.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rzander/mOSD/61bf0353fcdf84ff0b1cef8ef0d0bf5db0475f6c/Win10_Sources/sources/$OEM$/$$/Temp/rzVCRedist2013x64/dummy.txt
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Temp/rzVCRedist2013x86/dummy.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rzander/mOSD/61bf0353fcdf84ff0b1cef8ef0d0bf5db0475f6c/Win10_Sources/sources/$OEM$/$$/Temp/rzVCRedist2013x86/dummy.txt
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Temp/rzVCRedist2017x64/dummy.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rzander/mOSD/61bf0353fcdf84ff0b1cef8ef0d0bf5db0475f6c/Win10_Sources/sources/$OEM$/$$/Temp/rzVCRedist2017x64/dummy.txt
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/Temp/rzVCRedist2017x86/dummy.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rzander/mOSD/61bf0353fcdf84ff0b1cef8ef0d0bf5db0475f6c/Win10_Sources/sources/$OEM$/$$/Temp/rzVCRedist2017x86/dummy.txt
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$$/provisioning/Autopilot/AutopilotConfigurationFile.json:
--------------------------------------------------------------------------------
1 | {
2 | "CloudAssignedTenantId": "ed425802-1186-44de-8823-a4a57d140a28",
3 | "CloudAssignedDeviceName": "Z-%SERIAL%",
4 | "Version": 2049,
5 | "Comment_CloudAssignedOobeConfig": "0x7FFFFFFF",
6 | "Comment_Version": "0x801",
7 | "Comment_File": "Profile AutoPilot",
8 | "CloudAssignedAadServerData": "{\"ZeroTouchConfig\":{\"CloudAssignedTenantUpn\":\"\",\"CloudAssignedTenantDomain\":\"zander.ch\"}}",
9 | "CloudAssignedOobeConfig": 30,
10 | "CloudAssignedDomainJoinMethod": 0,
11 | "ZtdCorrelationId": "7F9E6025-1E13-45F3-BF82-A3E8C5B59EAC",
12 | "CloudAssignedLockdownConfig": 1,
13 | "CloudAssignedTenantDomain": "zander.ch"
14 | }
15 |
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$Progs/zander tools/RZUpdate.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rzander/mOSD/61bf0353fcdf84ff0b1cef8ef0d0bf5db0475f6c/Win10_Sources/sources/$OEM$/$Progs/zander tools/RZUpdate.exe
--------------------------------------------------------------------------------
/Win10_Sources/sources/$OEM$/$Progs/zander tools/RZUpdate.exe.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | False
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------