@mindexec/cli 0.2.384 → 0.2.386

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 (267) hide show
  1. package/codex-runtime.js +31 -255
  2. package/package.json +1 -1
  3. package/remote-hub.js +2 -80
  4. package/scripts/remote-fast-live-rate-smoke.mjs +3 -19
  5. package/scripts/remote-fast-mdm-browser-smoke.mjs +2 -28
  6. package/scripts/remote-hub-smoke.mjs +2 -32
  7. package/scripts/setup-tree-sitter-grammars.mjs +5 -26
  8. package/server.js +33 -1811
  9. package/wwwroot/MindExecution.Web.styles.css +3 -0
  10. package/wwwroot/_content/MindExecution.Plugins.Admin/css/admin-dashboard.css +546 -0
  11. package/wwwroot/_content/MindExecution.Plugins.Directory/MindExecution.Plugins.Directory.u7utcng611.bundle.scp.css +7 -0
  12. package/wwwroot/_content/MindExecution.Plugins.Directory/background.png +0 -0
  13. package/wwwroot/_content/MindExecution.Plugins.Directory/directory-manager.js +202 -0
  14. package/wwwroot/_content/MindExecution.Plugins.Directory/exampleJsInterop.js +6 -0
  15. package/wwwroot/_content/MindExecution.Plugins.YouTube/css/youtube-search.css +251 -0
  16. package/wwwroot/_content/MindExecution.Shared/MindExecution.Shared.wsano1j4wp.bundle.scp.css +4 -0
  17. package/wwwroot/_content/MindExecution.Shared/css/admin-dashboard.css +559 -0
  18. package/wwwroot/_content/MindExecution.Shared/css/app.css +1 -0
  19. package/wwwroot/_content/MindExecution.Shared/css/mind-map-overrides.css +3705 -0
  20. package/wwwroot/_content/MindExecution.Shared/fonts/NotoSansKR-Bold.ttf +0 -0
  21. package/wwwroot/_content/MindExecution.Shared/fonts/NotoSansKR-Regular.ttf +0 -0
  22. package/wwwroot/_content/MindExecution.Shared/js/agent-visualization.js +359 -0
  23. package/wwwroot/_content/MindExecution.Shared/js/background-themes.js +1631 -0
  24. package/wwwroot/_content/MindExecution.Shared/js/code-master.js +8316 -0
  25. package/wwwroot/_content/MindExecution.Shared/js/file-system-helper.js +639 -0
  26. package/wwwroot/_content/MindExecution.Shared/js/helpers/InfiniteGridHelper.js +109 -0
  27. package/wwwroot/_content/MindExecution.Shared/js/marked.min.js +69 -0
  28. package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +9987 -0
  29. package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js.backup +1059 -0
  30. package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +24635 -0
  31. package/wwwroot/_content/MindExecution.Shared/js/mind-map-dev-guards.js +325 -0
  32. package/wwwroot/_content/MindExecution.Shared/js/mind-map-dnd.js +1491 -0
  33. package/wwwroot/_content/MindExecution.Shared/js/mind-map-dnd.js.bak +434 -0
  34. package/wwwroot/_content/MindExecution.Shared/js/mind-map-glow-shader.js +260 -0
  35. package/wwwroot/_content/MindExecution.Shared/js/mind-map-interactions.js +7821 -0
  36. package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js +160 -0
  37. package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +10449 -0
  38. package/wwwroot/_content/MindExecution.Shared/js/mind-map-logic-workers.js +977 -0
  39. package/wwwroot/_content/MindExecution.Shared/js/mind-map-menu-manager.js +1531 -0
  40. package/wwwroot/_content/MindExecution.Shared/js/mind-map-multi-select.js +1716 -0
  41. package/wwwroot/_content/MindExecution.Shared/js/mind-map-node-search-worker.js +554 -0
  42. package/wwwroot/_content/MindExecution.Shared/js/mind-map-nodes.js +4578 -0
  43. package/wwwroot/_content/MindExecution.Shared/js/mind-map-object-manager.js +489 -0
  44. package/wwwroot/_content/MindExecution.Shared/js/mind-map-object-manager.js.backup +372 -0
  45. package/wwwroot/_content/MindExecution.Shared/js/mind-map-pipeline.js +2203 -0
  46. package/wwwroot/_content/MindExecution.Shared/js/mind-map-text-lod-system.js +646 -0
  47. package/wwwroot/_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js +4735 -0
  48. package/wwwroot/_content/MindExecution.Shared/js/mind-map-texture-factory.js +2383 -0
  49. package/wwwroot/_content/MindExecution.Shared/js/mind-map-texture-factory.js.backup +1258 -0
  50. package/wwwroot/_content/MindExecution.Shared/js/mind-map-visibility-worker.js +890 -0
  51. package/wwwroot/_content/MindExecution.Shared/js/mindmap-toolbar.js +639 -0
  52. package/wwwroot/_content/MindExecution.Shared/js/native-drop-handler.js +170 -0
  53. package/wwwroot/_content/MindExecution.Shared/js/plan-master.js +788 -0
  54. package/wwwroot/_content/MindExecution.Shared/js/renderers/CSS3DRenderer.js +50 -0
  55. package/wwwroot/_content/MindExecution.Shared/js/texture-worker-manager.js +188 -0
  56. package/wwwroot/_content/MindExecution.Shared/js/texture-worker.js +208 -0
  57. package/wwwroot/_content/MindExecution.Shared/js/three.min.js +6 -0
  58. package/wwwroot/_content/MindExecution.Shared/js/titlebar-handler.js +191 -0
  59. package/wwwroot/_content/MindExecution.Shared/js/token-manager.js +37 -0
  60. package/wwwroot/_content/MindExecution.Shared/js/token-worker.js +28 -0
  61. package/wwwroot/_content/MindExecution.Shared/js/troika-bundle.js +5626 -0
  62. package/wwwroot/_content/MindExecution.Shared/js/troika-bundle.js.map +7 -0
  63. package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/css/all.min.css +9 -0
  64. package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-brands-400.ttf +0 -0
  65. package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-brands-400.woff2 +0 -0
  66. package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-regular-400.ttf +0 -0
  67. package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-regular-400.woff2 +0 -0
  68. package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-solid-900.ttf +0 -0
  69. package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-solid-900.woff2 +0 -0
  70. package/wwwroot/_content/MindExecution.Shared/models/all-MiniLM-L6-v2-quantized.onnx +0 -0
  71. package/wwwroot/_content/MindExecution.Shared/models/vocab.txt +30522 -0
  72. package/wwwroot/_framework/Google.Protobuf.9h59ukbel7.dll +0 -0
  73. package/wwwroot/_framework/Markdig.d1j7v41cl1.dll +0 -0
  74. package/wwwroot/_framework/MessagePack.Annotations.l6qv48kgpt.dll +0 -0
  75. package/wwwroot/_framework/MessagePack.eqoptzx9d5.dll +0 -0
  76. package/wwwroot/_framework/Microsoft.AspNetCore.Authorization.k7dsih5y5g.dll +0 -0
  77. package/wwwroot/_framework/Microsoft.AspNetCore.Components.6nyje9sa0g.dll +0 -0
  78. package/wwwroot/_framework/Microsoft.AspNetCore.Components.Authorization.iycd6unprw.dll +0 -0
  79. package/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.487u3twia4.dll +0 -0
  80. package/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.d0gcnmlxxz.dll +0 -0
  81. package/wwwroot/_framework/Microsoft.AspNetCore.Metadata.h4yevl9adi.dll +0 -0
  82. package/wwwroot/_framework/Microsoft.CSharp.8bsm8vx6su.dll +0 -0
  83. package/wwwroot/_framework/Microsoft.Data.Sqlite.jdlxgv2jtg.dll +0 -0
  84. package/wwwroot/_framework/Microsoft.EntityFrameworkCore.4gjazp7kjf.dll +0 -0
  85. package/wwwroot/_framework/Microsoft.EntityFrameworkCore.Abstractions.gocudnvz7b.dll +0 -0
  86. package/wwwroot/_framework/Microsoft.EntityFrameworkCore.Relational.lt4rsvinuo.dll +0 -0
  87. package/wwwroot/_framework/Microsoft.EntityFrameworkCore.Sqlite.69luj0fa9r.dll +0 -0
  88. package/wwwroot/_framework/Microsoft.Extensions.Caching.Abstractions.364t4jh3zz.dll +0 -0
  89. package/wwwroot/_framework/Microsoft.Extensions.Caching.Memory.izlxhpzosu.dll +0 -0
  90. package/wwwroot/_framework/Microsoft.Extensions.Configuration.8zq7hh41o7.dll +0 -0
  91. package/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.8if74zs6ea.dll +0 -0
  92. package/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.duvlngw8i0.dll +0 -0
  93. package/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.t2hh9kvx0o.dll +0 -0
  94. package/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.n4tg99oy8l.dll +0 -0
  95. package/wwwroot/_framework/Microsoft.Extensions.DependencyModel.h0d06ixk3e.dll +0 -0
  96. package/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.rl32bkx2sd.dll +0 -0
  97. package/wwwroot/_framework/Microsoft.Extensions.Logging.dlht1xei0t.dll +0 -0
  98. package/wwwroot/_framework/Microsoft.Extensions.Options.qeunebioml.dll +0 -0
  99. package/wwwroot/_framework/Microsoft.Extensions.Primitives.18cr6vnuuz.dll +0 -0
  100. package/wwwroot/_framework/Microsoft.IO.RecyclableMemoryStream.r915vovvw4.dll +0 -0
  101. package/wwwroot/_framework/Microsoft.IdentityModel.Abstractions.1ejljk3erv.dll +0 -0
  102. package/wwwroot/_framework/Microsoft.IdentityModel.JsonWebTokens.1596zr8gne.dll +0 -0
  103. package/wwwroot/_framework/Microsoft.IdentityModel.Logging.229uyvpgio.dll +0 -0
  104. package/wwwroot/_framework/Microsoft.IdentityModel.Tokens.9sibtajc9f.dll +0 -0
  105. package/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.ryia5gxiad.dll +0 -0
  106. package/wwwroot/_framework/Microsoft.JSInterop.ew9vz9o332.dll +0 -0
  107. package/wwwroot/_framework/Microsoft.ML.OnnxRuntime.w9deo1m5ss.dll +0 -0
  108. package/wwwroot/_framework/Microsoft.ML.Tokenizers.cm2vuv2z61.dll +0 -0
  109. package/wwwroot/_framework/Microsoft.NET.StringTools.3qbrf4v2ki.dll +0 -0
  110. package/wwwroot/_framework/MimeMapping.og9ys58ylm.dll +0 -0
  111. package/wwwroot/_framework/MindExecution.Core.y7ffihhajj.dll +0 -0
  112. package/wwwroot/_framework/MindExecution.Kernel.l5y3qroa7p.dll +0 -0
  113. package/wwwroot/_framework/MindExecution.Plugins.Admin.uuf238xa0h.dll +0 -0
  114. package/wwwroot/_framework/MindExecution.Plugins.Business.nyr3v25v48.dll +0 -0
  115. package/wwwroot/_framework/MindExecution.Plugins.Concept.l9z9tx9svt.dll +0 -0
  116. package/wwwroot/_framework/MindExecution.Plugins.Directory.ju87t8h3zs.dll +0 -0
  117. package/wwwroot/_framework/MindExecution.Plugins.PlanMaster.krn3jgvjpa.dll +0 -0
  118. package/wwwroot/_framework/MindExecution.Plugins.YouTube.5m53srfud6.dll +0 -0
  119. package/wwwroot/_framework/MindExecution.Shared.ojp3psugsm.dll +0 -0
  120. package/wwwroot/_framework/MindExecution.Web.82k6ktlkfg.dll +0 -0
  121. package/wwwroot/_framework/Newtonsoft.Json.a56zs13vug.dll +0 -0
  122. package/wwwroot/_framework/SQLitePCLRaw.batteries_v2.rrd1nzawpp.dll +0 -0
  123. package/wwwroot/_framework/SQLitePCLRaw.core.1dxloztpfz.dll +0 -0
  124. package/wwwroot/_framework/SQLitePCLRaw.provider.e_sqlite3.oekyzl53i1.dll +0 -0
  125. package/wwwroot/_framework/Supabase.Core.s1pkj4aj0l.dll +0 -0
  126. package/wwwroot/_framework/Supabase.Functions.qz4nu782sg.dll +0 -0
  127. package/wwwroot/_framework/Supabase.Gotrue.twah27pkik.dll +0 -0
  128. package/wwwroot/_framework/Supabase.Postgrest.gmuuv369ih.dll +0 -0
  129. package/wwwroot/_framework/Supabase.Realtime.ox3kchdy3w.dll +0 -0
  130. package/wwwroot/_framework/Supabase.Storage.fnjnepaowr.dll +0 -0
  131. package/wwwroot/_framework/Supabase.azmaw5pgcz.dll +0 -0
  132. package/wwwroot/_framework/System.Collections.23yxgetbju.dll +0 -0
  133. package/wwwroot/_framework/System.Collections.Concurrent.vow3rm1dku.dll +0 -0
  134. package/wwwroot/_framework/System.Collections.Immutable.ap9596utv5.dll +0 -0
  135. package/wwwroot/_framework/System.Collections.NonGeneric.npjkaz40oc.dll +0 -0
  136. package/wwwroot/_framework/System.Collections.Specialized.ugkjbs6p02.dll +0 -0
  137. package/wwwroot/_framework/System.ComponentModel.Annotations.clwo0z2oyu.dll +0 -0
  138. package/wwwroot/_framework/System.ComponentModel.Primitives.end4v0xe2c.dll +0 -0
  139. package/wwwroot/_framework/System.ComponentModel.TypeConverter.tgtp5sm4iv.dll +0 -0
  140. package/wwwroot/_framework/System.ComponentModel.wupoltkk1t.dll +0 -0
  141. package/wwwroot/_framework/System.Console.9dik0wogo2.dll +0 -0
  142. package/wwwroot/_framework/System.Data.Common.4v8jejsiu0.dll +0 -0
  143. package/wwwroot/_framework/System.Diagnostics.DiagnosticSource.e2q75ondtq.dll +0 -0
  144. package/wwwroot/_framework/System.Diagnostics.Process.9736yjnxs8.dll +0 -0
  145. package/wwwroot/_framework/System.Diagnostics.TraceSource.h9al53gbbw.dll +0 -0
  146. package/wwwroot/_framework/System.Diagnostics.Tracing.h4bcp2fo98.dll +0 -0
  147. package/wwwroot/_framework/System.Drawing.64oovy8qts.dll +0 -0
  148. package/wwwroot/_framework/System.Drawing.Primitives.o6jiqpgbgl.dll +0 -0
  149. package/wwwroot/_framework/System.Formats.Asn1.rylx5ipd40.dll +0 -0
  150. package/wwwroot/_framework/System.IO.Compression.iceabaupns.dll +0 -0
  151. package/wwwroot/_framework/System.IO.Pipelines.uw8csd3mlz.dll +0 -0
  152. package/wwwroot/_framework/System.IdentityModel.Tokens.Jwt.t67es60z5b.dll +0 -0
  153. package/wwwroot/_framework/System.Linq.Expressions.ty95ava37f.dll +0 -0
  154. package/wwwroot/_framework/System.Linq.Queryable.hs2195jrwy.dll +0 -0
  155. package/wwwroot/_framework/System.Linq.hssodjwmlf.dll +0 -0
  156. package/wwwroot/_framework/System.Memory.1k78n7wdxb.dll +0 -0
  157. package/wwwroot/_framework/System.Net.Http.3br8rfql4c.dll +0 -0
  158. package/wwwroot/_framework/System.Net.Http.Json.860wbh17d8.dll +0 -0
  159. package/wwwroot/_framework/System.Net.NetworkInformation.e3wr00853o.dll +0 -0
  160. package/wwwroot/_framework/System.Net.Ping.r5cw4mf1a4.dll +0 -0
  161. package/wwwroot/_framework/System.Net.Primitives.ksxwiwlvhu.dll +0 -0
  162. package/wwwroot/_framework/System.Net.WebSockets.6rt3n3gl2q.dll +0 -0
  163. package/wwwroot/_framework/System.Net.WebSockets.Client.z3usrzo7rz.dll +0 -0
  164. package/wwwroot/_framework/System.Numerics.Tensors.0c7z4mt3on.dll +0 -0
  165. package/wwwroot/_framework/System.Numerics.Vectors.lbdzx8reja.dll +0 -0
  166. package/wwwroot/_framework/System.ObjectModel.yct1gdirzf.dll +0 -0
  167. package/wwwroot/_framework/System.Private.CoreLib.c1dbswx1b2.dll +0 -0
  168. package/wwwroot/_framework/System.Private.Uri.zp9kmg0z93.dll +0 -0
  169. package/wwwroot/_framework/System.Private.Xml.Linq.lgv2n0akl4.dll +0 -0
  170. package/wwwroot/_framework/System.Private.Xml.dpsk8g304y.dll +0 -0
  171. package/wwwroot/_framework/System.Reactive.t3fuon548l.dll +0 -0
  172. package/wwwroot/_framework/System.Reflection.Emit.ILGeneration.1tcuz2cmbk.dll +0 -0
  173. package/wwwroot/_framework/System.Reflection.Emit.Lightweight.ddt2wylovg.dll +0 -0
  174. package/wwwroot/_framework/System.Reflection.Emit.d8vkadiwhg.dll +0 -0
  175. package/wwwroot/_framework/System.Reflection.Primitives.cpsl71xd1z.dll +0 -0
  176. package/wwwroot/_framework/System.Runtime.InteropServices.31vjgsfk1o.dll +0 -0
  177. package/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.pn2wvizzet.dll +0 -0
  178. package/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.l5rk496q70.dll +0 -0
  179. package/wwwroot/_framework/System.Runtime.Intrinsics.0zee9qcqfy.dll +0 -0
  180. package/wwwroot/_framework/System.Runtime.Loader.xw2jr9wl92.dll +0 -0
  181. package/wwwroot/_framework/System.Runtime.Numerics.ezj1dfyvbj.dll +0 -0
  182. package/wwwroot/_framework/System.Runtime.Serialization.Formatters.0y019e9zkr.dll +0 -0
  183. package/wwwroot/_framework/System.Runtime.Serialization.Primitives.bia5wb62c8.dll +0 -0
  184. package/wwwroot/_framework/System.Runtime.h9cduidfkh.dll +0 -0
  185. package/wwwroot/_framework/System.Security.Claims.2r18wim2rl.dll +0 -0
  186. package/wwwroot/_framework/System.Security.Cryptography.qqgybpoucx.dll +0 -0
  187. package/wwwroot/_framework/System.Text.Encoding.Extensions.9t3hs6kyll.dll +0 -0
  188. package/wwwroot/_framework/System.Text.Encodings.Web.wftjfh2crk.dll +0 -0
  189. package/wwwroot/_framework/System.Text.Json.0v0qgmri0w.dll +0 -0
  190. package/wwwroot/_framework/System.Text.RegularExpressions.cvkox11l6l.dll +0 -0
  191. package/wwwroot/_framework/System.Threading.Channels.419493szqu.dll +0 -0
  192. package/wwwroot/_framework/System.Threading.Thread.xhmys87xh5.dll +0 -0
  193. package/wwwroot/_framework/System.Threading.b66vzsz9g1.dll +0 -0
  194. package/wwwroot/_framework/System.Transactions.Local.7zfffdvnwf.dll +0 -0
  195. package/wwwroot/_framework/System.Web.HttpUtility.9up6xfbtuq.dll +0 -0
  196. package/wwwroot/_framework/System.Xml.Linq.n5rzv9nbf7.dll +0 -0
  197. package/wwwroot/_framework/System.Xml.ReaderWriter.ag8pilllob.dll +0 -0
  198. package/wwwroot/_framework/System.Xml.XDocument.sn51jas17n.dll +0 -0
  199. package/wwwroot/_framework/System.brmz7yk5qh.dll +0 -0
  200. package/wwwroot/_framework/Websocket.Client.vapounvmnl.dll +0 -0
  201. package/wwwroot/_framework/blazor.boot.json +305 -0
  202. package/wwwroot/_framework/blazor.webassembly.js +1 -0
  203. package/wwwroot/_framework/dotnet.js +4 -0
  204. package/wwwroot/_framework/dotnet.native.boem75ye5i.wasm +0 -0
  205. package/wwwroot/_framework/dotnet.native.qc8g39g30v.js +16 -0
  206. package/wwwroot/_framework/dotnet.runtime.opaiwunc3t.js +4 -0
  207. package/wwwroot/_framework/icudt_CJK.tjcz0u77k5.dat +0 -0
  208. package/wwwroot/_framework/icudt_EFIGS.tptq2av103.dat +0 -0
  209. package/wwwroot/_framework/icudt_no_CJK.lfu7j35m59.dat +0 -0
  210. package/wwwroot/_framework/netstandard.yvr3prsx0x.dll +0 -0
  211. package/wwwroot/_headers +17 -50
  212. package/wwwroot/appsettings.json +82 -82
  213. package/wwwroot/icon-192.png +0 -0
  214. package/wwwroot/icon-512.png +0 -0
  215. package/wwwroot/index.html +736 -22
  216. package/wwwroot/js/marketing-tool.js +180 -0
  217. package/wwwroot/manifest.webmanifest +21 -18
  218. package/wwwroot/robots.txt +1 -1
  219. package/wwwroot/service-worker-assets.js +857 -0
  220. package/wwwroot/service-worker.js +31 -5
  221. package/wwwroot/sitemap.xml +8 -20
  222. package/wwwroot/assets/AdminDashboardPage-AhImXOcJ.js +0 -1
  223. package/wwwroot/assets/AdminDashboardPage-B2vz2Px9.css +0 -1
  224. package/wwwroot/assets/AppSidebar-HIF29_Y1.js +0 -2
  225. package/wwwroot/assets/AuthPages-BrH6kRcv.css +0 -1
  226. package/wwwroot/assets/AuthPages-n1KbzJI5.js +0 -1
  227. package/wwwroot/assets/CodePage-Bncc352E.css +0 -1
  228. package/wwwroot/assets/CodePage-OKIzhHoC.js +0 -87
  229. package/wwwroot/assets/CompanyCorePage-Biw4RPhk.js +0 -13
  230. package/wwwroot/assets/CompanyCorePage-ChBnq1ve.css +0 -1
  231. package/wwwroot/assets/ExecutionModePage-BaNPZB_m.js +0 -18
  232. package/wwwroot/assets/ExecutionModePage-TLuld9l3.css +0 -1
  233. package/wwwroot/assets/LaunchLeadCapture-Bx9LM0IX.js +0 -1
  234. package/wwwroot/assets/LaunchLeadCapture-CiRI1shz.css +0 -1
  235. package/wwwroot/assets/MarketingHome-BsyerRpe.js +0 -1
  236. package/wwwroot/assets/MarketingHome-DPzaYzA_.css +0 -1
  237. package/wwwroot/assets/MindCanvas-07gqXHGA.js +0 -49
  238. package/wwwroot/assets/MindCanvas-DtqOZnoW.css +0 -1
  239. package/wwwroot/assets/PlanMasterPage-CJ36rep-.css +0 -1
  240. package/wwwroot/assets/PlanMasterPage-CT87Dr_2.js +0 -4
  241. package/wwwroot/assets/PricingPage-Cg_0i_ZR.css +0 -1
  242. package/wwwroot/assets/PricingPage-dDvHQskC.js +0 -1
  243. package/wwwroot/assets/ToolPages-CKI4mItc.js +0 -28
  244. package/wwwroot/assets/ToolPages-DIB187pZ.css +0 -1
  245. package/wwwroot/assets/YouTubeSearchPage-8iFuPSSo.js +0 -4
  246. package/wwwroot/assets/YouTubeSearchPage-IPPa_BIH.css +0 -1
  247. package/wwwroot/assets/app-runtime-xD2Z3NdN.js +0 -1
  248. package/wwwroot/assets/canvas-runtime-Nq2noXK-.js +0 -44
  249. package/wwwroot/assets/code-agent-runtime-B5PPZd1t.js +0 -74
  250. package/wwwroot/assets/executionModeSettings-NJqurj-o.js +0 -1
  251. package/wwwroot/assets/index-CyNhJb7A.js +0 -2
  252. package/wwwroot/assets/index-yNpEK-gp.css +0 -1
  253. package/wwwroot/assets/marketingTools-DN_rnHeB.js +0 -4
  254. package/wwwroot/assets/mindCanvasSearchWorker-BzPMsHOB.js +0 -1
  255. package/wwwroot/assets/mindexecution-mindcanvas.png +0 -0
  256. package/wwwroot/assets/mindexecution-prod-home-current.png +0 -0
  257. package/wwwroot/assets/mindexecution-prod-pricing-current.png +0 -0
  258. package/wwwroot/assets/pricingCheckoutShell-O-DnwmbU.js +0 -1
  259. package/wwwroot/assets/productionAdapterConfig-C5jfk6oG.js +0 -1
  260. package/wwwroot/assets/runtimeSettingsPersistenceProjection-BoNWmYjU.js +0 -1
  261. package/wwwroot/assets/storage-DPyjZEKZ.js +0 -1
  262. package/wwwroot/assets/supabaseAuthAdapter-m134Qdxn.js +0 -44
  263. package/wwwroot/assets/toolHandoff-D5e5f7t5.js +0 -4
  264. package/wwwroot/assets/vendor-icons-DE3gIReG.js +0 -681
  265. package/wwwroot/assets/vendor-msgpack-BE8aAsr3.js +0 -1
  266. package/wwwroot/assets/vendor-react-BXzpOyCS.js +0 -40
  267. package/wwwroot/favicon.svg +0 -7
@@ -0,0 +1,857 @@
1
+ self.assetsManifest = {
2
+ "version": "hjTg8Ic3",
3
+ "assets": [
4
+ {
5
+ "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
6
+ "url": "MindExecution.Web.styles.css"
7
+ },
8
+ {
9
+ "hash": "sha256-UPqTKbj8nau1eT5VHNC1tC0UBI4VXv1zKa+0faWxshU=",
10
+ "url": "_content/MindExecution.Plugins.Admin/css/admin-dashboard.css"
11
+ },
12
+ {
13
+ "hash": "sha256-OgYpbaytrvghoA2wxfCuOqt+e5Q+eQMbHnQ87cIbphI=",
14
+ "url": "_content/MindExecution.Plugins.Directory/MindExecution.Plugins.Directory.u7utcng611.bundle.scp.css"
15
+ },
16
+ {
17
+ "hash": "sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=",
18
+ "url": "_content/MindExecution.Plugins.Directory/background.png"
19
+ },
20
+ {
21
+ "hash": "sha256-zbSwAFkDDzT6iEeGi/bVEaBFjzNfftVBVjpzbTh4OdI=",
22
+ "url": "_content/MindExecution.Plugins.Directory/directory-manager.js"
23
+ },
24
+ {
25
+ "hash": "sha256-FrrTtczTUEHjkhc/zWRPC7CmxeXI0JCZGc1+76qQ8B4=",
26
+ "url": "_content/MindExecution.Plugins.Directory/exampleJsInterop.js"
27
+ },
28
+ {
29
+ "hash": "sha256-qN2MAcT7NMZ8W+YK/2QZnuAH2zhmPH7r9IntDZudcp4=",
30
+ "url": "_content/MindExecution.Plugins.YouTube/css/youtube-search.css"
31
+ },
32
+ {
33
+ "hash": "sha256-kH3CxJLY8XCVxtVS5nUE4qAo6XJdXO27Ffcgo3eeMpQ=",
34
+ "url": "_content/MindExecution.Shared/MindExecution.Shared.wsano1j4wp.bundle.scp.css"
35
+ },
36
+ {
37
+ "hash": "sha256-dECFbJ78bNjNFge6o4mmKTysfOyiDcq3cQZ0StvvlPs=",
38
+ "url": "_content/MindExecution.Shared/css/admin-dashboard.css"
39
+ },
40
+ {
41
+ "hash": "sha256-YEmo6ROJ8DcG7+1gRCcfe3ACOVHR5f/A7a5PZXlt9MU=",
42
+ "url": "_content/MindExecution.Shared/css/app.css"
43
+ },
44
+ {
45
+ "hash": "sha256-Ytyz/U4w1wE/ECjNlTAFqh1xWgV0uE+sE7vzlCaiMRw=",
46
+ "url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
47
+ },
48
+ {
49
+ "hash": "sha256-xzOUCn3GhxQoSLMKSR6XE47VjcWMTK4zxE4+5S2kEcs=",
50
+ "url": "_content/MindExecution.Shared/fonts/NotoSansKR-Bold.ttf"
51
+ },
52
+ {
53
+ "hash": "sha256-xzOUCn3GhxQoSLMKSR6XE47VjcWMTK4zxE4+5S2kEcs=",
54
+ "url": "_content/MindExecution.Shared/fonts/NotoSansKR-Regular.ttf"
55
+ },
56
+ {
57
+ "hash": "sha256-MYNrz9H7GGKt0xqhRkroNlGU+3c9bI+Iy8p1nX0RZKg=",
58
+ "url": "_content/MindExecution.Shared/js/agent-visualization.js"
59
+ },
60
+ {
61
+ "hash": "sha256-7nukRRerm88Ot5J1KdJMyyTHP3d+zlvaPaECTGeJZAk=",
62
+ "url": "_content/MindExecution.Shared/js/background-themes.js"
63
+ },
64
+ {
65
+ "hash": "sha256-o+cwRHSaWfV1KnCm21cuOmpU3+0jMhXKmyyIjj++WxI=",
66
+ "url": "_content/MindExecution.Shared/js/code-master.js"
67
+ },
68
+ {
69
+ "hash": "sha256-xWROAO24rxIpYwmG/pH9SJ3gXH69c6MLPsgsSlJuaIQ=",
70
+ "url": "_content/MindExecution.Shared/js/file-system-helper.js"
71
+ },
72
+ {
73
+ "hash": "sha256-pkFCSSfJY4+nBjJs7ZUgY6D/SdPVvGIFPqz4QY25dKI=",
74
+ "url": "_content/MindExecution.Shared/js/helpers/InfiniteGridHelper.js"
75
+ },
76
+ {
77
+ "hash": "sha256-Pn59f+s+XVjLbIBPaKtcJMx+XrYnD9bly7kSRzkhfQw=",
78
+ "url": "_content/MindExecution.Shared/js/marked.min.js"
79
+ },
80
+ {
81
+ "hash": "sha256-YPf7F0tNZE2Z0HpOVFTLiOlwi7ymhLiFS/rD8fPEqog=",
82
+ "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
+ },
84
+ {
85
+ "hash": "sha256-3iZ+9CNO+IpZAPIoIa8KkFViVO7bqWpzVW72fnkUAew=",
86
+ "url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
87
+ },
88
+ {
89
+ "hash": "sha256-XB6UFTVZbfLWFunK4KVesvR0KhzQpXQuVHbVB8klcBQ=",
90
+ "url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
91
+ },
92
+ {
93
+ "hash": "sha256-ARI4hKXCfvwtwIU5T/tOyGwpdfyqA8kO+V7kmwC7TEA=",
94
+ "url": "_content/MindExecution.Shared/js/mind-map-dev-guards.js"
95
+ },
96
+ {
97
+ "hash": "sha256-NZcjN5Pbkxuki2/z029Yog58DHkZDsmDU5baRgMruis=",
98
+ "url": "_content/MindExecution.Shared/js/mind-map-dnd.js"
99
+ },
100
+ {
101
+ "hash": "sha256-pEMbimhqMmWLbimvgLk7R36whWOSvc5ygXT7DJS50MA=",
102
+ "url": "_content/MindExecution.Shared/js/mind-map-dnd.js.bak"
103
+ },
104
+ {
105
+ "hash": "sha256-7B7gdxe1oZBi+9GHUXcaf6njTH0c3tg8//wBYGfbBcg=",
106
+ "url": "_content/MindExecution.Shared/js/mind-map-glow-shader.js"
107
+ },
108
+ {
109
+ "hash": "sha256-BttSHOsGHns7lqFvtBO8wx/u9p/yKabfwFRC7i3N6Qo=",
110
+ "url": "_content/MindExecution.Shared/js/mind-map-interactions.js"
111
+ },
112
+ {
113
+ "hash": "sha256-2l4PHH7mcabKibIZdh7LkR+E9OVbKDnAinGxMd44cmU=",
114
+ "url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
115
+ },
116
+ {
117
+ "hash": "sha256-qstMO9Bxs+AMfNADHl7cFYONcw204pXFH+mMQfRFgqo=",
118
+ "url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
119
+ },
120
+ {
121
+ "hash": "sha256-cOAX+ZZ70JU+eU1RVGVgVFBCJq40NZ/qZ0zbQl9wTzM=",
122
+ "url": "_content/MindExecution.Shared/js/mind-map-logic-workers.js"
123
+ },
124
+ {
125
+ "hash": "sha256-Qcf3y8yXcec7mgC01o0l2jz5CqtjZFbeTmoXEqy1aJU=",
126
+ "url": "_content/MindExecution.Shared/js/mind-map-menu-manager.js"
127
+ },
128
+ {
129
+ "hash": "sha256-vGcZ0vzKIRaHgJBk3MMivnsyJ5WMrzCrhILNFDaIfX4=",
130
+ "url": "_content/MindExecution.Shared/js/mind-map-multi-select.js"
131
+ },
132
+ {
133
+ "hash": "sha256-t9Clrdzh+IKymPvwLSXd4sHSiTkGKj6Xb8cbTl5Q/aA=",
134
+ "url": "_content/MindExecution.Shared/js/mind-map-node-search-worker.js"
135
+ },
136
+ {
137
+ "hash": "sha256-a7+COeA9L0WsbWhip+nHpv3alTeroB4ihM5VHFFEICE=",
138
+ "url": "_content/MindExecution.Shared/js/mind-map-nodes.js"
139
+ },
140
+ {
141
+ "hash": "sha256-3tRw4wn9UR7qbqh0+dpuQJYrPpQQZU4tRpjHEjpkjCc=",
142
+ "url": "_content/MindExecution.Shared/js/mind-map-object-manager.js"
143
+ },
144
+ {
145
+ "hash": "sha256-J6W4LtQ14coAV83CEn5izW4OQ6HgpUqi+6UsdlRGfWI=",
146
+ "url": "_content/MindExecution.Shared/js/mind-map-object-manager.js.backup"
147
+ },
148
+ {
149
+ "hash": "sha256-QvC3R24/3hjEyEkuxhKD2yA47gscsPoysFuaQJ6hhLQ=",
150
+ "url": "_content/MindExecution.Shared/js/mind-map-pipeline.js"
151
+ },
152
+ {
153
+ "hash": "sha256-v+uBBIrgde8GhLr8xKvC2nK4UhfzBBP69RFZW1kDkhs=",
154
+ "url": "_content/MindExecution.Shared/js/mind-map-text-lod-system.js"
155
+ },
156
+ {
157
+ "hash": "sha256-gJ9UUM2mKVxinytFoxOtO25SkeXdlgUJZrc6bL4I2Dg=",
158
+ "url": "_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js"
159
+ },
160
+ {
161
+ "hash": "sha256-uWZUzao/aNpU3SD4jtCVFMrTaGYtCAOAO6lxNt5UL1g=",
162
+ "url": "_content/MindExecution.Shared/js/mind-map-texture-factory.js"
163
+ },
164
+ {
165
+ "hash": "sha256-aPoxruQaOIkX+R/NXEtKYw5OBa0hRFmVaSw13NgF7mU=",
166
+ "url": "_content/MindExecution.Shared/js/mind-map-texture-factory.js.backup"
167
+ },
168
+ {
169
+ "hash": "sha256-5mgLA2obHdBQ5qgwG26pKX7q4ehmG4TOGE/0Iw7tD7s=",
170
+ "url": "_content/MindExecution.Shared/js/mind-map-visibility-worker.js"
171
+ },
172
+ {
173
+ "hash": "sha256-XrXV7l2M7v2rA3bI7rk6Wwd5J8Qaqllr0UCgmhrstpo=",
174
+ "url": "_content/MindExecution.Shared/js/mindmap-toolbar.js"
175
+ },
176
+ {
177
+ "hash": "sha256-sYXZJ0TIMNKNKVMU8D8zuY21gYaQe5nfxf38jGG5Vso=",
178
+ "url": "_content/MindExecution.Shared/js/native-drop-handler.js"
179
+ },
180
+ {
181
+ "hash": "sha256-niFZ3izTz0U6mbyeTCqTilDNVD4jUIP5m0le64bbHz4=",
182
+ "url": "_content/MindExecution.Shared/js/plan-master.js"
183
+ },
184
+ {
185
+ "hash": "sha256-xE1f8peGyvY5VMWADJjIaPsV8/r49jEn5zzFYkpodsM=",
186
+ "url": "_content/MindExecution.Shared/js/renderers/CSS3DRenderer.js"
187
+ },
188
+ {
189
+ "hash": "sha256-xaeJb+RAPW+ApkaW/dGXbgKPdiEzQmFOdwIKRElSOTo=",
190
+ "url": "_content/MindExecution.Shared/js/texture-worker-manager.js"
191
+ },
192
+ {
193
+ "hash": "sha256-QnTDTOFoGCohiGDtq0CjYKUBINt558ot2SyO1zdmH5g=",
194
+ "url": "_content/MindExecution.Shared/js/texture-worker.js"
195
+ },
196
+ {
197
+ "hash": "sha256-knS7zsjZYWhibHMrXTHHdaqM+36qBZm+wMF1kIosHOI=",
198
+ "url": "_content/MindExecution.Shared/js/three.min.js"
199
+ },
200
+ {
201
+ "hash": "sha256-utcm5br503HEiMW8/02Vf5jfTHRfc6YYMGQBhw0DYZw=",
202
+ "url": "_content/MindExecution.Shared/js/titlebar-handler.js"
203
+ },
204
+ {
205
+ "hash": "sha256-gsUYKDu5S/F5AGSg2enpKoz2nUlKGtNLa/4t4+cvHd0=",
206
+ "url": "_content/MindExecution.Shared/js/token-manager.js"
207
+ },
208
+ {
209
+ "hash": "sha256-sLMqj8SGZKfi40LWhCLgpHh96isGZej7KG/mkqQlDw4=",
210
+ "url": "_content/MindExecution.Shared/js/token-worker.js"
211
+ },
212
+ {
213
+ "hash": "sha256-SI8HlP2YC8hWgaVQHkgy4scTyCbAs4au83AJuQyLbzM=",
214
+ "url": "_content/MindExecution.Shared/js/troika-bundle.js"
215
+ },
216
+ {
217
+ "hash": "sha256-k2DrPx1DXIQkdbPWv0i32DkgzFJzDmCvEj1+mFqJ3jk=",
218
+ "url": "_content/MindExecution.Shared/js/troika-bundle.js.map"
219
+ },
220
+ {
221
+ "hash": "sha256-wiz7ZSCn/btzhjKDQBms9Hx4sSeUYsDrTLg7roPstac=",
222
+ "url": "_content/MindExecution.Shared/lib/font-awesome/css/all.min.css"
223
+ },
224
+ {
225
+ "hash": "sha256-VlbVlrxZcWWkIYL2eyufF9KuR6nj7xsEK5pylzlzBwU=",
226
+ "url": "_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-brands-400.ttf"
227
+ },
228
+ {
229
+ "hash": "sha256-OokkzVIDooYocWrttc7wlD2kw7ROP/zukKsGOHtBxJA=",
230
+ "url": "_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-brands-400.woff2"
231
+ },
232
+ {
233
+ "hash": "sha256-XQLcm4WOPIWnlPh+N5hX9P7cTibPFQAXFKmg4LHSKU0=",
234
+ "url": "_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-regular-400.ttf"
235
+ },
236
+ {
237
+ "hash": "sha256-K8zs8Lx+ls1c5AA6vrOunuSj0ZFYxObt/S3zLS8NVyE=",
238
+ "url": "_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-regular-400.woff2"
239
+ },
240
+ {
241
+ "hash": "sha256-+78G10N6ow881EyWg4AZNUWo/D6t+3rYl7uxAe7+xaI=",
242
+ "url": "_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-solid-900.ttf"
243
+ },
244
+ {
245
+ "hash": "sha256-n8hfOkVEqw1XDH+Pm7uI242Sw1mycHWA6osHx1Zz6uI=",
246
+ "url": "_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-solid-900.woff2"
247
+ },
248
+ {
249
+ "hash": "sha256-H99lZn1A63xxeJIhEzNl2X4OrxRXR8QDBzIuxBBRU0w=",
250
+ "url": "_content/MindExecution.Shared/models/all-MiniLM-L6-v2-quantized.onnx"
251
+ },
252
+ {
253
+ "hash": "sha256-B+ztN1zsFE0nyQAkHz4zlHjeyVj5L928VR8pXJkgOKM=",
254
+ "url": "_content/MindExecution.Shared/models/vocab.txt"
255
+ },
256
+ {
257
+ "hash": "sha256-A541k1abRTWr6MqmCXfGDYcKHirypJS19mzPQu3lJt0=",
258
+ "url": "_framework/Google.Protobuf.9h59ukbel7.dll"
259
+ },
260
+ {
261
+ "hash": "sha256-34Ry04hh+o21Q3VDOJoD0lmCasZYDBsC9CvOeWz3BjI=",
262
+ "url": "_framework/Markdig.d1j7v41cl1.dll"
263
+ },
264
+ {
265
+ "hash": "sha256-TXqgfSiMajkQnu32Q147qMQTNCh27Qi7WmTVXdOd0E0=",
266
+ "url": "_framework/MessagePack.Annotations.l6qv48kgpt.dll"
267
+ },
268
+ {
269
+ "hash": "sha256-ir2PqNZvQdW90kO3QMndOSkVqLTfE3PfWh8/3+CTqcg=",
270
+ "url": "_framework/MessagePack.eqoptzx9d5.dll"
271
+ },
272
+ {
273
+ "hash": "sha256-4Ddrkm2Srb5b/RhPJbwEApTIuAli1aMHNaHOTlhIZK4=",
274
+ "url": "_framework/Microsoft.AspNetCore.Authorization.k7dsih5y5g.dll"
275
+ },
276
+ {
277
+ "hash": "sha256-IgjZdsj/7tVVJZ4DbGjwodTyc4ZzALDbmpTufW1QA40=",
278
+ "url": "_framework/Microsoft.AspNetCore.Components.6nyje9sa0g.dll"
279
+ },
280
+ {
281
+ "hash": "sha256-2jBM4/a43VkCEGNTo9ix2wJ7wcQrjzzsnz6TcL5oNp0=",
282
+ "url": "_framework/Microsoft.AspNetCore.Components.Authorization.iycd6unprw.dll"
283
+ },
284
+ {
285
+ "hash": "sha256-FHejd/DI18Re+MHwhClST1OW2oKAozglmuZ8Sws/Zy0=",
286
+ "url": "_framework/Microsoft.AspNetCore.Components.Web.487u3twia4.dll"
287
+ },
288
+ {
289
+ "hash": "sha256-8wSQ4PXWJOP0vmb846GK+kqBjD+oWX30JnXa8+Ya5b8=",
290
+ "url": "_framework/Microsoft.AspNetCore.Components.WebAssembly.d0gcnmlxxz.dll"
291
+ },
292
+ {
293
+ "hash": "sha256-QafPuABsfHsCt2w6CWm2UO+m8KUItL7IVV5Fq+9l76A=",
294
+ "url": "_framework/Microsoft.AspNetCore.Metadata.h4yevl9adi.dll"
295
+ },
296
+ {
297
+ "hash": "sha256-1KxBxtDJwTAuqKDR/sKg4FHqD/6cATEeA4fXlO0FzRg=",
298
+ "url": "_framework/Microsoft.CSharp.8bsm8vx6su.dll"
299
+ },
300
+ {
301
+ "hash": "sha256-iUmaqm7wj5Wrslrvdd+du75iN1l/rziMxvT6/fcRjHk=",
302
+ "url": "_framework/Microsoft.Data.Sqlite.jdlxgv2jtg.dll"
303
+ },
304
+ {
305
+ "hash": "sha256-9Pd3GwRNfEY0aM61akc0WEfTViDuRQwEfcaW9J3D7Mw=",
306
+ "url": "_framework/Microsoft.EntityFrameworkCore.4gjazp7kjf.dll"
307
+ },
308
+ {
309
+ "hash": "sha256-UMvPdl8udfHPAa5vWkcEyTnoZ3ORsQb4Smz9ghsCDM4=",
310
+ "url": "_framework/Microsoft.EntityFrameworkCore.Abstractions.gocudnvz7b.dll"
311
+ },
312
+ {
313
+ "hash": "sha256-11ZATtUJ2JX2zeMSf/Z/7PMZdq/Hfo5kPKTVNsmuF7w=",
314
+ "url": "_framework/Microsoft.EntityFrameworkCore.Relational.lt4rsvinuo.dll"
315
+ },
316
+ {
317
+ "hash": "sha256-5tV9KYV0awK34dJPezryHV5iJ9VQA7Q0iYCVjChhJgI=",
318
+ "url": "_framework/Microsoft.EntityFrameworkCore.Sqlite.69luj0fa9r.dll"
319
+ },
320
+ {
321
+ "hash": "sha256-Wzpv5bcq7Wsu9PPFXS+u5fWnqw0ipWKIJkQX3KSWzow=",
322
+ "url": "_framework/Microsoft.Extensions.Caching.Abstractions.364t4jh3zz.dll"
323
+ },
324
+ {
325
+ "hash": "sha256-ci0xox4XN0ftdUITfOlZQdRJ2u/cb+90x6TychVD5N4=",
326
+ "url": "_framework/Microsoft.Extensions.Caching.Memory.izlxhpzosu.dll"
327
+ },
328
+ {
329
+ "hash": "sha256-VJnsEhYOSnZX9WQqjhhxGS3bRxztaFJwM28xEI5be6Y=",
330
+ "url": "_framework/Microsoft.Extensions.Configuration.8zq7hh41o7.dll"
331
+ },
332
+ {
333
+ "hash": "sha256-QHpxA81KskQ85419fjDS/XsdhJudVj+LubsRH42oXyw=",
334
+ "url": "_framework/Microsoft.Extensions.Configuration.Abstractions.8if74zs6ea.dll"
335
+ },
336
+ {
337
+ "hash": "sha256-i7RSPAQomw/YFG9kx1rcjT9WRBktFN5Ie+6LNogtOQc=",
338
+ "url": "_framework/Microsoft.Extensions.Configuration.Json.duvlngw8i0.dll"
339
+ },
340
+ {
341
+ "hash": "sha256-tRlR+0cA7DECBophJ7uK6e03IhvpRNlwpoGD1nbe6ec=",
342
+ "url": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.t2hh9kvx0o.dll"
343
+ },
344
+ {
345
+ "hash": "sha256-iZuDtfloTZeG3wB3nVtUD20jBKOLnIAq7rQwsT+rRLE=",
346
+ "url": "_framework/Microsoft.Extensions.DependencyInjection.n4tg99oy8l.dll"
347
+ },
348
+ {
349
+ "hash": "sha256-4Z/yKmNyitkpahNFPmC1CNUgGS+Si/FZGcLJms9xNoU=",
350
+ "url": "_framework/Microsoft.Extensions.DependencyModel.h0d06ixk3e.dll"
351
+ },
352
+ {
353
+ "hash": "sha256-QTZiRttwy/rr9Rda7js8EVENyoKvF6I1WSkf86WLIMA=",
354
+ "url": "_framework/Microsoft.Extensions.Logging.Abstractions.rl32bkx2sd.dll"
355
+ },
356
+ {
357
+ "hash": "sha256-USNlS/7EV0pMFwDGvNhyOwRcMpCUI9sZh+0QAamgm08=",
358
+ "url": "_framework/Microsoft.Extensions.Logging.dlht1xei0t.dll"
359
+ },
360
+ {
361
+ "hash": "sha256-svOrxX38OLxNvo6SWPZE369IgIy0Co6cYTl69sl+/MQ=",
362
+ "url": "_framework/Microsoft.Extensions.Options.qeunebioml.dll"
363
+ },
364
+ {
365
+ "hash": "sha256-X/fY6oU7ffvOneQSI7u8fCVBVvPqiQJ011G9XMQou8g=",
366
+ "url": "_framework/Microsoft.Extensions.Primitives.18cr6vnuuz.dll"
367
+ },
368
+ {
369
+ "hash": "sha256-ryT6NCt/nwhifrGy+UEPL2SXCx4TXF/kg3h4+Ks+y2g=",
370
+ "url": "_framework/Microsoft.IO.RecyclableMemoryStream.r915vovvw4.dll"
371
+ },
372
+ {
373
+ "hash": "sha256-aci25MrsL0APtch2tfoLu9eOBJJvT0W1nijd/41WBUg=",
374
+ "url": "_framework/Microsoft.IdentityModel.Abstractions.1ejljk3erv.dll"
375
+ },
376
+ {
377
+ "hash": "sha256-xULAzXU914wjK7md+5a6mFjnUBZTZOJDxVUk3+NNUqQ=",
378
+ "url": "_framework/Microsoft.IdentityModel.JsonWebTokens.1596zr8gne.dll"
379
+ },
380
+ {
381
+ "hash": "sha256-Wldlk+9Z8TE89cz81jc7jTKHs+gvol0hiZgVJN4kDM8=",
382
+ "url": "_framework/Microsoft.IdentityModel.Logging.229uyvpgio.dll"
383
+ },
384
+ {
385
+ "hash": "sha256-2QhIFrrPiaIkH/Usc7SbpR4CaEidCAyFPEZl8/ipisM=",
386
+ "url": "_framework/Microsoft.IdentityModel.Tokens.9sibtajc9f.dll"
387
+ },
388
+ {
389
+ "hash": "sha256-fYzOx06Qj4ix7+OdEL8EpMavcH6pcSWs97DingoywdY=",
390
+ "url": "_framework/Microsoft.JSInterop.WebAssembly.ryia5gxiad.dll"
391
+ },
392
+ {
393
+ "hash": "sha256-IrX5UxymKz+4ObhMjcxkVH3KFKydPaneR9y4rkFud4Y=",
394
+ "url": "_framework/Microsoft.JSInterop.ew9vz9o332.dll"
395
+ },
396
+ {
397
+ "hash": "sha256-TGmF30qi+BC6iis3w8eR5hnY/hJpVKa9KM/9P0reupU=",
398
+ "url": "_framework/Microsoft.ML.OnnxRuntime.w9deo1m5ss.dll"
399
+ },
400
+ {
401
+ "hash": "sha256-BLnLmmvOMzBx4HHGc1qJFLtV4eofGXcH7XG/TKv2ync=",
402
+ "url": "_framework/Microsoft.ML.Tokenizers.cm2vuv2z61.dll"
403
+ },
404
+ {
405
+ "hash": "sha256-5RyGeP1gKiHCSbNp6DOWYBmTUTJHb5Q02olr74CLo7E=",
406
+ "url": "_framework/Microsoft.NET.StringTools.3qbrf4v2ki.dll"
407
+ },
408
+ {
409
+ "hash": "sha256-aDT1phBFbtQuu2dKG0fMtPeNJLuPRJ+CH2/3h8BGAzs=",
410
+ "url": "_framework/MimeMapping.og9ys58ylm.dll"
411
+ },
412
+ {
413
+ "hash": "sha256-zsCKUWBWzDly1h5/vMtqVRb7PeG4lgfIZbQuJFyY1QU=",
414
+ "url": "_framework/MindExecution.Core.y7ffihhajj.dll"
415
+ },
416
+ {
417
+ "hash": "sha256-V4pQTxua0lGWpdsFpo7bHr6rPFWZeofry7e9On+OJmo=",
418
+ "url": "_framework/MindExecution.Kernel.l5y3qroa7p.dll"
419
+ },
420
+ {
421
+ "hash": "sha256-OrCIUack8nSWBBiZK65DlJ3YGM677RAA8cX/oJjhm5c=",
422
+ "url": "_framework/MindExecution.Plugins.Admin.uuf238xa0h.dll"
423
+ },
424
+ {
425
+ "hash": "sha256-T4c7+fDE4TQAXAoFmHnYM+tT7RSvAM7W0VinLPoD+6U=",
426
+ "url": "_framework/MindExecution.Plugins.Business.nyr3v25v48.dll"
427
+ },
428
+ {
429
+ "hash": "sha256-N/QoILmTilvX5Zo4SCy7ENTCqMzSC6RIEQlEwtxkGPo=",
430
+ "url": "_framework/MindExecution.Plugins.Concept.l9z9tx9svt.dll"
431
+ },
432
+ {
433
+ "hash": "sha256-dapAkel5qj7fK6BiDDmvkzZL96frl8k/3yP8SDr3rMw=",
434
+ "url": "_framework/MindExecution.Plugins.Directory.ju87t8h3zs.dll"
435
+ },
436
+ {
437
+ "hash": "sha256-8IFpm/2fpsWD3syyl58LTSWSGC8PfcrsLdmmSKR1Sq0=",
438
+ "url": "_framework/MindExecution.Plugins.PlanMaster.krn3jgvjpa.dll"
439
+ },
440
+ {
441
+ "hash": "sha256-02hOpWFNogHEBktxD4XUnDN/oKFJnO0g8n4bYCP0tAY=",
442
+ "url": "_framework/MindExecution.Plugins.YouTube.5m53srfud6.dll"
443
+ },
444
+ {
445
+ "hash": "sha256-FC0pE2bsyE9i7GNSXCghKULaYYZXUEdepb2VxPfcYaA=",
446
+ "url": "_framework/MindExecution.Shared.ojp3psugsm.dll"
447
+ },
448
+ {
449
+ "hash": "sha256-ECPSyJrziGEVhCw8ZUXkRsfTDjWCk676m5yz99b13N4=",
450
+ "url": "_framework/MindExecution.Web.82k6ktlkfg.dll"
451
+ },
452
+ {
453
+ "hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
454
+ "url": "_framework/Newtonsoft.Json.a56zs13vug.dll"
455
+ },
456
+ {
457
+ "hash": "sha256-CYGx4eJN3xjkLQ9s6noxjnNbh1+Yez4wb1VRGHJrJKc=",
458
+ "url": "_framework/SQLitePCLRaw.batteries_v2.rrd1nzawpp.dll"
459
+ },
460
+ {
461
+ "hash": "sha256-28/QTpWu+p7w3K1M0gAJsBjdPSlDyMzz9AWXue2RYbg=",
462
+ "url": "_framework/SQLitePCLRaw.core.1dxloztpfz.dll"
463
+ },
464
+ {
465
+ "hash": "sha256-MN1q54mSgfm3FaufjOsdZ7bUyNdqIdqq/CFZVfzzfww=",
466
+ "url": "_framework/SQLitePCLRaw.provider.e_sqlite3.oekyzl53i1.dll"
467
+ },
468
+ {
469
+ "hash": "sha256-0J7JrvsCWPIGGOHvg6eQdlbowQJX88M1w8PLuGp/yvs=",
470
+ "url": "_framework/Supabase.Core.s1pkj4aj0l.dll"
471
+ },
472
+ {
473
+ "hash": "sha256-BtNMx8dlAOsu+eIsvIQnzsvJGN6CC8OyJyOEdjYRNqo=",
474
+ "url": "_framework/Supabase.Functions.qz4nu782sg.dll"
475
+ },
476
+ {
477
+ "hash": "sha256-fZ/Rhvte1/pcm4zsKm9J7f0QUo4nFSSNX7E9aUj9d8w=",
478
+ "url": "_framework/Supabase.Gotrue.twah27pkik.dll"
479
+ },
480
+ {
481
+ "hash": "sha256-iAFhZnpd/Np1iUK1EMWgcALjZl7dpOB/JTlLX1Mswl0=",
482
+ "url": "_framework/Supabase.Postgrest.gmuuv369ih.dll"
483
+ },
484
+ {
485
+ "hash": "sha256-FO99ZdaMVo2lG136nVvZBAPEzr4IyyQaVJH9zyZs/Jk=",
486
+ "url": "_framework/Supabase.Realtime.ox3kchdy3w.dll"
487
+ },
488
+ {
489
+ "hash": "sha256-xcpFFVCKg9rWvQrN57I/g2PbZXtlHVR4/vglbmIodnQ=",
490
+ "url": "_framework/Supabase.Storage.fnjnepaowr.dll"
491
+ },
492
+ {
493
+ "hash": "sha256-Kon62RCQ4pqGTawYsp9LgAVwT/66ptahk8JIgsdBQvk=",
494
+ "url": "_framework/Supabase.azmaw5pgcz.dll"
495
+ },
496
+ {
497
+ "hash": "sha256-Mj1cdAdUxZ7F/ULrOiOQEIzu8OJG+tfLz7Et4dPAkrY=",
498
+ "url": "_framework/System.Collections.23yxgetbju.dll"
499
+ },
500
+ {
501
+ "hash": "sha256-PytlRTU4Hx5iWOPXNkXYQIt24hVsUppWY5vgpx8PTIc=",
502
+ "url": "_framework/System.Collections.Concurrent.vow3rm1dku.dll"
503
+ },
504
+ {
505
+ "hash": "sha256-op5xSkGyOSKVhFHn5U0j7SiJ3WEPLqA02/ss1NKf2Yg=",
506
+ "url": "_framework/System.Collections.Immutable.ap9596utv5.dll"
507
+ },
508
+ {
509
+ "hash": "sha256-y5bX6NSbxA8o7EJ9C0vujUNU93Wd2UhdpA5+C8WpRPY=",
510
+ "url": "_framework/System.Collections.NonGeneric.npjkaz40oc.dll"
511
+ },
512
+ {
513
+ "hash": "sha256-opanE88Yp6SrsrXZ9LaqM1diY8Q0jMrG3jvYM8v3Rao=",
514
+ "url": "_framework/System.Collections.Specialized.ugkjbs6p02.dll"
515
+ },
516
+ {
517
+ "hash": "sha256-ALmLuW4qrS6x9RlN/Gl2e3DeAW9Ms8T9YcuoATYejvc=",
518
+ "url": "_framework/System.ComponentModel.Annotations.clwo0z2oyu.dll"
519
+ },
520
+ {
521
+ "hash": "sha256-Gi1I/XBckUQXoJLoNNMmz5spL9eqeCkS/D1vYEgV57g=",
522
+ "url": "_framework/System.ComponentModel.Primitives.end4v0xe2c.dll"
523
+ },
524
+ {
525
+ "hash": "sha256-bdYu+4aR6MdkA7o/05m1kwDrWA4dxqHs1kRme5Xna24=",
526
+ "url": "_framework/System.ComponentModel.TypeConverter.tgtp5sm4iv.dll"
527
+ },
528
+ {
529
+ "hash": "sha256-GF4wfa72heuiKR0QdZ/8Ymye9Y3EVSF1z6s2jR/JY58=",
530
+ "url": "_framework/System.ComponentModel.wupoltkk1t.dll"
531
+ },
532
+ {
533
+ "hash": "sha256-A2aPqU1mVMnFbvAEFnOow4pPPZzWmVR4lx+2bckalPk=",
534
+ "url": "_framework/System.Console.9dik0wogo2.dll"
535
+ },
536
+ {
537
+ "hash": "sha256-YBIdmzUK8AHHhWlk8QlmSRrXaJ7InCu27DcHcVDBkvA=",
538
+ "url": "_framework/System.Data.Common.4v8jejsiu0.dll"
539
+ },
540
+ {
541
+ "hash": "sha256-trSdTwe/ZyV6VRKBv9owOcfBL+nFSwywN0eNhJZMLqA=",
542
+ "url": "_framework/System.Diagnostics.DiagnosticSource.e2q75ondtq.dll"
543
+ },
544
+ {
545
+ "hash": "sha256-S2ydbMPzwxulSL8cAMLGgHjsGV4BwLaNrLsuLZG/adM=",
546
+ "url": "_framework/System.Diagnostics.Process.9736yjnxs8.dll"
547
+ },
548
+ {
549
+ "hash": "sha256-NfgnoaBd2rA8pX1wkbp5xdlCR+cyHE/RDBVLWNC1N9o=",
550
+ "url": "_framework/System.Diagnostics.TraceSource.h9al53gbbw.dll"
551
+ },
552
+ {
553
+ "hash": "sha256-r0vwRjv7hF6mjRXyS2bQiJbWK1ByOLKcc4lTQ79nfEw=",
554
+ "url": "_framework/System.Diagnostics.Tracing.h4bcp2fo98.dll"
555
+ },
556
+ {
557
+ "hash": "sha256-FtcNl2uDwAdfYJach968OF5Yv8KPBiVjl1D0PlQGrDA=",
558
+ "url": "_framework/System.Drawing.64oovy8qts.dll"
559
+ },
560
+ {
561
+ "hash": "sha256-YLDcvfUXTdid9GCo3fMKbyW5WTJ2lJPuMb3YkJhcRkA=",
562
+ "url": "_framework/System.Drawing.Primitives.o6jiqpgbgl.dll"
563
+ },
564
+ {
565
+ "hash": "sha256-c2o9sZaIUSw/8mugwJfgKxgS4LmlgLHQ3daP9ywUO/Y=",
566
+ "url": "_framework/System.Formats.Asn1.rylx5ipd40.dll"
567
+ },
568
+ {
569
+ "hash": "sha256-ItpKOqt5jSJzGhdrsBqcOrJosZuCcAbC4or8gjUqGl8=",
570
+ "url": "_framework/System.IO.Compression.iceabaupns.dll"
571
+ },
572
+ {
573
+ "hash": "sha256-Hlh4nDvy1ndVr4OcpiylZm6pEiCZuPGdiIKj5q8Ykek=",
574
+ "url": "_framework/System.IO.Pipelines.uw8csd3mlz.dll"
575
+ },
576
+ {
577
+ "hash": "sha256-5U8bXTHnkyF6fEtHFQ/OJiMWn1pUZuQ1WGtyeN997MQ=",
578
+ "url": "_framework/System.IdentityModel.Tokens.Jwt.t67es60z5b.dll"
579
+ },
580
+ {
581
+ "hash": "sha256-S7gtHeAuKfb2fKMM+S3eSpVG+WBL6TkosKTqISZqZU0=",
582
+ "url": "_framework/System.Linq.Expressions.ty95ava37f.dll"
583
+ },
584
+ {
585
+ "hash": "sha256-n25MLQJ7MEbjDa9+imRzKJXmyL4p61H5Jme34hp6AcI=",
586
+ "url": "_framework/System.Linq.Queryable.hs2195jrwy.dll"
587
+ },
588
+ {
589
+ "hash": "sha256-wYDloUIH7AIPE5wPbcxRVtPsJOTHo/PqbRjtNvBHb5Q=",
590
+ "url": "_framework/System.Linq.hssodjwmlf.dll"
591
+ },
592
+ {
593
+ "hash": "sha256-v/QJg3YT6kqxadJacURbPvhYJ3Y7hE+FCY4F521I3/U=",
594
+ "url": "_framework/System.Memory.1k78n7wdxb.dll"
595
+ },
596
+ {
597
+ "hash": "sha256-wUwfwDdb/OTRQJDx28HzJnXItEaCiAIjblquoVPtzvo=",
598
+ "url": "_framework/System.Net.Http.3br8rfql4c.dll"
599
+ },
600
+ {
601
+ "hash": "sha256-4GdlYImGlI4VEFcLnnD/Kd3HK6URsQZ3zhcVfsMjbvE=",
602
+ "url": "_framework/System.Net.Http.Json.860wbh17d8.dll"
603
+ },
604
+ {
605
+ "hash": "sha256-xmS5HaI2yKyuXEddGM5ukxhDnYJw9CzK5T8vNwfvOnc=",
606
+ "url": "_framework/System.Net.NetworkInformation.e3wr00853o.dll"
607
+ },
608
+ {
609
+ "hash": "sha256-cS4uQNnfoMGRhugYCENcNCIySqFjGv3jBtID2xoMRDY=",
610
+ "url": "_framework/System.Net.Ping.r5cw4mf1a4.dll"
611
+ },
612
+ {
613
+ "hash": "sha256-FFUoT9GRQ3Fj6BXeK80twQUViWuOQCw7o3tmTtruflE=",
614
+ "url": "_framework/System.Net.Primitives.ksxwiwlvhu.dll"
615
+ },
616
+ {
617
+ "hash": "sha256-YlzWANdvZmR2TNh+pwDr/mRAjS4lz6WlVUdH+heHfF8=",
618
+ "url": "_framework/System.Net.WebSockets.6rt3n3gl2q.dll"
619
+ },
620
+ {
621
+ "hash": "sha256-by6BJv1U17oRUlhpuTPChUQL8UB27sZLlfBOrAzOR40=",
622
+ "url": "_framework/System.Net.WebSockets.Client.z3usrzo7rz.dll"
623
+ },
624
+ {
625
+ "hash": "sha256-4DtN4IFw3nBQ0gTPV2egyX3DU/++K4wqx/jzGuNe8ik=",
626
+ "url": "_framework/System.Numerics.Tensors.0c7z4mt3on.dll"
627
+ },
628
+ {
629
+ "hash": "sha256-z8A6piqW2OKCN4Cuankssvqw0+q7ThE8AHx7AvBm6Dw=",
630
+ "url": "_framework/System.Numerics.Vectors.lbdzx8reja.dll"
631
+ },
632
+ {
633
+ "hash": "sha256-HnFrODX5ztKwW74m87ZeWGNTbuFUDscX/uToF9t1hms=",
634
+ "url": "_framework/System.ObjectModel.yct1gdirzf.dll"
635
+ },
636
+ {
637
+ "hash": "sha256-wIKMhhZ2LYwq9dy2zfvqWQPyqbfm6MqCBWJvvQZowTc=",
638
+ "url": "_framework/System.Private.CoreLib.c1dbswx1b2.dll"
639
+ },
640
+ {
641
+ "hash": "sha256-N0SU6xdqSPY526IJFxDdRhKkIdwJvDTPqcanYqbnh+g=",
642
+ "url": "_framework/System.Private.Uri.zp9kmg0z93.dll"
643
+ },
644
+ {
645
+ "hash": "sha256-xSLYpQ+LqC4Ej8UYtctd6B2SNTpnhBmqclQ5GA68bzg=",
646
+ "url": "_framework/System.Private.Xml.Linq.lgv2n0akl4.dll"
647
+ },
648
+ {
649
+ "hash": "sha256-UUaffKq+vtw8rIk+Lpro47hoFsPfCYwPWNQdxYg1hSQ=",
650
+ "url": "_framework/System.Private.Xml.dpsk8g304y.dll"
651
+ },
652
+ {
653
+ "hash": "sha256-+cthzuXYRAdB0NaxLgdso+MtDK1q2hKgCZsXJuILveM=",
654
+ "url": "_framework/System.Reactive.t3fuon548l.dll"
655
+ },
656
+ {
657
+ "hash": "sha256-q9iaFiGMcSfA5+vEhgS9Mr8xWQ+3qd++zbduoZvhJzU=",
658
+ "url": "_framework/System.Reflection.Emit.ILGeneration.1tcuz2cmbk.dll"
659
+ },
660
+ {
661
+ "hash": "sha256-z8ZufY0LoKnTBK8ZAF/FKxR4Maa1+cL9gCIxdauOroQ=",
662
+ "url": "_framework/System.Reflection.Emit.Lightweight.ddt2wylovg.dll"
663
+ },
664
+ {
665
+ "hash": "sha256-42aO+GOZyhfoOAOLo/tt/zn0F143ySMYI7Nwyc24g4w=",
666
+ "url": "_framework/System.Reflection.Emit.d8vkadiwhg.dll"
667
+ },
668
+ {
669
+ "hash": "sha256-kN9Uur2YWEcP8mMnTeQ9ypNQV+VaOg7nwOQjva0PW4Q=",
670
+ "url": "_framework/System.Reflection.Primitives.cpsl71xd1z.dll"
671
+ },
672
+ {
673
+ "hash": "sha256-1xPSAdz4d2gZdYidLhyRljuiNYmcgXe5nQnxHZAPyB8=",
674
+ "url": "_framework/System.Runtime.InteropServices.31vjgsfk1o.dll"
675
+ },
676
+ {
677
+ "hash": "sha256-dczkyi5P7nETlP7roYWNE0BobJPm6wyt7Bc+ZhBu3NA=",
678
+ "url": "_framework/System.Runtime.InteropServices.JavaScript.pn2wvizzet.dll"
679
+ },
680
+ {
681
+ "hash": "sha256-ee4Y4u8mZv4DoeDUSgzKbYRMQXeS+oS9P7FyPVK2LiE=",
682
+ "url": "_framework/System.Runtime.InteropServices.RuntimeInformation.l5rk496q70.dll"
683
+ },
684
+ {
685
+ "hash": "sha256-tCts6FcyDCG63yuzfc34Htqqm49dspoB3GIAgPs3n6I=",
686
+ "url": "_framework/System.Runtime.Intrinsics.0zee9qcqfy.dll"
687
+ },
688
+ {
689
+ "hash": "sha256-f2vwupEiCybxc5C8xyYhCxT5oZoTFithOfffiKwVap8=",
690
+ "url": "_framework/System.Runtime.Loader.xw2jr9wl92.dll"
691
+ },
692
+ {
693
+ "hash": "sha256-asQ+zfa56vEwcwr237trKF7qNk0+LCMU0MvtXyq1044=",
694
+ "url": "_framework/System.Runtime.Numerics.ezj1dfyvbj.dll"
695
+ },
696
+ {
697
+ "hash": "sha256-CKw2ygfYqQAect9qGLL/JX3wQa7cgMdP40Po09hahhg=",
698
+ "url": "_framework/System.Runtime.Serialization.Formatters.0y019e9zkr.dll"
699
+ },
700
+ {
701
+ "hash": "sha256-c9Avj6i0C5heFI5loFiATsHHTnmhrdfHrrKOa+PIAX8=",
702
+ "url": "_framework/System.Runtime.Serialization.Primitives.bia5wb62c8.dll"
703
+ },
704
+ {
705
+ "hash": "sha256-VXWrBXxHoGJ9neN4r2AhS5f6OmUz+UgLNoKiu5241S4=",
706
+ "url": "_framework/System.Runtime.h9cduidfkh.dll"
707
+ },
708
+ {
709
+ "hash": "sha256-3kLwx9/oAtxEAgSjuQJzm52u3JWA9/Hd+hgTWMEsatw=",
710
+ "url": "_framework/System.Security.Claims.2r18wim2rl.dll"
711
+ },
712
+ {
713
+ "hash": "sha256-vofefYZi5S+7Rg61EmobeWUJQoIefwuF7PwjL7nrr+c=",
714
+ "url": "_framework/System.Security.Cryptography.qqgybpoucx.dll"
715
+ },
716
+ {
717
+ "hash": "sha256-c54L8A/dPQGmGXDWsmLgXCcq34jyZ/z2QWBpZogPwJs=",
718
+ "url": "_framework/System.Text.Encoding.Extensions.9t3hs6kyll.dll"
719
+ },
720
+ {
721
+ "hash": "sha256-NHGoSuaQLhC8vk+biDWqKZAlhpNTJdJwilcCbgbr8as=",
722
+ "url": "_framework/System.Text.Encodings.Web.wftjfh2crk.dll"
723
+ },
724
+ {
725
+ "hash": "sha256-3N6tKQuQtSdGn3qtvUdWOhhUlCzccYdgA25P3NFSLKI=",
726
+ "url": "_framework/System.Text.Json.0v0qgmri0w.dll"
727
+ },
728
+ {
729
+ "hash": "sha256-WMuhtIW2iGfPEIJN2je+ijXB+VM7uodRrUIdvsXl4Q4=",
730
+ "url": "_framework/System.Text.RegularExpressions.cvkox11l6l.dll"
731
+ },
732
+ {
733
+ "hash": "sha256-uBskY7pwTdtCHuVyY04ihoSM1DZ2QXqthW9t/BCLBIk=",
734
+ "url": "_framework/System.Threading.Channels.419493szqu.dll"
735
+ },
736
+ {
737
+ "hash": "sha256-ZRIAn9jRxhpyGpYyBH+MJbsb2SxgzNESn5/JGjqIVkY=",
738
+ "url": "_framework/System.Threading.Thread.xhmys87xh5.dll"
739
+ },
740
+ {
741
+ "hash": "sha256-/WtrkOUq+HT6CxS3WqHdZ7M1PeN0Ay+wd4XgiGsxbbg=",
742
+ "url": "_framework/System.Threading.b66vzsz9g1.dll"
743
+ },
744
+ {
745
+ "hash": "sha256-o3EsBrZfL0s1/LVDR00hDp0KGRBm7cTreJqwNXJkhPw=",
746
+ "url": "_framework/System.Transactions.Local.7zfffdvnwf.dll"
747
+ },
748
+ {
749
+ "hash": "sha256-URV7Cdi5JKA/pYwCTzUHv60+LTvMCKPWofr0ChxQj3M=",
750
+ "url": "_framework/System.Web.HttpUtility.9up6xfbtuq.dll"
751
+ },
752
+ {
753
+ "hash": "sha256-xRgq7e+oToeXpy/R63St8n6SOvao6CNh88e1sh91n1w=",
754
+ "url": "_framework/System.Xml.Linq.n5rzv9nbf7.dll"
755
+ },
756
+ {
757
+ "hash": "sha256-9rL1Ltst0muE5326N8pLwOATsFORsq+BHoNIJj8bpmA=",
758
+ "url": "_framework/System.Xml.ReaderWriter.ag8pilllob.dll"
759
+ },
760
+ {
761
+ "hash": "sha256-GNI2kFgFmPTwzuzwUn8gxK+AzGLUWRJFdg9JzIbrybQ=",
762
+ "url": "_framework/System.Xml.XDocument.sn51jas17n.dll"
763
+ },
764
+ {
765
+ "hash": "sha256-CfM2miyj1KHApFmqMdLYWio3S/jrdON2pW9Xr2nTwlo=",
766
+ "url": "_framework/System.brmz7yk5qh.dll"
767
+ },
768
+ {
769
+ "hash": "sha256-F6AeDTtj6Dwn4o/AIjw1ci16h2Tt+LKeZ3imStheUb4=",
770
+ "url": "_framework/Websocket.Client.vapounvmnl.dll"
771
+ },
772
+ {
773
+ "hash": "sha256-Flu3r26LvbLO2wUcZVQG1lKL/SCiMrzqzajuoIajSks=",
774
+ "url": "_framework/blazor.boot.json"
775
+ },
776
+ {
777
+ "hash": "sha256-lh8bY3DINgTiqGL/cwOeVaJGdfE2ex1o8MzwCbmlZZE=",
778
+ "url": "_framework/blazor.webassembly.js"
779
+ },
780
+ {
781
+ "hash": "sha256-qJ9/OAF/VyTucBeLA5UhffqoSBGd0xW5fn7Dq6jZ+lo=",
782
+ "url": "_framework/dotnet.js"
783
+ },
784
+ {
785
+ "hash": "sha256-NdFSj8MM4tvhMRG2JPNXYDnzqZno/RjOpUq0dxHcPVw=",
786
+ "url": "_framework/dotnet.native.boem75ye5i.wasm"
787
+ },
788
+ {
789
+ "hash": "sha256-SvVveFrqwSE/8qjn/DA3aVnuMXhmK4Ln+euLxQu8azU=",
790
+ "url": "_framework/dotnet.native.qc8g39g30v.js"
791
+ },
792
+ {
793
+ "hash": "sha256-vM4cfmuAtxs/dLoxiTCzPyPCyNkwOJu14cp6lXv3Sak=",
794
+ "url": "_framework/dotnet.runtime.opaiwunc3t.js"
795
+ },
796
+ {
797
+ "hash": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=",
798
+ "url": "_framework/icudt_CJK.tjcz0u77k5.dat"
799
+ },
800
+ {
801
+ "hash": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=",
802
+ "url": "_framework/icudt_EFIGS.tptq2av103.dat"
803
+ },
804
+ {
805
+ "hash": "sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=",
806
+ "url": "_framework/icudt_no_CJK.lfu7j35m59.dat"
807
+ },
808
+ {
809
+ "hash": "sha256-EksNn8Luo4bOWqJ6X7dIe9qG9oOqwOVzjH2xYyMNi+E=",
810
+ "url": "_framework/netstandard.yvr3prsx0x.dll"
811
+ },
812
+ {
813
+ "hash": "sha256-bBWjhkRhAzXS2e6y84+TVWnJXH0uuenB5uCj/9vcoDY=",
814
+ "url": "_headers"
815
+ },
816
+ {
817
+ "hash": "sha256-YDaYPl/ADwFpyek5sYFu13Hu4A4n8vzFF7gZBBRgue8=",
818
+ "url": "_redirects"
819
+ },
820
+ {
821
+ "hash": "sha256-H6kTJx/eEI+E+fnX9PPKo6vmaU6Hn0VOhgAtbRZ+z4E=",
822
+ "url": "appsettings.json"
823
+ },
824
+ {
825
+ "hash": "sha256-DbpQaq68ZSb5IoPosBErM1QWBfsbTxpJqhU0REi6wP4=",
826
+ "url": "icon-192.png"
827
+ },
828
+ {
829
+ "hash": "sha256-oEo6d+KqX5fjxTiZk/w9NB3Mi0+ycS5yLwCKwr4IkbA=",
830
+ "url": "icon-512.png"
831
+ },
832
+ {
833
+ "hash": "sha256-jV8qui4slryTjCoqUKuN5Kn0E9jwHJZ+WQEBupvhTi4=",
834
+ "url": "image-manifest.json"
835
+ },
836
+ {
837
+ "hash": "sha256-ViQzfoV8G7HTTqLjZz3AjV7XPfoWnGu0A8YCmo/9Mgw=",
838
+ "url": "index.html"
839
+ },
840
+ {
841
+ "hash": "sha256-G8+w6tkPTngFXEIXytZJduwZJlRwz8/Cui1HXACSILE=",
842
+ "url": "js/marketing-tool.js"
843
+ },
844
+ {
845
+ "hash": "sha256-H7x96C72Gvm33RDJk6q+gqHSGB0LUUZJs4pwGgcS60E=",
846
+ "url": "manifest.webmanifest"
847
+ },
848
+ {
849
+ "hash": "sha256-/Tbml98Ny8g8sKuMZK/54Yxhuo8jZhe3WZJHxxVdM5g=",
850
+ "url": "robots.txt"
851
+ },
852
+ {
853
+ "hash": "sha256-LXx4cNN0FfIeJDcom29Cq9bINQspjGKv6IT7vZja/WQ=",
854
+ "url": "sitemap.xml"
855
+ }
856
+ ]
857
+ };