shortcutxl 0.2.23 → 0.2.24

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 (2098) hide show
  1. package/CHANGELOG.md +51 -51
  2. package/README.md +41 -41
  3. package/agent-docs/README.md +397 -397
  4. package/agent-docs/api-reference.json +2040 -2040
  5. package/agent-docs/docs/compaction.md +390 -390
  6. package/agent-docs/docs/custom-provider.md +580 -580
  7. package/agent-docs/docs/development.md +69 -69
  8. package/agent-docs/docs/extensions.md +1971 -1971
  9. package/agent-docs/docs/json.md +79 -79
  10. package/agent-docs/docs/keybindings.md +174 -174
  11. package/agent-docs/docs/models.md +293 -293
  12. package/agent-docs/docs/packages.md +209 -209
  13. package/agent-docs/docs/prompt-templates.md +67 -67
  14. package/agent-docs/docs/providers.md +186 -186
  15. package/agent-docs/docs/rpc.md +1317 -1317
  16. package/agent-docs/docs/sdk.md +962 -962
  17. package/agent-docs/docs/session.md +412 -412
  18. package/agent-docs/docs/settings.md +223 -223
  19. package/agent-docs/docs/shell-aliases.md +13 -13
  20. package/agent-docs/docs/skills.md +231 -231
  21. package/agent-docs/docs/terminal-setup.md +70 -70
  22. package/agent-docs/docs/termux.md +127 -127
  23. package/agent-docs/docs/themes.md +295 -295
  24. package/agent-docs/docs/tree.md +219 -219
  25. package/agent-docs/docs/tui.md +887 -887
  26. package/agent-docs/docs/windows.md +17 -17
  27. package/agent-docs/examples/README.md +25 -25
  28. package/agent-docs/examples/extensions/README.md +205 -205
  29. package/agent-docs/examples/extensions/antigravity-image-gen.ts +447 -447
  30. package/agent-docs/examples/extensions/auto-commit-on-exit.ts +49 -49
  31. package/agent-docs/examples/extensions/bash-spawn-hook.ts +30 -30
  32. package/agent-docs/examples/extensions/bookmark.ts +50 -50
  33. package/agent-docs/examples/extensions/built-in-tool-renderer.ts +245 -245
  34. package/agent-docs/examples/extensions/claude-code.ts +69 -69
  35. package/agent-docs/examples/extensions/claude-rules.ts +86 -86
  36. package/agent-docs/examples/extensions/commands.ts +75 -75
  37. package/agent-docs/examples/extensions/confirm-destructive.ts +59 -59
  38. package/agent-docs/examples/extensions/custom-compaction.ts +126 -126
  39. package/agent-docs/examples/extensions/custom-footer.ts +63 -63
  40. package/agent-docs/examples/extensions/custom-header.ts +73 -73
  41. package/agent-docs/examples/extensions/custom-provider-anthropic/index.ts +660 -660
  42. package/agent-docs/examples/extensions/custom-provider-anthropic/package-lock.json +24 -24
  43. package/agent-docs/examples/extensions/custom-provider-anthropic/package.json +19 -19
  44. package/agent-docs/examples/extensions/custom-provider-gitlab-duo/index.ts +362 -362
  45. package/agent-docs/examples/extensions/custom-provider-gitlab-duo/package.json +16 -16
  46. package/agent-docs/examples/extensions/custom-provider-gitlab-duo/test.ts +82 -82
  47. package/agent-docs/examples/extensions/custom-provider-qwen-cli/index.ts +349 -349
  48. package/agent-docs/examples/extensions/custom-provider-qwen-cli/package.json +16 -16
  49. package/agent-docs/examples/extensions/dirty-repo-guard.ts +56 -56
  50. package/agent-docs/examples/extensions/doom-overlay/README.md +46 -46
  51. package/agent-docs/examples/extensions/doom-overlay/doom/build.sh +152 -152
  52. package/agent-docs/examples/extensions/doom-overlay/doom/doomgeneric_pi.c +72 -72
  53. package/agent-docs/examples/extensions/doom-overlay/doom-component.ts +133 -133
  54. package/agent-docs/examples/extensions/doom-overlay/doom-engine.ts +186 -186
  55. package/agent-docs/examples/extensions/doom-overlay/doom-keys.ts +108 -108
  56. package/agent-docs/examples/extensions/doom-overlay/index.ts +74 -74
  57. package/agent-docs/examples/extensions/doom-overlay/wad-finder.ts +51 -51
  58. package/agent-docs/examples/extensions/dynamic-resources/SKILL.md +8 -8
  59. package/agent-docs/examples/extensions/dynamic-resources/dynamic.json +79 -79
  60. package/agent-docs/examples/extensions/dynamic-resources/dynamic.md +5 -5
  61. package/agent-docs/examples/extensions/dynamic-resources/index.ts +15 -15
  62. package/agent-docs/examples/extensions/dynamic-tools.ts +77 -77
  63. package/agent-docs/examples/extensions/event-bus.ts +43 -43
  64. package/agent-docs/examples/extensions/file-trigger.ts +41 -41
  65. package/agent-docs/examples/extensions/git-checkpoint.ts +53 -53
  66. package/agent-docs/examples/extensions/handoff.ts +155 -155
  67. package/agent-docs/examples/extensions/hello.ts +25 -25
  68. package/agent-docs/examples/extensions/inline-bash.ts +94 -94
  69. package/agent-docs/examples/extensions/input-transform.ts +43 -43
  70. package/agent-docs/examples/extensions/interactive-shell.ts +209 -209
  71. package/agent-docs/examples/extensions/mac-system-theme.ts +47 -47
  72. package/agent-docs/examples/extensions/message-renderer.ts +59 -59
  73. package/agent-docs/examples/extensions/minimal-mode.ts +430 -430
  74. package/agent-docs/examples/extensions/modal-editor.ts +90 -90
  75. package/agent-docs/examples/extensions/model-status.ts +31 -31
  76. package/agent-docs/examples/extensions/notify.ts +55 -55
  77. package/agent-docs/examples/extensions/overlay-qa-tests.ts +936 -936
  78. package/agent-docs/examples/extensions/overlay-test.ts +159 -159
  79. package/agent-docs/examples/extensions/permission-gate.ts +37 -37
  80. package/agent-docs/examples/extensions/pirate.ts +47 -47
  81. package/agent-docs/examples/extensions/plan-mode/README.md +65 -65
  82. package/agent-docs/examples/extensions/plan-mode/index.ts +363 -363
  83. package/agent-docs/examples/extensions/plan-mode/utils.ts +173 -173
  84. package/agent-docs/examples/extensions/preset.ts +418 -418
  85. package/agent-docs/examples/extensions/protected-paths.ts +30 -30
  86. package/agent-docs/examples/extensions/qna.ts +122 -122
  87. package/agent-docs/examples/extensions/question.ts +278 -278
  88. package/agent-docs/examples/extensions/questionnaire.ts +440 -440
  89. package/agent-docs/examples/extensions/rainbow-editor.ts +90 -90
  90. package/agent-docs/examples/extensions/reload-runtime.ts +37 -37
  91. package/agent-docs/examples/extensions/rpc-demo.ts +124 -124
  92. package/agent-docs/examples/extensions/sandbox/index.ts +324 -324
  93. package/agent-docs/examples/extensions/sandbox/package-lock.json +92 -92
  94. package/agent-docs/examples/extensions/sandbox/package.json +19 -19
  95. package/agent-docs/examples/extensions/send-user-message.ts +97 -97
  96. package/agent-docs/examples/extensions/session-name.ts +27 -27
  97. package/agent-docs/examples/extensions/shutdown-command.ts +69 -69
  98. package/agent-docs/examples/extensions/snake.ts +343 -343
  99. package/agent-docs/examples/extensions/space-invaders.ts +566 -566
  100. package/agent-docs/examples/extensions/ssh.ts +233 -233
  101. package/agent-docs/examples/extensions/status-line.ts +40 -40
  102. package/agent-docs/examples/extensions/subagent/README.md +172 -172
  103. package/agent-docs/examples/extensions/subagent/agents/planner.md +37 -37
  104. package/agent-docs/examples/extensions/subagent/agents/reviewer.md +35 -35
  105. package/agent-docs/examples/extensions/subagent/agents/scout.md +50 -50
  106. package/agent-docs/examples/extensions/subagent/agents/worker.md +24 -24
  107. package/agent-docs/examples/extensions/subagent/agents.ts +130 -130
  108. package/agent-docs/examples/extensions/subagent/index.ts +1068 -1068
  109. package/agent-docs/examples/extensions/subagent/prompts/implement-and-review.md +10 -10
  110. package/agent-docs/examples/extensions/subagent/prompts/implement.md +10 -10
  111. package/agent-docs/examples/extensions/subagent/prompts/scout-and-plan.md +9 -9
  112. package/agent-docs/examples/extensions/summarize.ts +206 -206
  113. package/agent-docs/examples/extensions/system-prompt-header.ts +17 -17
  114. package/agent-docs/examples/extensions/timed-confirm.ts +72 -72
  115. package/agent-docs/examples/extensions/titlebar-spinner.ts +58 -58
  116. package/agent-docs/examples/extensions/todo.ts +314 -314
  117. package/agent-docs/examples/extensions/tool-override.ts +146 -146
  118. package/agent-docs/examples/extensions/tools.ts +145 -145
  119. package/agent-docs/examples/extensions/trigger-compact.ts +40 -40
  120. package/agent-docs/examples/extensions/truncated-tool.ts +194 -194
  121. package/agent-docs/examples/extensions/widget-placement.ts +17 -17
  122. package/agent-docs/examples/extensions/with-deps/index.ts +37 -37
  123. package/agent-docs/examples/extensions/with-deps/package-lock.json +31 -31
  124. package/agent-docs/examples/extensions/with-deps/package.json +22 -22
  125. package/agent-docs/examples/rpc-extension-ui.ts +654 -654
  126. package/agent-docs/examples/sdk/01-minimal.ts +22 -22
  127. package/agent-docs/examples/sdk/02-custom-model.ts +48 -48
  128. package/agent-docs/examples/sdk/03-custom-prompt.ts +55 -55
  129. package/agent-docs/examples/sdk/04-skills.ts +48 -48
  130. package/agent-docs/examples/sdk/05-tools.ts +56 -56
  131. package/agent-docs/examples/sdk/06-extensions.ts +88 -88
  132. package/agent-docs/examples/sdk/07-context-files.ts +40 -40
  133. package/agent-docs/examples/sdk/08-prompt-templates.ts +47 -47
  134. package/agent-docs/examples/sdk/09-api-keys-and-oauth.ts +48 -48
  135. package/agent-docs/examples/sdk/10-settings.ts +54 -54
  136. package/agent-docs/examples/sdk/11-sessions.ts +48 -48
  137. package/agent-docs/examples/sdk/12-full-control.ts +82 -82
  138. package/agent-docs/examples/sdk/README.md +144 -144
  139. package/agent-docs/xll-skill.md +61 -61
  140. package/agent-docs/xll-spec.md +110 -110
  141. package/dist/cli/args.js +294 -0
  142. package/dist/cli/config-selector.js +31 -0
  143. package/dist/cli/file-processor.js +79 -0
  144. package/dist/cli/list-models.js +92 -0
  145. package/dist/cli/package-commands.js +210 -0
  146. package/dist/cli/report-settings-errors.js +11 -0
  147. package/dist/cli/session-picker.js +34 -0
  148. package/dist/cli.js +1619 -1730
  149. package/dist/config.js +329 -0
  150. package/dist/core/abort.js +15 -0
  151. package/dist/core/agent-loop.js +387 -0
  152. package/dist/core/agent-session.js +1663 -0
  153. package/dist/core/agent.js +414 -0
  154. package/dist/core/auth-storage.js +485 -0
  155. package/dist/core/bash-executor.js +222 -0
  156. package/dist/core/compaction/branch-summarization.js +242 -0
  157. package/dist/core/compaction/compaction.js +610 -0
  158. package/dist/core/compaction/index.js +7 -0
  159. package/dist/core/compaction/utils.js +139 -0
  160. package/dist/core/defaults.js +6 -0
  161. package/dist/core/diagnostics.js +2 -0
  162. package/dist/core/event-bus.js +25 -0
  163. package/dist/core/exec.js +71 -0
  164. package/dist/core/export-html/ansi-to-html.js +256 -0
  165. package/dist/core/export-html/index.js +238 -0
  166. package/dist/core/export-html/session-view-model.js +342 -0
  167. package/dist/core/export-html/template.css +1110 -1110
  168. package/dist/core/export-html/template.html +76 -76
  169. package/dist/core/export-html/template.js +2002 -2002
  170. package/dist/core/export-html/tool-renderer.js +63 -0
  171. package/dist/core/export-html/vendor/highlight.min.js +7725 -7725
  172. package/dist/core/export-html/vendor/marked.min.js +1803 -1803
  173. package/dist/core/extensions/index.js +9 -0
  174. package/dist/core/extensions/loader.js +421 -0
  175. package/dist/core/extensions/runner.js +651 -0
  176. package/dist/core/extensions/types.js +35 -0
  177. package/dist/core/extensions/wrapper.js +102 -0
  178. package/dist/core/footer-data-provider.js +171 -0
  179. package/dist/core/index.js +9 -0
  180. package/dist/core/keybindings.js +155 -0
  181. package/dist/core/messages.js +133 -0
  182. package/dist/core/model-registry.js +539 -0
  183. package/dist/core/model-resolver.js +370 -0
  184. package/dist/core/package-manager.js +1485 -0
  185. package/dist/core/pi-agent-core-types.js +10 -0
  186. package/dist/core/prompt-templates.js +253 -0
  187. package/dist/core/resolve-config-value.js +59 -0
  188. package/dist/core/resource-loader.js +700 -0
  189. package/dist/core/run-agent.js +84 -0
  190. package/dist/core/sdk.js +203 -0
  191. package/dist/core/session/extension-emitter.js +36 -0
  192. package/dist/core/session/model-manager.js +111 -0
  193. package/dist/core/session/persistence-handler.js +104 -0
  194. package/dist/core/session/queue-tracker.js +91 -0
  195. package/dist/core/session/tool-registry.js +231 -0
  196. package/dist/core/session-bash.js +99 -0
  197. package/dist/core/session-compaction.js +165 -0
  198. package/dist/core/session-manager.js +1153 -0
  199. package/dist/core/session-models.js +99 -0
  200. package/dist/core/session-retry.js +155 -0
  201. package/dist/core/settings-manager.js +699 -0
  202. package/dist/core/skills.js +386 -0
  203. package/dist/core/slash-commands.js +29 -0
  204. package/dist/core/system-prompt.js +156 -0
  205. package/dist/core/theme.js +770 -0
  206. package/dist/core/timings.js +26 -0
  207. package/dist/core/tools/bash.js +286 -0
  208. package/dist/core/tools/edit-diff.js +245 -0
  209. package/dist/core/tools/edit.js +148 -0
  210. package/dist/core/tools/find.js +208 -0
  211. package/dist/core/tools/grep.js +246 -0
  212. package/dist/core/tools/index.js +67 -0
  213. package/dist/core/tools/ls.js +123 -0
  214. package/dist/core/tools/path-utils.js +81 -0
  215. package/dist/core/tools/read.js +160 -0
  216. package/dist/core/tools/truncate.js +70 -0
  217. package/dist/core/tools/write.js +82 -0
  218. package/dist/custom/agents/action.js +13 -0
  219. package/dist/custom/agents/clone.js +22 -0
  220. package/dist/custom/agents/document-reader.js +73 -0
  221. package/dist/custom/agents/general.js +49 -0
  222. package/dist/custom/agents/index.js +50 -0
  223. package/dist/custom/agents/installation.js +13 -0
  224. package/dist/custom/agents/types.js +7 -0
  225. package/dist/custom/auth/keep-alive.js +23 -0
  226. package/dist/custom/auth/refresh-timer.js +33 -0
  227. package/dist/custom/auth/shortcut-oauth.js +145 -0
  228. package/dist/custom/constants.js +32 -0
  229. package/dist/custom/context/workbook-summary.js +72 -0
  230. package/dist/custom/credits/shortcut-credits.js +29 -0
  231. package/dist/custom/cron/cron-daemon-entry.js +18 -0
  232. package/dist/custom/cron/daemon-ipc.js +131 -0
  233. package/dist/custom/cron/daemon.js +224 -0
  234. package/dist/custom/cron/jobs.js +226 -0
  235. package/dist/custom/cron/run-log.js +51 -0
  236. package/dist/custom/cron/schedule.js +72 -0
  237. package/dist/custom/cron/status-line.js +98 -0
  238. package/dist/custom/cron/store.js +87 -0
  239. package/dist/custom/cron/types.js +8 -0
  240. package/dist/custom/dev/index.js +65 -0
  241. package/dist/custom/dev/trace-export.js +57 -0
  242. package/dist/custom/excel-config.js +37 -0
  243. package/dist/custom/excel-session.js +76 -0
  244. package/dist/custom/exec-mode-command.js +27 -0
  245. package/dist/custom/install-utils.js +53 -0
  246. package/dist/custom/new-sheet/api-guidelines.js +83 -0
  247. package/dist/custom/new-sheet/api-lookup.js +69 -0
  248. package/dist/custom/new-sheet/api-overlay.js +133 -0
  249. package/dist/custom/new-sheet/api-reference-loader.js +29 -0
  250. package/dist/custom/new-sheet/cell-diff/address-utils.js +80 -0
  251. package/dist/custom/new-sheet/cell-diff/cell-categorizer.js +100 -0
  252. package/dist/custom/new-sheet/cell-diff/cell-diff-formatter.js +201 -0
  253. package/dist/custom/new-sheet/cell-diff/index.js +23 -0
  254. package/dist/custom/new-sheet/cell-diff/types.js +33 -0
  255. package/dist/custom/new-sheet/mutation-tracker.js +358 -0
  256. package/dist/custom/new-sheet/sandbox-globals.js +118 -0
  257. package/dist/custom/new-sheet/sdk-types.js +9 -0
  258. package/dist/custom/new-sheet/sheet-engine-poc.js +112 -0
  259. package/dist/custom/new-sheet/sheet-engine.js +146 -0
  260. package/dist/custom/new-sheet/sheet-exec.js +219 -0
  261. package/dist/custom/new-sheet-command.js +24 -0
  262. package/dist/custom/preflight.js +503 -0
  263. package/dist/custom/prompts/action.js +172 -0
  264. package/dist/custom/prompts/api.js +91 -0
  265. package/dist/custom/prompts/installation.js +154 -0
  266. package/dist/custom/prompts/shared.js +132 -0
  267. package/dist/custom/providers/llm-usage.js +38 -0
  268. package/dist/custom/providers/message-converter.js +74 -0
  269. package/dist/custom/providers/provider-ids.js +10 -0
  270. package/dist/custom/providers/register-openai-codex-provider.js +27 -0
  271. package/dist/custom/providers/register-shortcut-provider.js +55 -0
  272. package/dist/custom/providers/shortcut-invoke.js +120 -0
  273. package/dist/custom/providers/shortcut-stream.js +255 -0
  274. package/dist/custom/providers/sse-protocol.js +38 -0
  275. package/dist/custom/sandbox/index.js +13 -0
  276. package/dist/custom/sandbox/lib/bwrap.js +93 -0
  277. package/dist/custom/sandbox/lib/index.js +20 -0
  278. package/dist/custom/sandbox/lib/manager.js +87 -0
  279. package/dist/custom/sandbox/lib/network/domain-filter.js +29 -0
  280. package/dist/custom/sandbox/lib/network/http-proxy.js +172 -0
  281. package/dist/custom/sandbox/lib/network/index.js +5 -0
  282. package/dist/custom/sandbox/lib/network/proxy.js +145 -0
  283. package/dist/custom/sandbox/lib/network/socks-proxy.js +269 -0
  284. package/dist/custom/sandbox/lib/paths.js +21 -0
  285. package/dist/custom/sandbox/lib/resolve.js +320 -0
  286. package/dist/custom/sandbox/lib/smoke.js +87 -0
  287. package/dist/custom/sandbox/lib/types.js +9 -0
  288. package/dist/custom/sandbox/lib/wrap-command.js +110 -0
  289. package/dist/custom/sandbox/lib/wsl-detect.js +65 -0
  290. package/dist/custom/sandbox/lib/wsl-setup.js +209 -0
  291. package/dist/custom/sandbox/sandbox-bash-tool.js +89 -0
  292. package/dist/custom/sandbox/sandbox-command.js +177 -0
  293. package/dist/custom/sandbox/sandbox-executor.js +105 -0
  294. package/dist/custom/sandbox/sandbox-manager.js +71 -0
  295. package/dist/custom/sandbox/sandbox-prompt.js +80 -0
  296. package/dist/custom/sandbox/tests/test-helpers.js +24 -0
  297. package/dist/custom/sheet-api/api-guidelines.js +83 -0
  298. package/dist/custom/sheet-api/api-lookup.js +69 -0
  299. package/dist/custom/sheet-api/api-overlay.js +133 -0
  300. package/dist/custom/sheet-api/api-reference-loader.js +29 -0
  301. package/dist/custom/sync-xll.js +164 -0
  302. package/dist/custom/tools/approval.js +144 -0
  303. package/dist/custom/tools/bash-approval.js +36 -0
  304. package/dist/custom/tools/cron.js +413 -0
  305. package/dist/custom/tools/excel-approval.js +139 -0
  306. package/dist/custom/tools/excel-exec.js +209 -0
  307. package/dist/custom/tools/excel-range.js +50 -0
  308. package/dist/custom/tools/llm-analysis.js +290 -0
  309. package/dist/custom/tools/render-helpers.js +38 -0
  310. package/dist/custom/tools/switch-mode.js +94 -0
  311. package/dist/custom/tools/task/index.js +8 -0
  312. package/dist/custom/tools/task/render.js +354 -0
  313. package/dist/custom/tools/task/subprocess.js +320 -0
  314. package/dist/custom/tools/task/task.js +205 -0
  315. package/dist/custom/tools/todo-list.js +199 -0
  316. package/dist/custom/tools/tool-approval.js +57 -0
  317. package/dist/custom/tracing/session-upload.js +95 -0
  318. package/dist/custom/uninstall.js +121 -0
  319. package/dist/index.js +45 -0
  320. package/dist/main.js +740 -0
  321. package/dist/migrations.js +265 -0
  322. package/dist/modes/index.js +8 -0
  323. package/dist/modes/interactive/components/armin.js +337 -0
  324. package/dist/modes/interactive/components/assistant-message.js +94 -0
  325. package/dist/modes/interactive/components/bash-execution.js +167 -0
  326. package/dist/modes/interactive/components/bordered-loader.js +51 -0
  327. package/dist/modes/interactive/components/branch-summary-message.js +45 -0
  328. package/dist/modes/interactive/components/compaction-summary-message.js +46 -0
  329. package/dist/modes/interactive/components/config-selector.js +488 -0
  330. package/dist/modes/interactive/components/countdown-timer.js +33 -0
  331. package/dist/modes/interactive/components/custom-editor.js +95 -0
  332. package/dist/modes/interactive/components/custom-message.js +81 -0
  333. package/dist/modes/interactive/components/daxnuts.js +140 -0
  334. package/dist/modes/interactive/components/diff.js +133 -0
  335. package/dist/modes/interactive/components/dynamic-border.js +21 -0
  336. package/dist/modes/interactive/components/extension-editor.js +105 -0
  337. package/dist/modes/interactive/components/extension-input.js +61 -0
  338. package/dist/modes/interactive/components/extension-selector.js +78 -0
  339. package/dist/modes/interactive/components/footer.js +324 -0
  340. package/dist/modes/interactive/components/index.js +33 -0
  341. package/dist/modes/interactive/components/keybinding-hints.js +61 -0
  342. package/dist/modes/interactive/components/layout.js +64 -0
  343. package/dist/modes/interactive/components/login-dialog.js +148 -0
  344. package/dist/modes/interactive/components/model-selector.js +237 -0
  345. package/dist/modes/interactive/components/oauth-selector.js +111 -0
  346. package/dist/modes/interactive/components/session-selector-search.js +157 -0
  347. package/dist/modes/interactive/components/session-selector.js +860 -0
  348. package/dist/modes/interactive/components/settings-selector.js +144 -0
  349. package/dist/modes/interactive/components/show-images-selector.js +35 -0
  350. package/dist/modes/interactive/components/skill-invocation-message.js +48 -0
  351. package/dist/modes/interactive/components/theme-selector.js +47 -0
  352. package/dist/modes/interactive/components/thinking-selector.js +47 -0
  353. package/dist/modes/interactive/components/tool-execution.js +789 -0
  354. package/dist/modes/interactive/components/tool-group.js +106 -0
  355. package/dist/modes/interactive/components/tree-selector.js +962 -0
  356. package/dist/modes/interactive/components/user-message-selector.js +115 -0
  357. package/dist/modes/interactive/components/user-message.js +48 -0
  358. package/dist/modes/interactive/components/visual-truncate.js +33 -0
  359. package/dist/modes/interactive/file-attachments.js +130 -0
  360. package/dist/modes/interactive/interactive-mode.js +3687 -0
  361. package/dist/modes/interactive/theme/dark.json +87 -85
  362. package/dist/modes/interactive/theme/light.json +87 -85
  363. package/dist/modes/interactive/theme/theme-schema.json +335 -335
  364. package/dist/modes/interactive/theme/theme.js +177 -0
  365. package/dist/modes/print-mode.js +148 -0
  366. package/dist/modes/rpc/rpc-client.js +387 -0
  367. package/dist/modes/rpc/rpc-mode.js +508 -0
  368. package/dist/modes/rpc/rpc-types.js +8 -0
  369. package/dist/subagent-entry.js +153 -0
  370. package/dist/tool-names.js +34 -0
  371. package/dist/tui/autocomplete.js +584 -0
  372. package/dist/tui/components/box.js +108 -0
  373. package/dist/tui/components/cancellable-loader.js +35 -0
  374. package/dist/tui/components/editor.js +1708 -0
  375. package/dist/tui/components/image.js +73 -0
  376. package/dist/tui/components/input.js +433 -0
  377. package/dist/tui/components/loader.js +49 -0
  378. package/dist/tui/components/markdown.js +624 -0
  379. package/dist/tui/components/select-list.js +158 -0
  380. package/dist/tui/components/settings-list.js +200 -0
  381. package/dist/tui/components/spacer.js +23 -0
  382. package/dist/tui/components/text.js +92 -0
  383. package/dist/tui/components/truncated-text.js +51 -0
  384. package/dist/tui/editor-component.js +2 -0
  385. package/dist/tui/fuzzy.js +105 -0
  386. package/dist/tui/get-east-asian-width/index.js +28 -0
  387. package/dist/tui/get-east-asian-width/lookup.js +406 -0
  388. package/dist/tui/index.js +64 -0
  389. package/dist/tui/keybindings.js +111 -0
  390. package/dist/tui/keys.js +947 -0
  391. package/dist/tui/kill-ring.js +42 -0
  392. package/dist/tui/stdin-buffer.js +312 -0
  393. package/dist/tui/terminal-image.js +274 -0
  394. package/dist/tui/terminal.js +242 -0
  395. package/dist/tui/tui/autocomplete.js +584 -584
  396. package/dist/tui/tui/components/box.js +108 -108
  397. package/dist/tui/tui/components/cancellable-loader.js +35 -35
  398. package/dist/tui/tui/components/editor.js +1708 -1708
  399. package/dist/tui/tui/components/image.js +73 -73
  400. package/dist/tui/tui/components/input.js +433 -433
  401. package/dist/tui/tui/components/loader.js +49 -49
  402. package/dist/tui/tui/components/markdown.js +624 -624
  403. package/dist/tui/tui/components/select-list.js +158 -158
  404. package/dist/tui/tui/components/settings-list.js +200 -200
  405. package/dist/tui/tui/components/spacer.js +23 -23
  406. package/dist/tui/tui/components/text.js +92 -92
  407. package/dist/tui/tui/components/truncated-text.js +51 -51
  408. package/dist/tui/tui/editor-component.js +2 -2
  409. package/dist/tui/tui/fuzzy.js +105 -105
  410. package/dist/tui/tui/get-east-asian-width/index.js +28 -28
  411. package/dist/tui/tui/get-east-asian-width/lookup.js +406 -406
  412. package/dist/tui/tui/index.js +64 -64
  413. package/dist/tui/tui/keybindings.js +111 -111
  414. package/dist/tui/tui/keys.js +947 -947
  415. package/dist/tui/tui/kill-ring.js +42 -42
  416. package/dist/tui/tui/stdin-buffer.js +312 -312
  417. package/dist/tui/tui/terminal-image.js +274 -274
  418. package/dist/tui/tui/terminal.js +242 -242
  419. package/dist/tui/tui/tui.js +943 -943
  420. package/dist/tui/tui/undo-stack.js +25 -25
  421. package/dist/tui/tui/utils.js +773 -773
  422. package/dist/tui/tui.js +943 -0
  423. package/dist/tui/undo-stack.js +25 -0
  424. package/dist/tui/utils.js +773 -0
  425. package/dist/utils/changelog.js +87 -0
  426. package/dist/utils/clipboard-image.js +208 -0
  427. package/dist/utils/clipboard-native.js +14 -0
  428. package/dist/utils/clipboard.js +67 -0
  429. package/dist/utils/frontmatter.js +26 -0
  430. package/dist/utils/git.js +166 -0
  431. package/dist/utils/image-convert.js +35 -0
  432. package/dist/utils/image-resize.js +183 -0
  433. package/dist/utils/log.js +51 -0
  434. package/dist/utils/mime.js +26 -0
  435. package/dist/utils/photon.js +121 -0
  436. package/dist/utils/shell.js +226 -0
  437. package/dist/utils/sleep.js +17 -0
  438. package/dist/utils/tools-manager.js +259 -0
  439. package/package.json +8 -7
  440. package/skills/advanced-com-api/SKILL.md +74 -74
  441. package/skills/advanced-com-api/excel-type-library.py +30935 -30935
  442. package/skills/advanced-com-api/office-type-library.py +11220 -11220
  443. package/skills/integrations/SKILL.md +138 -138
  444. package/skills/integrations/alphasense.md +457 -457
  445. package/skills/integrations/bloomberg.md +803 -803
  446. package/skills/integrations/calcbench.md +315 -315
  447. package/skills/integrations/capiq.md +848 -848
  448. package/skills/integrations/dynamics-365-finance.md +354 -354
  449. package/skills/integrations/earnings_transcripts.md +387 -387
  450. package/skills/integrations/factset.md +758 -758
  451. package/skills/integrations/ice-fixed-income.md +344 -344
  452. package/skills/integrations/moodys-analytics.md +313 -313
  453. package/skills/integrations/morningstar.md +433 -433
  454. package/skills/integrations/nasdaq-data-link.md +249 -249
  455. package/skills/integrations/pitchbook.md +413 -413
  456. package/skills/integrations/preqin.md +422 -422
  457. package/skills/integrations/quickbooks.md +289 -289
  458. package/skills/integrations/quickfs.md +314 -314
  459. package/skills/integrations/refinitiv.md +473 -473
  460. package/skills/integrations/sage-intacct.md +401 -401
  461. package/skills/integrations/visible-alpha.md +320 -320
  462. package/skills/integrations/xero.md +393 -393
  463. package/skills/integrations/ycharts.md +306 -306
  464. package/skills/pdf-creation/SKILL.md +93 -93
  465. package/skills/powerpoint-creation/SKILL.md +110 -110
  466. package/skills/sec-edgar/SKILL.md +146 -146
  467. package/skills/sec-edgar/sec_to_pdf.py +107 -107
  468. package/xll/ShortcutXL.xll +0 -0
  469. package/xll/modules/debug_render.py +289 -0
  470. package/xll/modules/shortcut_xl/__init__.py +54 -54
  471. package/xll/modules/shortcut_xl/_com.py +108 -108
  472. package/xll/modules/shortcut_xl/_diff_highlight.py +231 -231
  473. package/xll/modules/shortcut_xl/_exec_entry.py +239 -239
  474. package/xll/modules/shortcut_xl/_log.py +12 -12
  475. package/xll/modules/shortcut_xl/_managed.py +229 -193
  476. package/xll/modules/shortcut_xl/_registry.py +49 -49
  477. package/xll/modules/shortcut_xl/_sandbox.py +5 -5
  478. package/xll/modules/shortcut_xl/_threading.py +177 -177
  479. package/xll/modules/shortcut_xl/_tracking.py +310 -310
  480. package/xll/modules/shortcut_xl/api/__init__.py +1 -1
  481. package/xll/modules/shortcut_xl/api/categorize.py +217 -217
  482. package/xll/modules/shortcut_xl/api/format.py +246 -246
  483. package/xll/modules/shortcut_xl/api/named_ranges.py +50 -50
  484. package/xll/modules/shortcut_xl/api/picture.py +61 -61
  485. package/xll/modules/shortcut_xl/api/range_formatter.py +440 -440
  486. package/xll/modules/shortcut_xl/api/style.py +93 -93
  487. package/xll/modules/shortcut_xl/api/utils/com_utils.py +47 -47
  488. package/xll/modules/shortcut_xl/api/utils/helpers.py +171 -171
  489. package/xll/modules/shortcut_xl/api/utils/numerical.py +31 -31
  490. package/xll/modules/shortcut_xl/api/utils/ranges.py +98 -98
  491. package/xll/modules/shortcut_xl/api/utils/style_utils.py +28 -28
  492. package/xll/modules/shortcut_xl/api/workbook.py +268 -268
  493. package/xll/modules/shortcut_xl/api/worksheet.py +468 -468
  494. package/xll/modules/shortcut_xl/api-reference.py +195 -195
  495. package/xll/python/LICENSE.txt +702 -0
  496. package/xll/python/Lib/site-packages/__pycache__/typing_extensions.cpython-312.pyc +0 -0
  497. package/xll/python/Lib/site-packages/anyio/__init__.py +111 -0
  498. package/xll/python/Lib/site-packages/anyio/__pycache__/__init__.cpython-312.pyc +0 -0
  499. package/xll/python/Lib/site-packages/anyio/__pycache__/from_thread.cpython-312.pyc +0 -0
  500. package/xll/python/Lib/site-packages/anyio/__pycache__/functools.cpython-312.pyc +0 -0
  501. package/xll/python/Lib/site-packages/anyio/__pycache__/lowlevel.cpython-312.pyc +0 -0
  502. package/xll/python/Lib/site-packages/anyio/__pycache__/pytest_plugin.cpython-312.pyc +0 -0
  503. package/xll/python/Lib/site-packages/anyio/__pycache__/to_interpreter.cpython-312.pyc +0 -0
  504. package/xll/python/Lib/site-packages/anyio/__pycache__/to_process.cpython-312.pyc +0 -0
  505. package/xll/python/Lib/site-packages/anyio/__pycache__/to_thread.cpython-312.pyc +0 -0
  506. package/xll/python/Lib/site-packages/anyio/_backends/__init__.py +0 -0
  507. package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/__init__.cpython-312.pyc +0 -0
  508. package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-312.pyc +0 -0
  509. package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/_trio.cpython-312.pyc +0 -0
  510. package/xll/python/Lib/site-packages/anyio/_backends/_asyncio.py +2996 -0
  511. package/xll/python/Lib/site-packages/anyio/_backends/_trio.py +1343 -0
  512. package/xll/python/Lib/site-packages/anyio/_core/__init__.py +0 -0
  513. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/__init__.cpython-312.pyc +0 -0
  514. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-312.pyc +0 -0
  515. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_contextmanagers.cpython-312.pyc +0 -0
  516. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_eventloop.cpython-312.pyc +0 -0
  517. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_exceptions.cpython-312.pyc +0 -0
  518. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_fileio.cpython-312.pyc +0 -0
  519. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_resources.cpython-312.pyc +0 -0
  520. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_signals.cpython-312.pyc +0 -0
  521. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_sockets.cpython-312.pyc +0 -0
  522. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_streams.cpython-312.pyc +0 -0
  523. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-312.pyc +0 -0
  524. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_synchronization.cpython-312.pyc +0 -0
  525. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_tasks.cpython-312.pyc +0 -0
  526. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_tempfile.cpython-312.pyc +0 -0
  527. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_testing.cpython-312.pyc +0 -0
  528. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_typedattr.cpython-312.pyc +0 -0
  529. package/xll/python/Lib/site-packages/anyio/_core/_asyncio_selector_thread.py +167 -0
  530. package/xll/python/Lib/site-packages/anyio/_core/_contextmanagers.py +200 -0
  531. package/xll/python/Lib/site-packages/anyio/_core/_eventloop.py +234 -0
  532. package/xll/python/Lib/site-packages/anyio/_core/_exceptions.py +156 -0
  533. package/xll/python/Lib/site-packages/anyio/_core/_fileio.py +799 -0
  534. package/xll/python/Lib/site-packages/anyio/_core/_resources.py +18 -0
  535. package/xll/python/Lib/site-packages/anyio/_core/_signals.py +29 -0
  536. package/xll/python/Lib/site-packages/anyio/_core/_sockets.py +1003 -0
  537. package/xll/python/Lib/site-packages/anyio/_core/_streams.py +52 -0
  538. package/xll/python/Lib/site-packages/anyio/_core/_subprocesses.py +196 -0
  539. package/xll/python/Lib/site-packages/anyio/_core/_synchronization.py +757 -0
  540. package/xll/python/Lib/site-packages/anyio/_core/_tasks.py +173 -0
  541. package/xll/python/Lib/site-packages/anyio/_core/_tempfile.py +613 -0
  542. package/xll/python/Lib/site-packages/anyio/_core/_testing.py +82 -0
  543. package/xll/python/Lib/site-packages/anyio/_core/_typedattr.py +81 -0
  544. package/xll/python/Lib/site-packages/anyio/abc/__init__.py +58 -0
  545. package/xll/python/Lib/site-packages/anyio/abc/__pycache__/__init__.cpython-312.pyc +0 -0
  546. package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_eventloop.cpython-312.pyc +0 -0
  547. package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_resources.cpython-312.pyc +0 -0
  548. package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_sockets.cpython-312.pyc +0 -0
  549. package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_streams.cpython-312.pyc +0 -0
  550. package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-312.pyc +0 -0
  551. package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_tasks.cpython-312.pyc +0 -0
  552. package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_testing.cpython-312.pyc +0 -0
  553. package/xll/python/Lib/site-packages/anyio/abc/_eventloop.py +409 -0
  554. package/xll/python/Lib/site-packages/anyio/abc/_resources.py +33 -0
  555. package/xll/python/Lib/site-packages/anyio/abc/_sockets.py +399 -0
  556. package/xll/python/Lib/site-packages/anyio/abc/_streams.py +233 -0
  557. package/xll/python/Lib/site-packages/anyio/abc/_subprocesses.py +79 -0
  558. package/xll/python/Lib/site-packages/anyio/abc/_tasks.py +117 -0
  559. package/xll/python/Lib/site-packages/anyio/abc/_testing.py +65 -0
  560. package/xll/python/Lib/site-packages/anyio/from_thread.py +578 -0
  561. package/xll/python/Lib/site-packages/anyio/functools.py +409 -0
  562. package/xll/python/Lib/site-packages/anyio/lowlevel.py +196 -0
  563. package/xll/python/Lib/site-packages/anyio/py.typed +0 -0
  564. package/xll/python/Lib/site-packages/anyio/pytest_plugin.py +363 -0
  565. package/xll/python/Lib/site-packages/anyio/streams/__init__.py +0 -0
  566. package/xll/python/Lib/site-packages/anyio/streams/__pycache__/__init__.cpython-312.pyc +0 -0
  567. package/xll/python/Lib/site-packages/anyio/streams/__pycache__/buffered.cpython-312.pyc +0 -0
  568. package/xll/python/Lib/site-packages/anyio/streams/__pycache__/file.cpython-312.pyc +0 -0
  569. package/xll/python/Lib/site-packages/anyio/streams/__pycache__/memory.cpython-312.pyc +0 -0
  570. package/xll/python/Lib/site-packages/anyio/streams/__pycache__/stapled.cpython-312.pyc +0 -0
  571. package/xll/python/Lib/site-packages/anyio/streams/__pycache__/text.cpython-312.pyc +0 -0
  572. package/xll/python/Lib/site-packages/anyio/streams/__pycache__/tls.cpython-312.pyc +0 -0
  573. package/xll/python/Lib/site-packages/anyio/streams/buffered.py +188 -0
  574. package/xll/python/Lib/site-packages/anyio/streams/file.py +154 -0
  575. package/xll/python/Lib/site-packages/anyio/streams/memory.py +325 -0
  576. package/xll/python/Lib/site-packages/anyio/streams/stapled.py +147 -0
  577. package/xll/python/Lib/site-packages/anyio/streams/text.py +176 -0
  578. package/xll/python/Lib/site-packages/anyio/streams/tls.py +421 -0
  579. package/xll/python/Lib/site-packages/anyio/to_interpreter.py +246 -0
  580. package/xll/python/Lib/site-packages/anyio/to_process.py +266 -0
  581. package/xll/python/Lib/site-packages/anyio/to_thread.py +78 -0
  582. package/xll/python/Lib/site-packages/anyio-4.13.0.dist-info/INSTALLER +1 -0
  583. package/xll/python/Lib/site-packages/anyio-4.13.0.dist-info/METADATA +105 -0
  584. package/xll/python/Lib/site-packages/anyio-4.13.0.dist-info/RECORD +92 -0
  585. package/xll/python/Lib/site-packages/anyio-4.13.0.dist-info/WHEEL +5 -0
  586. package/xll/python/Lib/site-packages/anyio-4.13.0.dist-info/entry_points.txt +2 -0
  587. package/xll/python/Lib/site-packages/anyio-4.13.0.dist-info/licenses/LICENSE +20 -0
  588. package/xll/python/Lib/site-packages/anyio-4.13.0.dist-info/top_level.txt +1 -0
  589. package/xll/python/Lib/site-packages/certifi/__init__.py +4 -0
  590. package/xll/python/Lib/site-packages/certifi/__main__.py +12 -0
  591. package/xll/python/Lib/site-packages/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
  592. package/xll/python/Lib/site-packages/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
  593. package/xll/python/Lib/site-packages/certifi/__pycache__/core.cpython-312.pyc +0 -0
  594. package/xll/python/Lib/site-packages/certifi/cacert.pem +4494 -0
  595. package/xll/python/Lib/site-packages/certifi/core.py +83 -0
  596. package/xll/python/Lib/site-packages/certifi/py.typed +0 -0
  597. package/xll/python/Lib/site-packages/certifi-2026.2.25.dist-info/INSTALLER +1 -0
  598. package/xll/python/Lib/site-packages/certifi-2026.2.25.dist-info/METADATA +78 -0
  599. package/xll/python/Lib/site-packages/certifi-2026.2.25.dist-info/RECORD +14 -0
  600. package/xll/python/Lib/site-packages/certifi-2026.2.25.dist-info/WHEEL +5 -0
  601. package/xll/python/Lib/site-packages/certifi-2026.2.25.dist-info/licenses/LICENSE +20 -0
  602. package/xll/python/Lib/site-packages/certifi-2026.2.25.dist-info/top_level.txt +1 -0
  603. package/xll/python/Lib/site-packages/et_xmlfile/__init__.py +8 -0
  604. package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/__init__.cpython-312.pyc +0 -0
  605. package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/incremental_tree.cpython-312.pyc +0 -0
  606. package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/xmlfile.cpython-312.pyc +0 -0
  607. package/xll/python/Lib/site-packages/et_xmlfile/incremental_tree.py +917 -0
  608. package/xll/python/Lib/site-packages/et_xmlfile/xmlfile.py +158 -0
  609. package/xll/python/Lib/site-packages/et_xmlfile-2.0.0.dist-info/AUTHORS.txt +5 -0
  610. package/xll/python/Lib/site-packages/et_xmlfile-2.0.0.dist-info/INSTALLER +1 -0
  611. package/xll/python/Lib/site-packages/et_xmlfile-2.0.0.dist-info/LICENCE.python +298 -0
  612. package/xll/python/Lib/site-packages/et_xmlfile-2.0.0.dist-info/LICENCE.rst +23 -0
  613. package/xll/python/Lib/site-packages/et_xmlfile-2.0.0.dist-info/METADATA +51 -0
  614. package/xll/python/Lib/site-packages/et_xmlfile-2.0.0.dist-info/RECORD +14 -0
  615. package/xll/python/Lib/site-packages/et_xmlfile-2.0.0.dist-info/WHEEL +5 -0
  616. package/xll/python/Lib/site-packages/et_xmlfile-2.0.0.dist-info/top_level.txt +1 -0
  617. package/xll/python/Lib/site-packages/h11/__init__.py +62 -0
  618. package/xll/python/Lib/site-packages/h11/__pycache__/__init__.cpython-312.pyc +0 -0
  619. package/xll/python/Lib/site-packages/h11/__pycache__/_abnf.cpython-312.pyc +0 -0
  620. package/xll/python/Lib/site-packages/h11/__pycache__/_connection.cpython-312.pyc +0 -0
  621. package/xll/python/Lib/site-packages/h11/__pycache__/_events.cpython-312.pyc +0 -0
  622. package/xll/python/Lib/site-packages/h11/__pycache__/_headers.cpython-312.pyc +0 -0
  623. package/xll/python/Lib/site-packages/h11/__pycache__/_readers.cpython-312.pyc +0 -0
  624. package/xll/python/Lib/site-packages/h11/__pycache__/_receivebuffer.cpython-312.pyc +0 -0
  625. package/xll/python/Lib/site-packages/h11/__pycache__/_state.cpython-312.pyc +0 -0
  626. package/xll/python/Lib/site-packages/h11/__pycache__/_util.cpython-312.pyc +0 -0
  627. package/xll/python/Lib/site-packages/h11/__pycache__/_version.cpython-312.pyc +0 -0
  628. package/xll/python/Lib/site-packages/h11/__pycache__/_writers.cpython-312.pyc +0 -0
  629. package/xll/python/Lib/site-packages/h11/_abnf.py +132 -0
  630. package/xll/python/Lib/site-packages/h11/_connection.py +659 -0
  631. package/xll/python/Lib/site-packages/h11/_events.py +369 -0
  632. package/xll/python/Lib/site-packages/h11/_headers.py +282 -0
  633. package/xll/python/Lib/site-packages/h11/_readers.py +250 -0
  634. package/xll/python/Lib/site-packages/h11/_receivebuffer.py +153 -0
  635. package/xll/python/Lib/site-packages/h11/_state.py +365 -0
  636. package/xll/python/Lib/site-packages/h11/_util.py +135 -0
  637. package/xll/python/Lib/site-packages/h11/_version.py +16 -0
  638. package/xll/python/Lib/site-packages/h11/_writers.py +145 -0
  639. package/xll/python/Lib/site-packages/h11/py.typed +1 -0
  640. package/xll/python/Lib/site-packages/h11-0.16.0.dist-info/INSTALLER +1 -0
  641. package/xll/python/Lib/site-packages/h11-0.16.0.dist-info/METADATA +202 -0
  642. package/xll/python/Lib/site-packages/h11-0.16.0.dist-info/RECORD +29 -0
  643. package/xll/python/Lib/site-packages/h11-0.16.0.dist-info/WHEEL +5 -0
  644. package/xll/python/Lib/site-packages/h11-0.16.0.dist-info/licenses/LICENSE.txt +22 -0
  645. package/xll/python/Lib/site-packages/h11-0.16.0.dist-info/top_level.txt +1 -0
  646. package/xll/python/Lib/site-packages/httpcore/__init__.py +141 -0
  647. package/xll/python/Lib/site-packages/httpcore/__pycache__/__init__.cpython-312.pyc +0 -0
  648. package/xll/python/Lib/site-packages/httpcore/__pycache__/_api.cpython-312.pyc +0 -0
  649. package/xll/python/Lib/site-packages/httpcore/__pycache__/_exceptions.cpython-312.pyc +0 -0
  650. package/xll/python/Lib/site-packages/httpcore/__pycache__/_models.cpython-312.pyc +0 -0
  651. package/xll/python/Lib/site-packages/httpcore/__pycache__/_ssl.cpython-312.pyc +0 -0
  652. package/xll/python/Lib/site-packages/httpcore/__pycache__/_synchronization.cpython-312.pyc +0 -0
  653. package/xll/python/Lib/site-packages/httpcore/__pycache__/_trace.cpython-312.pyc +0 -0
  654. package/xll/python/Lib/site-packages/httpcore/__pycache__/_utils.cpython-312.pyc +0 -0
  655. package/xll/python/Lib/site-packages/httpcore/_api.py +94 -0
  656. package/xll/python/Lib/site-packages/httpcore/_async/__init__.py +39 -0
  657. package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/__init__.cpython-312.pyc +0 -0
  658. package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/connection.cpython-312.pyc +0 -0
  659. package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-312.pyc +0 -0
  660. package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http11.cpython-312.pyc +0 -0
  661. package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http2.cpython-312.pyc +0 -0
  662. package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http_proxy.cpython-312.pyc +0 -0
  663. package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/interfaces.cpython-312.pyc +0 -0
  664. package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/socks_proxy.cpython-312.pyc +0 -0
  665. package/xll/python/Lib/site-packages/httpcore/_async/connection.py +222 -0
  666. package/xll/python/Lib/site-packages/httpcore/_async/connection_pool.py +420 -0
  667. package/xll/python/Lib/site-packages/httpcore/_async/http11.py +379 -0
  668. package/xll/python/Lib/site-packages/httpcore/_async/http2.py +592 -0
  669. package/xll/python/Lib/site-packages/httpcore/_async/http_proxy.py +367 -0
  670. package/xll/python/Lib/site-packages/httpcore/_async/interfaces.py +137 -0
  671. package/xll/python/Lib/site-packages/httpcore/_async/socks_proxy.py +341 -0
  672. package/xll/python/Lib/site-packages/httpcore/_backends/__init__.py +0 -0
  673. package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/__init__.cpython-312.pyc +0 -0
  674. package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/anyio.cpython-312.pyc +0 -0
  675. package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/auto.cpython-312.pyc +0 -0
  676. package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/base.cpython-312.pyc +0 -0
  677. package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/mock.cpython-312.pyc +0 -0
  678. package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/sync.cpython-312.pyc +0 -0
  679. package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/trio.cpython-312.pyc +0 -0
  680. package/xll/python/Lib/site-packages/httpcore/_backends/anyio.py +146 -0
  681. package/xll/python/Lib/site-packages/httpcore/_backends/auto.py +52 -0
  682. package/xll/python/Lib/site-packages/httpcore/_backends/base.py +101 -0
  683. package/xll/python/Lib/site-packages/httpcore/_backends/mock.py +143 -0
  684. package/xll/python/Lib/site-packages/httpcore/_backends/sync.py +241 -0
  685. package/xll/python/Lib/site-packages/httpcore/_backends/trio.py +159 -0
  686. package/xll/python/Lib/site-packages/httpcore/_exceptions.py +81 -0
  687. package/xll/python/Lib/site-packages/httpcore/_models.py +516 -0
  688. package/xll/python/Lib/site-packages/httpcore/_ssl.py +9 -0
  689. package/xll/python/Lib/site-packages/httpcore/_sync/__init__.py +39 -0
  690. package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/__init__.cpython-312.pyc +0 -0
  691. package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/connection.cpython-312.pyc +0 -0
  692. package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/connection_pool.cpython-312.pyc +0 -0
  693. package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http11.cpython-312.pyc +0 -0
  694. package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http2.cpython-312.pyc +0 -0
  695. package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http_proxy.cpython-312.pyc +0 -0
  696. package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/interfaces.cpython-312.pyc +0 -0
  697. package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/socks_proxy.cpython-312.pyc +0 -0
  698. package/xll/python/Lib/site-packages/httpcore/_sync/connection.py +222 -0
  699. package/xll/python/Lib/site-packages/httpcore/_sync/connection_pool.py +420 -0
  700. package/xll/python/Lib/site-packages/httpcore/_sync/http11.py +379 -0
  701. package/xll/python/Lib/site-packages/httpcore/_sync/http2.py +592 -0
  702. package/xll/python/Lib/site-packages/httpcore/_sync/http_proxy.py +367 -0
  703. package/xll/python/Lib/site-packages/httpcore/_sync/interfaces.py +137 -0
  704. package/xll/python/Lib/site-packages/httpcore/_sync/socks_proxy.py +341 -0
  705. package/xll/python/Lib/site-packages/httpcore/_synchronization.py +318 -0
  706. package/xll/python/Lib/site-packages/httpcore/_trace.py +107 -0
  707. package/xll/python/Lib/site-packages/httpcore/_utils.py +37 -0
  708. package/xll/python/Lib/site-packages/httpcore/py.typed +0 -0
  709. package/xll/python/Lib/site-packages/httpcore-1.0.9.dist-info/INSTALLER +1 -0
  710. package/xll/python/Lib/site-packages/httpcore-1.0.9.dist-info/METADATA +625 -0
  711. package/xll/python/Lib/site-packages/httpcore-1.0.9.dist-info/RECORD +68 -0
  712. package/xll/python/Lib/site-packages/httpcore-1.0.9.dist-info/WHEEL +4 -0
  713. package/xll/python/Lib/site-packages/httpcore-1.0.9.dist-info/licenses/LICENSE.md +27 -0
  714. package/xll/python/Lib/site-packages/httpx/__init__.py +105 -0
  715. package/xll/python/Lib/site-packages/httpx/__pycache__/__init__.cpython-312.pyc +0 -0
  716. package/xll/python/Lib/site-packages/httpx/__pycache__/__version__.cpython-312.pyc +0 -0
  717. package/xll/python/Lib/site-packages/httpx/__pycache__/_api.cpython-312.pyc +0 -0
  718. package/xll/python/Lib/site-packages/httpx/__pycache__/_auth.cpython-312.pyc +0 -0
  719. package/xll/python/Lib/site-packages/httpx/__pycache__/_client.cpython-312.pyc +0 -0
  720. package/xll/python/Lib/site-packages/httpx/__pycache__/_config.cpython-312.pyc +0 -0
  721. package/xll/python/Lib/site-packages/httpx/__pycache__/_content.cpython-312.pyc +0 -0
  722. package/xll/python/Lib/site-packages/httpx/__pycache__/_decoders.cpython-312.pyc +0 -0
  723. package/xll/python/Lib/site-packages/httpx/__pycache__/_exceptions.cpython-312.pyc +0 -0
  724. package/xll/python/Lib/site-packages/httpx/__pycache__/_main.cpython-312.pyc +0 -0
  725. package/xll/python/Lib/site-packages/httpx/__pycache__/_models.cpython-312.pyc +0 -0
  726. package/xll/python/Lib/site-packages/httpx/__pycache__/_multipart.cpython-312.pyc +0 -0
  727. package/xll/python/Lib/site-packages/httpx/__pycache__/_status_codes.cpython-312.pyc +0 -0
  728. package/xll/python/Lib/site-packages/httpx/__pycache__/_types.cpython-312.pyc +0 -0
  729. package/xll/python/Lib/site-packages/httpx/__pycache__/_urlparse.cpython-312.pyc +0 -0
  730. package/xll/python/Lib/site-packages/httpx/__pycache__/_urls.cpython-312.pyc +0 -0
  731. package/xll/python/Lib/site-packages/httpx/__pycache__/_utils.cpython-312.pyc +0 -0
  732. package/xll/python/Lib/site-packages/httpx/__version__.py +3 -0
  733. package/xll/python/Lib/site-packages/httpx/_api.py +438 -0
  734. package/xll/python/Lib/site-packages/httpx/_auth.py +348 -0
  735. package/xll/python/Lib/site-packages/httpx/_client.py +2019 -0
  736. package/xll/python/Lib/site-packages/httpx/_config.py +248 -0
  737. package/xll/python/Lib/site-packages/httpx/_content.py +240 -0
  738. package/xll/python/Lib/site-packages/httpx/_decoders.py +393 -0
  739. package/xll/python/Lib/site-packages/httpx/_exceptions.py +379 -0
  740. package/xll/python/Lib/site-packages/httpx/_main.py +506 -0
  741. package/xll/python/Lib/site-packages/httpx/_models.py +1277 -0
  742. package/xll/python/Lib/site-packages/httpx/_multipart.py +300 -0
  743. package/xll/python/Lib/site-packages/httpx/_status_codes.py +162 -0
  744. package/xll/python/Lib/site-packages/httpx/_transports/__init__.py +15 -0
  745. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/__init__.cpython-312.pyc +0 -0
  746. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/asgi.cpython-312.pyc +0 -0
  747. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/base.cpython-312.pyc +0 -0
  748. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/default.cpython-312.pyc +0 -0
  749. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/mock.cpython-312.pyc +0 -0
  750. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/wsgi.cpython-312.pyc +0 -0
  751. package/xll/python/Lib/site-packages/httpx/_transports/asgi.py +187 -0
  752. package/xll/python/Lib/site-packages/httpx/_transports/base.py +86 -0
  753. package/xll/python/Lib/site-packages/httpx/_transports/default.py +406 -0
  754. package/xll/python/Lib/site-packages/httpx/_transports/mock.py +43 -0
  755. package/xll/python/Lib/site-packages/httpx/_transports/wsgi.py +149 -0
  756. package/xll/python/Lib/site-packages/httpx/_types.py +114 -0
  757. package/xll/python/Lib/site-packages/httpx/_urlparse.py +527 -0
  758. package/xll/python/Lib/site-packages/httpx/_urls.py +641 -0
  759. package/xll/python/Lib/site-packages/httpx/_utils.py +242 -0
  760. package/xll/python/Lib/site-packages/httpx/py.typed +0 -0
  761. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/INSTALLER +1 -0
  762. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/METADATA +203 -0
  763. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/RECORD +55 -0
  764. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/REQUESTED +0 -0
  765. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/WHEEL +4 -0
  766. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/entry_points.txt +2 -0
  767. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/licenses/LICENSE.md +12 -0
  768. package/xll/python/Lib/site-packages/idna/__init__.py +45 -0
  769. package/xll/python/Lib/site-packages/idna/__pycache__/__init__.cpython-312.pyc +0 -0
  770. package/xll/python/Lib/site-packages/idna/__pycache__/codec.cpython-312.pyc +0 -0
  771. package/xll/python/Lib/site-packages/idna/__pycache__/compat.cpython-312.pyc +0 -0
  772. package/xll/python/Lib/site-packages/idna/__pycache__/core.cpython-312.pyc +0 -0
  773. package/xll/python/Lib/site-packages/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
  774. package/xll/python/Lib/site-packages/idna/__pycache__/intranges.cpython-312.pyc +0 -0
  775. package/xll/python/Lib/site-packages/idna/__pycache__/package_data.cpython-312.pyc +0 -0
  776. package/xll/python/Lib/site-packages/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
  777. package/xll/python/Lib/site-packages/idna/codec.py +122 -0
  778. package/xll/python/Lib/site-packages/idna/compat.py +15 -0
  779. package/xll/python/Lib/site-packages/idna/core.py +437 -0
  780. package/xll/python/Lib/site-packages/idna/idnadata.py +4309 -0
  781. package/xll/python/Lib/site-packages/idna/intranges.py +57 -0
  782. package/xll/python/Lib/site-packages/idna/package_data.py +1 -0
  783. package/xll/python/Lib/site-packages/idna/py.typed +0 -0
  784. package/xll/python/Lib/site-packages/idna/uts46data.py +8841 -0
  785. package/xll/python/Lib/site-packages/idna-3.11.dist-info/INSTALLER +1 -0
  786. package/xll/python/Lib/site-packages/idna-3.11.dist-info/METADATA +209 -0
  787. package/xll/python/Lib/site-packages/idna-3.11.dist-info/RECORD +22 -0
  788. package/xll/python/Lib/site-packages/idna-3.11.dist-info/WHEEL +4 -0
  789. package/xll/python/Lib/site-packages/idna-3.11.dist-info/licenses/LICENSE.md +31 -0
  790. package/xll/python/Lib/site-packages/openpyxl/__init__.py +19 -0
  791. package/xll/python/Lib/site-packages/openpyxl/__pycache__/__init__.cpython-312.pyc +0 -0
  792. package/xll/python/Lib/site-packages/openpyxl/__pycache__/_constants.cpython-312.pyc +0 -0
  793. package/xll/python/Lib/site-packages/openpyxl/_constants.py +13 -0
  794. package/xll/python/Lib/site-packages/openpyxl/cell/__init__.py +4 -0
  795. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/__init__.cpython-312.pyc +0 -0
  796. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/_writer.cpython-312.pyc +0 -0
  797. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/cell.cpython-312.pyc +0 -0
  798. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/read_only.cpython-312.pyc +0 -0
  799. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/rich_text.cpython-312.pyc +0 -0
  800. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/text.cpython-312.pyc +0 -0
  801. package/xll/python/Lib/site-packages/openpyxl/cell/_writer.py +136 -0
  802. package/xll/python/Lib/site-packages/openpyxl/cell/cell.py +332 -0
  803. package/xll/python/Lib/site-packages/openpyxl/cell/read_only.py +136 -0
  804. package/xll/python/Lib/site-packages/openpyxl/cell/rich_text.py +202 -0
  805. package/xll/python/Lib/site-packages/openpyxl/cell/text.py +184 -0
  806. package/xll/python/Lib/site-packages/openpyxl/chart/_3d.py +105 -0
  807. package/xll/python/Lib/site-packages/openpyxl/chart/__init__.py +19 -0
  808. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_3d.cpython-312.pyc +0 -0
  809. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/__init__.cpython-312.pyc +0 -0
  810. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_chart.cpython-312.pyc +0 -0
  811. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/area_chart.cpython-312.pyc +0 -0
  812. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/axis.cpython-312.pyc +0 -0
  813. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bar_chart.cpython-312.pyc +0 -0
  814. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bubble_chart.cpython-312.pyc +0 -0
  815. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/chartspace.cpython-312.pyc +0 -0
  816. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/data_source.cpython-312.pyc +0 -0
  817. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/descriptors.cpython-312.pyc +0 -0
  818. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/error_bar.cpython-312.pyc +0 -0
  819. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/label.cpython-312.pyc +0 -0
  820. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/layout.cpython-312.pyc +0 -0
  821. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/legend.cpython-312.pyc +0 -0
  822. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/line_chart.cpython-312.pyc +0 -0
  823. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/marker.cpython-312.pyc +0 -0
  824. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/picture.cpython-312.pyc +0 -0
  825. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pie_chart.cpython-312.pyc +0 -0
  826. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pivot.cpython-312.pyc +0 -0
  827. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/plotarea.cpython-312.pyc +0 -0
  828. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/print_settings.cpython-312.pyc +0 -0
  829. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/radar_chart.cpython-312.pyc +0 -0
  830. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reader.cpython-312.pyc +0 -0
  831. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reference.cpython-312.pyc +0 -0
  832. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/scatter_chart.cpython-312.pyc +0 -0
  833. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series.cpython-312.pyc +0 -0
  834. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series_factory.cpython-312.pyc +0 -0
  835. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/shapes.cpython-312.pyc +0 -0
  836. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/stock_chart.cpython-312.pyc +0 -0
  837. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/surface_chart.cpython-312.pyc +0 -0
  838. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/text.cpython-312.pyc +0 -0
  839. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/title.cpython-312.pyc +0 -0
  840. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/trendline.cpython-312.pyc +0 -0
  841. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/updown_bars.cpython-312.pyc +0 -0
  842. package/xll/python/Lib/site-packages/openpyxl/chart/_chart.py +199 -0
  843. package/xll/python/Lib/site-packages/openpyxl/chart/area_chart.py +106 -0
  844. package/xll/python/Lib/site-packages/openpyxl/chart/axis.py +401 -0
  845. package/xll/python/Lib/site-packages/openpyxl/chart/bar_chart.py +144 -0
  846. package/xll/python/Lib/site-packages/openpyxl/chart/bubble_chart.py +67 -0
  847. package/xll/python/Lib/site-packages/openpyxl/chart/chartspace.py +195 -0
  848. package/xll/python/Lib/site-packages/openpyxl/chart/data_source.py +246 -0
  849. package/xll/python/Lib/site-packages/openpyxl/chart/descriptors.py +43 -0
  850. package/xll/python/Lib/site-packages/openpyxl/chart/error_bar.py +62 -0
  851. package/xll/python/Lib/site-packages/openpyxl/chart/label.py +127 -0
  852. package/xll/python/Lib/site-packages/openpyxl/chart/layout.py +74 -0
  853. package/xll/python/Lib/site-packages/openpyxl/chart/legend.py +75 -0
  854. package/xll/python/Lib/site-packages/openpyxl/chart/line_chart.py +129 -0
  855. package/xll/python/Lib/site-packages/openpyxl/chart/marker.py +90 -0
  856. package/xll/python/Lib/site-packages/openpyxl/chart/picture.py +35 -0
  857. package/xll/python/Lib/site-packages/openpyxl/chart/pie_chart.py +177 -0
  858. package/xll/python/Lib/site-packages/openpyxl/chart/pivot.py +65 -0
  859. package/xll/python/Lib/site-packages/openpyxl/chart/plotarea.py +162 -0
  860. package/xll/python/Lib/site-packages/openpyxl/chart/print_settings.py +57 -0
  861. package/xll/python/Lib/site-packages/openpyxl/chart/radar_chart.py +55 -0
  862. package/xll/python/Lib/site-packages/openpyxl/chart/reader.py +32 -0
  863. package/xll/python/Lib/site-packages/openpyxl/chart/reference.py +124 -0
  864. package/xll/python/Lib/site-packages/openpyxl/chart/scatter_chart.py +53 -0
  865. package/xll/python/Lib/site-packages/openpyxl/chart/series.py +197 -0
  866. package/xll/python/Lib/site-packages/openpyxl/chart/series_factory.py +41 -0
  867. package/xll/python/Lib/site-packages/openpyxl/chart/shapes.py +89 -0
  868. package/xll/python/Lib/site-packages/openpyxl/chart/stock_chart.py +54 -0
  869. package/xll/python/Lib/site-packages/openpyxl/chart/surface_chart.py +119 -0
  870. package/xll/python/Lib/site-packages/openpyxl/chart/text.py +78 -0
  871. package/xll/python/Lib/site-packages/openpyxl/chart/title.py +76 -0
  872. package/xll/python/Lib/site-packages/openpyxl/chart/trendline.py +98 -0
  873. package/xll/python/Lib/site-packages/openpyxl/chart/updown_bars.py +31 -0
  874. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__init__.py +3 -0
  875. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/__init__.cpython-312.pyc +0 -0
  876. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/chartsheet.cpython-312.pyc +0 -0
  877. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/custom.cpython-312.pyc +0 -0
  878. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/properties.cpython-312.pyc +0 -0
  879. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/protection.cpython-312.pyc +0 -0
  880. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/publish.cpython-312.pyc +0 -0
  881. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/relation.cpython-312.pyc +0 -0
  882. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/views.cpython-312.pyc +0 -0
  883. package/xll/python/Lib/site-packages/openpyxl/chartsheet/chartsheet.py +107 -0
  884. package/xll/python/Lib/site-packages/openpyxl/chartsheet/custom.py +61 -0
  885. package/xll/python/Lib/site-packages/openpyxl/chartsheet/properties.py +28 -0
  886. package/xll/python/Lib/site-packages/openpyxl/chartsheet/protection.py +41 -0
  887. package/xll/python/Lib/site-packages/openpyxl/chartsheet/publish.py +58 -0
  888. package/xll/python/Lib/site-packages/openpyxl/chartsheet/relation.py +97 -0
  889. package/xll/python/Lib/site-packages/openpyxl/chartsheet/views.py +51 -0
  890. package/xll/python/Lib/site-packages/openpyxl/comments/__init__.py +4 -0
  891. package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/__init__.cpython-312.pyc +0 -0
  892. package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/author.cpython-312.pyc +0 -0
  893. package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comment_sheet.cpython-312.pyc +0 -0
  894. package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comments.cpython-312.pyc +0 -0
  895. package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/shape_writer.cpython-312.pyc +0 -0
  896. package/xll/python/Lib/site-packages/openpyxl/comments/author.py +21 -0
  897. package/xll/python/Lib/site-packages/openpyxl/comments/comment_sheet.py +211 -0
  898. package/xll/python/Lib/site-packages/openpyxl/comments/comments.py +62 -0
  899. package/xll/python/Lib/site-packages/openpyxl/comments/shape_writer.py +112 -0
  900. package/xll/python/Lib/site-packages/openpyxl/compat/__init__.py +54 -0
  901. package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  902. package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/abc.cpython-312.pyc +0 -0
  903. package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/numbers.cpython-312.pyc +0 -0
  904. package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/product.cpython-312.pyc +0 -0
  905. package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/singleton.cpython-312.pyc +0 -0
  906. package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/strings.cpython-312.pyc +0 -0
  907. package/xll/python/Lib/site-packages/openpyxl/compat/abc.py +8 -0
  908. package/xll/python/Lib/site-packages/openpyxl/compat/numbers.py +43 -0
  909. package/xll/python/Lib/site-packages/openpyxl/compat/product.py +17 -0
  910. package/xll/python/Lib/site-packages/openpyxl/compat/singleton.py +40 -0
  911. package/xll/python/Lib/site-packages/openpyxl/compat/strings.py +25 -0
  912. package/xll/python/Lib/site-packages/openpyxl/descriptors/__init__.py +58 -0
  913. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/__init__.cpython-312.pyc +0 -0
  914. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/base.cpython-312.pyc +0 -0
  915. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/container.cpython-312.pyc +0 -0
  916. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/excel.cpython-312.pyc +0 -0
  917. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/namespace.cpython-312.pyc +0 -0
  918. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/nested.cpython-312.pyc +0 -0
  919. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/sequence.cpython-312.pyc +0 -0
  920. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/serialisable.cpython-312.pyc +0 -0
  921. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/slots.cpython-312.pyc +0 -0
  922. package/xll/python/Lib/site-packages/openpyxl/descriptors/base.py +272 -0
  923. package/xll/python/Lib/site-packages/openpyxl/descriptors/container.py +41 -0
  924. package/xll/python/Lib/site-packages/openpyxl/descriptors/excel.py +112 -0
  925. package/xll/python/Lib/site-packages/openpyxl/descriptors/namespace.py +12 -0
  926. package/xll/python/Lib/site-packages/openpyxl/descriptors/nested.py +129 -0
  927. package/xll/python/Lib/site-packages/openpyxl/descriptors/sequence.py +136 -0
  928. package/xll/python/Lib/site-packages/openpyxl/descriptors/serialisable.py +240 -0
  929. package/xll/python/Lib/site-packages/openpyxl/descriptors/slots.py +18 -0
  930. package/xll/python/Lib/site-packages/openpyxl/drawing/__init__.py +4 -0
  931. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/__init__.cpython-312.pyc +0 -0
  932. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/colors.cpython-312.pyc +0 -0
  933. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/connector.cpython-312.pyc +0 -0
  934. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/drawing.cpython-312.pyc +0 -0
  935. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/effect.cpython-312.pyc +0 -0
  936. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/fill.cpython-312.pyc +0 -0
  937. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/geometry.cpython-312.pyc +0 -0
  938. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/graphic.cpython-312.pyc +0 -0
  939. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/image.cpython-312.pyc +0 -0
  940. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/line.cpython-312.pyc +0 -0
  941. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/picture.cpython-312.pyc +0 -0
  942. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/properties.cpython-312.pyc +0 -0
  943. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/relation.cpython-312.pyc +0 -0
  944. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/spreadsheet_drawing.cpython-312.pyc +0 -0
  945. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/text.cpython-312.pyc +0 -0
  946. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/xdr.cpython-312.pyc +0 -0
  947. package/xll/python/Lib/site-packages/openpyxl/drawing/colors.py +435 -0
  948. package/xll/python/Lib/site-packages/openpyxl/drawing/connector.py +144 -0
  949. package/xll/python/Lib/site-packages/openpyxl/drawing/drawing.py +92 -0
  950. package/xll/python/Lib/site-packages/openpyxl/drawing/effect.py +407 -0
  951. package/xll/python/Lib/site-packages/openpyxl/drawing/fill.py +425 -0
  952. package/xll/python/Lib/site-packages/openpyxl/drawing/geometry.py +584 -0
  953. package/xll/python/Lib/site-packages/openpyxl/drawing/graphic.py +177 -0
  954. package/xll/python/Lib/site-packages/openpyxl/drawing/image.py +65 -0
  955. package/xll/python/Lib/site-packages/openpyxl/drawing/line.py +144 -0
  956. package/xll/python/Lib/site-packages/openpyxl/drawing/picture.py +144 -0
  957. package/xll/python/Lib/site-packages/openpyxl/drawing/properties.py +174 -0
  958. package/xll/python/Lib/site-packages/openpyxl/drawing/relation.py +17 -0
  959. package/xll/python/Lib/site-packages/openpyxl/drawing/spreadsheet_drawing.py +382 -0
  960. package/xll/python/Lib/site-packages/openpyxl/drawing/text.py +717 -0
  961. package/xll/python/Lib/site-packages/openpyxl/drawing/xdr.py +33 -0
  962. package/xll/python/Lib/site-packages/openpyxl/formatting/__init__.py +3 -0
  963. package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/__init__.cpython-312.pyc +0 -0
  964. package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/formatting.cpython-312.pyc +0 -0
  965. package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/rule.cpython-312.pyc +0 -0
  966. package/xll/python/Lib/site-packages/openpyxl/formatting/formatting.py +114 -0
  967. package/xll/python/Lib/site-packages/openpyxl/formatting/rule.py +291 -0
  968. package/xll/python/Lib/site-packages/openpyxl/formula/__init__.py +3 -0
  969. package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/__init__.cpython-312.pyc +0 -0
  970. package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/tokenizer.cpython-312.pyc +0 -0
  971. package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/translate.cpython-312.pyc +0 -0
  972. package/xll/python/Lib/site-packages/openpyxl/formula/tokenizer.py +446 -0
  973. package/xll/python/Lib/site-packages/openpyxl/formula/translate.py +166 -0
  974. package/xll/python/Lib/site-packages/openpyxl/packaging/__init__.py +3 -0
  975. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
  976. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/core.cpython-312.pyc +0 -0
  977. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/custom.cpython-312.pyc +0 -0
  978. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/extended.cpython-312.pyc +0 -0
  979. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/interface.cpython-312.pyc +0 -0
  980. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/manifest.cpython-312.pyc +0 -0
  981. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/relationship.cpython-312.pyc +0 -0
  982. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/workbook.cpython-312.pyc +0 -0
  983. package/xll/python/Lib/site-packages/openpyxl/packaging/core.py +115 -0
  984. package/xll/python/Lib/site-packages/openpyxl/packaging/custom.py +289 -0
  985. package/xll/python/Lib/site-packages/openpyxl/packaging/extended.py +137 -0
  986. package/xll/python/Lib/site-packages/openpyxl/packaging/interface.py +56 -0
  987. package/xll/python/Lib/site-packages/openpyxl/packaging/manifest.py +194 -0
  988. package/xll/python/Lib/site-packages/openpyxl/packaging/relationship.py +158 -0
  989. package/xll/python/Lib/site-packages/openpyxl/packaging/workbook.py +185 -0
  990. package/xll/python/Lib/site-packages/openpyxl/pivot/__init__.py +1 -0
  991. package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/__init__.cpython-312.pyc +0 -0
  992. package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/cache.cpython-312.pyc +0 -0
  993. package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/fields.cpython-312.pyc +0 -0
  994. package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/record.cpython-312.pyc +0 -0
  995. package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/table.cpython-312.pyc +0 -0
  996. package/xll/python/Lib/site-packages/openpyxl/pivot/cache.py +965 -0
  997. package/xll/python/Lib/site-packages/openpyxl/pivot/fields.py +326 -0
  998. package/xll/python/Lib/site-packages/openpyxl/pivot/record.py +111 -0
  999. package/xll/python/Lib/site-packages/openpyxl/pivot/table.py +1261 -0
  1000. package/xll/python/Lib/site-packages/openpyxl/reader/__init__.py +1 -0
  1001. package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/__init__.cpython-312.pyc +0 -0
  1002. package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/drawings.cpython-312.pyc +0 -0
  1003. package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/excel.cpython-312.pyc +0 -0
  1004. package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/strings.cpython-312.pyc +0 -0
  1005. package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/workbook.cpython-312.pyc +0 -0
  1006. package/xll/python/Lib/site-packages/openpyxl/reader/drawings.py +71 -0
  1007. package/xll/python/Lib/site-packages/openpyxl/reader/excel.py +349 -0
  1008. package/xll/python/Lib/site-packages/openpyxl/reader/strings.py +44 -0
  1009. package/xll/python/Lib/site-packages/openpyxl/reader/workbook.py +133 -0
  1010. package/xll/python/Lib/site-packages/openpyxl/styles/__init__.py +11 -0
  1011. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/__init__.cpython-312.pyc +0 -0
  1012. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/alignment.cpython-312.pyc +0 -0
  1013. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/borders.cpython-312.pyc +0 -0
  1014. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/builtins.cpython-312.pyc +0 -0
  1015. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/cell_style.cpython-312.pyc +0 -0
  1016. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/colors.cpython-312.pyc +0 -0
  1017. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/differential.cpython-312.pyc +0 -0
  1018. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fills.cpython-312.pyc +0 -0
  1019. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fonts.cpython-312.pyc +0 -0
  1020. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/named_styles.cpython-312.pyc +0 -0
  1021. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/numbers.cpython-312.pyc +0 -0
  1022. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/protection.cpython-312.pyc +0 -0
  1023. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/proxy.cpython-312.pyc +0 -0
  1024. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/styleable.cpython-312.pyc +0 -0
  1025. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/stylesheet.cpython-312.pyc +0 -0
  1026. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/table.cpython-312.pyc +0 -0
  1027. package/xll/python/Lib/site-packages/openpyxl/styles/alignment.py +62 -0
  1028. package/xll/python/Lib/site-packages/openpyxl/styles/borders.py +103 -0
  1029. package/xll/python/Lib/site-packages/openpyxl/styles/builtins.py +1397 -0
  1030. package/xll/python/Lib/site-packages/openpyxl/styles/cell_style.py +206 -0
  1031. package/xll/python/Lib/site-packages/openpyxl/styles/colors.py +172 -0
  1032. package/xll/python/Lib/site-packages/openpyxl/styles/differential.py +95 -0
  1033. package/xll/python/Lib/site-packages/openpyxl/styles/fills.py +224 -0
  1034. package/xll/python/Lib/site-packages/openpyxl/styles/fonts.py +113 -0
  1035. package/xll/python/Lib/site-packages/openpyxl/styles/named_styles.py +282 -0
  1036. package/xll/python/Lib/site-packages/openpyxl/styles/numbers.py +200 -0
  1037. package/xll/python/Lib/site-packages/openpyxl/styles/protection.py +17 -0
  1038. package/xll/python/Lib/site-packages/openpyxl/styles/proxy.py +62 -0
  1039. package/xll/python/Lib/site-packages/openpyxl/styles/styleable.py +151 -0
  1040. package/xll/python/Lib/site-packages/openpyxl/styles/stylesheet.py +274 -0
  1041. package/xll/python/Lib/site-packages/openpyxl/styles/table.py +94 -0
  1042. package/xll/python/Lib/site-packages/openpyxl/utils/__init__.py +17 -0
  1043. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  1044. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/bound_dictionary.cpython-312.pyc +0 -0
  1045. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/cell.cpython-312.pyc +0 -0
  1046. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/dataframe.cpython-312.pyc +0 -0
  1047. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/datetime.cpython-312.pyc +0 -0
  1048. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/escape.cpython-312.pyc +0 -0
  1049. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/exceptions.cpython-312.pyc +0 -0
  1050. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/formulas.cpython-312.pyc +0 -0
  1051. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/indexed_list.cpython-312.pyc +0 -0
  1052. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/inference.cpython-312.pyc +0 -0
  1053. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/protection.cpython-312.pyc +0 -0
  1054. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/units.cpython-312.pyc +0 -0
  1055. package/xll/python/Lib/site-packages/openpyxl/utils/bound_dictionary.py +26 -0
  1056. package/xll/python/Lib/site-packages/openpyxl/utils/cell.py +240 -0
  1057. package/xll/python/Lib/site-packages/openpyxl/utils/dataframe.py +87 -0
  1058. package/xll/python/Lib/site-packages/openpyxl/utils/datetime.py +140 -0
  1059. package/xll/python/Lib/site-packages/openpyxl/utils/escape.py +43 -0
  1060. package/xll/python/Lib/site-packages/openpyxl/utils/exceptions.py +34 -0
  1061. package/xll/python/Lib/site-packages/openpyxl/utils/formulas.py +24 -0
  1062. package/xll/python/Lib/site-packages/openpyxl/utils/indexed_list.py +49 -0
  1063. package/xll/python/Lib/site-packages/openpyxl/utils/inference.py +60 -0
  1064. package/xll/python/Lib/site-packages/openpyxl/utils/protection.py +22 -0
  1065. package/xll/python/Lib/site-packages/openpyxl/utils/units.py +108 -0
  1066. package/xll/python/Lib/site-packages/openpyxl/workbook/__init__.py +4 -0
  1067. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/__init__.cpython-312.pyc +0 -0
  1068. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/_writer.cpython-312.pyc +0 -0
  1069. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/child.cpython-312.pyc +0 -0
  1070. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/defined_name.cpython-312.pyc +0 -0
  1071. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/external_reference.cpython-312.pyc +0 -0
  1072. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/function_group.cpython-312.pyc +0 -0
  1073. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/properties.cpython-312.pyc +0 -0
  1074. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/protection.cpython-312.pyc +0 -0
  1075. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/smart_tags.cpython-312.pyc +0 -0
  1076. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/views.cpython-312.pyc +0 -0
  1077. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/web.cpython-312.pyc +0 -0
  1078. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/workbook.cpython-312.pyc +0 -0
  1079. package/xll/python/Lib/site-packages/openpyxl/workbook/_writer.py +197 -0
  1080. package/xll/python/Lib/site-packages/openpyxl/workbook/child.py +166 -0
  1081. package/xll/python/Lib/site-packages/openpyxl/workbook/defined_name.py +189 -0
  1082. package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__init__.py +3 -0
  1083. package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/__init__.cpython-312.pyc +0 -0
  1084. package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/external.cpython-312.pyc +0 -0
  1085. package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/external.py +190 -0
  1086. package/xll/python/Lib/site-packages/openpyxl/workbook/external_reference.py +18 -0
  1087. package/xll/python/Lib/site-packages/openpyxl/workbook/function_group.py +36 -0
  1088. package/xll/python/Lib/site-packages/openpyxl/workbook/properties.py +151 -0
  1089. package/xll/python/Lib/site-packages/openpyxl/workbook/protection.py +163 -0
  1090. package/xll/python/Lib/site-packages/openpyxl/workbook/smart_tags.py +56 -0
  1091. package/xll/python/Lib/site-packages/openpyxl/workbook/views.py +155 -0
  1092. package/xll/python/Lib/site-packages/openpyxl/workbook/web.py +98 -0
  1093. package/xll/python/Lib/site-packages/openpyxl/workbook/workbook.py +438 -0
  1094. package/xll/python/Lib/site-packages/openpyxl/worksheet/__init__.py +1 -0
  1095. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/__init__.cpython-312.pyc +0 -0
  1096. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_read_only.cpython-312.pyc +0 -0
  1097. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_reader.cpython-312.pyc +0 -0
  1098. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_write_only.cpython-312.pyc +0 -0
  1099. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_writer.cpython-312.pyc +0 -0
  1100. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/cell_range.cpython-312.pyc +0 -0
  1101. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/cell_watch.cpython-312.pyc +0 -0
  1102. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/controls.cpython-312.pyc +0 -0
  1103. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/copier.cpython-312.pyc +0 -0
  1104. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/custom.cpython-312.pyc +0 -0
  1105. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/datavalidation.cpython-312.pyc +0 -0
  1106. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/dimensions.cpython-312.pyc +0 -0
  1107. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/drawing.cpython-312.pyc +0 -0
  1108. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/errors.cpython-312.pyc +0 -0
  1109. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/filters.cpython-312.pyc +0 -0
  1110. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/formula.cpython-312.pyc +0 -0
  1111. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/header_footer.cpython-312.pyc +0 -0
  1112. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/hyperlink.cpython-312.pyc +0 -0
  1113. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/merge.cpython-312.pyc +0 -0
  1114. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/ole.cpython-312.pyc +0 -0
  1115. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/page.cpython-312.pyc +0 -0
  1116. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/pagebreak.cpython-312.pyc +0 -0
  1117. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/picture.cpython-312.pyc +0 -0
  1118. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/print_settings.cpython-312.pyc +0 -0
  1119. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/properties.cpython-312.pyc +0 -0
  1120. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/protection.cpython-312.pyc +0 -0
  1121. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/related.cpython-312.pyc +0 -0
  1122. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/scenario.cpython-312.pyc +0 -0
  1123. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/smart_tag.cpython-312.pyc +0 -0
  1124. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/table.cpython-312.pyc +0 -0
  1125. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/views.cpython-312.pyc +0 -0
  1126. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/worksheet.cpython-312.pyc +0 -0
  1127. package/xll/python/Lib/site-packages/openpyxl/worksheet/_read_only.py +190 -0
  1128. package/xll/python/Lib/site-packages/openpyxl/worksheet/_reader.py +472 -0
  1129. package/xll/python/Lib/site-packages/openpyxl/worksheet/_write_only.py +160 -0
  1130. package/xll/python/Lib/site-packages/openpyxl/worksheet/_writer.py +390 -0
  1131. package/xll/python/Lib/site-packages/openpyxl/worksheet/cell_range.py +512 -0
  1132. package/xll/python/Lib/site-packages/openpyxl/worksheet/cell_watch.py +34 -0
  1133. package/xll/python/Lib/site-packages/openpyxl/worksheet/controls.py +107 -0
  1134. package/xll/python/Lib/site-packages/openpyxl/worksheet/copier.py +70 -0
  1135. package/xll/python/Lib/site-packages/openpyxl/worksheet/custom.py +35 -0
  1136. package/xll/python/Lib/site-packages/openpyxl/worksheet/datavalidation.py +202 -0
  1137. package/xll/python/Lib/site-packages/openpyxl/worksheet/dimensions.py +306 -0
  1138. package/xll/python/Lib/site-packages/openpyxl/worksheet/drawing.py +14 -0
  1139. package/xll/python/Lib/site-packages/openpyxl/worksheet/errors.py +93 -0
  1140. package/xll/python/Lib/site-packages/openpyxl/worksheet/filters.py +486 -0
  1141. package/xll/python/Lib/site-packages/openpyxl/worksheet/formula.py +51 -0
  1142. package/xll/python/Lib/site-packages/openpyxl/worksheet/header_footer.py +270 -0
  1143. package/xll/python/Lib/site-packages/openpyxl/worksheet/hyperlink.py +46 -0
  1144. package/xll/python/Lib/site-packages/openpyxl/worksheet/merge.py +141 -0
  1145. package/xll/python/Lib/site-packages/openpyxl/worksheet/ole.py +133 -0
  1146. package/xll/python/Lib/site-packages/openpyxl/worksheet/page.py +174 -0
  1147. package/xll/python/Lib/site-packages/openpyxl/worksheet/pagebreak.py +94 -0
  1148. package/xll/python/Lib/site-packages/openpyxl/worksheet/picture.py +8 -0
  1149. package/xll/python/Lib/site-packages/openpyxl/worksheet/print_settings.py +184 -0
  1150. package/xll/python/Lib/site-packages/openpyxl/worksheet/properties.py +97 -0
  1151. package/xll/python/Lib/site-packages/openpyxl/worksheet/protection.py +120 -0
  1152. package/xll/python/Lib/site-packages/openpyxl/worksheet/related.py +17 -0
  1153. package/xll/python/Lib/site-packages/openpyxl/worksheet/scenario.py +105 -0
  1154. package/xll/python/Lib/site-packages/openpyxl/worksheet/smart_tag.py +78 -0
  1155. package/xll/python/Lib/site-packages/openpyxl/worksheet/table.py +385 -0
  1156. package/xll/python/Lib/site-packages/openpyxl/worksheet/views.py +155 -0
  1157. package/xll/python/Lib/site-packages/openpyxl/worksheet/worksheet.py +907 -0
  1158. package/xll/python/Lib/site-packages/openpyxl/writer/__init__.py +1 -0
  1159. package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/__init__.cpython-312.pyc +0 -0
  1160. package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/excel.cpython-312.pyc +0 -0
  1161. package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/theme.cpython-312.pyc +0 -0
  1162. package/xll/python/Lib/site-packages/openpyxl/writer/excel.py +295 -0
  1163. package/xll/python/Lib/site-packages/openpyxl/writer/theme.py +291 -0
  1164. package/xll/python/Lib/site-packages/openpyxl/xml/__init__.py +42 -0
  1165. package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/__init__.cpython-312.pyc +0 -0
  1166. package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/constants.cpython-312.pyc +0 -0
  1167. package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/functions.cpython-312.pyc +0 -0
  1168. package/xll/python/Lib/site-packages/openpyxl/xml/constants.py +129 -0
  1169. package/xll/python/Lib/site-packages/openpyxl/xml/functions.py +87 -0
  1170. package/xll/python/Lib/site-packages/openpyxl-3.1.5.dist-info/INSTALLER +1 -0
  1171. package/xll/python/Lib/site-packages/openpyxl-3.1.5.dist-info/LICENCE.rst +23 -0
  1172. package/xll/python/Lib/site-packages/openpyxl-3.1.5.dist-info/METADATA +86 -0
  1173. package/xll/python/Lib/site-packages/openpyxl-3.1.5.dist-info/RECORD +387 -0
  1174. package/xll/python/Lib/site-packages/openpyxl-3.1.5.dist-info/REQUESTED +0 -0
  1175. package/xll/python/Lib/site-packages/openpyxl-3.1.5.dist-info/WHEEL +6 -0
  1176. package/xll/python/Lib/site-packages/openpyxl-3.1.5.dist-info/top_level.txt +1 -0
  1177. package/xll/python/Lib/site-packages/pip/__init__.py +13 -0
  1178. package/xll/python/Lib/site-packages/pip/__main__.py +24 -0
  1179. package/xll/python/Lib/site-packages/pip/__pip-runner__.py +50 -0
  1180. package/xll/python/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc +0 -0
  1181. package/xll/python/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc +0 -0
  1182. package/xll/python/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
  1183. package/xll/python/Lib/site-packages/pip/_internal/__init__.py +18 -0
  1184. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
  1185. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
  1186. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
  1187. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
  1188. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
  1189. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
  1190. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
  1191. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
  1192. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
  1193. package/xll/python/Lib/site-packages/pip/_internal/build_env.py +606 -0
  1194. package/xll/python/Lib/site-packages/pip/_internal/cache.py +291 -0
  1195. package/xll/python/Lib/site-packages/pip/_internal/cli/__init__.py +3 -0
  1196. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
  1197. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
  1198. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
  1199. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
  1200. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
  1201. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
  1202. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
  1203. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
  1204. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
  1205. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
  1206. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
  1207. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
  1208. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
  1209. package/xll/python/Lib/site-packages/pip/_internal/cli/autocompletion.py +184 -0
  1210. package/xll/python/Lib/site-packages/pip/_internal/cli/base_command.py +255 -0
  1211. package/xll/python/Lib/site-packages/pip/_internal/cli/cmdoptions.py +1267 -0
  1212. package/xll/python/Lib/site-packages/pip/_internal/cli/command_context.py +28 -0
  1213. package/xll/python/Lib/site-packages/pip/_internal/cli/index_command.py +195 -0
  1214. package/xll/python/Lib/site-packages/pip/_internal/cli/main.py +85 -0
  1215. package/xll/python/Lib/site-packages/pip/_internal/cli/main_parser.py +136 -0
  1216. package/xll/python/Lib/site-packages/pip/_internal/cli/parser.py +358 -0
  1217. package/xll/python/Lib/site-packages/pip/_internal/cli/progress_bars.py +153 -0
  1218. package/xll/python/Lib/site-packages/pip/_internal/cli/req_command.py +447 -0
  1219. package/xll/python/Lib/site-packages/pip/_internal/cli/spinners.py +235 -0
  1220. package/xll/python/Lib/site-packages/pip/_internal/cli/status_codes.py +6 -0
  1221. package/xll/python/Lib/site-packages/pip/_internal/commands/__init__.py +139 -0
  1222. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
  1223. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
  1224. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
  1225. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
  1226. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
  1227. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
  1228. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
  1229. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
  1230. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
  1231. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
  1232. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
  1233. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
  1234. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
  1235. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
  1236. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
  1237. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
  1238. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
  1239. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
  1240. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
  1241. package/xll/python/Lib/site-packages/pip/_internal/commands/cache.py +255 -0
  1242. package/xll/python/Lib/site-packages/pip/_internal/commands/check.py +66 -0
  1243. package/xll/python/Lib/site-packages/pip/_internal/commands/completion.py +136 -0
  1244. package/xll/python/Lib/site-packages/pip/_internal/commands/configuration.py +288 -0
  1245. package/xll/python/Lib/site-packages/pip/_internal/commands/debug.py +203 -0
  1246. package/xll/python/Lib/site-packages/pip/_internal/commands/download.py +146 -0
  1247. package/xll/python/Lib/site-packages/pip/_internal/commands/freeze.py +107 -0
  1248. package/xll/python/Lib/site-packages/pip/_internal/commands/hash.py +58 -0
  1249. package/xll/python/Lib/site-packages/pip/_internal/commands/help.py +40 -0
  1250. package/xll/python/Lib/site-packages/pip/_internal/commands/index.py +166 -0
  1251. package/xll/python/Lib/site-packages/pip/_internal/commands/inspect.py +92 -0
  1252. package/xll/python/Lib/site-packages/pip/_internal/commands/install.py +810 -0
  1253. package/xll/python/Lib/site-packages/pip/_internal/commands/list.py +398 -0
  1254. package/xll/python/Lib/site-packages/pip/_internal/commands/lock.py +175 -0
  1255. package/xll/python/Lib/site-packages/pip/_internal/commands/search.py +178 -0
  1256. package/xll/python/Lib/site-packages/pip/_internal/commands/show.py +231 -0
  1257. package/xll/python/Lib/site-packages/pip/_internal/commands/uninstall.py +113 -0
  1258. package/xll/python/Lib/site-packages/pip/_internal/commands/wheel.py +171 -0
  1259. package/xll/python/Lib/site-packages/pip/_internal/configuration.py +396 -0
  1260. package/xll/python/Lib/site-packages/pip/_internal/distributions/__init__.py +21 -0
  1261. package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
  1262. package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
  1263. package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
  1264. package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
  1265. package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
  1266. package/xll/python/Lib/site-packages/pip/_internal/distributions/base.py +55 -0
  1267. package/xll/python/Lib/site-packages/pip/_internal/distributions/installed.py +33 -0
  1268. package/xll/python/Lib/site-packages/pip/_internal/distributions/sdist.py +164 -0
  1269. package/xll/python/Lib/site-packages/pip/_internal/distributions/wheel.py +44 -0
  1270. package/xll/python/Lib/site-packages/pip/_internal/exceptions.py +971 -0
  1271. package/xll/python/Lib/site-packages/pip/_internal/index/__init__.py +1 -0
  1272. package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
  1273. package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
  1274. package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
  1275. package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
  1276. package/xll/python/Lib/site-packages/pip/_internal/index/collector.py +488 -0
  1277. package/xll/python/Lib/site-packages/pip/_internal/index/package_finder.py +1125 -0
  1278. package/xll/python/Lib/site-packages/pip/_internal/index/sources.py +287 -0
  1279. package/xll/python/Lib/site-packages/pip/_internal/locations/__init__.py +440 -0
  1280. package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
  1281. package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
  1282. package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
  1283. package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
  1284. package/xll/python/Lib/site-packages/pip/_internal/locations/_distutils.py +173 -0
  1285. package/xll/python/Lib/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
  1286. package/xll/python/Lib/site-packages/pip/_internal/locations/base.py +82 -0
  1287. package/xll/python/Lib/site-packages/pip/_internal/main.py +12 -0
  1288. package/xll/python/Lib/site-packages/pip/_internal/metadata/__init__.py +169 -0
  1289. package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
  1290. package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
  1291. package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
  1292. package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
  1293. package/xll/python/Lib/site-packages/pip/_internal/metadata/_json.py +87 -0
  1294. package/xll/python/Lib/site-packages/pip/_internal/metadata/base.py +685 -0
  1295. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
  1296. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
  1297. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
  1298. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
  1299. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
  1300. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
  1301. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py +229 -0
  1302. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
  1303. package/xll/python/Lib/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
  1304. package/xll/python/Lib/site-packages/pip/_internal/models/__init__.py +1 -0
  1305. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
  1306. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
  1307. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
  1308. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
  1309. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
  1310. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
  1311. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
  1312. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/release_control.cpython-312.pyc +0 -0
  1313. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
  1314. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
  1315. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
  1316. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
  1317. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
  1318. package/xll/python/Lib/site-packages/pip/_internal/models/candidate.py +25 -0
  1319. package/xll/python/Lib/site-packages/pip/_internal/models/direct_url.py +227 -0
  1320. package/xll/python/Lib/site-packages/pip/_internal/models/format_control.py +78 -0
  1321. package/xll/python/Lib/site-packages/pip/_internal/models/index.py +28 -0
  1322. package/xll/python/Lib/site-packages/pip/_internal/models/installation_report.py +57 -0
  1323. package/xll/python/Lib/site-packages/pip/_internal/models/link.py +617 -0
  1324. package/xll/python/Lib/site-packages/pip/_internal/models/release_control.py +92 -0
  1325. package/xll/python/Lib/site-packages/pip/_internal/models/scheme.py +25 -0
  1326. package/xll/python/Lib/site-packages/pip/_internal/models/search_scope.py +126 -0
  1327. package/xll/python/Lib/site-packages/pip/_internal/models/selection_prefs.py +56 -0
  1328. package/xll/python/Lib/site-packages/pip/_internal/models/target_python.py +122 -0
  1329. package/xll/python/Lib/site-packages/pip/_internal/models/wheel.py +80 -0
  1330. package/xll/python/Lib/site-packages/pip/_internal/network/__init__.py +1 -0
  1331. package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
  1332. package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
  1333. package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
  1334. package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
  1335. package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
  1336. package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
  1337. package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
  1338. package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
  1339. package/xll/python/Lib/site-packages/pip/_internal/network/auth.py +568 -0
  1340. package/xll/python/Lib/site-packages/pip/_internal/network/cache.py +128 -0
  1341. package/xll/python/Lib/site-packages/pip/_internal/network/download.py +341 -0
  1342. package/xll/python/Lib/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
  1343. package/xll/python/Lib/site-packages/pip/_internal/network/session.py +532 -0
  1344. package/xll/python/Lib/site-packages/pip/_internal/network/utils.py +98 -0
  1345. package/xll/python/Lib/site-packages/pip/_internal/network/xmlrpc.py +61 -0
  1346. package/xll/python/Lib/site-packages/pip/_internal/operations/__init__.py +0 -0
  1347. package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
  1348. package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
  1349. package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
  1350. package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
  1351. package/xll/python/Lib/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  1352. package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
  1353. package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
  1354. package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
  1355. package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
  1356. package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
  1357. package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
  1358. package/xll/python/Lib/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
  1359. package/xll/python/Lib/site-packages/pip/_internal/operations/build/metadata.py +38 -0
  1360. package/xll/python/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
  1361. package/xll/python/Lib/site-packages/pip/_internal/operations/build/wheel.py +38 -0
  1362. package/xll/python/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
  1363. package/xll/python/Lib/site-packages/pip/_internal/operations/check.py +175 -0
  1364. package/xll/python/Lib/site-packages/pip/_internal/operations/freeze.py +259 -0
  1365. package/xll/python/Lib/site-packages/pip/_internal/operations/install/__init__.py +1 -0
  1366. package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
  1367. package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
  1368. package/xll/python/Lib/site-packages/pip/_internal/operations/install/wheel.py +745 -0
  1369. package/xll/python/Lib/site-packages/pip/_internal/operations/prepare.py +747 -0
  1370. package/xll/python/Lib/site-packages/pip/_internal/pyproject.py +123 -0
  1371. package/xll/python/Lib/site-packages/pip/_internal/req/__init__.py +103 -0
  1372. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
  1373. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
  1374. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/pep723.cpython-312.pyc +0 -0
  1375. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
  1376. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
  1377. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
  1378. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
  1379. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
  1380. package/xll/python/Lib/site-packages/pip/_internal/req/constructors.py +568 -0
  1381. package/xll/python/Lib/site-packages/pip/_internal/req/pep723.py +41 -0
  1382. package/xll/python/Lib/site-packages/pip/_internal/req/req_dependency_group.py +75 -0
  1383. package/xll/python/Lib/site-packages/pip/_internal/req/req_file.py +631 -0
  1384. package/xll/python/Lib/site-packages/pip/_internal/req/req_install.py +828 -0
  1385. package/xll/python/Lib/site-packages/pip/_internal/req/req_set.py +81 -0
  1386. package/xll/python/Lib/site-packages/pip/_internal/req/req_uninstall.py +639 -0
  1387. package/xll/python/Lib/site-packages/pip/_internal/resolution/__init__.py +0 -0
  1388. package/xll/python/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
  1389. package/xll/python/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
  1390. package/xll/python/Lib/site-packages/pip/_internal/resolution/base.py +20 -0
  1391. package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  1392. package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
  1393. package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
  1394. package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
  1395. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  1396. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
  1397. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
  1398. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
  1399. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
  1400. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
  1401. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
  1402. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
  1403. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
  1404. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
  1405. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py +142 -0
  1406. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py +591 -0
  1407. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py +856 -0
  1408. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
  1409. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py +285 -0
  1410. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
  1411. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
  1412. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
  1413. package/xll/python/Lib/site-packages/pip/_internal/self_outdated_check.py +255 -0
  1414. package/xll/python/Lib/site-packages/pip/_internal/utils/__init__.py +0 -0
  1415. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  1416. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
  1417. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
  1418. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
  1419. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
  1420. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
  1421. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
  1422. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
  1423. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
  1424. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
  1425. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
  1426. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
  1427. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
  1428. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
  1429. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
  1430. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
  1431. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
  1432. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
  1433. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/pylock.cpython-312.pyc +0 -0
  1434. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
  1435. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
  1436. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
  1437. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
  1438. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
  1439. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
  1440. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
  1441. package/xll/python/Lib/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
  1442. package/xll/python/Lib/site-packages/pip/_internal/utils/_log.py +38 -0
  1443. package/xll/python/Lib/site-packages/pip/_internal/utils/appdirs.py +52 -0
  1444. package/xll/python/Lib/site-packages/pip/_internal/utils/compat.py +85 -0
  1445. package/xll/python/Lib/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
  1446. package/xll/python/Lib/site-packages/pip/_internal/utils/datetime.py +28 -0
  1447. package/xll/python/Lib/site-packages/pip/_internal/utils/deprecation.py +126 -0
  1448. package/xll/python/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
  1449. package/xll/python/Lib/site-packages/pip/_internal/utils/egg_link.py +81 -0
  1450. package/xll/python/Lib/site-packages/pip/_internal/utils/entrypoints.py +88 -0
  1451. package/xll/python/Lib/site-packages/pip/_internal/utils/filesystem.py +203 -0
  1452. package/xll/python/Lib/site-packages/pip/_internal/utils/filetypes.py +24 -0
  1453. package/xll/python/Lib/site-packages/pip/_internal/utils/glibc.py +102 -0
  1454. package/xll/python/Lib/site-packages/pip/_internal/utils/hashes.py +150 -0
  1455. package/xll/python/Lib/site-packages/pip/_internal/utils/logging.py +396 -0
  1456. package/xll/python/Lib/site-packages/pip/_internal/utils/misc.py +771 -0
  1457. package/xll/python/Lib/site-packages/pip/_internal/utils/packaging.py +44 -0
  1458. package/xll/python/Lib/site-packages/pip/_internal/utils/pylock.py +116 -0
  1459. package/xll/python/Lib/site-packages/pip/_internal/utils/retry.py +45 -0
  1460. package/xll/python/Lib/site-packages/pip/_internal/utils/subprocess.py +248 -0
  1461. package/xll/python/Lib/site-packages/pip/_internal/utils/temp_dir.py +294 -0
  1462. package/xll/python/Lib/site-packages/pip/_internal/utils/unpacking.py +362 -0
  1463. package/xll/python/Lib/site-packages/pip/_internal/utils/urls.py +55 -0
  1464. package/xll/python/Lib/site-packages/pip/_internal/utils/virtualenv.py +105 -0
  1465. package/xll/python/Lib/site-packages/pip/_internal/utils/wheel.py +132 -0
  1466. package/xll/python/Lib/site-packages/pip/_internal/vcs/__init__.py +15 -0
  1467. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
  1468. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
  1469. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
  1470. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
  1471. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
  1472. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
  1473. package/xll/python/Lib/site-packages/pip/_internal/vcs/bazaar.py +130 -0
  1474. package/xll/python/Lib/site-packages/pip/_internal/vcs/git.py +571 -0
  1475. package/xll/python/Lib/site-packages/pip/_internal/vcs/mercurial.py +186 -0
  1476. package/xll/python/Lib/site-packages/pip/_internal/vcs/subversion.py +335 -0
  1477. package/xll/python/Lib/site-packages/pip/_internal/vcs/versioncontrol.py +695 -0
  1478. package/xll/python/Lib/site-packages/pip/_internal/wheel_builder.py +261 -0
  1479. package/xll/python/Lib/site-packages/pip/_vendor/README.rst +180 -0
  1480. package/xll/python/Lib/site-packages/pip/_vendor/__init__.py +117 -0
  1481. package/xll/python/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
  1482. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  1483. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
  1484. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
  1485. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
  1486. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
  1487. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
  1488. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
  1489. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
  1490. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
  1491. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
  1492. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
  1493. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
  1494. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
  1495. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
  1496. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  1497. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
  1498. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
  1499. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
  1500. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
  1501. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  1502. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
  1503. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
  1504. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
  1505. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
  1506. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
  1507. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
  1508. package/xll/python/Lib/site-packages/pip/_vendor/certifi/LICENSE +20 -0
  1509. package/xll/python/Lib/site-packages/pip/_vendor/certifi/__init__.py +4 -0
  1510. package/xll/python/Lib/site-packages/pip/_vendor/certifi/__main__.py +12 -0
  1511. package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
  1512. package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
  1513. package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
  1514. package/xll/python/Lib/site-packages/pip/_vendor/certifi/cacert.pem +4468 -0
  1515. package/xll/python/Lib/site-packages/pip/_vendor/certifi/core.py +83 -0
  1516. package/xll/python/Lib/site-packages/pip/_vendor/certifi/py.typed +0 -0
  1517. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
  1518. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__init__.py +13 -0
  1519. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__main__.py +65 -0
  1520. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
  1521. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
  1522. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
  1523. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
  1524. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
  1525. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
  1526. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/_implementation.py +209 -0
  1527. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
  1528. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
  1529. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
  1530. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/py.typed +0 -0
  1531. package/xll/python/Lib/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
  1532. package/xll/python/Lib/site-packages/pip/_vendor/distlib/__init__.py +33 -0
  1533. package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
  1534. package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
  1535. package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
  1536. package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
  1537. package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
  1538. package/xll/python/Lib/site-packages/pip/_vendor/distlib/compat.py +1137 -0
  1539. package/xll/python/Lib/site-packages/pip/_vendor/distlib/resources.py +358 -0
  1540. package/xll/python/Lib/site-packages/pip/_vendor/distlib/scripts.py +447 -0
  1541. package/xll/python/Lib/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  1542. package/xll/python/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
  1543. package/xll/python/Lib/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  1544. package/xll/python/Lib/site-packages/pip/_vendor/distlib/util.py +1984 -0
  1545. package/xll/python/Lib/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  1546. package/xll/python/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
  1547. package/xll/python/Lib/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  1548. package/xll/python/Lib/site-packages/pip/_vendor/distro/LICENSE +202 -0
  1549. package/xll/python/Lib/site-packages/pip/_vendor/distro/__init__.py +54 -0
  1550. package/xll/python/Lib/site-packages/pip/_vendor/distro/__main__.py +4 -0
  1551. package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
  1552. package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
  1553. package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
  1554. package/xll/python/Lib/site-packages/pip/_vendor/distro/distro.py +1403 -0
  1555. package/xll/python/Lib/site-packages/pip/_vendor/distro/py.typed +0 -0
  1556. package/xll/python/Lib/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
  1557. package/xll/python/Lib/site-packages/pip/_vendor/idna/__init__.py +45 -0
  1558. package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
  1559. package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
  1560. package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
  1561. package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
  1562. package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
  1563. package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
  1564. package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
  1565. package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
  1566. package/xll/python/Lib/site-packages/pip/_vendor/idna/codec.py +122 -0
  1567. package/xll/python/Lib/site-packages/pip/_vendor/idna/compat.py +15 -0
  1568. package/xll/python/Lib/site-packages/pip/_vendor/idna/core.py +437 -0
  1569. package/xll/python/Lib/site-packages/pip/_vendor/idna/idnadata.py +4309 -0
  1570. package/xll/python/Lib/site-packages/pip/_vendor/idna/intranges.py +57 -0
  1571. package/xll/python/Lib/site-packages/pip/_vendor/idna/package_data.py +1 -0
  1572. package/xll/python/Lib/site-packages/pip/_vendor/idna/py.typed +0 -0
  1573. package/xll/python/Lib/site-packages/pip/_vendor/idna/uts46data.py +8841 -0
  1574. package/xll/python/Lib/site-packages/pip/_vendor/msgpack/COPYING +14 -0
  1575. package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
  1576. package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
  1577. package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
  1578. package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
  1579. package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
  1580. package/xll/python/Lib/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
  1581. package/xll/python/Lib/site-packages/pip/_vendor/msgpack/ext.py +170 -0
  1582. package/xll/python/Lib/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
  1583. package/xll/python/Lib/site-packages/pip/_vendor/packaging/LICENSE +3 -0
  1584. package/xll/python/Lib/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  1585. package/xll/python/Lib/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
  1586. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__init__.py +15 -0
  1587. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
  1588. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
  1589. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
  1590. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
  1591. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
  1592. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
  1593. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
  1594. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
  1595. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
  1596. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
  1597. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
  1598. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
  1599. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
  1600. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
  1601. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
  1602. package/xll/python/Lib/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
  1603. package/xll/python/Lib/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
  1604. package/xll/python/Lib/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
  1605. package/xll/python/Lib/site-packages/pip/_vendor/packaging/_parser.py +365 -0
  1606. package/xll/python/Lib/site-packages/pip/_vendor/packaging/_structures.py +69 -0
  1607. package/xll/python/Lib/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
  1608. package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/__init__.py +147 -0
  1609. package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
  1610. package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
  1611. package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
  1612. package/xll/python/Lib/site-packages/pip/_vendor/packaging/markers.py +388 -0
  1613. package/xll/python/Lib/site-packages/pip/_vendor/packaging/metadata.py +978 -0
  1614. package/xll/python/Lib/site-packages/pip/_vendor/packaging/py.typed +0 -0
  1615. package/xll/python/Lib/site-packages/pip/_vendor/packaging/pylock.py +635 -0
  1616. package/xll/python/Lib/site-packages/pip/_vendor/packaging/requirements.py +86 -0
  1617. package/xll/python/Lib/site-packages/pip/_vendor/packaging/specifiers.py +1068 -0
  1618. package/xll/python/Lib/site-packages/pip/_vendor/packaging/tags.py +651 -0
  1619. package/xll/python/Lib/site-packages/pip/_vendor/packaging/utils.py +158 -0
  1620. package/xll/python/Lib/site-packages/pip/_vendor/packaging/version.py +792 -0
  1621. package/xll/python/Lib/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
  1622. package/xll/python/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
  1623. package/xll/python/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
  1624. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
  1625. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
  1626. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
  1627. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
  1628. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
  1629. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
  1630. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
  1631. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
  1632. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
  1633. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
  1634. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
  1635. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/android.py +249 -0
  1636. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/api.py +299 -0
  1637. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
  1638. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
  1639. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
  1640. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/version.py +34 -0
  1641. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/windows.py +278 -0
  1642. package/xll/python/Lib/site-packages/pip/_vendor/pygments/LICENSE +25 -0
  1643. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__init__.py +82 -0
  1644. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__main__.py +17 -0
  1645. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
  1646. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
  1647. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
  1648. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
  1649. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
  1650. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
  1651. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
  1652. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
  1653. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
  1654. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
  1655. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
  1656. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
  1657. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
  1658. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
  1659. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
  1660. package/xll/python/Lib/site-packages/pip/_vendor/pygments/console.py +70 -0
  1661. package/xll/python/Lib/site-packages/pip/_vendor/pygments/filter.py +70 -0
  1662. package/xll/python/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
  1663. package/xll/python/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
  1664. package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatter.py +129 -0
  1665. package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
  1666. package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
  1667. package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
  1668. package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  1669. package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexer.py +963 -0
  1670. package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
  1671. package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
  1672. package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
  1673. package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
  1674. package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
  1675. package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
  1676. package/xll/python/Lib/site-packages/pip/_vendor/pygments/modeline.py +43 -0
  1677. package/xll/python/Lib/site-packages/pip/_vendor/pygments/plugin.py +72 -0
  1678. package/xll/python/Lib/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
  1679. package/xll/python/Lib/site-packages/pip/_vendor/pygments/scanner.py +104 -0
  1680. package/xll/python/Lib/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
  1681. package/xll/python/Lib/site-packages/pip/_vendor/pygments/style.py +203 -0
  1682. package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
  1683. package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
  1684. package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
  1685. package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
  1686. package/xll/python/Lib/site-packages/pip/_vendor/pygments/token.py +214 -0
  1687. package/xll/python/Lib/site-packages/pip/_vendor/pygments/unistring.py +153 -0
  1688. package/xll/python/Lib/site-packages/pip/_vendor/pygments/util.py +324 -0
  1689. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  1690. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
  1691. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
  1692. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
  1693. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
  1694. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
  1695. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
  1696. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
  1697. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
  1698. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
  1699. package/xll/python/Lib/site-packages/pip/_vendor/requests/LICENSE +175 -0
  1700. package/xll/python/Lib/site-packages/pip/_vendor/requests/__init__.py +179 -0
  1701. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
  1702. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
  1703. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
  1704. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
  1705. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
  1706. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
  1707. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
  1708. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
  1709. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
  1710. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
  1711. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
  1712. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
  1713. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
  1714. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
  1715. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
  1716. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
  1717. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
  1718. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
  1719. package/xll/python/Lib/site-packages/pip/_vendor/requests/__version__.py +14 -0
  1720. package/xll/python/Lib/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
  1721. package/xll/python/Lib/site-packages/pip/_vendor/requests/adapters.py +696 -0
  1722. package/xll/python/Lib/site-packages/pip/_vendor/requests/api.py +157 -0
  1723. package/xll/python/Lib/site-packages/pip/_vendor/requests/auth.py +314 -0
  1724. package/xll/python/Lib/site-packages/pip/_vendor/requests/certs.py +17 -0
  1725. package/xll/python/Lib/site-packages/pip/_vendor/requests/compat.py +90 -0
  1726. package/xll/python/Lib/site-packages/pip/_vendor/requests/cookies.py +561 -0
  1727. package/xll/python/Lib/site-packages/pip/_vendor/requests/exceptions.py +151 -0
  1728. package/xll/python/Lib/site-packages/pip/_vendor/requests/help.py +127 -0
  1729. package/xll/python/Lib/site-packages/pip/_vendor/requests/hooks.py +33 -0
  1730. package/xll/python/Lib/site-packages/pip/_vendor/requests/models.py +1039 -0
  1731. package/xll/python/Lib/site-packages/pip/_vendor/requests/packages.py +25 -0
  1732. package/xll/python/Lib/site-packages/pip/_vendor/requests/sessions.py +831 -0
  1733. package/xll/python/Lib/site-packages/pip/_vendor/requests/status_codes.py +128 -0
  1734. package/xll/python/Lib/site-packages/pip/_vendor/requests/structures.py +99 -0
  1735. package/xll/python/Lib/site-packages/pip/_vendor/requests/utils.py +1086 -0
  1736. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
  1737. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
  1738. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
  1739. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
  1740. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
  1741. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
  1742. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
  1743. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
  1744. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
  1745. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
  1746. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
  1747. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
  1748. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
  1749. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
  1750. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
  1751. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
  1752. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
  1753. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
  1754. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
  1755. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
  1756. package/xll/python/Lib/site-packages/pip/_vendor/rich/LICENSE +19 -0
  1757. package/xll/python/Lib/site-packages/pip/_vendor/rich/__init__.py +177 -0
  1758. package/xll/python/Lib/site-packages/pip/_vendor/rich/__main__.py +245 -0
  1759. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
  1760. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
  1761. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
  1762. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
  1763. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
  1764. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
  1765. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
  1766. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
  1767. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
  1768. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
  1769. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
  1770. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
  1771. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
  1772. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
  1773. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
  1774. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
  1775. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
  1776. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
  1777. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
  1778. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
  1779. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
  1780. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
  1781. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
  1782. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
  1783. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
  1784. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
  1785. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
  1786. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
  1787. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
  1788. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
  1789. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
  1790. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
  1791. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
  1792. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
  1793. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
  1794. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
  1795. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
  1796. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
  1797. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
  1798. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
  1799. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
  1800. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
  1801. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
  1802. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
  1803. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
  1804. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
  1805. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
  1806. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
  1807. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
  1808. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
  1809. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
  1810. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
  1811. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
  1812. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
  1813. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
  1814. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
  1815. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
  1816. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
  1817. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
  1818. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
  1819. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
  1820. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
  1821. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
  1822. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
  1823. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
  1824. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
  1825. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
  1826. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
  1827. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
  1828. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
  1829. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
  1830. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
  1831. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
  1832. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
  1833. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
  1834. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
  1835. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
  1836. package/xll/python/Lib/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
  1837. package/xll/python/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
  1838. package/xll/python/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
  1839. package/xll/python/Lib/site-packages/pip/_vendor/rich/_export_format.py +76 -0
  1840. package/xll/python/Lib/site-packages/pip/_vendor/rich/_extension.py +10 -0
  1841. package/xll/python/Lib/site-packages/pip/_vendor/rich/_fileno.py +24 -0
  1842. package/xll/python/Lib/site-packages/pip/_vendor/rich/_inspect.py +268 -0
  1843. package/xll/python/Lib/site-packages/pip/_vendor/rich/_log_render.py +94 -0
  1844. package/xll/python/Lib/site-packages/pip/_vendor/rich/_loop.py +43 -0
  1845. package/xll/python/Lib/site-packages/pip/_vendor/rich/_null_file.py +69 -0
  1846. package/xll/python/Lib/site-packages/pip/_vendor/rich/_palettes.py +309 -0
  1847. package/xll/python/Lib/site-packages/pip/_vendor/rich/_pick.py +17 -0
  1848. package/xll/python/Lib/site-packages/pip/_vendor/rich/_ratio.py +153 -0
  1849. package/xll/python/Lib/site-packages/pip/_vendor/rich/_spinners.py +482 -0
  1850. package/xll/python/Lib/site-packages/pip/_vendor/rich/_stack.py +16 -0
  1851. package/xll/python/Lib/site-packages/pip/_vendor/rich/_timer.py +19 -0
  1852. package/xll/python/Lib/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
  1853. package/xll/python/Lib/site-packages/pip/_vendor/rich/_windows.py +71 -0
  1854. package/xll/python/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
  1855. package/xll/python/Lib/site-packages/pip/_vendor/rich/_wrap.py +93 -0
  1856. package/xll/python/Lib/site-packages/pip/_vendor/rich/abc.py +33 -0
  1857. package/xll/python/Lib/site-packages/pip/_vendor/rich/align.py +306 -0
  1858. package/xll/python/Lib/site-packages/pip/_vendor/rich/ansi.py +241 -0
  1859. package/xll/python/Lib/site-packages/pip/_vendor/rich/bar.py +93 -0
  1860. package/xll/python/Lib/site-packages/pip/_vendor/rich/box.py +474 -0
  1861. package/xll/python/Lib/site-packages/pip/_vendor/rich/cells.py +174 -0
  1862. package/xll/python/Lib/site-packages/pip/_vendor/rich/color.py +621 -0
  1863. package/xll/python/Lib/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
  1864. package/xll/python/Lib/site-packages/pip/_vendor/rich/columns.py +187 -0
  1865. package/xll/python/Lib/site-packages/pip/_vendor/rich/console.py +2680 -0
  1866. package/xll/python/Lib/site-packages/pip/_vendor/rich/constrain.py +37 -0
  1867. package/xll/python/Lib/site-packages/pip/_vendor/rich/containers.py +167 -0
  1868. package/xll/python/Lib/site-packages/pip/_vendor/rich/control.py +219 -0
  1869. package/xll/python/Lib/site-packages/pip/_vendor/rich/default_styles.py +193 -0
  1870. package/xll/python/Lib/site-packages/pip/_vendor/rich/diagnose.py +39 -0
  1871. package/xll/python/Lib/site-packages/pip/_vendor/rich/emoji.py +91 -0
  1872. package/xll/python/Lib/site-packages/pip/_vendor/rich/errors.py +34 -0
  1873. package/xll/python/Lib/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
  1874. package/xll/python/Lib/site-packages/pip/_vendor/rich/filesize.py +88 -0
  1875. package/xll/python/Lib/site-packages/pip/_vendor/rich/highlighter.py +232 -0
  1876. package/xll/python/Lib/site-packages/pip/_vendor/rich/json.py +139 -0
  1877. package/xll/python/Lib/site-packages/pip/_vendor/rich/jupyter.py +101 -0
  1878. package/xll/python/Lib/site-packages/pip/_vendor/rich/layout.py +442 -0
  1879. package/xll/python/Lib/site-packages/pip/_vendor/rich/live.py +400 -0
  1880. package/xll/python/Lib/site-packages/pip/_vendor/rich/live_render.py +106 -0
  1881. package/xll/python/Lib/site-packages/pip/_vendor/rich/logging.py +297 -0
  1882. package/xll/python/Lib/site-packages/pip/_vendor/rich/markup.py +251 -0
  1883. package/xll/python/Lib/site-packages/pip/_vendor/rich/measure.py +151 -0
  1884. package/xll/python/Lib/site-packages/pip/_vendor/rich/padding.py +141 -0
  1885. package/xll/python/Lib/site-packages/pip/_vendor/rich/pager.py +34 -0
  1886. package/xll/python/Lib/site-packages/pip/_vendor/rich/palette.py +100 -0
  1887. package/xll/python/Lib/site-packages/pip/_vendor/rich/panel.py +317 -0
  1888. package/xll/python/Lib/site-packages/pip/_vendor/rich/pretty.py +1016 -0
  1889. package/xll/python/Lib/site-packages/pip/_vendor/rich/progress.py +1715 -0
  1890. package/xll/python/Lib/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
  1891. package/xll/python/Lib/site-packages/pip/_vendor/rich/prompt.py +400 -0
  1892. package/xll/python/Lib/site-packages/pip/_vendor/rich/protocol.py +42 -0
  1893. package/xll/python/Lib/site-packages/pip/_vendor/rich/py.typed +0 -0
  1894. package/xll/python/Lib/site-packages/pip/_vendor/rich/region.py +10 -0
  1895. package/xll/python/Lib/site-packages/pip/_vendor/rich/repr.py +149 -0
  1896. package/xll/python/Lib/site-packages/pip/_vendor/rich/rule.py +130 -0
  1897. package/xll/python/Lib/site-packages/pip/_vendor/rich/scope.py +86 -0
  1898. package/xll/python/Lib/site-packages/pip/_vendor/rich/screen.py +54 -0
  1899. package/xll/python/Lib/site-packages/pip/_vendor/rich/segment.py +752 -0
  1900. package/xll/python/Lib/site-packages/pip/_vendor/rich/spinner.py +132 -0
  1901. package/xll/python/Lib/site-packages/pip/_vendor/rich/status.py +131 -0
  1902. package/xll/python/Lib/site-packages/pip/_vendor/rich/style.py +792 -0
  1903. package/xll/python/Lib/site-packages/pip/_vendor/rich/styled.py +42 -0
  1904. package/xll/python/Lib/site-packages/pip/_vendor/rich/syntax.py +985 -0
  1905. package/xll/python/Lib/site-packages/pip/_vendor/rich/table.py +1006 -0
  1906. package/xll/python/Lib/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
  1907. package/xll/python/Lib/site-packages/pip/_vendor/rich/text.py +1361 -0
  1908. package/xll/python/Lib/site-packages/pip/_vendor/rich/theme.py +115 -0
  1909. package/xll/python/Lib/site-packages/pip/_vendor/rich/themes.py +5 -0
  1910. package/xll/python/Lib/site-packages/pip/_vendor/rich/traceback.py +899 -0
  1911. package/xll/python/Lib/site-packages/pip/_vendor/rich/tree.py +257 -0
  1912. package/xll/python/Lib/site-packages/pip/_vendor/tomli/LICENSE +21 -0
  1913. package/xll/python/Lib/site-packages/pip/_vendor/tomli/__init__.py +8 -0
  1914. package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
  1915. package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
  1916. package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
  1917. package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
  1918. package/xll/python/Lib/site-packages/pip/_vendor/tomli/_parser.py +777 -0
  1919. package/xll/python/Lib/site-packages/pip/_vendor/tomli/_re.py +115 -0
  1920. package/xll/python/Lib/site-packages/pip/_vendor/tomli/_types.py +10 -0
  1921. package/xll/python/Lib/site-packages/pip/_vendor/tomli/py.typed +1 -0
  1922. package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
  1923. package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
  1924. package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
  1925. package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
  1926. package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
  1927. package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
  1928. package/xll/python/Lib/site-packages/pip/_vendor/truststore/LICENSE +21 -0
  1929. package/xll/python/Lib/site-packages/pip/_vendor/truststore/__init__.py +36 -0
  1930. package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
  1931. package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
  1932. package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
  1933. package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
  1934. package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
  1935. package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
  1936. package/xll/python/Lib/site-packages/pip/_vendor/truststore/_api.py +341 -0
  1937. package/xll/python/Lib/site-packages/pip/_vendor/truststore/_macos.py +571 -0
  1938. package/xll/python/Lib/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
  1939. package/xll/python/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
  1940. package/xll/python/Lib/site-packages/pip/_vendor/truststore/_windows.py +567 -0
  1941. package/xll/python/Lib/site-packages/pip/_vendor/truststore/py.typed +0 -0
  1942. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1943. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
  1944. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
  1945. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
  1946. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
  1947. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
  1948. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
  1949. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
  1950. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
  1951. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
  1952. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
  1953. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
  1954. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
  1955. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
  1956. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/_version.py +2 -0
  1957. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/connection.py +572 -0
  1958. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
  1959. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  1960. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
  1961. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
  1962. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
  1963. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
  1964. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
  1965. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
  1966. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
  1967. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
  1968. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  1969. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
  1970. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
  1971. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
  1972. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
  1973. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
  1974. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
  1975. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
  1976. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
  1977. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
  1978. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
  1979. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
  1980. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/fields.py +274 -0
  1981. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
  1982. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
  1983. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
  1984. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
  1985. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  1986. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
  1987. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
  1988. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
  1989. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
  1990. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
  1991. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
  1992. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
  1993. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/request.py +191 -0
  1994. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/response.py +879 -0
  1995. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
  1996. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
  1997. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
  1998. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
  1999. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
  2000. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
  2001. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
  2002. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
  2003. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
  2004. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
  2005. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
  2006. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
  2007. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
  2008. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
  2009. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
  2010. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
  2011. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
  2012. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
  2013. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
  2014. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
  2015. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
  2016. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  2017. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
  2018. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
  2019. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
  2020. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
  2021. package/xll/python/Lib/site-packages/pip/_vendor/vendor.txt +19 -0
  2022. package/xll/python/Lib/site-packages/pip/py.typed +4 -0
  2023. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/INSTALLER +1 -0
  2024. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/METADATA +111 -0
  2025. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/RECORD +878 -0
  2026. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/REQUESTED +0 -0
  2027. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/WHEEL +4 -0
  2028. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/entry_points.txt +4 -0
  2029. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/AUTHORS.txt +860 -0
  2030. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/LICENSE.txt +20 -0
  2031. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  2032. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
  2033. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
  2034. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
  2035. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
  2036. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
  2037. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
  2038. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
  2039. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  2040. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
  2041. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
  2042. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
  2043. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
  2044. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  2045. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
  2046. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
  2047. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
  2048. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
  2049. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
  2050. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
  2051. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
  2052. package/xll/python/Lib/site-packages/typing_extensions-4.15.0.dist-info/INSTALLER +1 -0
  2053. package/xll/python/Lib/site-packages/typing_extensions-4.15.0.dist-info/METADATA +72 -0
  2054. package/xll/python/Lib/site-packages/typing_extensions-4.15.0.dist-info/RECORD +7 -0
  2055. package/xll/python/Lib/site-packages/typing_extensions-4.15.0.dist-info/WHEEL +4 -0
  2056. package/xll/python/Lib/site-packages/typing_extensions-4.15.0.dist-info/licenses/LICENSE +279 -0
  2057. package/xll/python/Lib/site-packages/typing_extensions.py +4317 -0
  2058. package/xll/python/Scripts/httpx.exe +0 -0
  2059. package/xll/python/Scripts/pip.exe +0 -0
  2060. package/xll/python/Scripts/pip3.12.exe +0 -0
  2061. package/xll/python/Scripts/pip3.exe +0 -0
  2062. package/xll/python/_asyncio.pyd +0 -0
  2063. package/xll/python/_bz2.pyd +0 -0
  2064. package/xll/python/_ctypes.pyd +0 -0
  2065. package/xll/python/_decimal.pyd +0 -0
  2066. package/xll/python/_elementtree.pyd +0 -0
  2067. package/xll/python/_hashlib.pyd +0 -0
  2068. package/xll/python/_lzma.pyd +0 -0
  2069. package/xll/python/_msi.pyd +0 -0
  2070. package/xll/python/_multiprocessing.pyd +0 -0
  2071. package/xll/python/_overlapped.pyd +0 -0
  2072. package/xll/python/_queue.pyd +0 -0
  2073. package/xll/python/_socket.pyd +0 -0
  2074. package/xll/python/_sqlite3.pyd +0 -0
  2075. package/xll/python/_ssl.pyd +0 -0
  2076. package/xll/python/_uuid.pyd +0 -0
  2077. package/xll/python/_wmi.pyd +0 -0
  2078. package/xll/python/_zoneinfo.pyd +0 -0
  2079. package/xll/python/libcrypto-3.dll +0 -0
  2080. package/xll/python/libffi-8.dll +0 -0
  2081. package/xll/python/libssl-3.dll +0 -0
  2082. package/xll/python/pyexpat.pyd +0 -0
  2083. package/xll/python/python.cat +0 -0
  2084. package/xll/python/python.exe +0 -0
  2085. package/xll/python/python3.dll +0 -0
  2086. package/xll/python/python312._pth +5 -0
  2087. package/xll/python/python312.dll +0 -0
  2088. package/xll/python/python312.zip +0 -0
  2089. package/xll/python/pythonw.exe +0 -0
  2090. package/xll/python/select.pyd +0 -0
  2091. package/xll/python/sqlite3.dll +0 -0
  2092. package/xll/python/unicodedata.pyd +0 -0
  2093. package/xll/python/vcruntime140_1.dll +0 -0
  2094. package/xll/python/winsound.pyd +0 -0
  2095. package/xll/modules/__pycache__/gameboy.cpython-312.pyc +0 -0
  2096. package/xll/modules/__pycache__/pong.cpython-312.pyc +0 -0
  2097. package/xll/modules/__pycache__/shortcut_xl.cpython-312.pyc +0 -0
  2098. package/xll/modules/__pycache__/stocks.cpython-312.pyc +0 -0
package/CHANGELOG.md CHANGED
@@ -1,51 +1,51 @@
1
- # Changelog
2
-
3
- ## [0.2.22]
4
-
5
- - **Tool extensions** — Build custom tools that the agent can call.
6
- - **Sandbox hardening** — The sandbox now blocks more ways code could escape isolation. When you update ShortcutXL, the sandbox automatically updates itself too.
7
- - **Faster install** — Sandbox is now downloaded on demand instead of bundled.
8
-
9
- ## [0.2.19]
10
-
11
- - **Sandbox & security hardening** — Code execution can now optionally run inside a sandbox (/sandbox) that blocks unauthorized file writes, reads, and in-bound and out-bound network traffic.
12
- - **Clearer privacy controls** - You can opt out of conversation uploads to our servers for complete privacy.
13
-
14
- ## [0.2.18]
15
-
16
- - **Fixed startup crash** — Resolved a circular import in the Python modules that caused "internal error" on every Excel action.
17
-
18
- ## [0.2.17]
19
-
20
- - **Better change review dialog** — Cell diffs now show full addresses (e.g. `Sheet1!A1`), formula details, and keyboard navigation with arrow keys for scrolling through large changesets.
21
- - **Alt+V paste is more reliable** — Fixed cases where Alt+V would fail silently. Now gives clear feedback and handles clipboard errors gracefully.
22
- - **Skill saving bug fixed** — Skills are not saved in the correct directory and survives application updates.
23
- - **Clean terminal on launch** — Starting ShortcutXL now clears prior output so you always begin with a fresh screen.
24
-
25
- ## [0.2.14]
26
-
27
- - **Python linting & type checking** — Added ruff and pyright checks for the Python modules and tests. Import sorting, unused variables, and type errors are now caught before publish.
28
- - **Cleaner dead-code detection** — Removed unused TypeScript exports and tightened knip configuration.
29
-
30
- ## [0.2.13]
31
-
32
- - **Stay logged in across terminals** — Previously, opening a new terminal while others were running could force you to log in again. Now your session persists reliably no matter how many terminals you have open.
33
-
34
- ## [0.2.12]
35
-
36
- - **No more popup windows during updates** — Background updates now run silently instead of flashing a command prompt on your screen.
37
-
38
- ## [0.2.11]
39
-
40
- - **More reliable first-time setup** — ShortcutXL now waits for Excel to be fully ready before running its connection test, so setup succeeds on the first try even on slower machines.
41
- - **Switched to production servers** — All traffic now routes through `shortcut.ai` production endpoints for better performance and reliability.
42
-
43
- ## [0.2.9]
44
-
45
- - **Works without Python on your PATH** — ShortcutXL now finds and loads Python automatically. No more fiddling with environment variables or system settings to get things working.
46
-
47
- ## [0.1.1]
48
-
49
- - **Update notifications** — ShortcutXL tells you when a new version is available and shows you the exact command to upgrade.
50
- - **Survives reinstalls** — Updating or reinstalling the npm package no longer breaks your Excel setup. Everything keeps working without reconfiguration.
51
- - **Handles Excel locks gracefully** — If Excel has ShortcutXL loaded during an update, you get a clear message instead of a crash.
1
+ # Changelog
2
+
3
+ ## [0.2.22]
4
+
5
+ - **Tool extensions** — Build custom tools that the agent can call.
6
+ - **Sandbox hardening** — The sandbox now blocks more ways code could escape isolation. When you update ShortcutXL, the sandbox automatically updates itself too.
7
+ - **Faster install** — Sandbox is now downloaded on demand instead of bundled.
8
+
9
+ ## [0.2.19]
10
+
11
+ - **Sandbox & security hardening** — Code execution can now optionally run inside a sandbox (/sandbox) that blocks unauthorized file writes, reads, and in-bound and out-bound network traffic.
12
+ - **Clearer privacy controls** - You can opt out of conversation uploads to our servers for complete privacy.
13
+
14
+ ## [0.2.18]
15
+
16
+ - **Fixed startup crash** — Resolved a circular import in the Python modules that caused "internal error" on every Excel action.
17
+
18
+ ## [0.2.17]
19
+
20
+ - **Better change review dialog** — Cell diffs now show full addresses (e.g. `Sheet1!A1`), formula details, and keyboard navigation with arrow keys for scrolling through large changesets.
21
+ - **Alt+V paste is more reliable** — Fixed cases where Alt+V would fail silently. Now gives clear feedback and handles clipboard errors gracefully.
22
+ - **Skill saving bug fixed** — Skills are not saved in the correct directory and survives application updates.
23
+ - **Clean terminal on launch** — Starting ShortcutXL now clears prior output so you always begin with a fresh screen.
24
+
25
+ ## [0.2.14]
26
+
27
+ - **Python linting & type checking** — Added ruff and pyright checks for the Python modules and tests. Import sorting, unused variables, and type errors are now caught before publish.
28
+ - **Cleaner dead-code detection** — Removed unused TypeScript exports and tightened knip configuration.
29
+
30
+ ## [0.2.13]
31
+
32
+ - **Stay logged in across terminals** — Previously, opening a new terminal while others were running could force you to log in again. Now your session persists reliably no matter how many terminals you have open.
33
+
34
+ ## [0.2.12]
35
+
36
+ - **No more popup windows during updates** — Background updates now run silently instead of flashing a command prompt on your screen.
37
+
38
+ ## [0.2.11]
39
+
40
+ - **More reliable first-time setup** — ShortcutXL now waits for Excel to be fully ready before running its connection test, so setup succeeds on the first try even on slower machines.
41
+ - **Switched to production servers** — All traffic now routes through `shortcut.ai` production endpoints for better performance and reliability.
42
+
43
+ ## [0.2.9]
44
+
45
+ - **Works without Python on your PATH** — ShortcutXL now finds and loads Python automatically. No more fiddling with environment variables or system settings to get things working.
46
+
47
+ ## [0.1.1]
48
+
49
+ - **Update notifications** — ShortcutXL tells you when a new version is available and shows you the exact command to upgrade.
50
+ - **Survives reinstalls** — Updating or reinstalling the npm package no longer breaks your Excel setup. Everything keeps working without reconfiguration.
51
+ - **Handles Excel locks gracefully** — If Excel has ShortcutXL loaded during an update, you get a clear message instead of a crash.
package/README.md CHANGED
@@ -1,41 +1,41 @@
1
- # ShortcutXL
2
-
3
- An AI agent that lives on your computer and has Excel superpowers. Made by the [Shortcut](https://shortcut.ai) team.
4
-
5
- ## Install
6
-
7
- ### 1. Open Command Prompt or PowerShell and install Node.js
8
-
9
- ```bash
10
- winget install OpenJS.NodeJS.LTS
11
- ```
12
-
13
- ### 2. Install ShortcutXL
14
-
15
- ```bash
16
- npm install -g shortcutxl
17
- ```
18
-
19
- ### 3. Launch ShortcutXL
20
-
21
- Type `shortcut` in your terminal:
22
-
23
- ```bash
24
- shortcut
25
- ```
26
-
27
- ## Requirements
28
-
29
- - **Windows 10/11** with **Excel 2016+** (64-bit)
30
- - **Node.js >= 20**
31
-
32
- ## Capabilities
33
-
34
- - **Data lives locally** — Workbooks, files, and skills stay on your machine.
35
- - **Multi-workbook operations** — Read and write across multiple open workbooks simultaneously.
36
- - **Deep feature control** — Pivots, charts, sensitivity tables, iterative recalculations, and more.
37
- - **VBA access** — Read, write, and run macros. Create VBA modules programmatically.
38
- - **File system access** — Save to arbitrary paths, open files from disk, export PDFs.
39
- - **Extensible** — Integrate any API or data source by adding a skill file or a custom tool extension.
40
- - **User-defined functions (UDFs)** — Custom Excel formulas powered by Python for live data, calculations, or database queries.
41
- - **External data connections** — ODBC, OLE DB, QueryTables, Power Query.
1
+ # ShortcutXL
2
+
3
+ An AI agent that lives on your computer and has Excel superpowers. Made by the [Shortcut](https://shortcut.ai) team.
4
+
5
+ ## Install
6
+
7
+ ### 1. Open Command Prompt or PowerShell and install Node.js
8
+
9
+ ```bash
10
+ winget install OpenJS.NodeJS.LTS
11
+ ```
12
+
13
+ ### 2. Install ShortcutXL
14
+
15
+ ```bash
16
+ npm install -g shortcutxl
17
+ ```
18
+
19
+ ### 3. Launch ShortcutXL
20
+
21
+ Type `shortcut` in your terminal:
22
+
23
+ ```bash
24
+ shortcut
25
+ ```
26
+
27
+ ## Requirements
28
+
29
+ - **Windows 10/11** with **Excel 2016+** (64-bit)
30
+ - **Node.js >= 20**
31
+
32
+ ## Capabilities
33
+
34
+ - **Data lives locally** — Workbooks, files, and skills stay on your machine.
35
+ - **Multi-workbook operations** — Read and write across multiple open workbooks simultaneously.
36
+ - **Deep feature control** — Pivots, charts, sensitivity tables, iterative recalculations, and more.
37
+ - **VBA access** — Read, write, and run macros. Create VBA modules programmatically.
38
+ - **File system access** — Save to arbitrary paths, open files from disk, export PDFs.
39
+ - **Extensible** — Integrate any API or data source by adding a skill file or a custom tool extension.
40
+ - **User-defined functions (UDFs)** — Custom Excel formulas powered by Python for live data, calculations, or database queries.
41
+ - **External data connections** — ODBC, OLE DB, QueryTables, Power Query.