shortcutxl 0.3.59 → 0.3.61

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (126) hide show
  1. package/BINARY-INVENTORY.json +813 -813
  2. package/CHANGELOG.md +9 -0
  3. package/dist/ai/models.js +2 -1
  4. package/dist/ai/providers/anthropic.js +18 -18
  5. package/dist/ai/providers/openai-completions.js +7 -5
  6. package/dist/ai/providers/openai-responses-shared.d.ts +1 -1
  7. package/dist/ai/providers/openai-responses-shared.js +4 -3
  8. package/dist/ai/providers/openai-responses.d.ts +2 -1
  9. package/dist/ai/providers/openai-responses.js +9 -5
  10. package/dist/ai/providers/simple-options.js +1 -0
  11. package/dist/ai/types.d.ts +8 -0
  12. package/dist/ai/utils/overflow.js +1 -1
  13. package/dist/app/agent-session.js +11 -1
  14. package/dist/app/approvals/types.d.ts +5 -0
  15. package/dist/app/background/tool-summaries.d.ts +10 -3
  16. package/dist/app/background/tool-summaries.js +21 -33
  17. package/dist/app/background-agents/durable-memory/prompt-builder.js +4 -3
  18. package/dist/app/extensions/runner.js +10 -0
  19. package/dist/app/extensions/types.d.ts +3 -0
  20. package/dist/app/permissions/runtime-approval-flow.d.ts +10 -1
  21. package/dist/app/permissions/runtime-approval-flow.js +30 -3
  22. package/dist/app/permissions/tool-gates.js +2 -2
  23. package/dist/app/providers/shortcut-llm-proxy-client.d.ts +61 -0
  24. package/dist/app/providers/shortcut-llm-proxy-client.js +135 -0
  25. package/dist/app/providers/shortcut-stream.js +7 -3
  26. package/dist/app/resources/shortcutxl-plugin-sync.d.ts +23 -0
  27. package/dist/app/resources/shortcutxl-plugin-sync.js +185 -0
  28. package/dist/app/session/tool-summary-emitter.d.ts +14 -2
  29. package/dist/app/session/tool-summary-emitter.js +33 -17
  30. package/dist/app/sync/skills-upload.js +9 -2
  31. package/dist/app/sync/storage-client.d.ts +3 -0
  32. package/dist/app/sync/storage-client.js +22 -0
  33. package/dist/app/tools/llm-analysis.d.ts +1 -1
  34. package/dist/app/tools/llm-analysis.js +20 -34
  35. package/dist/app/tools/take-screenshot.d.ts +3 -2
  36. package/dist/app/tools/take-screenshot.js +21 -37
  37. package/dist/app/tools/task/lifecycle.d.ts +1 -0
  38. package/dist/app/tools/task/lifecycle.js +4 -3
  39. package/dist/app/tools/task/runner.d.ts +1 -0
  40. package/dist/app/tools/task/runner.js +21 -1
  41. package/dist/app/tools/task/task.js +3 -0
  42. package/dist/cli.js +2103 -1471
  43. package/dist/contracts/agent-api.d.ts +5 -3
  44. package/dist/contracts/agent-api.js +7 -0
  45. package/dist/contracts/agent-session-store.d.ts +1 -0
  46. package/dist/contracts/agent-session-store.js +17 -9
  47. package/dist/contracts/model-stream.d.ts +24 -4
  48. package/dist/contracts/model-stream.js +10 -2
  49. package/dist/core/agent-loop.js +22 -11
  50. package/dist/core/agent-snapshot-builder.js +11 -2
  51. package/dist/core/core-types.d.ts +2 -2
  52. package/dist/core/session/compaction/compaction.js +1 -1
  53. package/dist/core/session/compaction-bridge.d.ts +4 -1
  54. package/dist/core/session/compaction-bridge.js +7 -2
  55. package/dist/core/session/context-overflow.js +1 -1
  56. package/dist/core/session-schema.d.ts +1 -0
  57. package/dist/core/session-schema.js +7 -1
  58. package/dist/core/user-message-id.d.ts +4 -0
  59. package/dist/core/user-message-id.js +11 -0
  60. package/dist/embedded-agent/anthropic-messages-transport.d.ts +3 -1
  61. package/dist/embedded-agent/anthropic-messages-transport.js +20 -9
  62. package/dist/embedded-agent/compaction-wiring.d.ts +4 -1
  63. package/dist/embedded-agent/compaction-wiring.js +8 -4
  64. package/dist/embedded-agent/compose.js +38 -10
  65. package/dist/embedded-agent/host-runtime-options.js +5 -1
  66. package/dist/embedded-agent/host-tools/build-tool-list.js +5 -5
  67. package/dist/embedded-agent/host-tools/index.d.ts +2 -0
  68. package/dist/embedded-agent/host-tools/index.js +2 -0
  69. package/dist/embedded-agent/host-tools/mode-host-tools.js +7 -17
  70. package/dist/embedded-agent/host-tools/modify-skill/contract.d.ts +75 -0
  71. package/dist/embedded-agent/host-tools/modify-skill/contract.js +233 -0
  72. package/dist/embedded-agent/host-tools/modify-skill/index.d.ts +3 -0
  73. package/dist/embedded-agent/host-tools/modify-skill/index.js +3 -0
  74. package/dist/embedded-agent/host-tools/read-skill/contract.d.ts +36 -0
  75. package/dist/embedded-agent/host-tools/read-skill/contract.js +113 -0
  76. package/dist/embedded-agent/host-tools/read-skill/index.d.ts +2 -0
  77. package/dist/embedded-agent/host-tools/read-skill/index.js +2 -0
  78. package/dist/embedded-agent/host-tools/registry.d.ts +5 -3
  79. package/dist/embedded-agent/host-tools/registry.js +7 -3
  80. package/dist/embedded-agent/host-tools/timeouts.js +2 -0
  81. package/dist/embedded-agent/host-tools/tool-names.d.ts +2 -0
  82. package/dist/embedded-agent/host-tools/tool-names.js +2 -0
  83. package/dist/embedded-agent/index.d.ts +1 -0
  84. package/dist/embedded-agent/openai-completions-transport.d.ts +5 -1
  85. package/dist/embedded-agent/openai-completions-transport.js +19 -5
  86. package/dist/embedded-agent/openai-responses-transport.d.ts +2 -1
  87. package/dist/embedded-agent/openai-responses-transport.js +13 -3
  88. package/dist/embedded-agent/run-stats.d.ts +2 -0
  89. package/dist/embedded-agent/run-stats.js +15 -9
  90. package/dist/embedded-agent/session-entry-builder.d.ts +1 -1
  91. package/dist/embedded-agent/session-entry-builder.js +2 -2
  92. package/dist/embedded-agent/session-store.js +22 -5
  93. package/dist/embedded-agent/stream-message-state.js +1 -1
  94. package/dist/embedded-agent/stream.d.ts +2 -0
  95. package/dist/embedded-agent/stream.js +76 -20
  96. package/dist/fast-mode.d.ts +8 -0
  97. package/dist/fast-mode.js +47 -0
  98. package/dist/main.d.ts +1 -1
  99. package/dist/main.js +24 -26
  100. package/dist/model-ids.js +1 -1
  101. package/dist/shell/approvals/bash-approval.js +10 -1
  102. package/dist/shell/interactive/interactive-mode.js +11 -4
  103. package/dist/startup/shortcut-user-logger-context.d.ts +19 -0
  104. package/dist/startup/shortcut-user-logger-context.js +39 -0
  105. package/package.json +10 -1
  106. package/plugins/shortcutxl/.claude-plugin/plugin.json +7 -0
  107. package/plugins/shortcutxl/.codex-plugin/plugin.json +30 -0
  108. package/plugins/shortcutxl/LICENSE.txt +21 -0
  109. package/plugins/shortcutxl/SKILL.md +128 -0
  110. package/plugins/shortcutxl/agents/openai.yaml +4 -0
  111. package/plugins/shortcutxl/references/INSTALLATION.md +63 -0
  112. package/plugins/shortcutxl/skills/shortcutxl/SKILL.md +128 -0
  113. package/skills/advanced-mog-api/api-reference.json +14808 -14808
  114. package/user-docs/dist/shortcutxl-docs.pdf +0 -0
  115. package/xll/ShortcutXL.xll +0 -0
  116. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/RECORD +1 -1
  117. package/xll/python/Lib/site-packages/idna-3.18.dist-info/RECORD +1 -1
  118. package/xll/python/Lib/site-packages/pip-26.1.2.dist-info/RECORD +3 -3
  119. package/xll/python/Lib/site-packages/pywin32-311.dist-info/RECORD +2 -2
  120. package/xll/python/Scripts/httpx.exe +0 -0
  121. package/xll/python/Scripts/idna.exe +0 -0
  122. package/xll/python/Scripts/pip.exe +0 -0
  123. package/xll/python/Scripts/pip3.13.exe +0 -0
  124. package/xll/python/Scripts/pip3.exe +0 -0
  125. package/xll/python/Scripts/pywin32_postinstall.exe +0 -0
  126. package/xll/python/Scripts/pywin32_testall.exe +0 -0
@@ -1,813 +1,813 @@
1
- {
2
- "schemaVersion": 1,
3
- "generatedAt": "2026-06-03T05:23:21.387Z",
4
- "package": "shortcutxl",
5
- "binaryExtensions": [
6
- ".dll",
7
- ".exe",
8
- ".pyd",
9
- ".xll"
10
- ],
11
- "files": [
12
- {
13
- "path": "xll/ShortcutXL.xll",
14
- "sha256": "3852e0b282c00d510c51da0501cac4971f335d4c99dba6272f15b335ad5068fd",
15
- "source": "ShortcutXL native XLL build",
16
- "version": "package",
17
- "builtBy": "shortcut",
18
- "verification": "Built by shortcutXL/xll build scripts and hashed in BINARY-INVENTORY.json."
19
- },
20
- {
21
- "path": "xll/python/Lib/site-packages/isapi/PyISAPI_loader.dll",
22
- "sha256": "021031470a58420a9aa413effe12b4d8d66d9bb29bb3ec99162d41d787ec4d29",
23
- "source": "pywin32 ISAPI support DLL from the pywin32 wheel",
24
- "version": "311",
25
- "builtBy": "third-party",
26
- "verification": "Installed by vendor-python.ps1 from the pinned pywin32 wheel into embedded Python; hash recorded in BINARY-INVENTORY.json."
27
- },
28
- {
29
- "path": "xll/python/Lib/site-packages/pip/_vendor/distlib/t32.exe",
30
- "sha256": "6b4195e640a85ac32eb6f9628822a622057df1e459df7c17a12f97aeabc9415b",
31
- "source": "distlib Windows script launcher template vendored by pip",
32
- "version": "see packaged pip distribution",
33
- "builtBy": "third-party",
34
- "verification": "Installed with pip in embedded Python; hash recorded in BINARY-INVENTORY.json."
35
- },
36
- {
37
- "path": "xll/python/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe",
38
- "sha256": "ebc4c06b7d95e74e315419ee7e88e1d0f71e9e9477538c00a93a9ff8c66a6cfc",
39
- "source": "distlib Windows script launcher template vendored by pip",
40
- "version": "see packaged pip distribution",
41
- "builtBy": "third-party",
42
- "verification": "Installed with pip in embedded Python; hash recorded in BINARY-INVENTORY.json."
43
- },
44
- {
45
- "path": "xll/python/Lib/site-packages/pip/_vendor/distlib/t64.exe",
46
- "sha256": "81a618f21cb87db9076134e70388b6e9cb7c2106739011b6a51772d22cae06b7",
47
- "source": "distlib Windows script launcher template vendored by pip",
48
- "version": "see packaged pip distribution",
49
- "builtBy": "third-party",
50
- "verification": "Installed with pip in embedded Python; hash recorded in BINARY-INVENTORY.json."
51
- },
52
- {
53
- "path": "xll/python/Lib/site-packages/pip/_vendor/distlib/w32.exe",
54
- "sha256": "47872cc77f8e18cf642f868f23340a468e537e64521d9a3a416c8b84384d064b",
55
- "source": "distlib Windows script launcher template vendored by pip",
56
- "version": "see packaged pip distribution",
57
- "builtBy": "third-party",
58
- "verification": "Installed with pip in embedded Python; hash recorded in BINARY-INVENTORY.json."
59
- },
60
- {
61
- "path": "xll/python/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe",
62
- "sha256": "c5dc9884a8f458371550e09bd396e5418bf375820a31b9899f6499bf391c7b2e",
63
- "source": "distlib Windows script launcher template vendored by pip",
64
- "version": "see packaged pip distribution",
65
- "builtBy": "third-party",
66
- "verification": "Installed with pip in embedded Python; hash recorded in BINARY-INVENTORY.json."
67
- },
68
- {
69
- "path": "xll/python/Lib/site-packages/pip/_vendor/distlib/w64.exe",
70
- "sha256": "7a319ffaba23a017d7b1e18ba726ba6c54c53d6446db55f92af53c279894f8ad",
71
- "source": "distlib Windows script launcher template vendored by pip",
72
- "version": "see packaged pip distribution",
73
- "builtBy": "third-party",
74
- "verification": "Installed with pip in embedded Python; hash recorded in BINARY-INVENTORY.json."
75
- },
76
- {
77
- "path": "xll/python/Lib/site-packages/pythonwin/Pythonwin.exe",
78
- "sha256": "1dcee9f379962b980b20c969893ebc370bd8a72fe50ea222e062fb967e728209",
79
- "source": "pywin32 Pythonwin helper executable from the pywin32 wheel",
80
- "version": "311",
81
- "builtBy": "third-party",
82
- "verification": "Installed by vendor-python.ps1 from the pinned pywin32 wheel into embedded Python; hash recorded in BINARY-INVENTORY.json."
83
- },
84
- {
85
- "path": "xll/python/Lib/site-packages/pythonwin/dde.pyd",
86
- "sha256": "02cecf564848a1981e350159f5c4f95e252395e58a80100bf418b194bd975949",
87
- "source": "Native extension module from a Python package installed into embedded Python",
88
- "version": "see owning Python package metadata in site-packages",
89
- "builtBy": "third-party",
90
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
91
- },
92
- {
93
- "path": "xll/python/Lib/site-packages/pythonwin/mfc140u.dll",
94
- "sha256": "643ce7fe6a203c53a96a00f272a1a5b42d5b0c320c84364a6fe866307a19bb65",
95
- "source": "pywin32 Pythonwin support DLL from the pywin32 wheel",
96
- "version": "311",
97
- "builtBy": "third-party",
98
- "verification": "Installed by vendor-python.ps1 from the pinned pywin32 wheel into embedded Python; hash recorded in BINARY-INVENTORY.json."
99
- },
100
- {
101
- "path": "xll/python/Lib/site-packages/pythonwin/scintilla.dll",
102
- "sha256": "a2c5f2e188eb3eb9ceb4cd0ddc65a4445ecf6bd31e5ab1d1a284df7cc3a3c22c",
103
- "source": "pywin32 Pythonwin support DLL from the pywin32 wheel",
104
- "version": "311",
105
- "builtBy": "third-party",
106
- "verification": "Installed by vendor-python.ps1 from the pinned pywin32 wheel into embedded Python; hash recorded in BINARY-INVENTORY.json."
107
- },
108
- {
109
- "path": "xll/python/Lib/site-packages/pythonwin/win32ui.pyd",
110
- "sha256": "8a9f51b9a5152ef0b0fe3c5017af1f7004036311bdb806eb7987305ce9f1651f",
111
- "source": "Native extension module from a Python package installed into embedded Python",
112
- "version": "see owning Python package metadata in site-packages",
113
- "builtBy": "third-party",
114
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
115
- },
116
- {
117
- "path": "xll/python/Lib/site-packages/pythonwin/win32uiole.pyd",
118
- "sha256": "4185b286d6fd54aa4ea3cc86be9a87e0311886e9a0fb78ad0835399b7bf61e1b",
119
- "source": "Native extension module from a Python package installed into embedded Python",
120
- "version": "see owning Python package metadata in site-packages",
121
- "builtBy": "third-party",
122
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
123
- },
124
- {
125
- "path": "xll/python/Lib/site-packages/pywin32_system32/pythoncom313.dll",
126
- "sha256": "e312c8edb2d43a014daddfa984a805e6b5f933c60777e7b527332e682d9b1813",
127
- "source": "pywin32 Windows support DLL from the pywin32 wheel",
128
- "version": "311",
129
- "builtBy": "third-party",
130
- "verification": "Installed by vendor-python.ps1 from the pinned pywin32 wheel into embedded Python; hash recorded in BINARY-INVENTORY.json."
131
- },
132
- {
133
- "path": "xll/python/Lib/site-packages/pywin32_system32/pywintypes313.dll",
134
- "sha256": "9bb6dece38380abc747dce9ba8b0834a2bec469bc942dbcc8658e30ebdfb59a4",
135
- "source": "pywin32 Windows support DLL from the pywin32 wheel",
136
- "version": "311",
137
- "builtBy": "third-party",
138
- "verification": "Installed by vendor-python.ps1 from the pinned pywin32 wheel into embedded Python; hash recorded in BINARY-INVENTORY.json."
139
- },
140
- {
141
- "path": "xll/python/Lib/site-packages/win32/_win32sysloader.pyd",
142
- "sha256": "b11b641fc73ab5cc8853e0e7384147ee97056a2508927129dc385237e5a70b3a",
143
- "source": "Native extension module from a Python package installed into embedded Python",
144
- "version": "see owning Python package metadata in site-packages",
145
- "builtBy": "third-party",
146
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
147
- },
148
- {
149
- "path": "xll/python/Lib/site-packages/win32/_winxptheme.pyd",
150
- "sha256": "1ad5a513e7fed3416cd08041815ae9d0836f63828ac1a3d5136f30350101f708",
151
- "source": "Native extension module from a Python package installed into embedded Python",
152
- "version": "see owning Python package metadata in site-packages",
153
- "builtBy": "third-party",
154
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
155
- },
156
- {
157
- "path": "xll/python/Lib/site-packages/win32/mmapfile.pyd",
158
- "sha256": "fce0389fa984f2f907c3e2067690e6509bfba336bc8581b9af06688fde7bc1d8",
159
- "source": "Native extension module from a Python package installed into embedded Python",
160
- "version": "see owning Python package metadata in site-packages",
161
- "builtBy": "third-party",
162
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
163
- },
164
- {
165
- "path": "xll/python/Lib/site-packages/win32/odbc.pyd",
166
- "sha256": "3d56da97ec3b7a7d4f44f29fb88bbc45dfe8b1d685a0fe28bbcbacfbb9cfda58",
167
- "source": "Native extension module from a Python package installed into embedded Python",
168
- "version": "see owning Python package metadata in site-packages",
169
- "builtBy": "third-party",
170
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
171
- },
172
- {
173
- "path": "xll/python/Lib/site-packages/win32/perfmon.pyd",
174
- "sha256": "743045362dcc4b3a77ba02daacbbec2856d611d10720a4a4a58d1b948023c6bb",
175
- "source": "Native extension module from a Python package installed into embedded Python",
176
- "version": "see owning Python package metadata in site-packages",
177
- "builtBy": "third-party",
178
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
179
- },
180
- {
181
- "path": "xll/python/Lib/site-packages/win32/perfmondata.dll",
182
- "sha256": "2d6d11568b8adb3f90db0d56e0a5f4ef9787a656c7c3a709f1aa35b60658bb63",
183
- "source": "pywin32 Windows support DLL from the pywin32 wheel",
184
- "version": "311",
185
- "builtBy": "third-party",
186
- "verification": "Installed by vendor-python.ps1 from the pinned pywin32 wheel into embedded Python; hash recorded in BINARY-INVENTORY.json."
187
- },
188
- {
189
- "path": "xll/python/Lib/site-packages/win32/pythonservice.exe",
190
- "sha256": "efddebfa10435e8c655d9de4a8c6df4b239f3493120385b401147ed293ed92d1",
191
- "source": "pywin32 Windows helper executable from the pywin32 wheel",
192
- "version": "311",
193
- "builtBy": "third-party",
194
- "verification": "Installed by vendor-python.ps1 from the pinned pywin32 wheel into embedded Python; hash recorded in BINARY-INVENTORY.json."
195
- },
196
- {
197
- "path": "xll/python/Lib/site-packages/win32/servicemanager.pyd",
198
- "sha256": "8f60e4c9f33898cd0bea1c8edfa5e3937f801118bfc1b97b7251d833339d4bad",
199
- "source": "Native extension module from a Python package installed into embedded Python",
200
- "version": "see owning Python package metadata in site-packages",
201
- "builtBy": "third-party",
202
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
203
- },
204
- {
205
- "path": "xll/python/Lib/site-packages/win32/timer.pyd",
206
- "sha256": "669fefd959df21a6d36f694fe2af5ca517858815ca66c8277f0480a9b3faf2a6",
207
- "source": "Native extension module from a Python package installed into embedded Python",
208
- "version": "see owning Python package metadata in site-packages",
209
- "builtBy": "third-party",
210
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
211
- },
212
- {
213
- "path": "xll/python/Lib/site-packages/win32/win32api.pyd",
214
- "sha256": "b80722e54741563e72e264ca33e1900ee49c927c475e54ef8f94c3eac9032465",
215
- "source": "Native extension module from a Python package installed into embedded Python",
216
- "version": "see owning Python package metadata in site-packages",
217
- "builtBy": "third-party",
218
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
219
- },
220
- {
221
- "path": "xll/python/Lib/site-packages/win32/win32clipboard.pyd",
222
- "sha256": "955996e5867c1bf34e10838d462b413986e0911a9ffc3484076a03ac945fadc7",
223
- "source": "Native extension module from a Python package installed into embedded Python",
224
- "version": "see owning Python package metadata in site-packages",
225
- "builtBy": "third-party",
226
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
227
- },
228
- {
229
- "path": "xll/python/Lib/site-packages/win32/win32console.pyd",
230
- "sha256": "b2b3f282c593660ef5524ec3c231989f839e23acf01571206c44589e5b597afb",
231
- "source": "Native extension module from a Python package installed into embedded Python",
232
- "version": "see owning Python package metadata in site-packages",
233
- "builtBy": "third-party",
234
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
235
- },
236
- {
237
- "path": "xll/python/Lib/site-packages/win32/win32cred.pyd",
238
- "sha256": "f7dd953f24e800eaa4719fd5423c51f9d6987c9eebd5ee5fcab42a4295638ae4",
239
- "source": "Native extension module from a Python package installed into embedded Python",
240
- "version": "see owning Python package metadata in site-packages",
241
- "builtBy": "third-party",
242
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
243
- },
244
- {
245
- "path": "xll/python/Lib/site-packages/win32/win32crypt.pyd",
246
- "sha256": "f07fbdcebda155ece29f64a4ca199db544bfa1f3472661f20b569d2b56926123",
247
- "source": "Native extension module from a Python package installed into embedded Python",
248
- "version": "see owning Python package metadata in site-packages",
249
- "builtBy": "third-party",
250
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
251
- },
252
- {
253
- "path": "xll/python/Lib/site-packages/win32/win32event.pyd",
254
- "sha256": "b70d2aebb12d2a0c8d100f37e109319407cf025fc406ef23d13c1b5ddb64370a",
255
- "source": "Native extension module from a Python package installed into embedded Python",
256
- "version": "see owning Python package metadata in site-packages",
257
- "builtBy": "third-party",
258
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
259
- },
260
- {
261
- "path": "xll/python/Lib/site-packages/win32/win32evtlog.pyd",
262
- "sha256": "d8b40e7c79cf6821b2e7bab2ed279449f42510f3805f783c2fb9f1403481e1f3",
263
- "source": "Native extension module from a Python package installed into embedded Python",
264
- "version": "see owning Python package metadata in site-packages",
265
- "builtBy": "third-party",
266
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
267
- },
268
- {
269
- "path": "xll/python/Lib/site-packages/win32/win32file.pyd",
270
- "sha256": "9c2ef4a8b2224a8048a76f3be26b616c04379e853f1e45fbab87d75ce89c1d6d",
271
- "source": "Native extension module from a Python package installed into embedded Python",
272
- "version": "see owning Python package metadata in site-packages",
273
- "builtBy": "third-party",
274
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
275
- },
276
- {
277
- "path": "xll/python/Lib/site-packages/win32/win32gui.pyd",
278
- "sha256": "6c545bd22720a7088c1353e5e554ded4db5db4c1b164689e7d42acf312561aca",
279
- "source": "Native extension module from a Python package installed into embedded Python",
280
- "version": "see owning Python package metadata in site-packages",
281
- "builtBy": "third-party",
282
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
283
- },
284
- {
285
- "path": "xll/python/Lib/site-packages/win32/win32help.pyd",
286
- "sha256": "00fd809b67f271712d20423c07b45081c51c227b6f416b9d27d584dedcb62de2",
287
- "source": "Native extension module from a Python package installed into embedded Python",
288
- "version": "see owning Python package metadata in site-packages",
289
- "builtBy": "third-party",
290
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
291
- },
292
- {
293
- "path": "xll/python/Lib/site-packages/win32/win32inet.pyd",
294
- "sha256": "c570f14ed44a5d0d4b1c31b1e2b77eebd6770031b3ebcd12c33d5f653e0fa051",
295
- "source": "Native extension module from a Python package installed into embedded Python",
296
- "version": "see owning Python package metadata in site-packages",
297
- "builtBy": "third-party",
298
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
299
- },
300
- {
301
- "path": "xll/python/Lib/site-packages/win32/win32job.pyd",
302
- "sha256": "2332ea4e7b22ffaa0c9cf6f98a16a086632978fad5b0fa24110b4e5554f45588",
303
- "source": "Native extension module from a Python package installed into embedded Python",
304
- "version": "see owning Python package metadata in site-packages",
305
- "builtBy": "third-party",
306
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
307
- },
308
- {
309
- "path": "xll/python/Lib/site-packages/win32/win32lz.pyd",
310
- "sha256": "3e30018e339eb081b3eabaf61077f50b4af58fa6184c9ed8857d797e60c4d91b",
311
- "source": "Native extension module from a Python package installed into embedded Python",
312
- "version": "see owning Python package metadata in site-packages",
313
- "builtBy": "third-party",
314
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
315
- },
316
- {
317
- "path": "xll/python/Lib/site-packages/win32/win32net.pyd",
318
- "sha256": "22cadf6d6ae1fedb3f38b6d5d0be8a8d2d37321d1f7e4215caa010b38c3723b9",
319
- "source": "Native extension module from a Python package installed into embedded Python",
320
- "version": "see owning Python package metadata in site-packages",
321
- "builtBy": "third-party",
322
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
323
- },
324
- {
325
- "path": "xll/python/Lib/site-packages/win32/win32pdh.pyd",
326
- "sha256": "38a92aff88f58e35824fdae5b202692d4e003142120bb5032f05332a350ba54e",
327
- "source": "Native extension module from a Python package installed into embedded Python",
328
- "version": "see owning Python package metadata in site-packages",
329
- "builtBy": "third-party",
330
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
331
- },
332
- {
333
- "path": "xll/python/Lib/site-packages/win32/win32pipe.pyd",
334
- "sha256": "5ab3cc5b6f48b839259680688dd51f386e0cd55a39d35e412a88ad68bfcf5b3e",
335
- "source": "Native extension module from a Python package installed into embedded Python",
336
- "version": "see owning Python package metadata in site-packages",
337
- "builtBy": "third-party",
338
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
339
- },
340
- {
341
- "path": "xll/python/Lib/site-packages/win32/win32print.pyd",
342
- "sha256": "1a5a443d9154e6a3cf62fe39dd7f40a3fea272c297ac1e0aa9e10c0b0ea68bad",
343
- "source": "Native extension module from a Python package installed into embedded Python",
344
- "version": "see owning Python package metadata in site-packages",
345
- "builtBy": "third-party",
346
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
347
- },
348
- {
349
- "path": "xll/python/Lib/site-packages/win32/win32process.pyd",
350
- "sha256": "9d99c96c6d2e15fc52ed9444dc880ebfb358fbcd1f659ddf8af1a233033294ce",
351
- "source": "Native extension module from a Python package installed into embedded Python",
352
- "version": "see owning Python package metadata in site-packages",
353
- "builtBy": "third-party",
354
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
355
- },
356
- {
357
- "path": "xll/python/Lib/site-packages/win32/win32profile.pyd",
358
- "sha256": "2dff78afe08bd30ba5fb5a44c2ff255a0542f6ec6f0471c59e9c5b80a7261fab",
359
- "source": "Native extension module from a Python package installed into embedded Python",
360
- "version": "see owning Python package metadata in site-packages",
361
- "builtBy": "third-party",
362
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
363
- },
364
- {
365
- "path": "xll/python/Lib/site-packages/win32/win32ras.pyd",
366
- "sha256": "54bb5ebe878179c67f3716f06f12633b08a0f695396f227016c8247d208cdadc",
367
- "source": "Native extension module from a Python package installed into embedded Python",
368
- "version": "see owning Python package metadata in site-packages",
369
- "builtBy": "third-party",
370
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
371
- },
372
- {
373
- "path": "xll/python/Lib/site-packages/win32/win32security.pyd",
374
- "sha256": "99b4fd9f47602371380c8579489b0c6fdc88d7776224062ba6c39b185c4e9001",
375
- "source": "Native extension module from a Python package installed into embedded Python",
376
- "version": "see owning Python package metadata in site-packages",
377
- "builtBy": "third-party",
378
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
379
- },
380
- {
381
- "path": "xll/python/Lib/site-packages/win32/win32service.pyd",
382
- "sha256": "eb3ea4dab12ecfb5296627435d2d0425d80e02ff73f586af166687a60215fff7",
383
- "source": "Native extension module from a Python package installed into embedded Python",
384
- "version": "see owning Python package metadata in site-packages",
385
- "builtBy": "third-party",
386
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
387
- },
388
- {
389
- "path": "xll/python/Lib/site-packages/win32/win32trace.pyd",
390
- "sha256": "a5f35e4db0dfe0c77871169b477e95c2b87609a75a376167b1e96220c008819a",
391
- "source": "Native extension module from a Python package installed into embedded Python",
392
- "version": "see owning Python package metadata in site-packages",
393
- "builtBy": "third-party",
394
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
395
- },
396
- {
397
- "path": "xll/python/Lib/site-packages/win32/win32transaction.pyd",
398
- "sha256": "2bf0766a55341eb93ec66f52ee4b1dacae76c2d6627b3e20f9208e02676b9c50",
399
- "source": "Native extension module from a Python package installed into embedded Python",
400
- "version": "see owning Python package metadata in site-packages",
401
- "builtBy": "third-party",
402
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
403
- },
404
- {
405
- "path": "xll/python/Lib/site-packages/win32/win32ts.pyd",
406
- "sha256": "ae5ae7a1627757f5a54aca56e715d8d1546475c480b9ef21b99f0db9e26d6a58",
407
- "source": "Native extension module from a Python package installed into embedded Python",
408
- "version": "see owning Python package metadata in site-packages",
409
- "builtBy": "third-party",
410
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
411
- },
412
- {
413
- "path": "xll/python/Lib/site-packages/win32/win32wnet.pyd",
414
- "sha256": "8a1f2ee42a14ef45f95f90c33c863a80aa67648e6394331f27f34345942bbb6c",
415
- "source": "Native extension module from a Python package installed into embedded Python",
416
- "version": "see owning Python package metadata in site-packages",
417
- "builtBy": "third-party",
418
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
419
- },
420
- {
421
- "path": "xll/python/Lib/site-packages/win32comext/adsi/adsi.pyd",
422
- "sha256": "7c35fa842b30db4bbfe049d3b2c5f5c3dbe609dee99ed77f722ef5b208a8bf16",
423
- "source": "Native extension module from a Python package installed into embedded Python",
424
- "version": "see owning Python package metadata in site-packages",
425
- "builtBy": "third-party",
426
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
427
- },
428
- {
429
- "path": "xll/python/Lib/site-packages/win32comext/authorization/authorization.pyd",
430
- "sha256": "d1f57039cdd0da5d0cb424d2efcf2ac58c4e5d9b5965812dcf6577d3c674263b",
431
- "source": "Native extension module from a Python package installed into embedded Python",
432
- "version": "see owning Python package metadata in site-packages",
433
- "builtBy": "third-party",
434
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
435
- },
436
- {
437
- "path": "xll/python/Lib/site-packages/win32comext/axcontrol/axcontrol.pyd",
438
- "sha256": "156f4cb165626e4f108fc5ad947564e58820fc4f0b66065538edb6fd6140d306",
439
- "source": "Native extension module from a Python package installed into embedded Python",
440
- "version": "see owning Python package metadata in site-packages",
441
- "builtBy": "third-party",
442
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
443
- },
444
- {
445
- "path": "xll/python/Lib/site-packages/win32comext/axscript/axscript.pyd",
446
- "sha256": "1f8a9830018dee82377b3f6ec4a808ad8be408ae11c8009d7014cb1252b8300b",
447
- "source": "Native extension module from a Python package installed into embedded Python",
448
- "version": "see owning Python package metadata in site-packages",
449
- "builtBy": "third-party",
450
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
451
- },
452
- {
453
- "path": "xll/python/Lib/site-packages/win32comext/bits/bits.pyd",
454
- "sha256": "e6deb0bf1c952b6e309746c1a3df557a4af50124e867fc2e31df9cbb293fb9a1",
455
- "source": "Native extension module from a Python package installed into embedded Python",
456
- "version": "see owning Python package metadata in site-packages",
457
- "builtBy": "third-party",
458
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
459
- },
460
- {
461
- "path": "xll/python/Lib/site-packages/win32comext/directsound/directsound.pyd",
462
- "sha256": "7041520bf8cad7566f872a197c67bf87208d0f09c3abad499e840ac209c6d026",
463
- "source": "Native extension module from a Python package installed into embedded Python",
464
- "version": "see owning Python package metadata in site-packages",
465
- "builtBy": "third-party",
466
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
467
- },
468
- {
469
- "path": "xll/python/Lib/site-packages/win32comext/ifilter/ifilter.pyd",
470
- "sha256": "940349cde1660cc7132740ab35df72bb6c144e0f98bbdf679127045955cc4502",
471
- "source": "Native extension module from a Python package installed into embedded Python",
472
- "version": "see owning Python package metadata in site-packages",
473
- "builtBy": "third-party",
474
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
475
- },
476
- {
477
- "path": "xll/python/Lib/site-packages/win32comext/internet/internet.pyd",
478
- "sha256": "d9be6b5fb79aeb4be85013f72c403a70323a294fe8a5cafba6f991575c242cd6",
479
- "source": "Native extension module from a Python package installed into embedded Python",
480
- "version": "see owning Python package metadata in site-packages",
481
- "builtBy": "third-party",
482
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
483
- },
484
- {
485
- "path": "xll/python/Lib/site-packages/win32comext/mapi/exchange.pyd",
486
- "sha256": "d574f3d8e68b81f5b7b8dd9af6b588f89282c11f50fb35d7c5f6d7d9592aa8ea",
487
- "source": "Native extension module from a Python package installed into embedded Python",
488
- "version": "see owning Python package metadata in site-packages",
489
- "builtBy": "third-party",
490
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
491
- },
492
- {
493
- "path": "xll/python/Lib/site-packages/win32comext/mapi/mapi.pyd",
494
- "sha256": "ce1d848312eb935a7ba6ec5f6a6c10b77ea12dcb700aaf51554a7fe85c52c583",
495
- "source": "Native extension module from a Python package installed into embedded Python",
496
- "version": "see owning Python package metadata in site-packages",
497
- "builtBy": "third-party",
498
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
499
- },
500
- {
501
- "path": "xll/python/Lib/site-packages/win32comext/propsys/propsys.pyd",
502
- "sha256": "bdc18653b1f2e3b52cd4f39b10282bddd1e3219a568deacef55394572e23dd3f",
503
- "source": "Native extension module from a Python package installed into embedded Python",
504
- "version": "see owning Python package metadata in site-packages",
505
- "builtBy": "third-party",
506
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
507
- },
508
- {
509
- "path": "xll/python/Lib/site-packages/win32comext/shell/shell.pyd",
510
- "sha256": "65076be2fd14083da1f5b472a46608af9fd019616778880a856e737f67987dae",
511
- "source": "Native extension module from a Python package installed into embedded Python",
512
- "version": "see owning Python package metadata in site-packages",
513
- "builtBy": "third-party",
514
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
515
- },
516
- {
517
- "path": "xll/python/Lib/site-packages/win32comext/taskscheduler/taskscheduler.pyd",
518
- "sha256": "45b67359f3b085c0e74354c5afefcf0fb22078946786dac86b2342141cba8f3a",
519
- "source": "Native extension module from a Python package installed into embedded Python",
520
- "version": "see owning Python package metadata in site-packages",
521
- "builtBy": "third-party",
522
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
523
- },
524
- {
525
- "path": "xll/python/Scripts/httpx.exe",
526
- "sha256": "84a59a562fcdd84adaa995aba93673f883ad1b3dc06708fcb268ea3275f839cd",
527
- "source": "httpx console launcher installed into embedded Python",
528
- "version": "see packaged httpx distribution",
529
- "builtBy": "third-party",
530
- "verification": "Installed by vendor-python.ps1 into embedded Python; hash recorded in BINARY-INVENTORY.json."
531
- },
532
- {
533
- "path": "xll/python/Scripts/idna.exe",
534
- "sha256": "a5bd06e740a8c4af1bd8d7883efc7ad16b0b2151b2a9e59ef6d64282c164a56b",
535
- "source": "Python package console launcher installed into embedded Python",
536
- "version": "see owning Python package metadata in site-packages",
537
- "builtBy": "third-party",
538
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
539
- },
540
- {
541
- "path": "xll/python/Scripts/pip.exe",
542
- "sha256": "2e4bed34ea1c99aee03259cf79f1fd9a56a9900cafd7ecb60c818c45e1125533",
543
- "source": "pip console launcher installed into embedded Python",
544
- "version": "see packaged pip distribution",
545
- "builtBy": "third-party",
546
- "verification": "Installed by vendor-python.ps1 into embedded Python; hash recorded in BINARY-INVENTORY.json."
547
- },
548
- {
549
- "path": "xll/python/Scripts/pip3.13.exe",
550
- "sha256": "2e4bed34ea1c99aee03259cf79f1fd9a56a9900cafd7ecb60c818c45e1125533",
551
- "source": "pip console launcher installed into embedded Python",
552
- "version": "see packaged pip distribution",
553
- "builtBy": "third-party",
554
- "verification": "Installed by vendor-python.ps1 into embedded Python; hash recorded in BINARY-INVENTORY.json."
555
- },
556
- {
557
- "path": "xll/python/Scripts/pip3.exe",
558
- "sha256": "2e4bed34ea1c99aee03259cf79f1fd9a56a9900cafd7ecb60c818c45e1125533",
559
- "source": "pip console launcher installed into embedded Python",
560
- "version": "see packaged pip distribution",
561
- "builtBy": "third-party",
562
- "verification": "Installed by vendor-python.ps1 into embedded Python; hash recorded in BINARY-INVENTORY.json."
563
- },
564
- {
565
- "path": "xll/python/Scripts/pywin32_postinstall.exe",
566
- "sha256": "7c02775810d083f1e70a026c2ea80ea086373bdaac811a9a4f1c19dad9e54e6f",
567
- "source": "Python package console launcher installed into embedded Python",
568
- "version": "see owning Python package metadata in site-packages",
569
- "builtBy": "third-party",
570
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
571
- },
572
- {
573
- "path": "xll/python/Scripts/pywin32_testall.exe",
574
- "sha256": "ba14591c7c28b8e58a291040d70b0acff797598645abfc4f9eb4e2f3b6e0b9c7",
575
- "source": "Python package console launcher installed into embedded Python",
576
- "version": "see owning Python package metadata in site-packages",
577
- "builtBy": "third-party",
578
- "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
579
- },
580
- {
581
- "path": "xll/python/_asyncio.pyd",
582
- "sha256": "423007b8c7d63b4cb5f23665a761dd5de1c7e15a65c8013391de0d18c89ce417",
583
- "source": "CPython Windows embeddable runtime extension module",
584
- "version": "see packaged python runtime",
585
- "builtBy": "third-party",
586
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
587
- },
588
- {
589
- "path": "xll/python/_bz2.pyd",
590
- "sha256": "1bf985b54f529a3cbb3e52532791cc4d4c64009142d37b54eb3521adec203d5c",
591
- "source": "CPython Windows embeddable runtime extension module",
592
- "version": "see packaged python runtime",
593
- "builtBy": "third-party",
594
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
595
- },
596
- {
597
- "path": "xll/python/_ctypes.pyd",
598
- "sha256": "96b07339d52c74f2a1dd043df5eb931e4072eed90a3a8715ffec751d818e4117",
599
- "source": "CPython Windows embeddable runtime extension module",
600
- "version": "see packaged python runtime",
601
- "builtBy": "third-party",
602
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
603
- },
604
- {
605
- "path": "xll/python/_decimal.pyd",
606
- "sha256": "398117a6af493e34f56ec0d78ced9901b20b8e895686ce5966edeadb23507056",
607
- "source": "CPython Windows embeddable runtime extension module",
608
- "version": "see packaged python runtime",
609
- "builtBy": "third-party",
610
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
611
- },
612
- {
613
- "path": "xll/python/_elementtree.pyd",
614
- "sha256": "fbce9a1190a228c59767bde785c27cc4d18ee3a1f6b46e9da042fc86f8d0def7",
615
- "source": "CPython Windows embeddable runtime extension module",
616
- "version": "see packaged python runtime",
617
- "builtBy": "third-party",
618
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
619
- },
620
- {
621
- "path": "xll/python/_hashlib.pyd",
622
- "sha256": "50f3ce7a2281fd32f378f3ba5067bdd13e18ee95877db5199c6a0babdc9c516a",
623
- "source": "CPython Windows embeddable runtime extension module",
624
- "version": "see packaged python runtime",
625
- "builtBy": "third-party",
626
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
627
- },
628
- {
629
- "path": "xll/python/_lzma.pyd",
630
- "sha256": "51815b6474d4216c6a2aeaffdae5d2ff4acb7a0236254f2cfe43247022f3d781",
631
- "source": "CPython Windows embeddable runtime extension module",
632
- "version": "see packaged python runtime",
633
- "builtBy": "third-party",
634
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
635
- },
636
- {
637
- "path": "xll/python/_multiprocessing.pyd",
638
- "sha256": "4df0d8f9da454831e96389c145ac9ea0093e09749627a3717ff60d21218670c8",
639
- "source": "CPython Windows embeddable runtime extension module",
640
- "version": "see packaged python runtime",
641
- "builtBy": "third-party",
642
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
643
- },
644
- {
645
- "path": "xll/python/_overlapped.pyd",
646
- "sha256": "53fe68819f23fea7f6deb0054623e936cc2500241061f29bd5288cf4a511278f",
647
- "source": "CPython Windows embeddable runtime extension module",
648
- "version": "see packaged python runtime",
649
- "builtBy": "third-party",
650
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
651
- },
652
- {
653
- "path": "xll/python/_queue.pyd",
654
- "sha256": "b5b5368026c33ade7651fb4cf4c6c1ca7eecc9c8cdad0af007da8a3ac0e067f7",
655
- "source": "CPython Windows embeddable runtime extension module",
656
- "version": "see packaged python runtime",
657
- "builtBy": "third-party",
658
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
659
- },
660
- {
661
- "path": "xll/python/_socket.pyd",
662
- "sha256": "8676f3cebd9d01c7ad51a29b3f7ff429c0a8f6bc564cab21eb6cdaa2e26fd259",
663
- "source": "CPython Windows embeddable runtime extension module",
664
- "version": "see packaged python runtime",
665
- "builtBy": "third-party",
666
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
667
- },
668
- {
669
- "path": "xll/python/_sqlite3.pyd",
670
- "sha256": "bb80e54f2de8aa3cddc00a2a2f893c432d45ecd64a5c55758a4eb6d2e3007127",
671
- "source": "CPython Windows embeddable runtime extension module",
672
- "version": "see packaged python runtime",
673
- "builtBy": "third-party",
674
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
675
- },
676
- {
677
- "path": "xll/python/_ssl.pyd",
678
- "sha256": "b8118580b461801df12ec12d3d666aa0ebc2b3750bcf92b90b92789b152bf856",
679
- "source": "CPython Windows embeddable runtime extension module",
680
- "version": "see packaged python runtime",
681
- "builtBy": "third-party",
682
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
683
- },
684
- {
685
- "path": "xll/python/_uuid.pyd",
686
- "sha256": "0116497261edadfe42ba7daf367c8a9ea27a1db210c8384943c890f532e3ce72",
687
- "source": "CPython Windows embeddable runtime extension module",
688
- "version": "see packaged python runtime",
689
- "builtBy": "third-party",
690
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
691
- },
692
- {
693
- "path": "xll/python/_wmi.pyd",
694
- "sha256": "9a7255064ea143895b28efea6d78e9e518bac290900aec52a6a0435c36a172fb",
695
- "source": "CPython Windows embeddable runtime extension module",
696
- "version": "see packaged python runtime",
697
- "builtBy": "third-party",
698
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
699
- },
700
- {
701
- "path": "xll/python/_zoneinfo.pyd",
702
- "sha256": "6351ce1ff38815e152bb8f28b884e7b2a3945cbee1b1fefa6117e45953d5751f",
703
- "source": "CPython Windows embeddable runtime extension module",
704
- "version": "see packaged python runtime",
705
- "builtBy": "third-party",
706
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
707
- },
708
- {
709
- "path": "xll/python/libcrypto-3.dll",
710
- "sha256": "eaf6d613b95b61a39558d84c50e72630a66c99914292df88e7b54ebd60c5bd34",
711
- "source": "OpenSSL library bundled with CPython Windows embeddable runtime",
712
- "version": "see packaged python runtime",
713
- "builtBy": "third-party",
714
- "verification": "Downloaded from python.org CPython release artifacts; verify upstream SHA/signature before vendoring."
715
- },
716
- {
717
- "path": "xll/python/libffi-8.dll",
718
- "sha256": "eff52743773eb550fcc6ce3efc37c85724502233b6b002a35496d828bd7b280a",
719
- "source": "libffi library bundled with CPython Windows embeddable runtime",
720
- "version": "see packaged python runtime",
721
- "builtBy": "third-party",
722
- "verification": "Downloaded from python.org CPython release artifacts; verify upstream SHA/signature before vendoring."
723
- },
724
- {
725
- "path": "xll/python/libssl-3.dll",
726
- "sha256": "cf1a5fdcefa3daf69041f31f98ece1d7911ca4fcb8e9f1043b4d0f459ae4c936",
727
- "source": "OpenSSL library bundled with CPython Windows embeddable runtime",
728
- "version": "see packaged python runtime",
729
- "builtBy": "third-party",
730
- "verification": "Downloaded from python.org CPython release artifacts; verify upstream SHA/signature before vendoring."
731
- },
732
- {
733
- "path": "xll/python/pyexpat.pyd",
734
- "sha256": "b5f57327418750229656c30a809308669797cf30d7da3705f8cd584c2b8a038b",
735
- "source": "CPython Windows embeddable runtime extension module",
736
- "version": "see packaged python runtime",
737
- "builtBy": "third-party",
738
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
739
- },
740
- {
741
- "path": "xll/python/python.exe",
742
- "sha256": "dc7ecf75280678175b4f931ce05f1ef9c10d48984399ca7de6beee69d71bcb1b",
743
- "source": "CPython Windows embeddable runtime launcher",
744
- "version": "see packaged python runtime",
745
- "builtBy": "third-party",
746
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
747
- },
748
- {
749
- "path": "xll/python/python3.dll",
750
- "sha256": "cbc4876275178244905ee45a9ee6ec9fa4bfb9aad6209a03b756d38a186f80d1",
751
- "source": "CPython Windows embeddable runtime DLL",
752
- "version": "see packaged python runtime",
753
- "builtBy": "third-party",
754
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
755
- },
756
- {
757
- "path": "xll/python/python313.dll",
758
- "sha256": "6964e590037c41d631fd1215f05af154f7fa68105993c6f573a20689b473f1ac",
759
- "source": "CPython Windows embeddable runtime DLL",
760
- "version": "see packaged python runtime",
761
- "builtBy": "third-party",
762
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
763
- },
764
- {
765
- "path": "xll/python/pythonw.exe",
766
- "sha256": "e98f517f1fa209c691c57d058e538473c4dedcecacd2e466c3f2bce54fc431f4",
767
- "source": "CPython Windows embeddable runtime launcher",
768
- "version": "see packaged python runtime",
769
- "builtBy": "third-party",
770
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
771
- },
772
- {
773
- "path": "xll/python/select.pyd",
774
- "sha256": "ddf1221851814943a82ed8a986d228463404da2ada969661bdd69223f14fc050",
775
- "source": "CPython Windows embeddable runtime extension module",
776
- "version": "see packaged python runtime",
777
- "builtBy": "third-party",
778
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
779
- },
780
- {
781
- "path": "xll/python/sqlite3.dll",
782
- "sha256": "aaae3fe73a4dda249da1ed740c087d1548a1ff7b73eaa7aa62c2354a581ee299",
783
- "source": "SQLite library bundled with CPython Windows embeddable runtime",
784
- "version": "see packaged python runtime",
785
- "builtBy": "third-party",
786
- "verification": "Downloaded from python.org CPython release artifacts; verify upstream SHA/signature before vendoring."
787
- },
788
- {
789
- "path": "xll/python/unicodedata.pyd",
790
- "sha256": "b965a80346ee95dbec0b147faab329f3276ba24fceb8df5df171367649f116f3",
791
- "source": "CPython Windows embeddable runtime extension module",
792
- "version": "see packaged python runtime",
793
- "builtBy": "third-party",
794
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
795
- },
796
- {
797
- "path": "xll/python/vcruntime140_1.dll",
798
- "sha256": "6a99bc0128e0c7d6cbbf615fcc26909565e17d4ca3451b97f8987f9c6acbc6c8",
799
- "source": "Microsoft Visual C++ runtime library bundled with CPython Windows embeddable runtime",
800
- "version": "see packaged python runtime",
801
- "builtBy": "third-party",
802
- "verification": "Downloaded from python.org CPython release artifacts; verify upstream SHA/signature before vendoring."
803
- },
804
- {
805
- "path": "xll/python/winsound.pyd",
806
- "sha256": "f23973ff866546525e5ffb63dc9ccc2f88980f320d4ae75168ffcd26c4ccb0cd",
807
- "source": "CPython Windows embeddable runtime extension module",
808
- "version": "see packaged python runtime",
809
- "builtBy": "third-party",
810
- "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
811
- }
812
- ]
813
- }
1
+ {
2
+ "schemaVersion": 1,
3
+ "generatedAt": "2026-06-05T01:51:32.781Z",
4
+ "package": "shortcutxl",
5
+ "binaryExtensions": [
6
+ ".dll",
7
+ ".exe",
8
+ ".pyd",
9
+ ".xll"
10
+ ],
11
+ "files": [
12
+ {
13
+ "path": "xll/ShortcutXL.xll",
14
+ "sha256": "7c86275b7bfd0b33b422de02a5d46e11004462b545d811bd53b7590a0b2891f9",
15
+ "source": "ShortcutXL native XLL build",
16
+ "version": "package",
17
+ "builtBy": "shortcut",
18
+ "verification": "Built by shortcutXL/xll build scripts and hashed in BINARY-INVENTORY.json."
19
+ },
20
+ {
21
+ "path": "xll/python/Lib/site-packages/isapi/PyISAPI_loader.dll",
22
+ "sha256": "021031470a58420a9aa413effe12b4d8d66d9bb29bb3ec99162d41d787ec4d29",
23
+ "source": "pywin32 ISAPI support DLL from the pywin32 wheel",
24
+ "version": "311",
25
+ "builtBy": "third-party",
26
+ "verification": "Installed by vendor-python.ps1 from the pinned pywin32 wheel into embedded Python; hash recorded in BINARY-INVENTORY.json."
27
+ },
28
+ {
29
+ "path": "xll/python/Lib/site-packages/pip/_vendor/distlib/t32.exe",
30
+ "sha256": "6b4195e640a85ac32eb6f9628822a622057df1e459df7c17a12f97aeabc9415b",
31
+ "source": "distlib Windows script launcher template vendored by pip",
32
+ "version": "see packaged pip distribution",
33
+ "builtBy": "third-party",
34
+ "verification": "Installed with pip in embedded Python; hash recorded in BINARY-INVENTORY.json."
35
+ },
36
+ {
37
+ "path": "xll/python/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe",
38
+ "sha256": "ebc4c06b7d95e74e315419ee7e88e1d0f71e9e9477538c00a93a9ff8c66a6cfc",
39
+ "source": "distlib Windows script launcher template vendored by pip",
40
+ "version": "see packaged pip distribution",
41
+ "builtBy": "third-party",
42
+ "verification": "Installed with pip in embedded Python; hash recorded in BINARY-INVENTORY.json."
43
+ },
44
+ {
45
+ "path": "xll/python/Lib/site-packages/pip/_vendor/distlib/t64.exe",
46
+ "sha256": "81a618f21cb87db9076134e70388b6e9cb7c2106739011b6a51772d22cae06b7",
47
+ "source": "distlib Windows script launcher template vendored by pip",
48
+ "version": "see packaged pip distribution",
49
+ "builtBy": "third-party",
50
+ "verification": "Installed with pip in embedded Python; hash recorded in BINARY-INVENTORY.json."
51
+ },
52
+ {
53
+ "path": "xll/python/Lib/site-packages/pip/_vendor/distlib/w32.exe",
54
+ "sha256": "47872cc77f8e18cf642f868f23340a468e537e64521d9a3a416c8b84384d064b",
55
+ "source": "distlib Windows script launcher template vendored by pip",
56
+ "version": "see packaged pip distribution",
57
+ "builtBy": "third-party",
58
+ "verification": "Installed with pip in embedded Python; hash recorded in BINARY-INVENTORY.json."
59
+ },
60
+ {
61
+ "path": "xll/python/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe",
62
+ "sha256": "c5dc9884a8f458371550e09bd396e5418bf375820a31b9899f6499bf391c7b2e",
63
+ "source": "distlib Windows script launcher template vendored by pip",
64
+ "version": "see packaged pip distribution",
65
+ "builtBy": "third-party",
66
+ "verification": "Installed with pip in embedded Python; hash recorded in BINARY-INVENTORY.json."
67
+ },
68
+ {
69
+ "path": "xll/python/Lib/site-packages/pip/_vendor/distlib/w64.exe",
70
+ "sha256": "7a319ffaba23a017d7b1e18ba726ba6c54c53d6446db55f92af53c279894f8ad",
71
+ "source": "distlib Windows script launcher template vendored by pip",
72
+ "version": "see packaged pip distribution",
73
+ "builtBy": "third-party",
74
+ "verification": "Installed with pip in embedded Python; hash recorded in BINARY-INVENTORY.json."
75
+ },
76
+ {
77
+ "path": "xll/python/Lib/site-packages/pythonwin/Pythonwin.exe",
78
+ "sha256": "1dcee9f379962b980b20c969893ebc370bd8a72fe50ea222e062fb967e728209",
79
+ "source": "pywin32 Pythonwin helper executable from the pywin32 wheel",
80
+ "version": "311",
81
+ "builtBy": "third-party",
82
+ "verification": "Installed by vendor-python.ps1 from the pinned pywin32 wheel into embedded Python; hash recorded in BINARY-INVENTORY.json."
83
+ },
84
+ {
85
+ "path": "xll/python/Lib/site-packages/pythonwin/dde.pyd",
86
+ "sha256": "02cecf564848a1981e350159f5c4f95e252395e58a80100bf418b194bd975949",
87
+ "source": "Native extension module from a Python package installed into embedded Python",
88
+ "version": "see owning Python package metadata in site-packages",
89
+ "builtBy": "third-party",
90
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
91
+ },
92
+ {
93
+ "path": "xll/python/Lib/site-packages/pythonwin/mfc140u.dll",
94
+ "sha256": "643ce7fe6a203c53a96a00f272a1a5b42d5b0c320c84364a6fe866307a19bb65",
95
+ "source": "pywin32 Pythonwin support DLL from the pywin32 wheel",
96
+ "version": "311",
97
+ "builtBy": "third-party",
98
+ "verification": "Installed by vendor-python.ps1 from the pinned pywin32 wheel into embedded Python; hash recorded in BINARY-INVENTORY.json."
99
+ },
100
+ {
101
+ "path": "xll/python/Lib/site-packages/pythonwin/scintilla.dll",
102
+ "sha256": "a2c5f2e188eb3eb9ceb4cd0ddc65a4445ecf6bd31e5ab1d1a284df7cc3a3c22c",
103
+ "source": "pywin32 Pythonwin support DLL from the pywin32 wheel",
104
+ "version": "311",
105
+ "builtBy": "third-party",
106
+ "verification": "Installed by vendor-python.ps1 from the pinned pywin32 wheel into embedded Python; hash recorded in BINARY-INVENTORY.json."
107
+ },
108
+ {
109
+ "path": "xll/python/Lib/site-packages/pythonwin/win32ui.pyd",
110
+ "sha256": "8a9f51b9a5152ef0b0fe3c5017af1f7004036311bdb806eb7987305ce9f1651f",
111
+ "source": "Native extension module from a Python package installed into embedded Python",
112
+ "version": "see owning Python package metadata in site-packages",
113
+ "builtBy": "third-party",
114
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
115
+ },
116
+ {
117
+ "path": "xll/python/Lib/site-packages/pythonwin/win32uiole.pyd",
118
+ "sha256": "4185b286d6fd54aa4ea3cc86be9a87e0311886e9a0fb78ad0835399b7bf61e1b",
119
+ "source": "Native extension module from a Python package installed into embedded Python",
120
+ "version": "see owning Python package metadata in site-packages",
121
+ "builtBy": "third-party",
122
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
123
+ },
124
+ {
125
+ "path": "xll/python/Lib/site-packages/pywin32_system32/pythoncom313.dll",
126
+ "sha256": "e312c8edb2d43a014daddfa984a805e6b5f933c60777e7b527332e682d9b1813",
127
+ "source": "pywin32 Windows support DLL from the pywin32 wheel",
128
+ "version": "311",
129
+ "builtBy": "third-party",
130
+ "verification": "Installed by vendor-python.ps1 from the pinned pywin32 wheel into embedded Python; hash recorded in BINARY-INVENTORY.json."
131
+ },
132
+ {
133
+ "path": "xll/python/Lib/site-packages/pywin32_system32/pywintypes313.dll",
134
+ "sha256": "9bb6dece38380abc747dce9ba8b0834a2bec469bc942dbcc8658e30ebdfb59a4",
135
+ "source": "pywin32 Windows support DLL from the pywin32 wheel",
136
+ "version": "311",
137
+ "builtBy": "third-party",
138
+ "verification": "Installed by vendor-python.ps1 from the pinned pywin32 wheel into embedded Python; hash recorded in BINARY-INVENTORY.json."
139
+ },
140
+ {
141
+ "path": "xll/python/Lib/site-packages/win32/_win32sysloader.pyd",
142
+ "sha256": "b11b641fc73ab5cc8853e0e7384147ee97056a2508927129dc385237e5a70b3a",
143
+ "source": "Native extension module from a Python package installed into embedded Python",
144
+ "version": "see owning Python package metadata in site-packages",
145
+ "builtBy": "third-party",
146
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
147
+ },
148
+ {
149
+ "path": "xll/python/Lib/site-packages/win32/_winxptheme.pyd",
150
+ "sha256": "1ad5a513e7fed3416cd08041815ae9d0836f63828ac1a3d5136f30350101f708",
151
+ "source": "Native extension module from a Python package installed into embedded Python",
152
+ "version": "see owning Python package metadata in site-packages",
153
+ "builtBy": "third-party",
154
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
155
+ },
156
+ {
157
+ "path": "xll/python/Lib/site-packages/win32/mmapfile.pyd",
158
+ "sha256": "fce0389fa984f2f907c3e2067690e6509bfba336bc8581b9af06688fde7bc1d8",
159
+ "source": "Native extension module from a Python package installed into embedded Python",
160
+ "version": "see owning Python package metadata in site-packages",
161
+ "builtBy": "third-party",
162
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
163
+ },
164
+ {
165
+ "path": "xll/python/Lib/site-packages/win32/odbc.pyd",
166
+ "sha256": "3d56da97ec3b7a7d4f44f29fb88bbc45dfe8b1d685a0fe28bbcbacfbb9cfda58",
167
+ "source": "Native extension module from a Python package installed into embedded Python",
168
+ "version": "see owning Python package metadata in site-packages",
169
+ "builtBy": "third-party",
170
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
171
+ },
172
+ {
173
+ "path": "xll/python/Lib/site-packages/win32/perfmon.pyd",
174
+ "sha256": "743045362dcc4b3a77ba02daacbbec2856d611d10720a4a4a58d1b948023c6bb",
175
+ "source": "Native extension module from a Python package installed into embedded Python",
176
+ "version": "see owning Python package metadata in site-packages",
177
+ "builtBy": "third-party",
178
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
179
+ },
180
+ {
181
+ "path": "xll/python/Lib/site-packages/win32/perfmondata.dll",
182
+ "sha256": "2d6d11568b8adb3f90db0d56e0a5f4ef9787a656c7c3a709f1aa35b60658bb63",
183
+ "source": "pywin32 Windows support DLL from the pywin32 wheel",
184
+ "version": "311",
185
+ "builtBy": "third-party",
186
+ "verification": "Installed by vendor-python.ps1 from the pinned pywin32 wheel into embedded Python; hash recorded in BINARY-INVENTORY.json."
187
+ },
188
+ {
189
+ "path": "xll/python/Lib/site-packages/win32/pythonservice.exe",
190
+ "sha256": "efddebfa10435e8c655d9de4a8c6df4b239f3493120385b401147ed293ed92d1",
191
+ "source": "pywin32 Windows helper executable from the pywin32 wheel",
192
+ "version": "311",
193
+ "builtBy": "third-party",
194
+ "verification": "Installed by vendor-python.ps1 from the pinned pywin32 wheel into embedded Python; hash recorded in BINARY-INVENTORY.json."
195
+ },
196
+ {
197
+ "path": "xll/python/Lib/site-packages/win32/servicemanager.pyd",
198
+ "sha256": "8f60e4c9f33898cd0bea1c8edfa5e3937f801118bfc1b97b7251d833339d4bad",
199
+ "source": "Native extension module from a Python package installed into embedded Python",
200
+ "version": "see owning Python package metadata in site-packages",
201
+ "builtBy": "third-party",
202
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
203
+ },
204
+ {
205
+ "path": "xll/python/Lib/site-packages/win32/timer.pyd",
206
+ "sha256": "669fefd959df21a6d36f694fe2af5ca517858815ca66c8277f0480a9b3faf2a6",
207
+ "source": "Native extension module from a Python package installed into embedded Python",
208
+ "version": "see owning Python package metadata in site-packages",
209
+ "builtBy": "third-party",
210
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
211
+ },
212
+ {
213
+ "path": "xll/python/Lib/site-packages/win32/win32api.pyd",
214
+ "sha256": "b80722e54741563e72e264ca33e1900ee49c927c475e54ef8f94c3eac9032465",
215
+ "source": "Native extension module from a Python package installed into embedded Python",
216
+ "version": "see owning Python package metadata in site-packages",
217
+ "builtBy": "third-party",
218
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
219
+ },
220
+ {
221
+ "path": "xll/python/Lib/site-packages/win32/win32clipboard.pyd",
222
+ "sha256": "955996e5867c1bf34e10838d462b413986e0911a9ffc3484076a03ac945fadc7",
223
+ "source": "Native extension module from a Python package installed into embedded Python",
224
+ "version": "see owning Python package metadata in site-packages",
225
+ "builtBy": "third-party",
226
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
227
+ },
228
+ {
229
+ "path": "xll/python/Lib/site-packages/win32/win32console.pyd",
230
+ "sha256": "b2b3f282c593660ef5524ec3c231989f839e23acf01571206c44589e5b597afb",
231
+ "source": "Native extension module from a Python package installed into embedded Python",
232
+ "version": "see owning Python package metadata in site-packages",
233
+ "builtBy": "third-party",
234
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
235
+ },
236
+ {
237
+ "path": "xll/python/Lib/site-packages/win32/win32cred.pyd",
238
+ "sha256": "f7dd953f24e800eaa4719fd5423c51f9d6987c9eebd5ee5fcab42a4295638ae4",
239
+ "source": "Native extension module from a Python package installed into embedded Python",
240
+ "version": "see owning Python package metadata in site-packages",
241
+ "builtBy": "third-party",
242
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
243
+ },
244
+ {
245
+ "path": "xll/python/Lib/site-packages/win32/win32crypt.pyd",
246
+ "sha256": "f07fbdcebda155ece29f64a4ca199db544bfa1f3472661f20b569d2b56926123",
247
+ "source": "Native extension module from a Python package installed into embedded Python",
248
+ "version": "see owning Python package metadata in site-packages",
249
+ "builtBy": "third-party",
250
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
251
+ },
252
+ {
253
+ "path": "xll/python/Lib/site-packages/win32/win32event.pyd",
254
+ "sha256": "b70d2aebb12d2a0c8d100f37e109319407cf025fc406ef23d13c1b5ddb64370a",
255
+ "source": "Native extension module from a Python package installed into embedded Python",
256
+ "version": "see owning Python package metadata in site-packages",
257
+ "builtBy": "third-party",
258
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
259
+ },
260
+ {
261
+ "path": "xll/python/Lib/site-packages/win32/win32evtlog.pyd",
262
+ "sha256": "d8b40e7c79cf6821b2e7bab2ed279449f42510f3805f783c2fb9f1403481e1f3",
263
+ "source": "Native extension module from a Python package installed into embedded Python",
264
+ "version": "see owning Python package metadata in site-packages",
265
+ "builtBy": "third-party",
266
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
267
+ },
268
+ {
269
+ "path": "xll/python/Lib/site-packages/win32/win32file.pyd",
270
+ "sha256": "9c2ef4a8b2224a8048a76f3be26b616c04379e853f1e45fbab87d75ce89c1d6d",
271
+ "source": "Native extension module from a Python package installed into embedded Python",
272
+ "version": "see owning Python package metadata in site-packages",
273
+ "builtBy": "third-party",
274
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
275
+ },
276
+ {
277
+ "path": "xll/python/Lib/site-packages/win32/win32gui.pyd",
278
+ "sha256": "6c545bd22720a7088c1353e5e554ded4db5db4c1b164689e7d42acf312561aca",
279
+ "source": "Native extension module from a Python package installed into embedded Python",
280
+ "version": "see owning Python package metadata in site-packages",
281
+ "builtBy": "third-party",
282
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
283
+ },
284
+ {
285
+ "path": "xll/python/Lib/site-packages/win32/win32help.pyd",
286
+ "sha256": "00fd809b67f271712d20423c07b45081c51c227b6f416b9d27d584dedcb62de2",
287
+ "source": "Native extension module from a Python package installed into embedded Python",
288
+ "version": "see owning Python package metadata in site-packages",
289
+ "builtBy": "third-party",
290
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
291
+ },
292
+ {
293
+ "path": "xll/python/Lib/site-packages/win32/win32inet.pyd",
294
+ "sha256": "c570f14ed44a5d0d4b1c31b1e2b77eebd6770031b3ebcd12c33d5f653e0fa051",
295
+ "source": "Native extension module from a Python package installed into embedded Python",
296
+ "version": "see owning Python package metadata in site-packages",
297
+ "builtBy": "third-party",
298
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
299
+ },
300
+ {
301
+ "path": "xll/python/Lib/site-packages/win32/win32job.pyd",
302
+ "sha256": "2332ea4e7b22ffaa0c9cf6f98a16a086632978fad5b0fa24110b4e5554f45588",
303
+ "source": "Native extension module from a Python package installed into embedded Python",
304
+ "version": "see owning Python package metadata in site-packages",
305
+ "builtBy": "third-party",
306
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
307
+ },
308
+ {
309
+ "path": "xll/python/Lib/site-packages/win32/win32lz.pyd",
310
+ "sha256": "3e30018e339eb081b3eabaf61077f50b4af58fa6184c9ed8857d797e60c4d91b",
311
+ "source": "Native extension module from a Python package installed into embedded Python",
312
+ "version": "see owning Python package metadata in site-packages",
313
+ "builtBy": "third-party",
314
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
315
+ },
316
+ {
317
+ "path": "xll/python/Lib/site-packages/win32/win32net.pyd",
318
+ "sha256": "22cadf6d6ae1fedb3f38b6d5d0be8a8d2d37321d1f7e4215caa010b38c3723b9",
319
+ "source": "Native extension module from a Python package installed into embedded Python",
320
+ "version": "see owning Python package metadata in site-packages",
321
+ "builtBy": "third-party",
322
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
323
+ },
324
+ {
325
+ "path": "xll/python/Lib/site-packages/win32/win32pdh.pyd",
326
+ "sha256": "38a92aff88f58e35824fdae5b202692d4e003142120bb5032f05332a350ba54e",
327
+ "source": "Native extension module from a Python package installed into embedded Python",
328
+ "version": "see owning Python package metadata in site-packages",
329
+ "builtBy": "third-party",
330
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
331
+ },
332
+ {
333
+ "path": "xll/python/Lib/site-packages/win32/win32pipe.pyd",
334
+ "sha256": "5ab3cc5b6f48b839259680688dd51f386e0cd55a39d35e412a88ad68bfcf5b3e",
335
+ "source": "Native extension module from a Python package installed into embedded Python",
336
+ "version": "see owning Python package metadata in site-packages",
337
+ "builtBy": "third-party",
338
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
339
+ },
340
+ {
341
+ "path": "xll/python/Lib/site-packages/win32/win32print.pyd",
342
+ "sha256": "1a5a443d9154e6a3cf62fe39dd7f40a3fea272c297ac1e0aa9e10c0b0ea68bad",
343
+ "source": "Native extension module from a Python package installed into embedded Python",
344
+ "version": "see owning Python package metadata in site-packages",
345
+ "builtBy": "third-party",
346
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
347
+ },
348
+ {
349
+ "path": "xll/python/Lib/site-packages/win32/win32process.pyd",
350
+ "sha256": "9d99c96c6d2e15fc52ed9444dc880ebfb358fbcd1f659ddf8af1a233033294ce",
351
+ "source": "Native extension module from a Python package installed into embedded Python",
352
+ "version": "see owning Python package metadata in site-packages",
353
+ "builtBy": "third-party",
354
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
355
+ },
356
+ {
357
+ "path": "xll/python/Lib/site-packages/win32/win32profile.pyd",
358
+ "sha256": "2dff78afe08bd30ba5fb5a44c2ff255a0542f6ec6f0471c59e9c5b80a7261fab",
359
+ "source": "Native extension module from a Python package installed into embedded Python",
360
+ "version": "see owning Python package metadata in site-packages",
361
+ "builtBy": "third-party",
362
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
363
+ },
364
+ {
365
+ "path": "xll/python/Lib/site-packages/win32/win32ras.pyd",
366
+ "sha256": "54bb5ebe878179c67f3716f06f12633b08a0f695396f227016c8247d208cdadc",
367
+ "source": "Native extension module from a Python package installed into embedded Python",
368
+ "version": "see owning Python package metadata in site-packages",
369
+ "builtBy": "third-party",
370
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
371
+ },
372
+ {
373
+ "path": "xll/python/Lib/site-packages/win32/win32security.pyd",
374
+ "sha256": "99b4fd9f47602371380c8579489b0c6fdc88d7776224062ba6c39b185c4e9001",
375
+ "source": "Native extension module from a Python package installed into embedded Python",
376
+ "version": "see owning Python package metadata in site-packages",
377
+ "builtBy": "third-party",
378
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
379
+ },
380
+ {
381
+ "path": "xll/python/Lib/site-packages/win32/win32service.pyd",
382
+ "sha256": "eb3ea4dab12ecfb5296627435d2d0425d80e02ff73f586af166687a60215fff7",
383
+ "source": "Native extension module from a Python package installed into embedded Python",
384
+ "version": "see owning Python package metadata in site-packages",
385
+ "builtBy": "third-party",
386
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
387
+ },
388
+ {
389
+ "path": "xll/python/Lib/site-packages/win32/win32trace.pyd",
390
+ "sha256": "a5f35e4db0dfe0c77871169b477e95c2b87609a75a376167b1e96220c008819a",
391
+ "source": "Native extension module from a Python package installed into embedded Python",
392
+ "version": "see owning Python package metadata in site-packages",
393
+ "builtBy": "third-party",
394
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
395
+ },
396
+ {
397
+ "path": "xll/python/Lib/site-packages/win32/win32transaction.pyd",
398
+ "sha256": "2bf0766a55341eb93ec66f52ee4b1dacae76c2d6627b3e20f9208e02676b9c50",
399
+ "source": "Native extension module from a Python package installed into embedded Python",
400
+ "version": "see owning Python package metadata in site-packages",
401
+ "builtBy": "third-party",
402
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
403
+ },
404
+ {
405
+ "path": "xll/python/Lib/site-packages/win32/win32ts.pyd",
406
+ "sha256": "ae5ae7a1627757f5a54aca56e715d8d1546475c480b9ef21b99f0db9e26d6a58",
407
+ "source": "Native extension module from a Python package installed into embedded Python",
408
+ "version": "see owning Python package metadata in site-packages",
409
+ "builtBy": "third-party",
410
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
411
+ },
412
+ {
413
+ "path": "xll/python/Lib/site-packages/win32/win32wnet.pyd",
414
+ "sha256": "8a1f2ee42a14ef45f95f90c33c863a80aa67648e6394331f27f34345942bbb6c",
415
+ "source": "Native extension module from a Python package installed into embedded Python",
416
+ "version": "see owning Python package metadata in site-packages",
417
+ "builtBy": "third-party",
418
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
419
+ },
420
+ {
421
+ "path": "xll/python/Lib/site-packages/win32comext/adsi/adsi.pyd",
422
+ "sha256": "7c35fa842b30db4bbfe049d3b2c5f5c3dbe609dee99ed77f722ef5b208a8bf16",
423
+ "source": "Native extension module from a Python package installed into embedded Python",
424
+ "version": "see owning Python package metadata in site-packages",
425
+ "builtBy": "third-party",
426
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
427
+ },
428
+ {
429
+ "path": "xll/python/Lib/site-packages/win32comext/authorization/authorization.pyd",
430
+ "sha256": "d1f57039cdd0da5d0cb424d2efcf2ac58c4e5d9b5965812dcf6577d3c674263b",
431
+ "source": "Native extension module from a Python package installed into embedded Python",
432
+ "version": "see owning Python package metadata in site-packages",
433
+ "builtBy": "third-party",
434
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
435
+ },
436
+ {
437
+ "path": "xll/python/Lib/site-packages/win32comext/axcontrol/axcontrol.pyd",
438
+ "sha256": "156f4cb165626e4f108fc5ad947564e58820fc4f0b66065538edb6fd6140d306",
439
+ "source": "Native extension module from a Python package installed into embedded Python",
440
+ "version": "see owning Python package metadata in site-packages",
441
+ "builtBy": "third-party",
442
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
443
+ },
444
+ {
445
+ "path": "xll/python/Lib/site-packages/win32comext/axscript/axscript.pyd",
446
+ "sha256": "1f8a9830018dee82377b3f6ec4a808ad8be408ae11c8009d7014cb1252b8300b",
447
+ "source": "Native extension module from a Python package installed into embedded Python",
448
+ "version": "see owning Python package metadata in site-packages",
449
+ "builtBy": "third-party",
450
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
451
+ },
452
+ {
453
+ "path": "xll/python/Lib/site-packages/win32comext/bits/bits.pyd",
454
+ "sha256": "e6deb0bf1c952b6e309746c1a3df557a4af50124e867fc2e31df9cbb293fb9a1",
455
+ "source": "Native extension module from a Python package installed into embedded Python",
456
+ "version": "see owning Python package metadata in site-packages",
457
+ "builtBy": "third-party",
458
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
459
+ },
460
+ {
461
+ "path": "xll/python/Lib/site-packages/win32comext/directsound/directsound.pyd",
462
+ "sha256": "7041520bf8cad7566f872a197c67bf87208d0f09c3abad499e840ac209c6d026",
463
+ "source": "Native extension module from a Python package installed into embedded Python",
464
+ "version": "see owning Python package metadata in site-packages",
465
+ "builtBy": "third-party",
466
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
467
+ },
468
+ {
469
+ "path": "xll/python/Lib/site-packages/win32comext/ifilter/ifilter.pyd",
470
+ "sha256": "940349cde1660cc7132740ab35df72bb6c144e0f98bbdf679127045955cc4502",
471
+ "source": "Native extension module from a Python package installed into embedded Python",
472
+ "version": "see owning Python package metadata in site-packages",
473
+ "builtBy": "third-party",
474
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
475
+ },
476
+ {
477
+ "path": "xll/python/Lib/site-packages/win32comext/internet/internet.pyd",
478
+ "sha256": "d9be6b5fb79aeb4be85013f72c403a70323a294fe8a5cafba6f991575c242cd6",
479
+ "source": "Native extension module from a Python package installed into embedded Python",
480
+ "version": "see owning Python package metadata in site-packages",
481
+ "builtBy": "third-party",
482
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
483
+ },
484
+ {
485
+ "path": "xll/python/Lib/site-packages/win32comext/mapi/exchange.pyd",
486
+ "sha256": "d574f3d8e68b81f5b7b8dd9af6b588f89282c11f50fb35d7c5f6d7d9592aa8ea",
487
+ "source": "Native extension module from a Python package installed into embedded Python",
488
+ "version": "see owning Python package metadata in site-packages",
489
+ "builtBy": "third-party",
490
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
491
+ },
492
+ {
493
+ "path": "xll/python/Lib/site-packages/win32comext/mapi/mapi.pyd",
494
+ "sha256": "ce1d848312eb935a7ba6ec5f6a6c10b77ea12dcb700aaf51554a7fe85c52c583",
495
+ "source": "Native extension module from a Python package installed into embedded Python",
496
+ "version": "see owning Python package metadata in site-packages",
497
+ "builtBy": "third-party",
498
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
499
+ },
500
+ {
501
+ "path": "xll/python/Lib/site-packages/win32comext/propsys/propsys.pyd",
502
+ "sha256": "bdc18653b1f2e3b52cd4f39b10282bddd1e3219a568deacef55394572e23dd3f",
503
+ "source": "Native extension module from a Python package installed into embedded Python",
504
+ "version": "see owning Python package metadata in site-packages",
505
+ "builtBy": "third-party",
506
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
507
+ },
508
+ {
509
+ "path": "xll/python/Lib/site-packages/win32comext/shell/shell.pyd",
510
+ "sha256": "65076be2fd14083da1f5b472a46608af9fd019616778880a856e737f67987dae",
511
+ "source": "Native extension module from a Python package installed into embedded Python",
512
+ "version": "see owning Python package metadata in site-packages",
513
+ "builtBy": "third-party",
514
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
515
+ },
516
+ {
517
+ "path": "xll/python/Lib/site-packages/win32comext/taskscheduler/taskscheduler.pyd",
518
+ "sha256": "45b67359f3b085c0e74354c5afefcf0fb22078946786dac86b2342141cba8f3a",
519
+ "source": "Native extension module from a Python package installed into embedded Python",
520
+ "version": "see owning Python package metadata in site-packages",
521
+ "builtBy": "third-party",
522
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
523
+ },
524
+ {
525
+ "path": "xll/python/Scripts/httpx.exe",
526
+ "sha256": "6443bf0359e479a00549f26cfaaecebec067687bd721258108880e3e4b8c0cf9",
527
+ "source": "httpx console launcher installed into embedded Python",
528
+ "version": "see packaged httpx distribution",
529
+ "builtBy": "third-party",
530
+ "verification": "Installed by vendor-python.ps1 into embedded Python; hash recorded in BINARY-INVENTORY.json."
531
+ },
532
+ {
533
+ "path": "xll/python/Scripts/idna.exe",
534
+ "sha256": "eb0bee35c9a602f93ee605c2a6d6df3069be9e2be8a4b5131b4e7599a438d168",
535
+ "source": "Python package console launcher installed into embedded Python",
536
+ "version": "see owning Python package metadata in site-packages",
537
+ "builtBy": "third-party",
538
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
539
+ },
540
+ {
541
+ "path": "xll/python/Scripts/pip.exe",
542
+ "sha256": "1c0d88a63c83e6bb9ce9480ab1e5b1240cf391656806130748441871958fe337",
543
+ "source": "pip console launcher installed into embedded Python",
544
+ "version": "see packaged pip distribution",
545
+ "builtBy": "third-party",
546
+ "verification": "Installed by vendor-python.ps1 into embedded Python; hash recorded in BINARY-INVENTORY.json."
547
+ },
548
+ {
549
+ "path": "xll/python/Scripts/pip3.13.exe",
550
+ "sha256": "1c0d88a63c83e6bb9ce9480ab1e5b1240cf391656806130748441871958fe337",
551
+ "source": "pip console launcher installed into embedded Python",
552
+ "version": "see packaged pip distribution",
553
+ "builtBy": "third-party",
554
+ "verification": "Installed by vendor-python.ps1 into embedded Python; hash recorded in BINARY-INVENTORY.json."
555
+ },
556
+ {
557
+ "path": "xll/python/Scripts/pip3.exe",
558
+ "sha256": "1c0d88a63c83e6bb9ce9480ab1e5b1240cf391656806130748441871958fe337",
559
+ "source": "pip console launcher installed into embedded Python",
560
+ "version": "see packaged pip distribution",
561
+ "builtBy": "third-party",
562
+ "verification": "Installed by vendor-python.ps1 into embedded Python; hash recorded in BINARY-INVENTORY.json."
563
+ },
564
+ {
565
+ "path": "xll/python/Scripts/pywin32_postinstall.exe",
566
+ "sha256": "33c9bf469edc79cbdea68966e2b50eb15db5ba63278fec1befd274f00ef26bf4",
567
+ "source": "Python package console launcher installed into embedded Python",
568
+ "version": "see owning Python package metadata in site-packages",
569
+ "builtBy": "third-party",
570
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
571
+ },
572
+ {
573
+ "path": "xll/python/Scripts/pywin32_testall.exe",
574
+ "sha256": "f4ab6b20be97a838b4e2eb369c603136e8bcf7d8b1829dd30e7fd7a681b48e65",
575
+ "source": "Python package console launcher installed into embedded Python",
576
+ "version": "see owning Python package metadata in site-packages",
577
+ "builtBy": "third-party",
578
+ "verification": "Installed into embedded Python; hash recorded in BINARY-INVENTORY.json."
579
+ },
580
+ {
581
+ "path": "xll/python/_asyncio.pyd",
582
+ "sha256": "423007b8c7d63b4cb5f23665a761dd5de1c7e15a65c8013391de0d18c89ce417",
583
+ "source": "CPython Windows embeddable runtime extension module",
584
+ "version": "see packaged python runtime",
585
+ "builtBy": "third-party",
586
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
587
+ },
588
+ {
589
+ "path": "xll/python/_bz2.pyd",
590
+ "sha256": "1bf985b54f529a3cbb3e52532791cc4d4c64009142d37b54eb3521adec203d5c",
591
+ "source": "CPython Windows embeddable runtime extension module",
592
+ "version": "see packaged python runtime",
593
+ "builtBy": "third-party",
594
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
595
+ },
596
+ {
597
+ "path": "xll/python/_ctypes.pyd",
598
+ "sha256": "96b07339d52c74f2a1dd043df5eb931e4072eed90a3a8715ffec751d818e4117",
599
+ "source": "CPython Windows embeddable runtime extension module",
600
+ "version": "see packaged python runtime",
601
+ "builtBy": "third-party",
602
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
603
+ },
604
+ {
605
+ "path": "xll/python/_decimal.pyd",
606
+ "sha256": "398117a6af493e34f56ec0d78ced9901b20b8e895686ce5966edeadb23507056",
607
+ "source": "CPython Windows embeddable runtime extension module",
608
+ "version": "see packaged python runtime",
609
+ "builtBy": "third-party",
610
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
611
+ },
612
+ {
613
+ "path": "xll/python/_elementtree.pyd",
614
+ "sha256": "fbce9a1190a228c59767bde785c27cc4d18ee3a1f6b46e9da042fc86f8d0def7",
615
+ "source": "CPython Windows embeddable runtime extension module",
616
+ "version": "see packaged python runtime",
617
+ "builtBy": "third-party",
618
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
619
+ },
620
+ {
621
+ "path": "xll/python/_hashlib.pyd",
622
+ "sha256": "50f3ce7a2281fd32f378f3ba5067bdd13e18ee95877db5199c6a0babdc9c516a",
623
+ "source": "CPython Windows embeddable runtime extension module",
624
+ "version": "see packaged python runtime",
625
+ "builtBy": "third-party",
626
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
627
+ },
628
+ {
629
+ "path": "xll/python/_lzma.pyd",
630
+ "sha256": "51815b6474d4216c6a2aeaffdae5d2ff4acb7a0236254f2cfe43247022f3d781",
631
+ "source": "CPython Windows embeddable runtime extension module",
632
+ "version": "see packaged python runtime",
633
+ "builtBy": "third-party",
634
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
635
+ },
636
+ {
637
+ "path": "xll/python/_multiprocessing.pyd",
638
+ "sha256": "4df0d8f9da454831e96389c145ac9ea0093e09749627a3717ff60d21218670c8",
639
+ "source": "CPython Windows embeddable runtime extension module",
640
+ "version": "see packaged python runtime",
641
+ "builtBy": "third-party",
642
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
643
+ },
644
+ {
645
+ "path": "xll/python/_overlapped.pyd",
646
+ "sha256": "53fe68819f23fea7f6deb0054623e936cc2500241061f29bd5288cf4a511278f",
647
+ "source": "CPython Windows embeddable runtime extension module",
648
+ "version": "see packaged python runtime",
649
+ "builtBy": "third-party",
650
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
651
+ },
652
+ {
653
+ "path": "xll/python/_queue.pyd",
654
+ "sha256": "b5b5368026c33ade7651fb4cf4c6c1ca7eecc9c8cdad0af007da8a3ac0e067f7",
655
+ "source": "CPython Windows embeddable runtime extension module",
656
+ "version": "see packaged python runtime",
657
+ "builtBy": "third-party",
658
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
659
+ },
660
+ {
661
+ "path": "xll/python/_socket.pyd",
662
+ "sha256": "8676f3cebd9d01c7ad51a29b3f7ff429c0a8f6bc564cab21eb6cdaa2e26fd259",
663
+ "source": "CPython Windows embeddable runtime extension module",
664
+ "version": "see packaged python runtime",
665
+ "builtBy": "third-party",
666
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
667
+ },
668
+ {
669
+ "path": "xll/python/_sqlite3.pyd",
670
+ "sha256": "bb80e54f2de8aa3cddc00a2a2f893c432d45ecd64a5c55758a4eb6d2e3007127",
671
+ "source": "CPython Windows embeddable runtime extension module",
672
+ "version": "see packaged python runtime",
673
+ "builtBy": "third-party",
674
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
675
+ },
676
+ {
677
+ "path": "xll/python/_ssl.pyd",
678
+ "sha256": "b8118580b461801df12ec12d3d666aa0ebc2b3750bcf92b90b92789b152bf856",
679
+ "source": "CPython Windows embeddable runtime extension module",
680
+ "version": "see packaged python runtime",
681
+ "builtBy": "third-party",
682
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
683
+ },
684
+ {
685
+ "path": "xll/python/_uuid.pyd",
686
+ "sha256": "0116497261edadfe42ba7daf367c8a9ea27a1db210c8384943c890f532e3ce72",
687
+ "source": "CPython Windows embeddable runtime extension module",
688
+ "version": "see packaged python runtime",
689
+ "builtBy": "third-party",
690
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
691
+ },
692
+ {
693
+ "path": "xll/python/_wmi.pyd",
694
+ "sha256": "9a7255064ea143895b28efea6d78e9e518bac290900aec52a6a0435c36a172fb",
695
+ "source": "CPython Windows embeddable runtime extension module",
696
+ "version": "see packaged python runtime",
697
+ "builtBy": "third-party",
698
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
699
+ },
700
+ {
701
+ "path": "xll/python/_zoneinfo.pyd",
702
+ "sha256": "6351ce1ff38815e152bb8f28b884e7b2a3945cbee1b1fefa6117e45953d5751f",
703
+ "source": "CPython Windows embeddable runtime extension module",
704
+ "version": "see packaged python runtime",
705
+ "builtBy": "third-party",
706
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
707
+ },
708
+ {
709
+ "path": "xll/python/libcrypto-3.dll",
710
+ "sha256": "eaf6d613b95b61a39558d84c50e72630a66c99914292df88e7b54ebd60c5bd34",
711
+ "source": "OpenSSL library bundled with CPython Windows embeddable runtime",
712
+ "version": "see packaged python runtime",
713
+ "builtBy": "third-party",
714
+ "verification": "Downloaded from python.org CPython release artifacts; verify upstream SHA/signature before vendoring."
715
+ },
716
+ {
717
+ "path": "xll/python/libffi-8.dll",
718
+ "sha256": "eff52743773eb550fcc6ce3efc37c85724502233b6b002a35496d828bd7b280a",
719
+ "source": "libffi library bundled with CPython Windows embeddable runtime",
720
+ "version": "see packaged python runtime",
721
+ "builtBy": "third-party",
722
+ "verification": "Downloaded from python.org CPython release artifacts; verify upstream SHA/signature before vendoring."
723
+ },
724
+ {
725
+ "path": "xll/python/libssl-3.dll",
726
+ "sha256": "cf1a5fdcefa3daf69041f31f98ece1d7911ca4fcb8e9f1043b4d0f459ae4c936",
727
+ "source": "OpenSSL library bundled with CPython Windows embeddable runtime",
728
+ "version": "see packaged python runtime",
729
+ "builtBy": "third-party",
730
+ "verification": "Downloaded from python.org CPython release artifacts; verify upstream SHA/signature before vendoring."
731
+ },
732
+ {
733
+ "path": "xll/python/pyexpat.pyd",
734
+ "sha256": "b5f57327418750229656c30a809308669797cf30d7da3705f8cd584c2b8a038b",
735
+ "source": "CPython Windows embeddable runtime extension module",
736
+ "version": "see packaged python runtime",
737
+ "builtBy": "third-party",
738
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
739
+ },
740
+ {
741
+ "path": "xll/python/python.exe",
742
+ "sha256": "dc7ecf75280678175b4f931ce05f1ef9c10d48984399ca7de6beee69d71bcb1b",
743
+ "source": "CPython Windows embeddable runtime launcher",
744
+ "version": "see packaged python runtime",
745
+ "builtBy": "third-party",
746
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
747
+ },
748
+ {
749
+ "path": "xll/python/python3.dll",
750
+ "sha256": "cbc4876275178244905ee45a9ee6ec9fa4bfb9aad6209a03b756d38a186f80d1",
751
+ "source": "CPython Windows embeddable runtime DLL",
752
+ "version": "see packaged python runtime",
753
+ "builtBy": "third-party",
754
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
755
+ },
756
+ {
757
+ "path": "xll/python/python313.dll",
758
+ "sha256": "6964e590037c41d631fd1215f05af154f7fa68105993c6f573a20689b473f1ac",
759
+ "source": "CPython Windows embeddable runtime DLL",
760
+ "version": "see packaged python runtime",
761
+ "builtBy": "third-party",
762
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
763
+ },
764
+ {
765
+ "path": "xll/python/pythonw.exe",
766
+ "sha256": "e98f517f1fa209c691c57d058e538473c4dedcecacd2e466c3f2bce54fc431f4",
767
+ "source": "CPython Windows embeddable runtime launcher",
768
+ "version": "see packaged python runtime",
769
+ "builtBy": "third-party",
770
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
771
+ },
772
+ {
773
+ "path": "xll/python/select.pyd",
774
+ "sha256": "ddf1221851814943a82ed8a986d228463404da2ada969661bdd69223f14fc050",
775
+ "source": "CPython Windows embeddable runtime extension module",
776
+ "version": "see packaged python runtime",
777
+ "builtBy": "third-party",
778
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
779
+ },
780
+ {
781
+ "path": "xll/python/sqlite3.dll",
782
+ "sha256": "aaae3fe73a4dda249da1ed740c087d1548a1ff7b73eaa7aa62c2354a581ee299",
783
+ "source": "SQLite library bundled with CPython Windows embeddable runtime",
784
+ "version": "see packaged python runtime",
785
+ "builtBy": "third-party",
786
+ "verification": "Downloaded from python.org CPython release artifacts; verify upstream SHA/signature before vendoring."
787
+ },
788
+ {
789
+ "path": "xll/python/unicodedata.pyd",
790
+ "sha256": "b965a80346ee95dbec0b147faab329f3276ba24fceb8df5df171367649f116f3",
791
+ "source": "CPython Windows embeddable runtime extension module",
792
+ "version": "see packaged python runtime",
793
+ "builtBy": "third-party",
794
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
795
+ },
796
+ {
797
+ "path": "xll/python/vcruntime140_1.dll",
798
+ "sha256": "6a99bc0128e0c7d6cbbf615fcc26909565e17d4ca3451b97f8987f9c6acbc6c8",
799
+ "source": "Microsoft Visual C++ runtime library bundled with CPython Windows embeddable runtime",
800
+ "version": "see packaged python runtime",
801
+ "builtBy": "third-party",
802
+ "verification": "Downloaded from python.org CPython release artifacts; verify upstream SHA/signature before vendoring."
803
+ },
804
+ {
805
+ "path": "xll/python/winsound.pyd",
806
+ "sha256": "f23973ff866546525e5ffb63dc9ccc2f88980f320d4ae75168ffcd26c4ccb0cd",
807
+ "source": "CPython Windows embeddable runtime extension module",
808
+ "version": "see packaged python runtime",
809
+ "builtBy": "third-party",
810
+ "verification": "Downloaded from python.org release artifacts; verify upstream SHA/signature before vendoring."
811
+ }
812
+ ]
813
+ }