1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module Internal = struct
let d_f1e875fae206c455e9c844a6c9d53108 = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<assembly xmlns=\"urn:schemas-microsoft-com:asm.v1\" manifestVersion=\"1.0\" xmlns:asmv3=\"urn:schemas-microsoft-com:asm.v3\">\n <assemblyIdentity type=\"win32\" name=\"__PLACEHOLDER_ORG_NOSPACE__.__PLACEHOLDER_PROGRAM_NOSPACE__.ConsoleSetupExe\" version=\"__PLACEHOLDER_VERSION_MNOP__\"></assemblyIdentity>\n <trustInfo xmlns=\"urn:schemas-microsoft-com:asm.v3\">\n <security>\n <requestedPrivileges>\n <requestedExecutionLevel level=\"asInvoker\" uiAccess=\"false\"></requestedExecutionLevel>\n </requestedPrivileges>\n </security>\n </trustInfo>\n <asmv3:application>\n <asmv3:windowsSettings xmlns=\"http://schemas.microsoft.com/SMI/2019/WindowsSettings\" xmlns:ws2=\"http://schemas.microsoft.com/SMI/2016/WindowsSettings\">\n <activeCodePage>UTF-8</activeCodePage>\n <ws2:longPathAware>true</ws2:longPathAware>\n </asmv3:windowsSettings>\n </asmv3:application>\n</assembly>"
let file_chunks = function
| "setup.exe.manifest" | "/setup.exe.manifest" -> Some [ d_f1e875fae206c455e9c844a6c9d53108; ]
| _ -> None
let file_list = [ "setup.exe.manifest"; ]
end
let file_list = Internal.file_list
let read name =
match Internal.file_chunks name with
| None -> None
| Some c -> Some (String.concat "" c)
let hash = function
| "setup.exe.manifest" | "/setup.exe.manifest" -> Some "f1e875fae206c455e9c844a6c9d53108"
| _ -> None
let size = function
| "setup.exe.manifest" | "/setup.exe.manifest" -> Some 999
| _ -> None