pygpt-net 2.1.37__py3-none-any.whl → 2.4.48__py3-none-any.whl

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 (1868) hide show
  1. CHANGELOG.md +930 -133
  2. README.md +2229 -1137
  3. pygpt_net/CHANGELOG.txt +810 -9
  4. pygpt_net/LICENSE +1 -1
  5. pygpt_net/__init__.py +10 -4
  6. pygpt_net/app.py +77 -4
  7. pygpt_net/config.py +133 -12
  8. pygpt_net/container.py +23 -1
  9. pygpt_net/controller/__init__.py +55 -12
  10. pygpt_net/controller/access/__init__.py +81 -0
  11. pygpt_net/controller/access/control.py +410 -0
  12. pygpt_net/controller/access/voice.py +432 -0
  13. pygpt_net/controller/agent/__init__.py +21 -128
  14. pygpt_net/controller/agent/common.py +126 -0
  15. pygpt_net/controller/agent/experts.py +165 -0
  16. pygpt_net/controller/agent/legacy.py +398 -0
  17. pygpt_net/controller/agent/llama.py +154 -0
  18. pygpt_net/controller/assistant/__init__.py +75 -62
  19. pygpt_net/controller/assistant/batch.py +576 -0
  20. pygpt_net/controller/assistant/editor.py +171 -18
  21. pygpt_net/controller/assistant/files.py +115 -131
  22. pygpt_net/controller/assistant/store.py +480 -0
  23. pygpt_net/controller/assistant/threads.py +276 -58
  24. pygpt_net/controller/attachment.py +283 -65
  25. pygpt_net/controller/audio/__init__.py +158 -17
  26. pygpt_net/controller/calendar/__init__.py +38 -5
  27. pygpt_net/controller/calendar/note.py +134 -13
  28. pygpt_net/controller/camera.py +219 -100
  29. pygpt_net/controller/chat/__init__.py +73 -10
  30. pygpt_net/controller/chat/attachment.py +621 -0
  31. pygpt_net/controller/chat/audio.py +99 -0
  32. pygpt_net/controller/chat/command.py +90 -0
  33. pygpt_net/controller/chat/common.py +143 -37
  34. pygpt_net/controller/chat/files.py +28 -6
  35. pygpt_net/controller/chat/image.py +102 -145
  36. pygpt_net/controller/chat/input.py +130 -127
  37. pygpt_net/controller/chat/output.py +182 -203
  38. pygpt_net/controller/chat/render.py +542 -50
  39. pygpt_net/controller/chat/response.py +278 -0
  40. pygpt_net/controller/chat/stream.py +186 -0
  41. pygpt_net/controller/chat/text.py +167 -198
  42. pygpt_net/controller/chat/vision.py +36 -47
  43. pygpt_net/controller/command.py +39 -11
  44. pygpt_net/controller/config/__init__.py +45 -6
  45. pygpt_net/controller/config/field/checkbox.py +7 -4
  46. pygpt_net/controller/config/field/cmd.py +7 -5
  47. pygpt_net/controller/config/field/combo.py +41 -11
  48. pygpt_net/controller/config/field/dictionary.py +14 -11
  49. pygpt_net/controller/config/field/input.py +9 -6
  50. pygpt_net/controller/config/field/slider.py +12 -9
  51. pygpt_net/controller/config/field/textarea.py +8 -5
  52. pygpt_net/controller/config/placeholder.py +196 -25
  53. pygpt_net/controller/ctx/__init__.py +666 -86
  54. pygpt_net/controller/ctx/common.py +44 -23
  55. pygpt_net/controller/ctx/extra.py +76 -17
  56. pygpt_net/controller/ctx/summarizer.py +28 -6
  57. pygpt_net/controller/{debug.py → debug/__init__.py} +62 -8
  58. pygpt_net/controller/dialogs/confirm.py +194 -17
  59. pygpt_net/controller/dialogs/debug.py +10 -2
  60. pygpt_net/controller/dialogs/info.py +34 -2
  61. pygpt_net/controller/files.py +65 -13
  62. pygpt_net/controller/finder.py +175 -0
  63. pygpt_net/controller/idx/__init__.py +151 -18
  64. pygpt_net/controller/idx/common.py +11 -30
  65. pygpt_net/controller/idx/indexer.py +183 -53
  66. pygpt_net/controller/idx/settings.py +9 -3
  67. pygpt_net/controller/kernel/__init__.py +370 -0
  68. pygpt_net/controller/kernel/reply.py +171 -0
  69. pygpt_net/controller/kernel/stack.py +137 -0
  70. pygpt_net/controller/lang/__init__.py +24 -12
  71. pygpt_net/controller/lang/custom.py +46 -11
  72. pygpt_net/controller/lang/mapping.py +178 -19
  73. pygpt_net/controller/launcher.py +16 -2
  74. pygpt_net/controller/layout.py +78 -10
  75. pygpt_net/controller/mode.py +63 -24
  76. pygpt_net/controller/model/__init__.py +56 -20
  77. pygpt_net/controller/model/editor.py +9 -4
  78. pygpt_net/controller/notepad.py +132 -123
  79. pygpt_net/controller/painter/__init__.py +16 -4
  80. pygpt_net/controller/painter/capture.py +96 -22
  81. pygpt_net/controller/painter/common.py +9 -7
  82. pygpt_net/controller/plugins/__init__.py +90 -42
  83. pygpt_net/controller/plugins/presets.py +19 -10
  84. pygpt_net/controller/plugins/settings.py +12 -6
  85. pygpt_net/controller/presets/__init__.py +263 -17
  86. pygpt_net/controller/presets/editor.py +173 -41
  87. pygpt_net/controller/presets/experts.py +156 -0
  88. pygpt_net/controller/settings/__init__.py +49 -9
  89. pygpt_net/controller/settings/editor.py +132 -25
  90. pygpt_net/controller/settings/profile.py +569 -0
  91. pygpt_net/controller/settings/workdir.py +215 -0
  92. pygpt_net/controller/theme/__init__.py +86 -8
  93. pygpt_net/controller/theme/common.py +29 -5
  94. pygpt_net/controller/theme/markdown.py +74 -37
  95. pygpt_net/controller/theme/menu.py +56 -4
  96. pygpt_net/controller/theme/nodes.py +39 -12
  97. pygpt_net/controller/tools/__init__.py +91 -0
  98. pygpt_net/controller/ui/__init__.py +29 -43
  99. pygpt_net/controller/ui/mode.py +135 -35
  100. pygpt_net/controller/ui/tabs.py +687 -0
  101. pygpt_net/controller/ui/vision.py +45 -19
  102. pygpt_net/core/access/__init__.py +30 -0
  103. pygpt_net/core/access/actions.py +131 -0
  104. pygpt_net/core/access/helpers.py +234 -0
  105. pygpt_net/core/access/shortcuts.py +104 -0
  106. pygpt_net/core/access/voice.py +277 -0
  107. pygpt_net/core/agents/__init__.py +32 -0
  108. pygpt_net/core/agents/legacy.py +66 -0
  109. pygpt_net/core/agents/memory.py +80 -0
  110. pygpt_net/core/agents/observer/__init__.py +17 -0
  111. pygpt_net/core/agents/observer/evaluation.py +163 -0
  112. pygpt_net/core/agents/provider.py +68 -0
  113. pygpt_net/core/agents/runner.py +702 -0
  114. pygpt_net/core/agents/tools.py +175 -0
  115. pygpt_net/core/assistants/__init__.py +22 -141
  116. pygpt_net/core/assistants/files.py +359 -0
  117. pygpt_net/core/assistants/store.py +300 -0
  118. pygpt_net/core/{attachments.py → attachments/__init__.py} +124 -29
  119. pygpt_net/core/attachments/context.py +752 -0
  120. pygpt_net/core/attachments/worker.py +40 -0
  121. pygpt_net/core/{audio.py → audio/__init__.py} +74 -3
  122. pygpt_net/core/audio/context.py +39 -0
  123. pygpt_net/core/audio/whisper.py +37 -0
  124. pygpt_net/core/bridge/__init__.py +266 -0
  125. pygpt_net/core/bridge/context.py +113 -0
  126. pygpt_net/core/bridge/worker.py +157 -0
  127. pygpt_net/core/calendar/__init__.py +57 -11
  128. pygpt_net/core/chain/__init__.py +41 -23
  129. pygpt_net/core/chain/chat.py +55 -31
  130. pygpt_net/core/chain/completion.py +58 -34
  131. pygpt_net/core/command.py +321 -13
  132. pygpt_net/core/ctx/__init__.py +721 -70
  133. pygpt_net/core/ctx/bag.py +53 -0
  134. pygpt_net/core/ctx/container.py +142 -0
  135. pygpt_net/core/ctx/idx.py +45 -8
  136. pygpt_net/core/ctx/output.py +247 -0
  137. pygpt_net/core/ctx/reply.py +63 -0
  138. pygpt_net/core/db/__init__.py +109 -16
  139. pygpt_net/core/db/viewer.py +50 -12
  140. pygpt_net/core/debug/__init__.py +35 -14
  141. pygpt_net/core/debug/agent.py +12 -7
  142. pygpt_net/core/debug/assistants.py +10 -2
  143. pygpt_net/core/debug/attachments.py +5 -4
  144. pygpt_net/core/debug/config.py +11 -1
  145. pygpt_net/core/debug/context.py +67 -23
  146. pygpt_net/core/debug/events.py +58 -0
  147. pygpt_net/core/debug/indexes.py +3 -1
  148. pygpt_net/core/debug/kernel.py +30 -0
  149. pygpt_net/core/debug/models.py +2 -1
  150. pygpt_net/core/debug/presets.py +25 -9
  151. pygpt_net/core/debug/tabs.py +49 -0
  152. pygpt_net/core/dispatcher.py +86 -181
  153. pygpt_net/core/docker/__init__.py +410 -0
  154. pygpt_net/core/docker/builder.py +87 -0
  155. pygpt_net/core/events/__init__.py +17 -0
  156. pygpt_net/core/events/app.py +54 -0
  157. pygpt_net/core/events/base.py +73 -0
  158. pygpt_net/core/events/control.py +88 -0
  159. pygpt_net/core/events/event.py +120 -0
  160. pygpt_net/core/events/kernel.py +67 -0
  161. pygpt_net/core/events/render.py +71 -0
  162. pygpt_net/core/experts/__init__.py +501 -0
  163. pygpt_net/core/filesystem/__init__.py +257 -24
  164. pygpt_net/core/filesystem/actions.py +15 -10
  165. pygpt_net/core/filesystem/editor.py +57 -11
  166. pygpt_net/core/filesystem/packer.py +87 -0
  167. pygpt_net/core/filesystem/types.py +12 -7
  168. pygpt_net/core/filesystem/url.py +21 -1
  169. pygpt_net/core/history.py +3 -2
  170. pygpt_net/core/idx/__init__.py +125 -30
  171. pygpt_net/core/idx/chat.py +438 -83
  172. pygpt_net/core/idx/context.py +47 -7
  173. pygpt_net/core/idx/indexing.py +546 -62
  174. pygpt_net/core/idx/llm.py +42 -21
  175. pygpt_net/core/idx/metadata.py +21 -5
  176. pygpt_net/core/idx/types/ctx.py +32 -6
  177. pygpt_net/core/idx/types/external.py +41 -7
  178. pygpt_net/core/idx/types/files.py +31 -6
  179. pygpt_net/core/idx/ui/__init__.py +22 -0
  180. pygpt_net/core/idx/ui/loaders.py +217 -0
  181. pygpt_net/core/idx/worker.py +32 -3
  182. pygpt_net/core/image.py +22 -10
  183. pygpt_net/core/installer.py +2 -4
  184. pygpt_net/core/llm/__init__.py +13 -3
  185. pygpt_net/core/locale.py +43 -8
  186. pygpt_net/core/models.py +121 -17
  187. pygpt_net/core/modes.py +62 -14
  188. pygpt_net/core/notepad.py +38 -3
  189. pygpt_net/core/platforms.py +6 -3
  190. pygpt_net/core/plugins.py +59 -32
  191. pygpt_net/core/presets.py +223 -31
  192. pygpt_net/core/profile.py +280 -0
  193. pygpt_net/core/prompt/__init__.py +156 -0
  194. pygpt_net/core/prompt/custom.py +307 -0
  195. pygpt_net/core/prompt/template.py +107 -0
  196. pygpt_net/core/render/base.py +347 -32
  197. pygpt_net/core/render/markdown/__init__.py +0 -0
  198. pygpt_net/core/render/markdown/body.py +210 -0
  199. pygpt_net/core/render/markdown/helpers.py +91 -0
  200. pygpt_net/core/render/markdown/parser.py +78 -6
  201. pygpt_net/core/render/markdown/pid.py +23 -0
  202. pygpt_net/core/render/markdown/renderer.py +405 -383
  203. pygpt_net/core/render/plain/body.py +130 -0
  204. pygpt_net/core/render/plain/helpers.py +60 -0
  205. pygpt_net/core/render/plain/pid.py +22 -0
  206. pygpt_net/core/render/plain/renderer.py +281 -231
  207. pygpt_net/core/render/web/__init__.py +10 -0
  208. pygpt_net/core/render/web/body.py +800 -0
  209. pygpt_net/core/render/web/helpers.py +102 -0
  210. pygpt_net/core/render/web/parser.py +297 -0
  211. pygpt_net/core/render/web/pid.py +36 -0
  212. pygpt_net/core/render/web/renderer.py +1356 -0
  213. pygpt_net/core/render/web/syntax_highlight.py +58 -0
  214. pygpt_net/core/settings.py +49 -22
  215. pygpt_net/core/tabs/__init__.py +822 -0
  216. pygpt_net/core/tabs/tab.py +81 -0
  217. pygpt_net/core/text/finder.py +214 -0
  218. pygpt_net/core/text/utils.py +78 -0
  219. pygpt_net/core/text/web_finder.py +213 -0
  220. pygpt_net/core/tokens.py +97 -32
  221. pygpt_net/core/types/__init__.py +12 -0
  222. pygpt_net/core/types/mode.py +22 -0
  223. pygpt_net/core/updater/__init__.py +67 -6
  224. pygpt_net/core/vision/__init__.py +22 -0
  225. pygpt_net/core/vision/analyzer.py +158 -0
  226. pygpt_net/core/{web.py → web/__init__.py} +29 -7
  227. pygpt_net/core/web/helpers.py +237 -0
  228. pygpt_net/css.qrc +5 -0
  229. pygpt_net/css_rc.py +251 -0
  230. pygpt_net/data/audio/click_off.mp3 +0 -0
  231. pygpt_net/data/audio/click_on.mp3 +0 -0
  232. pygpt_net/data/audio/ok.mp3 +0 -0
  233. pygpt_net/data/config/config.json +188 -37
  234. pygpt_net/data/config/models.json +1509 -48
  235. pygpt_net/data/config/modes.json +23 -5
  236. pygpt_net/data/config/presets/agent_openai.json +33 -0
  237. pygpt_net/data/config/presets/agent_openai_assistant.json +33 -0
  238. pygpt_net/data/config/presets/agent_planner.json +33 -0
  239. pygpt_net/data/config/presets/agent_react.json +33 -0
  240. pygpt_net/data/config/presets/batman_and_joker.json +7 -3
  241. pygpt_net/data/config/presets/current.agent.json +7 -4
  242. pygpt_net/data/config/presets/current.agent_llama.json +32 -0
  243. pygpt_net/data/config/presets/current.assistant.json +6 -3
  244. pygpt_net/data/config/presets/current.audio.json +34 -0
  245. pygpt_net/data/config/presets/current.chat.json +6 -3
  246. pygpt_net/data/config/presets/current.completion.json +6 -3
  247. pygpt_net/data/config/presets/current.expert.json +23 -0
  248. pygpt_net/data/config/presets/current.img.json +6 -3
  249. pygpt_net/data/config/presets/current.langchain.json +6 -3
  250. pygpt_net/data/config/presets/current.llama_index.json +6 -3
  251. pygpt_net/data/config/presets/current.vision.json +6 -3
  252. pygpt_net/data/config/presets/dalle_white_cat.json +6 -3
  253. pygpt_net/data/config/presets/joke_agent.json +25 -0
  254. pygpt_net/data/config/presets/joke_expert.json +29 -0
  255. pygpt_net/data/config/settings.json +724 -64
  256. pygpt_net/data/config/settings_section.json +9 -0
  257. pygpt_net/data/css/markdown.css +28 -2
  258. pygpt_net/data/css/markdown.dark.css +2 -2
  259. pygpt_net/data/css/markdown.light.css +12 -3
  260. pygpt_net/data/css/style.css +1 -0
  261. pygpt_net/data/css/style.dark.css +2 -3
  262. pygpt_net/data/css/style.light.css +28 -4
  263. pygpt_net/data/css/web-blocks.css +339 -0
  264. pygpt_net/data/css/web-blocks.dark.css +74 -0
  265. pygpt_net/data/css/web-blocks.light.css +82 -0
  266. pygpt_net/data/css/web-chatgpt.css +350 -0
  267. pygpt_net/data/css/web-chatgpt.dark.css +64 -0
  268. pygpt_net/data/css/web-chatgpt.light.css +75 -0
  269. pygpt_net/data/css/web-chatgpt_wide.css +350 -0
  270. pygpt_net/data/css/web-chatgpt_wide.dark.css +64 -0
  271. pygpt_net/data/css/web-chatgpt_wide.light.css +75 -0
  272. pygpt_net/data/fonts/MonaspaceArgon/MonaspaceArgon-Bold.otf +0 -0
  273. pygpt_net/data/fonts/MonaspaceArgon/MonaspaceArgon-BoldItalic.otf +0 -0
  274. pygpt_net/data/fonts/MonaspaceArgon/MonaspaceArgon-Italic.otf +0 -0
  275. pygpt_net/data/fonts/MonaspaceArgon/MonaspaceArgon-Regular.otf +0 -0
  276. pygpt_net/data/fonts/MonaspaceKrypton/MonaspaceKrypton-Bold.otf +0 -0
  277. pygpt_net/data/fonts/MonaspaceKrypton/MonaspaceKrypton-BoldItalic.otf +0 -0
  278. pygpt_net/data/fonts/MonaspaceKrypton/MonaspaceKrypton-Italic.otf +0 -0
  279. pygpt_net/data/fonts/MonaspaceKrypton/MonaspaceKrypton-Regular.otf +0 -0
  280. pygpt_net/data/fonts/MonaspaceNeon/MonaspaceNeon-Bold.otf +0 -0
  281. pygpt_net/data/fonts/MonaspaceNeon/MonaspaceNeon-BoldItalic.otf +0 -0
  282. pygpt_net/data/fonts/MonaspaceNeon/MonaspaceNeon-Italic.otf +0 -0
  283. pygpt_net/data/fonts/MonaspaceNeon/MonaspaceNeon-Regular.otf +0 -0
  284. pygpt_net/data/fonts/MonaspaceRadon/MonaspaceRadon-Bold.otf +0 -0
  285. pygpt_net/data/fonts/MonaspaceRadon/MonaspaceRadon-BoldItalic.otf +0 -0
  286. pygpt_net/data/fonts/MonaspaceRadon/MonaspaceRadon-Italic.otf +0 -0
  287. pygpt_net/data/fonts/MonaspaceRadon/MonaspaceRadon-Regular.otf +0 -0
  288. pygpt_net/data/fonts/MonaspaceXenon/MonaspaceXenon-Bold.otf +0 -0
  289. pygpt_net/data/fonts/MonaspaceXenon/MonaspaceXenon-BoldItalic.otf +0 -0
  290. pygpt_net/data/fonts/MonaspaceXenon/MonaspaceXenon-Italic.otf +0 -0
  291. pygpt_net/data/fonts/MonaspaceXenon/MonaspaceXenon-Regular.otf +0 -0
  292. pygpt_net/data/icons/accessibility.svg +1 -0
  293. pygpt_net/data/icons/collapse.svg +3 -0
  294. pygpt_net/data/icons/cursor.png +0 -0
  295. pygpt_net/data/icons/split_screen.svg +1 -0
  296. pygpt_net/data/js/highlight/DIGESTS.md +793 -0
  297. pygpt_net/data/js/highlight/LICENSE +29 -0
  298. pygpt_net/data/js/highlight/README.md +45 -0
  299. pygpt_net/data/js/highlight/es/core.js +2600 -0
  300. pygpt_net/data/js/highlight/es/core.min.js +307 -0
  301. pygpt_net/data/js/highlight/es/highlight.js +2600 -0
  302. pygpt_net/data/js/highlight/es/highlight.min.js +307 -0
  303. pygpt_net/data/js/highlight/es/languages/1c.js +552 -0
  304. pygpt_net/data/js/highlight/es/languages/1c.min.js +25 -0
  305. pygpt_net/data/js/highlight/es/languages/abnf.js +91 -0
  306. pygpt_net/data/js/highlight/es/languages/abnf.min.js +12 -0
  307. pygpt_net/data/js/highlight/es/languages/accesslog.js +100 -0
  308. pygpt_net/data/js/highlight/es/languages/accesslog.min.js +13 -0
  309. pygpt_net/data/js/highlight/es/languages/actionscript.js +161 -0
  310. pygpt_net/data/js/highlight/es/languages/actionscript.min.js +17 -0
  311. pygpt_net/data/js/highlight/es/languages/ada.js +273 -0
  312. pygpt_net/data/js/highlight/es/languages/ada.min.js +25 -0
  313. pygpt_net/data/js/highlight/es/languages/angelscript.js +186 -0
  314. pygpt_net/data/js/highlight/es/languages/angelscript.min.js +21 -0
  315. pygpt_net/data/js/highlight/es/languages/apache.js +109 -0
  316. pygpt_net/data/js/highlight/es/languages/apache.min.js +14 -0
  317. pygpt_net/data/js/highlight/es/languages/applescript.js +157 -0
  318. pygpt_net/data/js/highlight/es/languages/applescript.min.js +18 -0
  319. pygpt_net/data/js/highlight/es/languages/arcade.js +425 -0
  320. pygpt_net/data/js/highlight/es/languages/arcade.min.js +28 -0
  321. pygpt_net/data/js/highlight/es/languages/arduino.js +1014 -0
  322. pygpt_net/data/js/highlight/es/languages/arduino.min.js +54 -0
  323. pygpt_net/data/js/highlight/es/languages/armasm.js +132 -0
  324. pygpt_net/data/js/highlight/es/languages/armasm.min.js +17 -0
  325. pygpt_net/data/js/highlight/es/languages/asciidoc.js +269 -0
  326. pygpt_net/data/js/highlight/es/languages/asciidoc.min.js +35 -0
  327. pygpt_net/data/js/highlight/es/languages/aspectj.js +239 -0
  328. pygpt_net/data/js/highlight/es/languages/aspectj.min.js +30 -0
  329. pygpt_net/data/js/highlight/es/languages/autohotkey.js +83 -0
  330. pygpt_net/data/js/highlight/es/languages/autohotkey.min.js +13 -0
  331. pygpt_net/data/js/highlight/es/languages/autoit.js +186 -0
  332. pygpt_net/data/js/highlight/es/languages/autoit.min.js +21 -0
  333. pygpt_net/data/js/highlight/es/languages/avrasm.js +86 -0
  334. pygpt_net/data/js/highlight/es/languages/avrasm.min.js +12 -0
  335. pygpt_net/data/js/highlight/es/languages/awk.js +76 -0
  336. pygpt_net/data/js/highlight/es/languages/awk.min.js +11 -0
  337. pygpt_net/data/js/highlight/es/languages/axapta.js +196 -0
  338. pygpt_net/data/js/highlight/es/languages/axapta.min.js +10 -0
  339. pygpt_net/data/js/highlight/es/languages/bash.js +415 -0
  340. pygpt_net/data/js/highlight/es/languages/bash.min.js +21 -0
  341. pygpt_net/data/js/highlight/es/languages/basic.js +238 -0
  342. pygpt_net/data/js/highlight/es/languages/basic.min.js +9 -0
  343. pygpt_net/data/js/highlight/es/languages/bnf.js +47 -0
  344. pygpt_net/data/js/highlight/es/languages/bnf.min.js +6 -0
  345. pygpt_net/data/js/highlight/es/languages/brainfuck.js +62 -0
  346. pygpt_net/data/js/highlight/es/languages/brainfuck.min.js +8 -0
  347. pygpt_net/data/js/highlight/es/languages/c.js +340 -0
  348. pygpt_net/data/js/highlight/es/languages/c.min.js +40 -0
  349. pygpt_net/data/js/highlight/es/languages/cal.js +168 -0
  350. pygpt_net/data/js/highlight/es/languages/cal.min.js +15 -0
  351. pygpt_net/data/js/highlight/es/languages/capnproto.js +107 -0
  352. pygpt_net/data/js/highlight/es/languages/capnproto.min.js +11 -0
  353. pygpt_net/data/js/highlight/es/languages/ceylon.js +148 -0
  354. pygpt_net/data/js/highlight/es/languages/ceylon.min.js +15 -0
  355. pygpt_net/data/js/highlight/es/languages/clean.js +75 -0
  356. pygpt_net/data/js/highlight/es/languages/clean.min.js +8 -0
  357. pygpt_net/data/js/highlight/es/languages/clojure-repl.js +35 -0
  358. pygpt_net/data/js/highlight/es/languages/clojure-repl.min.js +4 -0
  359. pygpt_net/data/js/highlight/es/languages/clojure.js +192 -0
  360. pygpt_net/data/js/highlight/es/languages/clojure.min.js +25 -0
  361. pygpt_net/data/js/highlight/es/languages/cmake.js +72 -0
  362. pygpt_net/data/js/highlight/es/languages/cmake.min.js +7 -0
  363. pygpt_net/data/js/highlight/es/languages/coffeescript.js +374 -0
  364. pygpt_net/data/js/highlight/es/languages/coffeescript.min.js +28 -0
  365. pygpt_net/data/js/highlight/es/languages/coq.js +453 -0
  366. pygpt_net/data/js/highlight/es/languages/coq.min.js +7 -0
  367. pygpt_net/data/js/highlight/es/languages/cos.js +148 -0
  368. pygpt_net/data/js/highlight/es/languages/cos.min.js +15 -0
  369. pygpt_net/data/js/highlight/es/languages/cpp.js +611 -0
  370. pygpt_net/data/js/highlight/es/languages/cpp.min.js +46 -0
  371. pygpt_net/data/js/highlight/es/languages/crmsh.js +108 -0
  372. pygpt_net/data/js/highlight/es/languages/crmsh.min.js +19 -0
  373. pygpt_net/data/js/highlight/es/languages/crystal.js +320 -0
  374. pygpt_net/data/js/highlight/es/languages/crystal.min.js +48 -0
  375. pygpt_net/data/js/highlight/es/languages/csharp.js +414 -0
  376. pygpt_net/data/js/highlight/es/languages/csharp.min.js +49 -0
  377. pygpt_net/data/js/highlight/es/languages/csp.js +66 -0
  378. pygpt_net/data/js/highlight/es/languages/csp.min.js +6 -0
  379. pygpt_net/data/js/highlight/es/languages/css.js +862 -0
  380. pygpt_net/data/js/highlight/es/languages/css.min.js +31 -0
  381. pygpt_net/data/js/highlight/es/languages/d.js +280 -0
  382. pygpt_net/data/js/highlight/es/languages/d.min.js +20 -0
  383. pygpt_net/data/js/highlight/es/languages/dart.js +270 -0
  384. pygpt_net/data/js/highlight/es/languages/dart.min.js +22 -0
  385. pygpt_net/data/js/highlight/es/languages/delphi.js +254 -0
  386. pygpt_net/data/js/highlight/es/languages/delphi.min.js +19 -0
  387. pygpt_net/data/js/highlight/es/languages/diff.js +70 -0
  388. pygpt_net/data/js/highlight/es/languages/diff.min.js +9 -0
  389. pygpt_net/data/js/highlight/es/languages/django.js +83 -0
  390. pygpt_net/data/js/highlight/es/languages/django.min.js +13 -0
  391. pygpt_net/data/js/highlight/es/languages/dns.js +86 -0
  392. pygpt_net/data/js/highlight/es/languages/dns.min.js +11 -0
  393. pygpt_net/data/js/highlight/es/languages/dockerfile.js +52 -0
  394. pygpt_net/data/js/highlight/es/languages/dockerfile.min.js +8 -0
  395. pygpt_net/data/js/highlight/es/languages/dos.js +175 -0
  396. pygpt_net/data/js/highlight/es/languages/dos.min.js +13 -0
  397. pygpt_net/data/js/highlight/es/languages/dsconfig.js +74 -0
  398. pygpt_net/data/js/highlight/es/languages/dsconfig.min.js +9 -0
  399. pygpt_net/data/js/highlight/es/languages/dts.js +165 -0
  400. pygpt_net/data/js/highlight/es/languages/dts.min.js +22 -0
  401. pygpt_net/data/js/highlight/es/languages/dust.js +55 -0
  402. pygpt_net/data/js/highlight/es/languages/dust.min.js +8 -0
  403. pygpt_net/data/js/highlight/es/languages/ebnf.js +62 -0
  404. pygpt_net/data/js/highlight/es/languages/ebnf.min.js +7 -0
  405. pygpt_net/data/js/highlight/es/languages/elixir.js +287 -0
  406. pygpt_net/data/js/highlight/es/languages/elixir.min.js +34 -0
  407. pygpt_net/data/js/highlight/es/languages/elm.js +151 -0
  408. pygpt_net/data/js/highlight/es/languages/elm.min.js +18 -0
  409. pygpt_net/data/js/highlight/es/languages/erb.js +37 -0
  410. pygpt_net/data/js/highlight/es/languages/erb.min.js +5 -0
  411. pygpt_net/data/js/highlight/es/languages/erlang-repl.js +62 -0
  412. pygpt_net/data/js/highlight/es/languages/erlang-repl.min.js +13 -0
  413. pygpt_net/data/js/highlight/es/languages/erlang.js +207 -0
  414. pygpt_net/data/js/highlight/es/languages/erlang.min.js +28 -0
  415. pygpt_net/data/js/highlight/es/languages/excel.js +553 -0
  416. pygpt_net/data/js/highlight/es/languages/excel.min.js +10 -0
  417. pygpt_net/data/js/highlight/es/languages/fix.js +47 -0
  418. pygpt_net/data/js/highlight/es/languages/fix.min.js +7 -0
  419. pygpt_net/data/js/highlight/es/languages/flix.js +87 -0
  420. pygpt_net/data/js/highlight/es/languages/flix.min.js +10 -0
  421. pygpt_net/data/js/highlight/es/languages/fortran.js +582 -0
  422. pygpt_net/data/js/highlight/es/languages/fortran.min.js +17 -0
  423. pygpt_net/data/js/highlight/es/languages/fsharp.js +635 -0
  424. pygpt_net/data/js/highlight/es/languages/fsharp.min.js +47 -0
  425. pygpt_net/data/js/highlight/es/languages/gams.js +189 -0
  426. pygpt_net/data/js/highlight/es/languages/gams.min.js +28 -0
  427. pygpt_net/data/js/highlight/es/languages/gauss.js +314 -0
  428. pygpt_net/data/js/highlight/es/languages/gauss.min.js +36 -0
  429. pygpt_net/data/js/highlight/es/languages/gcode.js +89 -0
  430. pygpt_net/data/js/highlight/es/languages/gcode.min.js +17 -0
  431. pygpt_net/data/js/highlight/es/languages/gherkin.js +57 -0
  432. pygpt_net/data/js/highlight/es/languages/gherkin.min.js +9 -0
  433. pygpt_net/data/js/highlight/es/languages/glsl.js +136 -0
  434. pygpt_net/data/js/highlight/es/languages/glsl.min.js +8 -0
  435. pygpt_net/data/js/highlight/es/languages/gml.js +3138 -0
  436. pygpt_net/data/js/highlight/es/languages/gml.min.js +10 -0
  437. pygpt_net/data/js/highlight/es/languages/go.js +164 -0
  438. pygpt_net/data/js/highlight/es/languages/go.min.js +19 -0
  439. pygpt_net/data/js/highlight/es/languages/golo.js +89 -0
  440. pygpt_net/data/js/highlight/es/languages/golo.min.js +6 -0
  441. pygpt_net/data/js/highlight/es/languages/gradle.js +198 -0
  442. pygpt_net/data/js/highlight/es/languages/gradle.min.js +6 -0
  443. pygpt_net/data/js/highlight/es/languages/graphql.js +86 -0
  444. pygpt_net/data/js/highlight/es/languages/graphql.min.js +12 -0
  445. pygpt_net/data/js/highlight/es/languages/groovy.js +198 -0
  446. pygpt_net/data/js/highlight/es/languages/groovy.min.js +21 -0
  447. pygpt_net/data/js/highlight/es/languages/haml.js +121 -0
  448. pygpt_net/data/js/highlight/es/languages/haml.min.js +18 -0
  449. pygpt_net/data/js/highlight/es/languages/handlebars.js +266 -0
  450. pygpt_net/data/js/highlight/es/languages/handlebars.min.js +29 -0
  451. pygpt_net/data/js/highlight/es/languages/haskell.js +225 -0
  452. pygpt_net/data/js/highlight/es/languages/haskell.min.js +32 -0
  453. pygpt_net/data/js/highlight/es/languages/haxe.js +175 -0
  454. pygpt_net/data/js/highlight/es/languages/haxe.min.js +30 -0
  455. pygpt_net/data/js/highlight/es/languages/hsp.js +67 -0
  456. pygpt_net/data/js/highlight/es/languages/hsp.min.js +14 -0
  457. pygpt_net/data/js/highlight/es/languages/http.js +105 -0
  458. pygpt_net/data/js/highlight/es/languages/http.min.js +14 -0
  459. pygpt_net/data/js/highlight/es/languages/hy.js +145 -0
  460. pygpt_net/data/js/highlight/es/languages/hy.min.js +15 -0
  461. pygpt_net/data/js/highlight/es/languages/inform7.js +78 -0
  462. pygpt_net/data/js/highlight/es/languages/inform7.min.js +10 -0
  463. pygpt_net/data/js/highlight/es/languages/ini.js +129 -0
  464. pygpt_net/data/js/highlight/es/languages/ini.min.js +16 -0
  465. pygpt_net/data/js/highlight/es/languages/irpf90.js +115 -0
  466. pygpt_net/data/js/highlight/es/languages/irpf90.min.js +15 -0
  467. pygpt_net/data/js/highlight/es/languages/isbl.js +3213 -0
  468. pygpt_net/data/js/highlight/es/languages/isbl.min.js +25 -0
  469. pygpt_net/data/js/highlight/es/languages/java.js +298 -0
  470. pygpt_net/data/js/highlight/es/languages/java.min.js +38 -0
  471. pygpt_net/data/js/highlight/es/languages/javascript.js +775 -0
  472. pygpt_net/data/js/highlight/es/languages/javascript.min.js +81 -0
  473. pygpt_net/data/js/highlight/es/languages/jboss-cli.js +71 -0
  474. pygpt_net/data/js/highlight/es/languages/jboss-cli.min.js +10 -0
  475. pygpt_net/data/js/highlight/es/languages/json.js +62 -0
  476. pygpt_net/data/js/highlight/es/languages/json.min.js +8 -0
  477. pygpt_net/data/js/highlight/es/languages/julia-repl.js +59 -0
  478. pygpt_net/data/js/highlight/es/languages/julia-repl.min.js +4 -0
  479. pygpt_net/data/js/highlight/es/languages/julia.js +450 -0
  480. pygpt_net/data/js/highlight/es/languages/julia.min.js +18 -0
  481. pygpt_net/data/js/highlight/es/languages/kotlin.js +294 -0
  482. pygpt_net/data/js/highlight/es/languages/kotlin.min.js +46 -0
  483. pygpt_net/data/js/highlight/es/languages/lasso.js +179 -0
  484. pygpt_net/data/js/highlight/es/languages/lasso.min.js +28 -0
  485. pygpt_net/data/js/highlight/es/languages/latex.js +286 -0
  486. pygpt_net/data/js/highlight/es/languages/latex.min.js +34 -0
  487. pygpt_net/data/js/highlight/es/languages/ldif.js +39 -0
  488. pygpt_net/data/js/highlight/es/languages/ldif.min.js +5 -0
  489. pygpt_net/data/js/highlight/es/languages/leaf.js +105 -0
  490. pygpt_net/data/js/highlight/es/languages/leaf.min.js +12 -0
  491. pygpt_net/data/js/highlight/es/languages/less.js +963 -0
  492. pygpt_net/data/js/highlight/es/languages/less.min.js +45 -0
  493. pygpt_net/data/js/highlight/es/languages/lisp.js +147 -0
  494. pygpt_net/data/js/highlight/es/languages/lisp.min.js +16 -0
  495. pygpt_net/data/js/highlight/es/languages/livecodeserver.js +181 -0
  496. pygpt_net/data/js/highlight/es/languages/livecodeserver.min.js +21 -0
  497. pygpt_net/data/js/highlight/es/languages/livescript.js +386 -0
  498. pygpt_net/data/js/highlight/es/languages/livescript.min.js +35 -0
  499. pygpt_net/data/js/highlight/es/languages/llvm.js +143 -0
  500. pygpt_net/data/js/highlight/es/languages/llvm.min.js +16 -0
  501. pygpt_net/data/js/highlight/es/languages/lsl.js +84 -0
  502. pygpt_net/data/js/highlight/es/languages/lsl.min.js +19 -0
  503. pygpt_net/data/js/highlight/es/languages/lua.js +88 -0
  504. pygpt_net/data/js/highlight/es/languages/lua.min.js +14 -0
  505. pygpt_net/data/js/highlight/es/languages/makefile.js +94 -0
  506. pygpt_net/data/js/highlight/es/languages/makefile.min.js +14 -0
  507. pygpt_net/data/js/highlight/es/languages/markdown.js +256 -0
  508. pygpt_net/data/js/highlight/es/languages/markdown.min.js +32 -0
  509. pygpt_net/data/js/highlight/es/languages/mathematica.js +7367 -0
  510. pygpt_net/data/js/highlight/es/languages/mathematica.min.js +21 -0
  511. pygpt_net/data/js/highlight/es/languages/matlab.js +115 -0
  512. pygpt_net/data/js/highlight/es/languages/matlab.min.js +15 -0
  513. pygpt_net/data/js/highlight/es/languages/maxima.js +422 -0
  514. pygpt_net/data/js/highlight/es/languages/maxima.min.js +12 -0
  515. pygpt_net/data/js/highlight/es/languages/mel.js +243 -0
  516. pygpt_net/data/js/highlight/es/languages/mel.min.js +8 -0
  517. pygpt_net/data/js/highlight/es/languages/mercury.js +116 -0
  518. pygpt_net/data/js/highlight/es/languages/mercury.min.js +16 -0
  519. pygpt_net/data/js/highlight/es/languages/mipsasm.js +112 -0
  520. pygpt_net/data/js/highlight/es/languages/mipsasm.min.js +15 -0
  521. pygpt_net/data/js/highlight/es/languages/mizar.js +35 -0
  522. pygpt_net/data/js/highlight/es/languages/mizar.min.js +4 -0
  523. pygpt_net/data/js/highlight/es/languages/mojolicious.js +44 -0
  524. pygpt_net/data/js/highlight/es/languages/mojolicious.min.js +6 -0
  525. pygpt_net/data/js/highlight/es/languages/monkey.js +192 -0
  526. pygpt_net/data/js/highlight/es/languages/monkey.min.js +17 -0
  527. pygpt_net/data/js/highlight/es/languages/moonscript.js +149 -0
  528. pygpt_net/data/js/highlight/es/languages/moonscript.min.js +23 -0
  529. pygpt_net/data/js/highlight/es/languages/n1ql.js +373 -0
  530. pygpt_net/data/js/highlight/es/languages/n1ql.min.js +13 -0
  531. pygpt_net/data/js/highlight/es/languages/nestedtext.js +91 -0
  532. pygpt_net/data/js/highlight/es/languages/nestedtext.min.js +9 -0
  533. pygpt_net/data/js/highlight/es/languages/nginx.js +161 -0
  534. pygpt_net/data/js/highlight/es/languages/nginx.min.js +21 -0
  535. pygpt_net/data/js/highlight/es/languages/nim.js +193 -0
  536. pygpt_net/data/js/highlight/es/languages/nim.min.js +15 -0
  537. pygpt_net/data/js/highlight/es/languages/nix.js +103 -0
  538. pygpt_net/data/js/highlight/es/languages/nix.min.js +12 -0
  539. pygpt_net/data/js/highlight/es/languages/node-repl.js +41 -0
  540. pygpt_net/data/js/highlight/es/languages/node-repl.min.js +5 -0
  541. pygpt_net/data/js/highlight/es/languages/nsis.js +565 -0
  542. pygpt_net/data/js/highlight/es/languages/nsis.min.js +23 -0
  543. pygpt_net/data/js/highlight/es/languages/objectivec.js +261 -0
  544. pygpt_net/data/js/highlight/es/languages/objectivec.min.js +23 -0
  545. pygpt_net/data/js/highlight/es/languages/ocaml.js +91 -0
  546. pygpt_net/data/js/highlight/es/languages/ocaml.min.js +14 -0
  547. pygpt_net/data/js/highlight/es/languages/openscad.js +85 -0
  548. pygpt_net/data/js/highlight/es/languages/openscad.min.js +15 -0
  549. pygpt_net/data/js/highlight/es/languages/oxygene.js +95 -0
  550. pygpt_net/data/js/highlight/es/languages/oxygene.min.js +13 -0
  551. pygpt_net/data/js/highlight/es/languages/parser3.js +63 -0
  552. pygpt_net/data/js/highlight/es/languages/parser3.min.js +10 -0
  553. pygpt_net/data/js/highlight/es/languages/perl.js +512 -0
  554. pygpt_net/data/js/highlight/es/languages/perl.min.js +40 -0
  555. pygpt_net/data/js/highlight/es/languages/pf.js +68 -0
  556. pygpt_net/data/js/highlight/es/languages/pf.min.js +9 -0
  557. pygpt_net/data/js/highlight/es/languages/pgsql.js +533 -0
  558. pygpt_net/data/js/highlight/es/languages/pgsql.min.js +69 -0
  559. pygpt_net/data/js/highlight/es/languages/php-template.js +62 -0
  560. pygpt_net/data/js/highlight/es/languages/php-template.min.js +8 -0
  561. pygpt_net/data/js/highlight/es/languages/php.js +621 -0
  562. pygpt_net/data/js/highlight/es/languages/php.min.js +58 -0
  563. pygpt_net/data/js/highlight/es/languages/plaintext.js +27 -0
  564. pygpt_net/data/js/highlight/es/languages/plaintext.min.js +3 -0
  565. pygpt_net/data/js/highlight/es/languages/pony.js +98 -0
  566. pygpt_net/data/js/highlight/es/languages/pony.min.js +12 -0
  567. pygpt_net/data/js/highlight/es/languages/powershell.js +325 -0
  568. pygpt_net/data/js/highlight/es/languages/powershell.min.js +40 -0
  569. pygpt_net/data/js/highlight/es/languages/processing.js +442 -0
  570. pygpt_net/data/js/highlight/es/languages/processing.min.js +18 -0
  571. pygpt_net/data/js/highlight/es/languages/profile.js +51 -0
  572. pygpt_net/data/js/highlight/es/languages/profile.min.js +9 -0
  573. pygpt_net/data/js/highlight/es/languages/prolog.js +105 -0
  574. pygpt_net/data/js/highlight/es/languages/prolog.min.js +11 -0
  575. pygpt_net/data/js/highlight/es/languages/properties.js +76 -0
  576. pygpt_net/data/js/highlight/es/languages/properties.min.js +9 -0
  577. pygpt_net/data/js/highlight/es/languages/protobuf.js +87 -0
  578. pygpt_net/data/js/highlight/es/languages/protobuf.min.js +11 -0
  579. pygpt_net/data/js/highlight/es/languages/puppet.js +154 -0
  580. pygpt_net/data/js/highlight/es/languages/puppet.min.js +18 -0
  581. pygpt_net/data/js/highlight/es/languages/purebasic.js +108 -0
  582. pygpt_net/data/js/highlight/es/languages/purebasic.min.js +11 -0
  583. pygpt_net/data/js/highlight/es/languages/python-repl.js +40 -0
  584. pygpt_net/data/js/highlight/es/languages/python-repl.min.js +5 -0
  585. pygpt_net/data/js/highlight/es/languages/python.js +444 -0
  586. pygpt_net/data/js/highlight/es/languages/python.min.js +42 -0
  587. pygpt_net/data/js/highlight/es/languages/q.js +46 -0
  588. pygpt_net/data/js/highlight/es/languages/q.min.js +8 -0
  589. pygpt_net/data/js/highlight/es/languages/qml.js +197 -0
  590. pygpt_net/data/js/highlight/es/languages/qml.min.js +29 -0
  591. pygpt_net/data/js/highlight/es/languages/r.js +265 -0
  592. pygpt_net/data/js/highlight/es/languages/r.min.js +26 -0
  593. pygpt_net/data/js/highlight/es/languages/reasonml.js +150 -0
  594. pygpt_net/data/js/highlight/es/languages/reasonml.min.js +18 -0
  595. pygpt_net/data/js/highlight/es/languages/rib.js +45 -0
  596. pygpt_net/data/js/highlight/es/languages/rib.min.js +6 -0
  597. pygpt_net/data/js/highlight/es/languages/roboconf.js +90 -0
  598. pygpt_net/data/js/highlight/es/languages/roboconf.min.js +13 -0
  599. pygpt_net/data/js/highlight/es/languages/routeros.js +172 -0
  600. pygpt_net/data/js/highlight/es/languages/routeros.min.js +22 -0
  601. pygpt_net/data/js/highlight/es/languages/rsl.js +157 -0
  602. pygpt_net/data/js/highlight/es/languages/rsl.min.js +11 -0
  603. pygpt_net/data/js/highlight/es/languages/ruby.js +456 -0
  604. pygpt_net/data/js/highlight/es/languages/ruby.min.js +54 -0
  605. pygpt_net/data/js/highlight/es/languages/ruleslanguage.js +84 -0
  606. pygpt_net/data/js/highlight/es/languages/ruleslanguage.min.js +9 -0
  607. pygpt_net/data/js/highlight/es/languages/rust.js +324 -0
  608. pygpt_net/data/js/highlight/es/languages/rust.min.js +27 -0
  609. pygpt_net/data/js/highlight/es/languages/sas.js +565 -0
  610. pygpt_net/data/js/highlight/es/languages/sas.min.js +17 -0
  611. pygpt_net/data/js/highlight/es/languages/scala.js +222 -0
  612. pygpt_net/data/js/highlight/es/languages/scala.min.js +28 -0
  613. pygpt_net/data/js/highlight/es/languages/scheme.js +204 -0
  614. pygpt_net/data/js/highlight/es/languages/scheme.min.js +19 -0
  615. pygpt_net/data/js/highlight/es/languages/scilab.js +81 -0
  616. pygpt_net/data/js/highlight/es/languages/scilab.min.js +13 -0
  617. pygpt_net/data/js/highlight/es/languages/scss.js +852 -0
  618. pygpt_net/data/js/highlight/es/languages/scss.min.js +33 -0
  619. pygpt_net/data/js/highlight/es/languages/shell.js +41 -0
  620. pygpt_net/data/js/highlight/es/languages/shell.min.js +5 -0
  621. pygpt_net/data/js/highlight/es/languages/smali.js +134 -0
  622. pygpt_net/data/js/highlight/es/languages/smali.min.js +13 -0
  623. pygpt_net/data/js/highlight/es/languages/smalltalk.js +77 -0
  624. pygpt_net/data/js/highlight/es/languages/smalltalk.min.js +11 -0
  625. pygpt_net/data/js/highlight/es/languages/sml.js +83 -0
  626. pygpt_net/data/js/highlight/es/languages/sml.min.js +14 -0
  627. pygpt_net/data/js/highlight/es/languages/sqf.js +2670 -0
  628. pygpt_net/data/js/highlight/es/languages/sqf.min.js +17 -0
  629. pygpt_net/data/js/highlight/es/languages/sql.js +690 -0
  630. pygpt_net/data/js/highlight/es/languages/sql.min.js +17 -0
  631. pygpt_net/data/js/highlight/es/languages/stan.js +529 -0
  632. pygpt_net/data/js/highlight/es/languages/stan.min.js +28 -0
  633. pygpt_net/data/js/highlight/es/languages/stata.js +61 -0
  634. pygpt_net/data/js/highlight/es/languages/stata.min.js +11 -0
  635. pygpt_net/data/js/highlight/es/languages/step21.js +75 -0
  636. pygpt_net/data/js/highlight/es/languages/step21.min.js +10 -0
  637. pygpt_net/data/js/highlight/es/languages/stylus.js +912 -0
  638. pygpt_net/data/js/highlight/es/languages/stylus.min.js +36 -0
  639. pygpt_net/data/js/highlight/es/languages/subunit.js +52 -0
  640. pygpt_net/data/js/highlight/es/languages/subunit.min.js +10 -0
  641. pygpt_net/data/js/highlight/es/languages/swift.js +951 -0
  642. pygpt_net/data/js/highlight/es/languages/swift.min.js +66 -0
  643. pygpt_net/data/js/highlight/es/languages/taggerscript.js +67 -0
  644. pygpt_net/data/js/highlight/es/languages/taggerscript.min.js +7 -0
  645. pygpt_net/data/js/highlight/es/languages/tap.js +55 -0
  646. pygpt_net/data/js/highlight/es/languages/tap.min.js +7 -0
  647. pygpt_net/data/js/highlight/es/languages/tcl.js +199 -0
  648. pygpt_net/data/js/highlight/es/languages/tcl.min.js +15 -0
  649. pygpt_net/data/js/highlight/es/languages/thrift.js +85 -0
  650. pygpt_net/data/js/highlight/es/languages/thrift.min.js +12 -0
  651. pygpt_net/data/js/highlight/es/languages/tp.js +180 -0
  652. pygpt_net/data/js/highlight/es/languages/tp.min.js +19 -0
  653. pygpt_net/data/js/highlight/es/languages/twig.js +268 -0
  654. pygpt_net/data/js/highlight/es/languages/twig.min.js +18 -0
  655. pygpt_net/data/js/highlight/es/languages/typescript.js +909 -0
  656. pygpt_net/data/js/highlight/es/languages/typescript.min.js +98 -0
  657. pygpt_net/data/js/highlight/es/languages/vala.js +69 -0
  658. pygpt_net/data/js/highlight/es/languages/vala.min.js +9 -0
  659. pygpt_net/data/js/highlight/es/languages/vbnet.js +165 -0
  660. pygpt_net/data/js/highlight/es/languages/vbnet.min.js +25 -0
  661. pygpt_net/data/js/highlight/es/languages/vbscript-html.js +32 -0
  662. pygpt_net/data/js/highlight/es/languages/vbscript-html.min.js +4 -0
  663. pygpt_net/data/js/highlight/es/languages/vbscript.js +228 -0
  664. pygpt_net/data/js/highlight/es/languages/vbscript.min.js +10 -0
  665. pygpt_net/data/js/highlight/es/languages/verilog.js +558 -0
  666. pygpt_net/data/js/highlight/es/languages/verilog.min.js +17 -0
  667. pygpt_net/data/js/highlight/es/languages/vhdl.js +224 -0
  668. pygpt_net/data/js/highlight/es/languages/vhdl.min.js +13 -0
  669. pygpt_net/data/js/highlight/es/languages/vim.js +137 -0
  670. pygpt_net/data/js/highlight/es/languages/vim.min.js +12 -0
  671. pygpt_net/data/js/highlight/es/languages/wasm.js +147 -0
  672. pygpt_net/data/js/highlight/es/languages/wasm.min.js +15 -0
  673. pygpt_net/data/js/highlight/es/languages/wren.js +310 -0
  674. pygpt_net/data/js/highlight/es/languages/wren.min.js +30 -0
  675. pygpt_net/data/js/highlight/es/languages/x86asm.js +161 -0
  676. pygpt_net/data/js/highlight/es/languages/x86asm.min.js +18 -0
  677. pygpt_net/data/js/highlight/es/languages/xl.js +213 -0
  678. pygpt_net/data/js/highlight/es/languages/xl.min.js +15 -0
  679. pygpt_net/data/js/highlight/es/languages/xml.js +249 -0
  680. pygpt_net/data/js/highlight/es/languages/xml.min.js +29 -0
  681. pygpt_net/data/js/highlight/es/languages/xquery.js +368 -0
  682. pygpt_net/data/js/highlight/es/languages/xquery.min.js +33 -0
  683. pygpt_net/data/js/highlight/es/languages/yaml.js +203 -0
  684. pygpt_net/data/js/highlight/es/languages/yaml.min.js +25 -0
  685. pygpt_net/data/js/highlight/es/languages/zephir.js +137 -0
  686. pygpt_net/data/js/highlight/es/languages/zephir.min.js +18 -0
  687. pygpt_net/data/js/highlight/es/package.json +1 -0
  688. pygpt_net/data/js/highlight/highlight.js +60739 -0
  689. pygpt_net/data/js/highlight/highlight.min.js +3861 -0
  690. pygpt_net/data/js/highlight/languages/1c.js +554 -0
  691. pygpt_net/data/js/highlight/languages/1c.min.js +25 -0
  692. pygpt_net/data/js/highlight/languages/abnf.js +93 -0
  693. pygpt_net/data/js/highlight/languages/abnf.min.js +11 -0
  694. pygpt_net/data/js/highlight/languages/accesslog.js +102 -0
  695. pygpt_net/data/js/highlight/languages/accesslog.min.js +13 -0
  696. pygpt_net/data/js/highlight/languages/actionscript.js +163 -0
  697. pygpt_net/data/js/highlight/languages/actionscript.min.js +17 -0
  698. pygpt_net/data/js/highlight/languages/ada.js +275 -0
  699. pygpt_net/data/js/highlight/languages/ada.min.js +25 -0
  700. pygpt_net/data/js/highlight/languages/angelscript.js +188 -0
  701. pygpt_net/data/js/highlight/languages/angelscript.min.js +21 -0
  702. pygpt_net/data/js/highlight/languages/apache.js +111 -0
  703. pygpt_net/data/js/highlight/languages/apache.min.js +14 -0
  704. pygpt_net/data/js/highlight/languages/applescript.js +159 -0
  705. pygpt_net/data/js/highlight/languages/applescript.min.js +19 -0
  706. pygpt_net/data/js/highlight/languages/arcade.js +427 -0
  707. pygpt_net/data/js/highlight/languages/arcade.min.js +27 -0
  708. pygpt_net/data/js/highlight/languages/arduino.js +1016 -0
  709. pygpt_net/data/js/highlight/languages/arduino.min.js +54 -0
  710. pygpt_net/data/js/highlight/languages/armasm.js +134 -0
  711. pygpt_net/data/js/highlight/languages/armasm.min.js +17 -0
  712. pygpt_net/data/js/highlight/languages/asciidoc.js +271 -0
  713. pygpt_net/data/js/highlight/languages/asciidoc.min.js +35 -0
  714. pygpt_net/data/js/highlight/languages/aspectj.js +241 -0
  715. pygpt_net/data/js/highlight/languages/aspectj.min.js +31 -0
  716. pygpt_net/data/js/highlight/languages/autohotkey.js +85 -0
  717. pygpt_net/data/js/highlight/languages/autohotkey.min.js +14 -0
  718. pygpt_net/data/js/highlight/languages/autoit.js +188 -0
  719. pygpt_net/data/js/highlight/languages/autoit.min.js +21 -0
  720. pygpt_net/data/js/highlight/languages/avrasm.js +88 -0
  721. pygpt_net/data/js/highlight/languages/avrasm.min.js +12 -0
  722. pygpt_net/data/js/highlight/languages/awk.js +78 -0
  723. pygpt_net/data/js/highlight/languages/awk.min.js +11 -0
  724. pygpt_net/data/js/highlight/languages/axapta.js +198 -0
  725. pygpt_net/data/js/highlight/languages/axapta.min.js +11 -0
  726. pygpt_net/data/js/highlight/languages/bash.js +417 -0
  727. pygpt_net/data/js/highlight/languages/bash.min.js +21 -0
  728. pygpt_net/data/js/highlight/languages/basic.js +240 -0
  729. pygpt_net/data/js/highlight/languages/basic.min.js +10 -0
  730. pygpt_net/data/js/highlight/languages/bnf.js +49 -0
  731. pygpt_net/data/js/highlight/languages/bnf.min.js +6 -0
  732. pygpt_net/data/js/highlight/languages/brainfuck.js +64 -0
  733. pygpt_net/data/js/highlight/languages/brainfuck.min.js +8 -0
  734. pygpt_net/data/js/highlight/languages/c.js +342 -0
  735. pygpt_net/data/js/highlight/languages/c.min.js +40 -0
  736. pygpt_net/data/js/highlight/languages/cal.js +170 -0
  737. pygpt_net/data/js/highlight/languages/cal.min.js +15 -0
  738. pygpt_net/data/js/highlight/languages/capnproto.js +109 -0
  739. pygpt_net/data/js/highlight/languages/capnproto.min.js +11 -0
  740. pygpt_net/data/js/highlight/languages/ceylon.js +150 -0
  741. pygpt_net/data/js/highlight/languages/ceylon.min.js +15 -0
  742. pygpt_net/data/js/highlight/languages/clean.js +77 -0
  743. pygpt_net/data/js/highlight/languages/clean.min.js +8 -0
  744. pygpt_net/data/js/highlight/languages/clojure-repl.js +37 -0
  745. pygpt_net/data/js/highlight/languages/clojure-repl.min.js +4 -0
  746. pygpt_net/data/js/highlight/languages/clojure.js +194 -0
  747. pygpt_net/data/js/highlight/languages/clojure.min.js +25 -0
  748. pygpt_net/data/js/highlight/languages/cmake.js +74 -0
  749. pygpt_net/data/js/highlight/languages/cmake.min.js +7 -0
  750. pygpt_net/data/js/highlight/languages/coffeescript.js +376 -0
  751. pygpt_net/data/js/highlight/languages/coffeescript.min.js +29 -0
  752. pygpt_net/data/js/highlight/languages/coq.js +455 -0
  753. pygpt_net/data/js/highlight/languages/coq.min.js +7 -0
  754. pygpt_net/data/js/highlight/languages/cos.js +150 -0
  755. pygpt_net/data/js/highlight/languages/cos.min.js +15 -0
  756. pygpt_net/data/js/highlight/languages/cpp.js +613 -0
  757. pygpt_net/data/js/highlight/languages/cpp.min.js +47 -0
  758. pygpt_net/data/js/highlight/languages/crmsh.js +110 -0
  759. pygpt_net/data/js/highlight/languages/crmsh.min.js +19 -0
  760. pygpt_net/data/js/highlight/languages/crystal.js +322 -0
  761. pygpt_net/data/js/highlight/languages/crystal.min.js +48 -0
  762. pygpt_net/data/js/highlight/languages/csharp.js +416 -0
  763. pygpt_net/data/js/highlight/languages/csharp.min.js +49 -0
  764. pygpt_net/data/js/highlight/languages/csp.js +68 -0
  765. pygpt_net/data/js/highlight/languages/csp.min.js +7 -0
  766. pygpt_net/data/js/highlight/languages/css.js +864 -0
  767. pygpt_net/data/js/highlight/languages/css.min.js +31 -0
  768. pygpt_net/data/js/highlight/languages/d.js +282 -0
  769. pygpt_net/data/js/highlight/languages/d.min.js +20 -0
  770. pygpt_net/data/js/highlight/languages/dart.js +272 -0
  771. pygpt_net/data/js/highlight/languages/dart.min.js +22 -0
  772. pygpt_net/data/js/highlight/languages/delphi.js +256 -0
  773. pygpt_net/data/js/highlight/languages/delphi.min.js +19 -0
  774. pygpt_net/data/js/highlight/languages/diff.js +72 -0
  775. pygpt_net/data/js/highlight/languages/diff.min.js +9 -0
  776. pygpt_net/data/js/highlight/languages/django.js +85 -0
  777. pygpt_net/data/js/highlight/languages/django.min.js +13 -0
  778. pygpt_net/data/js/highlight/languages/dns.js +88 -0
  779. pygpt_net/data/js/highlight/languages/dns.min.js +11 -0
  780. pygpt_net/data/js/highlight/languages/dockerfile.js +54 -0
  781. pygpt_net/data/js/highlight/languages/dockerfile.min.js +8 -0
  782. pygpt_net/data/js/highlight/languages/dos.js +177 -0
  783. pygpt_net/data/js/highlight/languages/dos.min.js +12 -0
  784. pygpt_net/data/js/highlight/languages/dsconfig.js +76 -0
  785. pygpt_net/data/js/highlight/languages/dsconfig.min.js +9 -0
  786. pygpt_net/data/js/highlight/languages/dts.js +167 -0
  787. pygpt_net/data/js/highlight/languages/dts.min.js +22 -0
  788. pygpt_net/data/js/highlight/languages/dust.js +57 -0
  789. pygpt_net/data/js/highlight/languages/dust.min.js +8 -0
  790. pygpt_net/data/js/highlight/languages/ebnf.js +64 -0
  791. pygpt_net/data/js/highlight/languages/ebnf.min.js +7 -0
  792. pygpt_net/data/js/highlight/languages/elixir.js +289 -0
  793. pygpt_net/data/js/highlight/languages/elixir.min.js +34 -0
  794. pygpt_net/data/js/highlight/languages/elm.js +153 -0
  795. pygpt_net/data/js/highlight/languages/elm.min.js +18 -0
  796. pygpt_net/data/js/highlight/languages/erb.js +39 -0
  797. pygpt_net/data/js/highlight/languages/erb.min.js +5 -0
  798. pygpt_net/data/js/highlight/languages/erlang-repl.js +64 -0
  799. pygpt_net/data/js/highlight/languages/erlang-repl.min.js +13 -0
  800. pygpt_net/data/js/highlight/languages/erlang.js +209 -0
  801. pygpt_net/data/js/highlight/languages/erlang.min.js +28 -0
  802. pygpt_net/data/js/highlight/languages/excel.js +555 -0
  803. pygpt_net/data/js/highlight/languages/excel.min.js +10 -0
  804. pygpt_net/data/js/highlight/languages/fix.js +49 -0
  805. pygpt_net/data/js/highlight/languages/fix.min.js +7 -0
  806. pygpt_net/data/js/highlight/languages/flix.js +89 -0
  807. pygpt_net/data/js/highlight/languages/flix.min.js +10 -0
  808. pygpt_net/data/js/highlight/languages/fortran.js +584 -0
  809. pygpt_net/data/js/highlight/languages/fortran.min.js +17 -0
  810. pygpt_net/data/js/highlight/languages/fsharp.js +637 -0
  811. pygpt_net/data/js/highlight/languages/fsharp.min.js +47 -0
  812. pygpt_net/data/js/highlight/languages/gams.js +191 -0
  813. pygpt_net/data/js/highlight/languages/gams.min.js +28 -0
  814. pygpt_net/data/js/highlight/languages/gauss.js +316 -0
  815. pygpt_net/data/js/highlight/languages/gauss.min.js +36 -0
  816. pygpt_net/data/js/highlight/languages/gcode.js +91 -0
  817. pygpt_net/data/js/highlight/languages/gcode.min.js +16 -0
  818. pygpt_net/data/js/highlight/languages/gherkin.js +59 -0
  819. pygpt_net/data/js/highlight/languages/gherkin.min.js +8 -0
  820. pygpt_net/data/js/highlight/languages/glsl.js +138 -0
  821. pygpt_net/data/js/highlight/languages/glsl.min.js +8 -0
  822. pygpt_net/data/js/highlight/languages/gml.js +3140 -0
  823. pygpt_net/data/js/highlight/languages/gml.min.js +10 -0
  824. pygpt_net/data/js/highlight/languages/go.js +166 -0
  825. pygpt_net/data/js/highlight/languages/go.min.js +20 -0
  826. pygpt_net/data/js/highlight/languages/golo.js +91 -0
  827. pygpt_net/data/js/highlight/languages/golo.min.js +6 -0
  828. pygpt_net/data/js/highlight/languages/gradle.js +200 -0
  829. pygpt_net/data/js/highlight/languages/gradle.min.js +5 -0
  830. pygpt_net/data/js/highlight/languages/graphql.js +88 -0
  831. pygpt_net/data/js/highlight/languages/graphql.min.js +12 -0
  832. pygpt_net/data/js/highlight/languages/groovy.js +200 -0
  833. pygpt_net/data/js/highlight/languages/groovy.min.js +21 -0
  834. pygpt_net/data/js/highlight/languages/haml.js +123 -0
  835. pygpt_net/data/js/highlight/languages/haml.min.js +18 -0
  836. pygpt_net/data/js/highlight/languages/handlebars.js +268 -0
  837. pygpt_net/data/js/highlight/languages/handlebars.min.js +29 -0
  838. pygpt_net/data/js/highlight/languages/haskell.js +227 -0
  839. pygpt_net/data/js/highlight/languages/haskell.min.js +32 -0
  840. pygpt_net/data/js/highlight/languages/haxe.js +177 -0
  841. pygpt_net/data/js/highlight/languages/haxe.min.js +29 -0
  842. pygpt_net/data/js/highlight/languages/hsp.js +69 -0
  843. pygpt_net/data/js/highlight/languages/hsp.min.js +14 -0
  844. pygpt_net/data/js/highlight/languages/http.js +107 -0
  845. pygpt_net/data/js/highlight/languages/http.min.js +14 -0
  846. pygpt_net/data/js/highlight/languages/hy.js +147 -0
  847. pygpt_net/data/js/highlight/languages/hy.min.js +16 -0
  848. pygpt_net/data/js/highlight/languages/inform7.js +80 -0
  849. pygpt_net/data/js/highlight/languages/inform7.min.js +11 -0
  850. pygpt_net/data/js/highlight/languages/ini.js +131 -0
  851. pygpt_net/data/js/highlight/languages/ini.min.js +15 -0
  852. pygpt_net/data/js/highlight/languages/irpf90.js +117 -0
  853. pygpt_net/data/js/highlight/languages/irpf90.min.js +15 -0
  854. pygpt_net/data/js/highlight/languages/isbl.js +3215 -0
  855. pygpt_net/data/js/highlight/languages/isbl.min.js +25 -0
  856. pygpt_net/data/js/highlight/languages/java.js +300 -0
  857. pygpt_net/data/js/highlight/languages/java.min.js +38 -0
  858. pygpt_net/data/js/highlight/languages/javascript.js +777 -0
  859. pygpt_net/data/js/highlight/languages/javascript.min.js +81 -0
  860. pygpt_net/data/js/highlight/languages/jboss-cli.js +73 -0
  861. pygpt_net/data/js/highlight/languages/jboss-cli.min.js +10 -0
  862. pygpt_net/data/js/highlight/languages/json.js +64 -0
  863. pygpt_net/data/js/highlight/languages/json.min.js +8 -0
  864. pygpt_net/data/js/highlight/languages/julia-repl.js +61 -0
  865. pygpt_net/data/js/highlight/languages/julia-repl.min.js +5 -0
  866. pygpt_net/data/js/highlight/languages/julia.js +452 -0
  867. pygpt_net/data/js/highlight/languages/julia.min.js +18 -0
  868. pygpt_net/data/js/highlight/languages/kotlin.js +296 -0
  869. pygpt_net/data/js/highlight/languages/kotlin.min.js +46 -0
  870. pygpt_net/data/js/highlight/languages/lasso.js +181 -0
  871. pygpt_net/data/js/highlight/languages/lasso.min.js +29 -0
  872. pygpt_net/data/js/highlight/languages/latex.js +288 -0
  873. pygpt_net/data/js/highlight/languages/latex.min.js +33 -0
  874. pygpt_net/data/js/highlight/languages/ldif.js +41 -0
  875. pygpt_net/data/js/highlight/languages/ldif.min.js +5 -0
  876. pygpt_net/data/js/highlight/languages/leaf.js +107 -0
  877. pygpt_net/data/js/highlight/languages/leaf.min.js +12 -0
  878. pygpt_net/data/js/highlight/languages/less.js +965 -0
  879. pygpt_net/data/js/highlight/languages/less.min.js +45 -0
  880. pygpt_net/data/js/highlight/languages/lisp.js +149 -0
  881. pygpt_net/data/js/highlight/languages/lisp.min.js +17 -0
  882. pygpt_net/data/js/highlight/languages/livecodeserver.js +183 -0
  883. pygpt_net/data/js/highlight/languages/livecodeserver.min.js +21 -0
  884. pygpt_net/data/js/highlight/languages/livescript.js +388 -0
  885. pygpt_net/data/js/highlight/languages/livescript.min.js +35 -0
  886. pygpt_net/data/js/highlight/languages/llvm.js +145 -0
  887. pygpt_net/data/js/highlight/languages/llvm.min.js +16 -0
  888. pygpt_net/data/js/highlight/languages/lsl.js +86 -0
  889. pygpt_net/data/js/highlight/languages/lsl.min.js +19 -0
  890. pygpt_net/data/js/highlight/languages/lua.js +90 -0
  891. pygpt_net/data/js/highlight/languages/lua.min.js +15 -0
  892. pygpt_net/data/js/highlight/languages/makefile.js +96 -0
  893. pygpt_net/data/js/highlight/languages/makefile.min.js +14 -0
  894. pygpt_net/data/js/highlight/languages/markdown.js +258 -0
  895. pygpt_net/data/js/highlight/languages/markdown.min.js +32 -0
  896. pygpt_net/data/js/highlight/languages/mathematica.js +7369 -0
  897. pygpt_net/data/js/highlight/languages/mathematica.min.js +21 -0
  898. pygpt_net/data/js/highlight/languages/matlab.js +117 -0
  899. pygpt_net/data/js/highlight/languages/matlab.min.js +15 -0
  900. pygpt_net/data/js/highlight/languages/maxima.js +424 -0
  901. pygpt_net/data/js/highlight/languages/maxima.min.js +12 -0
  902. pygpt_net/data/js/highlight/languages/mel.js +245 -0
  903. pygpt_net/data/js/highlight/languages/mel.min.js +8 -0
  904. pygpt_net/data/js/highlight/languages/mercury.js +118 -0
  905. pygpt_net/data/js/highlight/languages/mercury.min.js +16 -0
  906. pygpt_net/data/js/highlight/languages/mipsasm.js +114 -0
  907. pygpt_net/data/js/highlight/languages/mipsasm.min.js +15 -0
  908. pygpt_net/data/js/highlight/languages/mizar.js +37 -0
  909. pygpt_net/data/js/highlight/languages/mizar.min.js +4 -0
  910. pygpt_net/data/js/highlight/languages/mojolicious.js +46 -0
  911. pygpt_net/data/js/highlight/languages/mojolicious.min.js +6 -0
  912. pygpt_net/data/js/highlight/languages/monkey.js +194 -0
  913. pygpt_net/data/js/highlight/languages/monkey.min.js +17 -0
  914. pygpt_net/data/js/highlight/languages/moonscript.js +151 -0
  915. pygpt_net/data/js/highlight/languages/moonscript.min.js +23 -0
  916. pygpt_net/data/js/highlight/languages/n1ql.js +375 -0
  917. pygpt_net/data/js/highlight/languages/n1ql.min.js +13 -0
  918. pygpt_net/data/js/highlight/languages/nestedtext.js +93 -0
  919. pygpt_net/data/js/highlight/languages/nestedtext.min.js +9 -0
  920. pygpt_net/data/js/highlight/languages/nginx.js +163 -0
  921. pygpt_net/data/js/highlight/languages/nginx.min.js +21 -0
  922. pygpt_net/data/js/highlight/languages/nim.js +195 -0
  923. pygpt_net/data/js/highlight/languages/nim.min.js +15 -0
  924. pygpt_net/data/js/highlight/languages/nix.js +105 -0
  925. pygpt_net/data/js/highlight/languages/nix.min.js +13 -0
  926. pygpt_net/data/js/highlight/languages/node-repl.js +43 -0
  927. pygpt_net/data/js/highlight/languages/node-repl.min.js +5 -0
  928. pygpt_net/data/js/highlight/languages/nsis.js +567 -0
  929. pygpt_net/data/js/highlight/languages/nsis.min.js +23 -0
  930. pygpt_net/data/js/highlight/languages/objectivec.js +263 -0
  931. pygpt_net/data/js/highlight/languages/objectivec.min.js +23 -0
  932. pygpt_net/data/js/highlight/languages/ocaml.js +93 -0
  933. pygpt_net/data/js/highlight/languages/ocaml.min.js +14 -0
  934. pygpt_net/data/js/highlight/languages/openscad.js +87 -0
  935. pygpt_net/data/js/highlight/languages/openscad.min.js +15 -0
  936. pygpt_net/data/js/highlight/languages/oxygene.js +97 -0
  937. pygpt_net/data/js/highlight/languages/oxygene.min.js +13 -0
  938. pygpt_net/data/js/highlight/languages/parser3.js +65 -0
  939. pygpt_net/data/js/highlight/languages/parser3.min.js +10 -0
  940. pygpt_net/data/js/highlight/languages/perl.js +514 -0
  941. pygpt_net/data/js/highlight/languages/perl.min.js +41 -0
  942. pygpt_net/data/js/highlight/languages/pf.js +70 -0
  943. pygpt_net/data/js/highlight/languages/pf.min.js +10 -0
  944. pygpt_net/data/js/highlight/languages/pgsql.js +535 -0
  945. pygpt_net/data/js/highlight/languages/pgsql.min.js +69 -0
  946. pygpt_net/data/js/highlight/languages/php-template.js +64 -0
  947. pygpt_net/data/js/highlight/languages/php-template.min.js +8 -0
  948. pygpt_net/data/js/highlight/languages/php.js +623 -0
  949. pygpt_net/data/js/highlight/languages/php.min.js +58 -0
  950. pygpt_net/data/js/highlight/languages/plaintext.js +29 -0
  951. pygpt_net/data/js/highlight/languages/plaintext.min.js +4 -0
  952. pygpt_net/data/js/highlight/languages/pony.js +100 -0
  953. pygpt_net/data/js/highlight/languages/pony.min.js +12 -0
  954. pygpt_net/data/js/highlight/languages/powershell.js +327 -0
  955. pygpt_net/data/js/highlight/languages/powershell.min.js +39 -0
  956. pygpt_net/data/js/highlight/languages/processing.js +444 -0
  957. pygpt_net/data/js/highlight/languages/processing.min.js +18 -0
  958. pygpt_net/data/js/highlight/languages/profile.js +53 -0
  959. pygpt_net/data/js/highlight/languages/profile.min.js +9 -0
  960. pygpt_net/data/js/highlight/languages/prolog.js +107 -0
  961. pygpt_net/data/js/highlight/languages/prolog.min.js +11 -0
  962. pygpt_net/data/js/highlight/languages/properties.js +78 -0
  963. pygpt_net/data/js/highlight/languages/properties.min.js +10 -0
  964. pygpt_net/data/js/highlight/languages/protobuf.js +89 -0
  965. pygpt_net/data/js/highlight/languages/protobuf.min.js +11 -0
  966. pygpt_net/data/js/highlight/languages/puppet.js +156 -0
  967. pygpt_net/data/js/highlight/languages/puppet.min.js +18 -0
  968. pygpt_net/data/js/highlight/languages/purebasic.js +110 -0
  969. pygpt_net/data/js/highlight/languages/purebasic.min.js +11 -0
  970. pygpt_net/data/js/highlight/languages/python-repl.js +42 -0
  971. pygpt_net/data/js/highlight/languages/python-repl.min.js +5 -0
  972. pygpt_net/data/js/highlight/languages/python.js +446 -0
  973. pygpt_net/data/js/highlight/languages/python.min.js +42 -0
  974. pygpt_net/data/js/highlight/languages/q.js +48 -0
  975. pygpt_net/data/js/highlight/languages/q.min.js +8 -0
  976. pygpt_net/data/js/highlight/languages/qml.js +199 -0
  977. pygpt_net/data/js/highlight/languages/qml.min.js +29 -0
  978. pygpt_net/data/js/highlight/languages/r.js +267 -0
  979. pygpt_net/data/js/highlight/languages/r.min.js +26 -0
  980. pygpt_net/data/js/highlight/languages/reasonml.js +152 -0
  981. pygpt_net/data/js/highlight/languages/reasonml.min.js +18 -0
  982. pygpt_net/data/js/highlight/languages/rib.js +47 -0
  983. pygpt_net/data/js/highlight/languages/rib.min.js +6 -0
  984. pygpt_net/data/js/highlight/languages/roboconf.js +92 -0
  985. pygpt_net/data/js/highlight/languages/roboconf.min.js +12 -0
  986. pygpt_net/data/js/highlight/languages/routeros.js +174 -0
  987. pygpt_net/data/js/highlight/languages/routeros.min.js +22 -0
  988. pygpt_net/data/js/highlight/languages/rsl.js +159 -0
  989. pygpt_net/data/js/highlight/languages/rsl.min.js +11 -0
  990. pygpt_net/data/js/highlight/languages/ruby.js +458 -0
  991. pygpt_net/data/js/highlight/languages/ruby.min.js +54 -0
  992. pygpt_net/data/js/highlight/languages/ruleslanguage.js +86 -0
  993. pygpt_net/data/js/highlight/languages/ruleslanguage.min.js +9 -0
  994. pygpt_net/data/js/highlight/languages/rust.js +326 -0
  995. pygpt_net/data/js/highlight/languages/rust.min.js +27 -0
  996. pygpt_net/data/js/highlight/languages/sas.js +567 -0
  997. pygpt_net/data/js/highlight/languages/sas.min.js +18 -0
  998. pygpt_net/data/js/highlight/languages/scala.js +224 -0
  999. pygpt_net/data/js/highlight/languages/scala.min.js +28 -0
  1000. pygpt_net/data/js/highlight/languages/scheme.js +206 -0
  1001. pygpt_net/data/js/highlight/languages/scheme.min.js +20 -0
  1002. pygpt_net/data/js/highlight/languages/scilab.js +83 -0
  1003. pygpt_net/data/js/highlight/languages/scilab.min.js +13 -0
  1004. pygpt_net/data/js/highlight/languages/scss.js +854 -0
  1005. pygpt_net/data/js/highlight/languages/scss.min.js +33 -0
  1006. pygpt_net/data/js/highlight/languages/shell.js +43 -0
  1007. pygpt_net/data/js/highlight/languages/shell.min.js +5 -0
  1008. pygpt_net/data/js/highlight/languages/smali.js +136 -0
  1009. pygpt_net/data/js/highlight/languages/smali.min.js +13 -0
  1010. pygpt_net/data/js/highlight/languages/smalltalk.js +79 -0
  1011. pygpt_net/data/js/highlight/languages/smalltalk.min.js +11 -0
  1012. pygpt_net/data/js/highlight/languages/sml.js +85 -0
  1013. pygpt_net/data/js/highlight/languages/sml.min.js +14 -0
  1014. pygpt_net/data/js/highlight/languages/sqf.js +2672 -0
  1015. pygpt_net/data/js/highlight/languages/sqf.min.js +17 -0
  1016. pygpt_net/data/js/highlight/languages/sql.js +692 -0
  1017. pygpt_net/data/js/highlight/languages/sql.min.js +17 -0
  1018. pygpt_net/data/js/highlight/languages/stan.js +531 -0
  1019. pygpt_net/data/js/highlight/languages/stan.min.js +28 -0
  1020. pygpt_net/data/js/highlight/languages/stata.js +63 -0
  1021. pygpt_net/data/js/highlight/languages/stata.min.js +11 -0
  1022. pygpt_net/data/js/highlight/languages/step21.js +77 -0
  1023. pygpt_net/data/js/highlight/languages/step21.min.js +10 -0
  1024. pygpt_net/data/js/highlight/languages/stylus.js +914 -0
  1025. pygpt_net/data/js/highlight/languages/stylus.min.js +36 -0
  1026. pygpt_net/data/js/highlight/languages/subunit.js +54 -0
  1027. pygpt_net/data/js/highlight/languages/subunit.min.js +9 -0
  1028. pygpt_net/data/js/highlight/languages/swift.js +953 -0
  1029. pygpt_net/data/js/highlight/languages/swift.min.js +66 -0
  1030. pygpt_net/data/js/highlight/languages/taggerscript.js +69 -0
  1031. pygpt_net/data/js/highlight/languages/taggerscript.min.js +8 -0
  1032. pygpt_net/data/js/highlight/languages/tap.js +57 -0
  1033. pygpt_net/data/js/highlight/languages/tap.min.js +7 -0
  1034. pygpt_net/data/js/highlight/languages/tcl.js +201 -0
  1035. pygpt_net/data/js/highlight/languages/tcl.min.js +15 -0
  1036. pygpt_net/data/js/highlight/languages/thrift.js +87 -0
  1037. pygpt_net/data/js/highlight/languages/thrift.min.js +12 -0
  1038. pygpt_net/data/js/highlight/languages/tp.js +182 -0
  1039. pygpt_net/data/js/highlight/languages/tp.min.js +19 -0
  1040. pygpt_net/data/js/highlight/languages/twig.js +270 -0
  1041. pygpt_net/data/js/highlight/languages/twig.min.js +18 -0
  1042. pygpt_net/data/js/highlight/languages/typescript.js +911 -0
  1043. pygpt_net/data/js/highlight/languages/typescript.min.js +98 -0
  1044. pygpt_net/data/js/highlight/languages/vala.js +71 -0
  1045. pygpt_net/data/js/highlight/languages/vala.min.js +9 -0
  1046. pygpt_net/data/js/highlight/languages/vbnet.js +167 -0
  1047. pygpt_net/data/js/highlight/languages/vbnet.min.js +25 -0
  1048. pygpt_net/data/js/highlight/languages/vbscript-html.js +34 -0
  1049. pygpt_net/data/js/highlight/languages/vbscript-html.min.js +4 -0
  1050. pygpt_net/data/js/highlight/languages/vbscript.js +230 -0
  1051. pygpt_net/data/js/highlight/languages/vbscript.min.js +10 -0
  1052. pygpt_net/data/js/highlight/languages/verilog.js +560 -0
  1053. pygpt_net/data/js/highlight/languages/verilog.min.js +17 -0
  1054. pygpt_net/data/js/highlight/languages/vhdl.js +226 -0
  1055. pygpt_net/data/js/highlight/languages/vhdl.min.js +13 -0
  1056. pygpt_net/data/js/highlight/languages/vim.js +139 -0
  1057. pygpt_net/data/js/highlight/languages/vim.min.js +12 -0
  1058. pygpt_net/data/js/highlight/languages/wasm.js +149 -0
  1059. pygpt_net/data/js/highlight/languages/wasm.min.js +14 -0
  1060. pygpt_net/data/js/highlight/languages/wren.js +312 -0
  1061. pygpt_net/data/js/highlight/languages/wren.min.js +30 -0
  1062. pygpt_net/data/js/highlight/languages/x86asm.js +163 -0
  1063. pygpt_net/data/js/highlight/languages/x86asm.min.js +19 -0
  1064. pygpt_net/data/js/highlight/languages/xl.js +215 -0
  1065. pygpt_net/data/js/highlight/languages/xl.min.js +15 -0
  1066. pygpt_net/data/js/highlight/languages/xml.js +251 -0
  1067. pygpt_net/data/js/highlight/languages/xml.min.js +29 -0
  1068. pygpt_net/data/js/highlight/languages/xquery.js +370 -0
  1069. pygpt_net/data/js/highlight/languages/xquery.min.js +33 -0
  1070. pygpt_net/data/js/highlight/languages/yaml.js +205 -0
  1071. pygpt_net/data/js/highlight/languages/yaml.min.js +25 -0
  1072. pygpt_net/data/js/highlight/languages/zephir.js +139 -0
  1073. pygpt_net/data/js/highlight/languages/zephir.min.js +18 -0
  1074. pygpt_net/data/js/highlight/package.json +93 -0
  1075. pygpt_net/data/js/highlight/styles/1c-light.css +107 -0
  1076. pygpt_net/data/js/highlight/styles/1c-light.min.css +9 -0
  1077. pygpt_net/data/js/highlight/styles/a11y-dark.css +94 -0
  1078. pygpt_net/data/js/highlight/styles/a11y-dark.min.css +7 -0
  1079. pygpt_net/data/js/highlight/styles/a11y-light.css +94 -0
  1080. pygpt_net/data/js/highlight/styles/a11y-light.min.css +7 -0
  1081. pygpt_net/data/js/highlight/styles/agate.css +127 -0
  1082. pygpt_net/data/js/highlight/styles/agate.min.css +20 -0
  1083. pygpt_net/data/js/highlight/styles/an-old-hope.css +75 -0
  1084. pygpt_net/data/js/highlight/styles/an-old-hope.min.css +9 -0
  1085. pygpt_net/data/js/highlight/styles/androidstudio.css +60 -0
  1086. pygpt_net/data/js/highlight/styles/androidstudio.min.css +1 -0
  1087. pygpt_net/data/js/highlight/styles/arduino-light.css +78 -0
  1088. pygpt_net/data/js/highlight/styles/arduino-light.min.css +1 -0
  1089. pygpt_net/data/js/highlight/styles/arta.css +66 -0
  1090. pygpt_net/data/js/highlight/styles/arta.min.css +1 -0
  1091. pygpt_net/data/js/highlight/styles/ascetic.css +45 -0
  1092. pygpt_net/data/js/highlight/styles/ascetic.min.css +1 -0
  1093. pygpt_net/data/js/highlight/styles/atom-one-dark-reasonable.css +105 -0
  1094. pygpt_net/data/js/highlight/styles/atom-one-dark-reasonable.min.css +1 -0
  1095. pygpt_net/data/js/highlight/styles/atom-one-dark.css +90 -0
  1096. pygpt_net/data/js/highlight/styles/atom-one-dark.min.css +1 -0
  1097. pygpt_net/data/js/highlight/styles/atom-one-light.css +90 -0
  1098. pygpt_net/data/js/highlight/styles/atom-one-light.min.css +1 -0
  1099. pygpt_net/data/js/highlight/styles/brown-paper.css +63 -0
  1100. pygpt_net/data/js/highlight/styles/brown-paper.min.css +1 -0
  1101. pygpt_net/data/js/highlight/styles/brown-papersq.png +0 -0
  1102. pygpt_net/data/js/highlight/styles/codepen-embed.css +57 -0
  1103. pygpt_net/data/js/highlight/styles/codepen-embed.min.css +1 -0
  1104. pygpt_net/data/js/highlight/styles/codeschool.css +163 -0
  1105. pygpt_net/data/js/highlight/styles/codeschool.min.css +7 -0
  1106. pygpt_net/data/js/highlight/styles/color-brewer.css +66 -0
  1107. pygpt_net/data/js/highlight/styles/color-brewer.min.css +1 -0
  1108. pygpt_net/data/js/highlight/styles/darcula.css +163 -0
  1109. pygpt_net/data/js/highlight/styles/darcula.min.css +7 -0
  1110. pygpt_net/data/js/highlight/styles/dark.css +62 -0
  1111. pygpt_net/data/js/highlight/styles/dark.min.css +1 -0
  1112. pygpt_net/data/js/highlight/styles/default-dark.css +163 -0
  1113. pygpt_net/data/js/highlight/styles/default-dark.min.css +7 -0
  1114. pygpt_net/data/js/highlight/styles/default-light.css +163 -0
  1115. pygpt_net/data/js/highlight/styles/default-light.min.css +7 -0
  1116. pygpt_net/data/js/highlight/styles/default.css +117 -0
  1117. pygpt_net/data/js/highlight/styles/default.min.css +9 -0
  1118. pygpt_net/data/js/highlight/styles/devibeans.css +90 -0
  1119. pygpt_net/data/js/highlight/styles/devibeans.min.css +7 -0
  1120. pygpt_net/data/js/highlight/styles/docco.css +83 -0
  1121. pygpt_net/data/js/highlight/styles/docco.min.css +1 -0
  1122. pygpt_net/data/js/highlight/styles/far.css +67 -0
  1123. pygpt_net/data/js/highlight/styles/far.min.css +1 -0
  1124. pygpt_net/data/js/highlight/styles/felipec.css +94 -0
  1125. pygpt_net/data/js/highlight/styles/felipec.min.css +7 -0
  1126. pygpt_net/data/js/highlight/styles/foundation.css +80 -0
  1127. pygpt_net/data/js/highlight/styles/foundation.min.css +1 -0
  1128. pygpt_net/data/js/highlight/styles/github-dark-dimmed.css +117 -0
  1129. pygpt_net/data/js/highlight/styles/github-dark-dimmed.min.css +9 -0
  1130. pygpt_net/data/js/highlight/styles/github-dark.css +118 -0
  1131. pygpt_net/data/js/highlight/styles/github-dark.min.css +10 -0
  1132. pygpt_net/data/js/highlight/styles/github.css +118 -0
  1133. pygpt_net/data/js/highlight/styles/github.min.css +10 -0
  1134. pygpt_net/data/js/highlight/styles/gml.css +72 -0
  1135. pygpt_net/data/js/highlight/styles/gml.min.css +1 -0
  1136. pygpt_net/data/js/highlight/styles/googlecode.css +79 -0
  1137. pygpt_net/data/js/highlight/styles/googlecode.min.css +1 -0
  1138. pygpt_net/data/js/highlight/styles/gradient-dark.css +90 -0
  1139. pygpt_net/data/js/highlight/styles/gradient-dark.min.css +1 -0
  1140. pygpt_net/data/js/highlight/styles/gradient-light.css +90 -0
  1141. pygpt_net/data/js/highlight/styles/gradient-light.min.css +1 -0
  1142. pygpt_net/data/js/highlight/styles/grayscale.css +89 -0
  1143. pygpt_net/data/js/highlight/styles/grayscale.min.css +1 -0
  1144. pygpt_net/data/js/highlight/styles/hybrid.css +88 -0
  1145. pygpt_net/data/js/highlight/styles/hybrid.min.css +1 -0
  1146. pygpt_net/data/js/highlight/styles/idea.css +86 -0
  1147. pygpt_net/data/js/highlight/styles/idea.min.css +1 -0
  1148. pygpt_net/data/js/highlight/styles/intellij-light.css +107 -0
  1149. pygpt_net/data/js/highlight/styles/intellij-light.min.css +1 -0
  1150. pygpt_net/data/js/highlight/styles/ir-black.css +66 -0
  1151. pygpt_net/data/js/highlight/styles/ir-black.min.css +1 -0
  1152. pygpt_net/data/js/highlight/styles/isbl-editor-dark.css +94 -0
  1153. pygpt_net/data/js/highlight/styles/isbl-editor-dark.min.css +1 -0
  1154. pygpt_net/data/js/highlight/styles/isbl-editor-light.css +93 -0
  1155. pygpt_net/data/js/highlight/styles/isbl-editor-light.min.css +1 -0
  1156. pygpt_net/data/js/highlight/styles/kimbie-dark.css +69 -0
  1157. pygpt_net/data/js/highlight/styles/kimbie-dark.min.css +1 -0
  1158. pygpt_net/data/js/highlight/styles/kimbie-light.css +69 -0
  1159. pygpt_net/data/js/highlight/styles/kimbie-light.min.css +1 -0
  1160. pygpt_net/data/js/highlight/styles/lightfair.css +81 -0
  1161. pygpt_net/data/js/highlight/styles/lightfair.min.css +1 -0
  1162. pygpt_net/data/js/highlight/styles/lioshi.css +76 -0
  1163. pygpt_net/data/js/highlight/styles/lioshi.min.css +1 -0
  1164. pygpt_net/data/js/highlight/styles/magula.css +66 -0
  1165. pygpt_net/data/js/highlight/styles/magula.min.css +1 -0
  1166. pygpt_net/data/js/highlight/styles/material-darker.css +163 -0
  1167. pygpt_net/data/js/highlight/styles/material-darker.min.css +7 -0
  1168. pygpt_net/data/js/highlight/styles/material-lighter.css +163 -0
  1169. pygpt_net/data/js/highlight/styles/material-lighter.min.css +7 -0
  1170. pygpt_net/data/js/highlight/styles/material-palenight.css +163 -0
  1171. pygpt_net/data/js/highlight/styles/material-palenight.min.css +7 -0
  1172. pygpt_net/data/js/highlight/styles/material-vivid.css +163 -0
  1173. pygpt_net/data/js/highlight/styles/material-vivid.min.css +7 -0
  1174. pygpt_net/data/js/highlight/styles/material.css +163 -0
  1175. pygpt_net/data/js/highlight/styles/material.min.css +7 -0
  1176. pygpt_net/data/js/highlight/styles/mono-blue.css +56 -0
  1177. pygpt_net/data/js/highlight/styles/mono-blue.min.css +1 -0
  1178. pygpt_net/data/js/highlight/styles/monokai-sublime.css +76 -0
  1179. pygpt_net/data/js/highlight/styles/monokai-sublime.min.css +1 -0
  1180. pygpt_net/data/js/highlight/styles/monokai.css +70 -0
  1181. pygpt_net/data/js/highlight/styles/monokai.min.css +1 -0
  1182. pygpt_net/data/js/highlight/styles/night-owl.css +174 -0
  1183. pygpt_net/data/js/highlight/styles/night-owl.min.css +1 -0
  1184. pygpt_net/data/js/highlight/styles/nnfx-dark.css +104 -0
  1185. pygpt_net/data/js/highlight/styles/nnfx-dark.min.css +10 -0
  1186. pygpt_net/data/js/highlight/styles/nnfx-light.css +104 -0
  1187. pygpt_net/data/js/highlight/styles/nnfx-light.min.css +10 -0
  1188. pygpt_net/data/js/highlight/styles/nord.css +275 -0
  1189. pygpt_net/data/js/highlight/styles/nord.min.css +1 -0
  1190. pygpt_net/data/js/highlight/styles/obsidian.css +79 -0
  1191. pygpt_net/data/js/highlight/styles/obsidian.min.css +1 -0
  1192. pygpt_net/data/js/highlight/styles/panda-syntax-dark.css +92 -0
  1193. pygpt_net/data/js/highlight/styles/panda-syntax-dark.min.css +1 -0
  1194. pygpt_net/data/js/highlight/styles/panda-syntax-light.css +89 -0
  1195. pygpt_net/data/js/highlight/styles/panda-syntax-light.min.css +1 -0
  1196. pygpt_net/data/js/highlight/styles/paraiso-dark.css +67 -0
  1197. pygpt_net/data/js/highlight/styles/paraiso-dark.min.css +1 -0
  1198. pygpt_net/data/js/highlight/styles/paraiso-light.css +67 -0
  1199. pygpt_net/data/js/highlight/styles/paraiso-light.min.css +1 -0
  1200. pygpt_net/data/js/highlight/styles/pojoaque.css +76 -0
  1201. pygpt_net/data/js/highlight/styles/pojoaque.jpg +0 -0
  1202. pygpt_net/data/js/highlight/styles/pojoaque.min.css +1 -0
  1203. pygpt_net/data/js/highlight/styles/purebasic.css +103 -0
  1204. pygpt_net/data/js/highlight/styles/purebasic.min.css +1 -0
  1205. pygpt_net/data/js/highlight/styles/qtcreator-dark.css +76 -0
  1206. pygpt_net/data/js/highlight/styles/qtcreator-dark.min.css +1 -0
  1207. pygpt_net/data/js/highlight/styles/qtcreator-light.css +74 -0
  1208. pygpt_net/data/js/highlight/styles/qtcreator-light.min.css +1 -0
  1209. pygpt_net/data/js/highlight/styles/rainbow.css +77 -0
  1210. pygpt_net/data/js/highlight/styles/rainbow.min.css +1 -0
  1211. pygpt_net/data/js/highlight/styles/routeros.css +86 -0
  1212. pygpt_net/data/js/highlight/styles/routeros.min.css +1 -0
  1213. pygpt_net/data/js/highlight/styles/school-book.css +62 -0
  1214. pygpt_net/data/js/highlight/styles/school-book.min.css +1 -0
  1215. pygpt_net/data/js/highlight/styles/shades-of-purple.css +84 -0
  1216. pygpt_net/data/js/highlight/styles/shades-of-purple.min.css +1 -0
  1217. pygpt_net/data/js/highlight/styles/srcery.css +89 -0
  1218. pygpt_net/data/js/highlight/styles/srcery.min.css +1 -0
  1219. pygpt_net/data/js/highlight/styles/stackoverflow-dark.css +117 -0
  1220. pygpt_net/data/js/highlight/styles/stackoverflow-dark.min.css +13 -0
  1221. pygpt_net/data/js/highlight/styles/stackoverflow-light.css +117 -0
  1222. pygpt_net/data/js/highlight/styles/stackoverflow-light.min.css +13 -0
  1223. pygpt_net/data/js/highlight/styles/sunburst.css +89 -0
  1224. pygpt_net/data/js/highlight/styles/sunburst.min.css +1 -0
  1225. pygpt_net/data/js/highlight/styles/tokyo-night-dark.css +114 -0
  1226. pygpt_net/data/js/highlight/styles/tokyo-night-dark.min.css +8 -0
  1227. pygpt_net/data/js/highlight/styles/tokyo-night-light.css +114 -0
  1228. pygpt_net/data/js/highlight/styles/tokyo-night-light.min.css +8 -0
  1229. pygpt_net/data/js/highlight/styles/tomorrow-night-blue.css +69 -0
  1230. pygpt_net/data/js/highlight/styles/tomorrow-night-blue.min.css +1 -0
  1231. pygpt_net/data/js/highlight/styles/tomorrow-night-bright.css +68 -0
  1232. pygpt_net/data/js/highlight/styles/tomorrow-night-bright.min.css +1 -0
  1233. pygpt_net/data/js/highlight/styles/vs.css +63 -0
  1234. pygpt_net/data/js/highlight/styles/vs.min.css +1 -0
  1235. pygpt_net/data/js/highlight/styles/vs2015.css +100 -0
  1236. pygpt_net/data/js/highlight/styles/vs2015.min.css +1 -0
  1237. pygpt_net/data/js/highlight/styles/windows-10-light.css +163 -0
  1238. pygpt_net/data/js/highlight/styles/windows-10-light.min.css +7 -0
  1239. pygpt_net/data/js/highlight/styles/windows-10.css +163 -0
  1240. pygpt_net/data/js/highlight/styles/windows-10.min.css +7 -0
  1241. pygpt_net/data/js/highlight/styles/xcode.css +90 -0
  1242. pygpt_net/data/js/highlight/styles/xcode.min.css +1 -0
  1243. pygpt_net/data/js/highlight/styles/xt256.css +79 -0
  1244. pygpt_net/data/js/highlight/styles/xt256.min.css +1 -0
  1245. pygpt_net/data/js/katex/auto-render.min.js +1 -0
  1246. pygpt_net/data/js/katex/fonts/KaTeX_AMS-Regular.ttf +0 -0
  1247. pygpt_net/data/js/katex/fonts/KaTeX_AMS-Regular.woff +0 -0
  1248. pygpt_net/data/js/katex/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  1249. pygpt_net/data/js/katex/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
  1250. pygpt_net/data/js/katex/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  1251. pygpt_net/data/js/katex/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  1252. pygpt_net/data/js/katex/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
  1253. pygpt_net/data/js/katex/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  1254. pygpt_net/data/js/katex/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
  1255. pygpt_net/data/js/katex/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
  1256. pygpt_net/data/js/katex/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  1257. pygpt_net/data/js/katex/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  1258. pygpt_net/data/js/katex/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
  1259. pygpt_net/data/js/katex/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  1260. pygpt_net/data/js/katex/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  1261. pygpt_net/data/js/katex/fonts/KaTeX_Main-Bold.ttf +0 -0
  1262. pygpt_net/data/js/katex/fonts/KaTeX_Main-Bold.woff +0 -0
  1263. pygpt_net/data/js/katex/fonts/KaTeX_Main-Bold.woff2 +0 -0
  1264. pygpt_net/data/js/katex/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
  1265. pygpt_net/data/js/katex/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  1266. pygpt_net/data/js/katex/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  1267. pygpt_net/data/js/katex/fonts/KaTeX_Main-Italic.ttf +0 -0
  1268. pygpt_net/data/js/katex/fonts/KaTeX_Main-Italic.woff +0 -0
  1269. pygpt_net/data/js/katex/fonts/KaTeX_Main-Italic.woff2 +0 -0
  1270. pygpt_net/data/js/katex/fonts/KaTeX_Main-Regular.ttf +0 -0
  1271. pygpt_net/data/js/katex/fonts/KaTeX_Main-Regular.woff +0 -0
  1272. pygpt_net/data/js/katex/fonts/KaTeX_Main-Regular.woff2 +0 -0
  1273. pygpt_net/data/js/katex/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
  1274. pygpt_net/data/js/katex/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  1275. pygpt_net/data/js/katex/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  1276. pygpt_net/data/js/katex/fonts/KaTeX_Math-Italic.ttf +0 -0
  1277. pygpt_net/data/js/katex/fonts/KaTeX_Math-Italic.woff +0 -0
  1278. pygpt_net/data/js/katex/fonts/KaTeX_Math-Italic.woff2 +0 -0
  1279. pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
  1280. pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  1281. pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  1282. pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
  1283. pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  1284. pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  1285. pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
  1286. pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  1287. pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  1288. pygpt_net/data/js/katex/fonts/KaTeX_Script-Regular.ttf +0 -0
  1289. pygpt_net/data/js/katex/fonts/KaTeX_Script-Regular.woff +0 -0
  1290. pygpt_net/data/js/katex/fonts/KaTeX_Script-Regular.woff2 +0 -0
  1291. pygpt_net/data/js/katex/fonts/KaTeX_Size1-Regular.ttf +0 -0
  1292. pygpt_net/data/js/katex/fonts/KaTeX_Size1-Regular.woff +0 -0
  1293. pygpt_net/data/js/katex/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  1294. pygpt_net/data/js/katex/fonts/KaTeX_Size2-Regular.ttf +0 -0
  1295. pygpt_net/data/js/katex/fonts/KaTeX_Size2-Regular.woff +0 -0
  1296. pygpt_net/data/js/katex/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  1297. pygpt_net/data/js/katex/fonts/KaTeX_Size3-Regular.ttf +0 -0
  1298. pygpt_net/data/js/katex/fonts/KaTeX_Size3-Regular.woff +0 -0
  1299. pygpt_net/data/js/katex/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  1300. pygpt_net/data/js/katex/fonts/KaTeX_Size4-Regular.ttf +0 -0
  1301. pygpt_net/data/js/katex/fonts/KaTeX_Size4-Regular.woff +0 -0
  1302. pygpt_net/data/js/katex/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  1303. pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
  1304. pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  1305. pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  1306. pygpt_net/data/js/katex/katex.min.css +1 -0
  1307. pygpt_net/data/js/katex/katex.min.js +1 -0
  1308. pygpt_net/data/locale/locale.de.ini +580 -124
  1309. pygpt_net/data/locale/locale.en.ini +820 -282
  1310. pygpt_net/data/locale/locale.es.ini +580 -124
  1311. pygpt_net/data/locale/locale.fr.ini +581 -125
  1312. pygpt_net/data/locale/locale.it.ini +581 -125
  1313. pygpt_net/data/locale/locale.pl.ini +584 -128
  1314. pygpt_net/data/locale/locale.uk.ini +1046 -0
  1315. pygpt_net/data/locale/locale.zh.ini +642 -189
  1316. pygpt_net/data/locale/plugin.agent.de.ini +17 -0
  1317. pygpt_net/data/locale/plugin.agent.en.ini +13 -18
  1318. pygpt_net/data/locale/plugin.agent.es.ini +17 -0
  1319. pygpt_net/data/locale/plugin.agent.fr.ini +17 -0
  1320. pygpt_net/data/locale/plugin.agent.it.ini +17 -0
  1321. pygpt_net/data/locale/plugin.agent.pl.ini +15 -18
  1322. pygpt_net/data/locale/plugin.agent.uk.ini +17 -0
  1323. pygpt_net/data/locale/plugin.agent.zh.ini +17 -0
  1324. pygpt_net/data/locale/plugin.audio_input.de.ini +63 -0
  1325. pygpt_net/data/locale/plugin.audio_input.en.ini +41 -67
  1326. pygpt_net/data/locale/plugin.audio_input.es.ini +63 -0
  1327. pygpt_net/data/locale/plugin.audio_input.fr.ini +63 -0
  1328. pygpt_net/data/locale/plugin.audio_input.it.ini +63 -0
  1329. pygpt_net/data/locale/plugin.audio_input.pl.ini +51 -64
  1330. pygpt_net/data/locale/plugin.audio_input.uk.ini +63 -0
  1331. pygpt_net/data/locale/plugin.audio_input.zh.ini +63 -0
  1332. pygpt_net/data/locale/plugin.audio_output.de.ini +30 -0
  1333. pygpt_net/data/locale/plugin.audio_output.en.ini +23 -36
  1334. pygpt_net/data/locale/plugin.audio_output.es.ini +30 -0
  1335. pygpt_net/data/locale/plugin.audio_output.fr.ini +30 -0
  1336. pygpt_net/data/locale/plugin.audio_output.it.ini +30 -0
  1337. pygpt_net/data/locale/plugin.audio_output.pl.ini +26 -27
  1338. pygpt_net/data/locale/plugin.audio_output.uk.ini +30 -0
  1339. pygpt_net/data/locale/plugin.audio_output.zh.ini +30 -0
  1340. pygpt_net/data/locale/plugin.cmd_api.de.ini +12 -0
  1341. pygpt_net/data/locale/plugin.cmd_api.en.ini +9 -13
  1342. pygpt_net/data/locale/plugin.cmd_api.es.ini +12 -0
  1343. pygpt_net/data/locale/plugin.cmd_api.fr.ini +12 -0
  1344. pygpt_net/data/locale/plugin.cmd_api.it.ini +12 -0
  1345. pygpt_net/data/locale/plugin.cmd_api.pl.ini +10 -17
  1346. pygpt_net/data/locale/plugin.cmd_api.uk.ini +12 -0
  1347. pygpt_net/data/locale/plugin.cmd_api.zh.ini +12 -0
  1348. pygpt_net/data/locale/plugin.cmd_code_interpreter.de.ini +33 -0
  1349. pygpt_net/data/locale/plugin.cmd_code_interpreter.en.ini +60 -34
  1350. pygpt_net/data/locale/plugin.cmd_code_interpreter.es.ini +33 -0
  1351. pygpt_net/data/locale/plugin.cmd_code_interpreter.fr.ini +33 -0
  1352. pygpt_net/data/locale/plugin.cmd_code_interpreter.it.ini +33 -0
  1353. pygpt_net/data/locale/plugin.cmd_code_interpreter.pl.ini +32 -26
  1354. pygpt_net/data/locale/plugin.cmd_code_interpreter.uk.ini +33 -0
  1355. pygpt_net/data/locale/plugin.cmd_code_interpreter.zh.ini +33 -0
  1356. pygpt_net/data/locale/plugin.cmd_custom.de.ini +6 -0
  1357. pygpt_net/data/locale/plugin.cmd_custom.en.ini +4 -6
  1358. pygpt_net/data/locale/plugin.cmd_custom.es.ini +6 -0
  1359. pygpt_net/data/locale/plugin.cmd_custom.fr.ini +6 -0
  1360. pygpt_net/data/locale/plugin.cmd_custom.it.ini +6 -0
  1361. pygpt_net/data/locale/plugin.cmd_custom.pl.ini +4 -5
  1362. pygpt_net/data/locale/plugin.cmd_custom.uk.ini +6 -0
  1363. pygpt_net/data/locale/plugin.cmd_custom.zh.ini +6 -0
  1364. pygpt_net/data/locale/plugin.cmd_files.de.ini +56 -0
  1365. pygpt_net/data/locale/plugin.cmd_files.en.ini +42 -68
  1366. pygpt_net/data/locale/plugin.cmd_files.es.ini +56 -0
  1367. pygpt_net/data/locale/plugin.cmd_files.fr.ini +56 -0
  1368. pygpt_net/data/locale/plugin.cmd_files.it.ini +56 -0
  1369. pygpt_net/data/locale/plugin.cmd_files.pl.ini +55 -75
  1370. pygpt_net/data/locale/plugin.cmd_files.uk.ini +56 -0
  1371. pygpt_net/data/locale/plugin.cmd_files.zh.ini +56 -0
  1372. pygpt_net/data/locale/plugin.cmd_history.de.ini +31 -0
  1373. pygpt_net/data/locale/plugin.cmd_history.en.ini +25 -39
  1374. pygpt_net/data/locale/plugin.cmd_history.es.ini +31 -0
  1375. pygpt_net/data/locale/plugin.cmd_history.fr.ini +31 -0
  1376. pygpt_net/data/locale/plugin.cmd_history.it.ini +31 -0
  1377. pygpt_net/data/locale/plugin.cmd_history.pl.ini +28 -44
  1378. pygpt_net/data/locale/plugin.cmd_history.uk.ini +31 -0
  1379. pygpt_net/data/locale/plugin.cmd_history.zh.ini +31 -0
  1380. pygpt_net/data/locale/plugin.cmd_mouse_control.de.ini +31 -0
  1381. pygpt_net/data/locale/plugin.cmd_mouse_control.en.ini +33 -0
  1382. pygpt_net/data/locale/plugin.cmd_mouse_control.es.ini +31 -0
  1383. pygpt_net/data/locale/plugin.cmd_mouse_control.fr.ini +31 -0
  1384. pygpt_net/data/locale/plugin.cmd_mouse_control.it.ini +31 -0
  1385. pygpt_net/data/locale/plugin.cmd_mouse_control.pl.ini +31 -0
  1386. pygpt_net/data/locale/plugin.cmd_mouse_control.uk.ini +31 -0
  1387. pygpt_net/data/locale/plugin.cmd_mouse_control.zh.ini +31 -0
  1388. pygpt_net/data/locale/plugin.cmd_serial.de.ini +17 -0
  1389. pygpt_net/data/locale/plugin.cmd_serial.en.ini +13 -20
  1390. pygpt_net/data/locale/plugin.cmd_serial.es.ini +17 -0
  1391. pygpt_net/data/locale/plugin.cmd_serial.fr.ini +17 -0
  1392. pygpt_net/data/locale/plugin.cmd_serial.it.ini +17 -0
  1393. pygpt_net/data/locale/plugin.cmd_serial.pl.ini +14 -31
  1394. pygpt_net/data/locale/plugin.cmd_serial.uk.ini +17 -0
  1395. pygpt_net/data/locale/plugin.cmd_serial.zh.ini +17 -0
  1396. pygpt_net/data/locale/plugin.cmd_system.de.ini +17 -0
  1397. pygpt_net/data/locale/plugin.cmd_system.en.ini +23 -0
  1398. pygpt_net/data/locale/plugin.cmd_system.es.ini +17 -0
  1399. pygpt_net/data/locale/plugin.cmd_system.fr.ini +17 -0
  1400. pygpt_net/data/locale/plugin.cmd_system.it.ini +17 -0
  1401. pygpt_net/data/locale/plugin.cmd_system.pl.ini +17 -0
  1402. pygpt_net/data/locale/plugin.cmd_system.uk.ini +17 -0
  1403. pygpt_net/data/locale/plugin.cmd_system.zh.ini +17 -0
  1404. pygpt_net/data/locale/plugin.cmd_web.de.ini +62 -0
  1405. pygpt_net/data/locale/plugin.cmd_web.en.ini +58 -71
  1406. pygpt_net/data/locale/plugin.cmd_web.es.ini +62 -0
  1407. pygpt_net/data/locale/plugin.cmd_web.fr.ini +62 -0
  1408. pygpt_net/data/locale/plugin.cmd_web.it.ini +62 -0
  1409. pygpt_net/data/locale/plugin.cmd_web.pl.ini +59 -76
  1410. pygpt_net/data/locale/plugin.cmd_web.uk.ini +62 -0
  1411. pygpt_net/data/locale/plugin.cmd_web.zh.ini +62 -0
  1412. pygpt_net/data/locale/plugin.crontab.de.ini +9 -0
  1413. pygpt_net/data/locale/plugin.crontab.en.ini +5 -8
  1414. pygpt_net/data/locale/plugin.crontab.es.ini +9 -0
  1415. pygpt_net/data/locale/plugin.crontab.fr.ini +9 -0
  1416. pygpt_net/data/locale/plugin.crontab.it.ini +9 -0
  1417. pygpt_net/data/locale/plugin.crontab.pl.ini +7 -10
  1418. pygpt_net/data/locale/plugin.crontab.uk.ini +9 -0
  1419. pygpt_net/data/locale/plugin.crontab.zh.ini +9 -0
  1420. pygpt_net/data/locale/plugin.experts.de.ini +3 -0
  1421. pygpt_net/data/locale/plugin.experts.en.ini +3 -0
  1422. pygpt_net/data/locale/plugin.experts.es.ini +3 -0
  1423. pygpt_net/data/locale/plugin.experts.fr.ini +3 -0
  1424. pygpt_net/data/locale/plugin.experts.it.ini +3 -0
  1425. pygpt_net/data/locale/plugin.experts.pl.ini +3 -0
  1426. pygpt_net/data/locale/plugin.experts.uk.ini +3 -0
  1427. pygpt_net/data/locale/plugin.experts.zh.ini +3 -0
  1428. pygpt_net/data/locale/plugin.extra_prompt.de.ini +5 -0
  1429. pygpt_net/data/locale/plugin.extra_prompt.en.ini +3 -4
  1430. pygpt_net/data/locale/plugin.extra_prompt.es.ini +5 -0
  1431. pygpt_net/data/locale/plugin.extra_prompt.fr.ini +5 -0
  1432. pygpt_net/data/locale/plugin.extra_prompt.it.ini +5 -0
  1433. pygpt_net/data/locale/plugin.extra_prompt.pl.ini +4 -6
  1434. pygpt_net/data/locale/plugin.extra_prompt.uk.ini +5 -0
  1435. pygpt_net/data/locale/plugin.extra_prompt.zh.ini +5 -0
  1436. pygpt_net/data/locale/plugin.idx_llama_index.de.ini +23 -0
  1437. pygpt_net/data/locale/plugin.idx_llama_index.en.ini +20 -30
  1438. pygpt_net/data/locale/plugin.idx_llama_index.es.ini +23 -0
  1439. pygpt_net/data/locale/plugin.idx_llama_index.fr.ini +23 -0
  1440. pygpt_net/data/locale/plugin.idx_llama_index.it.ini +23 -0
  1441. pygpt_net/data/locale/plugin.idx_llama_index.pl.ini +21 -16
  1442. pygpt_net/data/locale/plugin.idx_llama_index.uk.ini +23 -0
  1443. pygpt_net/data/locale/plugin.idx_llama_index.zh.ini +23 -0
  1444. pygpt_net/data/locale/plugin.mailer.en.ini +21 -0
  1445. pygpt_net/data/locale/plugin.openai_dalle.de.ini +5 -0
  1446. pygpt_net/data/locale/plugin.openai_dalle.en.ini +2 -3
  1447. pygpt_net/data/locale/plugin.openai_dalle.es.ini +5 -0
  1448. pygpt_net/data/locale/plugin.openai_dalle.fr.ini +5 -0
  1449. pygpt_net/data/locale/plugin.openai_dalle.it.ini +5 -0
  1450. pygpt_net/data/locale/plugin.openai_dalle.pl.ini +3 -4
  1451. pygpt_net/data/locale/plugin.openai_dalle.uk.ini +5 -0
  1452. pygpt_net/data/locale/plugin.openai_dalle.zh.ini +5 -0
  1453. pygpt_net/data/locale/plugin.openai_vision.de.ini +15 -0
  1454. pygpt_net/data/locale/plugin.openai_vision.en.ini +11 -16
  1455. pygpt_net/data/locale/plugin.openai_vision.es.ini +15 -0
  1456. pygpt_net/data/locale/plugin.openai_vision.fr.ini +15 -0
  1457. pygpt_net/data/locale/plugin.openai_vision.it.ini +15 -0
  1458. pygpt_net/data/locale/plugin.openai_vision.pl.ini +11 -16
  1459. pygpt_net/data/locale/plugin.openai_vision.uk.ini +15 -0
  1460. pygpt_net/data/locale/plugin.openai_vision.zh.ini +15 -0
  1461. pygpt_net/data/locale/plugin.real_time.de.ini +12 -0
  1462. pygpt_net/data/locale/plugin.real_time.en.ini +8 -11
  1463. pygpt_net/data/locale/plugin.real_time.es.ini +12 -0
  1464. pygpt_net/data/locale/plugin.real_time.fr.ini +12 -0
  1465. pygpt_net/data/locale/plugin.real_time.it.ini +12 -0
  1466. pygpt_net/data/locale/plugin.real_time.pl.ini +8 -11
  1467. pygpt_net/data/locale/plugin.real_time.uk.ini +12 -0
  1468. pygpt_net/data/locale/plugin.real_time.zh.ini +12 -0
  1469. pygpt_net/data/locale/plugin.voice_control.de.ini +5 -0
  1470. pygpt_net/data/locale/plugin.voice_control.en.ini +5 -0
  1471. pygpt_net/data/locale/plugin.voice_control.es.ini +5 -0
  1472. pygpt_net/data/locale/plugin.voice_control.fr.ini +5 -0
  1473. pygpt_net/data/locale/plugin.voice_control.it.ini +5 -0
  1474. pygpt_net/data/locale/plugin.voice_control.pl.ini +5 -0
  1475. pygpt_net/data/locale/plugin.voice_control.uk.ini +5 -0
  1476. pygpt_net/data/locale/plugin.voice_control.zh.ini +5 -0
  1477. pygpt_net/data/prompts.csv +169 -0
  1478. pygpt_net/data/win32/README.rtf +0 -0
  1479. pygpt_net/data/win32/USER-LICENSE.rtf +0 -0
  1480. pygpt_net/data/win32/banner.bmp +0 -0
  1481. pygpt_net/data/win32/banner_welcome.bmp +0 -0
  1482. pygpt_net/fonts.qrc +64 -0
  1483. pygpt_net/fonts_rc.py +67878 -0
  1484. pygpt_net/icons.qrc +138 -403
  1485. pygpt_net/icons_rc.py +214 -133
  1486. pygpt_net/item/assistant.py +192 -28
  1487. pygpt_net/item/attachment.py +35 -3
  1488. pygpt_net/item/ctx.py +294 -17
  1489. pygpt_net/item/model.py +58 -3
  1490. pygpt_net/item/preset.py +41 -1
  1491. pygpt_net/item/prompt.py +63 -0
  1492. pygpt_net/js.qrc +8 -0
  1493. pygpt_net/js_rc.py +50785 -0
  1494. pygpt_net/launcher.py +81 -3
  1495. pygpt_net/migrations/Version20240408180000.py +34 -0
  1496. pygpt_net/migrations/Version20240426050000.py +55 -0
  1497. pygpt_net/migrations/Version20240501030000.py +31 -0
  1498. pygpt_net/migrations/Version20241122130000.py +34 -0
  1499. pygpt_net/migrations/Version20241126170000.py +28 -0
  1500. pygpt_net/migrations/Version20241215110000.py +25 -0
  1501. pygpt_net/migrations/__init__.py +13 -2
  1502. pygpt_net/plugin/agent/__init__.py +25 -154
  1503. pygpt_net/plugin/agent/config.py +146 -0
  1504. pygpt_net/plugin/audio_input/__init__.py +54 -263
  1505. pygpt_net/plugin/audio_input/config.py +247 -0
  1506. pygpt_net/plugin/audio_input/simple.py +68 -9
  1507. pygpt_net/plugin/audio_input/worker.py +43 -2
  1508. pygpt_net/plugin/audio_output/__init__.py +61 -34
  1509. pygpt_net/plugin/audio_output/config.py +34 -0
  1510. pygpt_net/plugin/audio_output/worker.py +56 -13
  1511. pygpt_net/plugin/base/__init__.py +0 -0
  1512. pygpt_net/plugin/base/config.py +26 -0
  1513. pygpt_net/plugin/{base.py → base/plugin.py} +212 -133
  1514. pygpt_net/plugin/base/signals.py +23 -0
  1515. pygpt_net/plugin/base/worker.py +268 -0
  1516. pygpt_net/plugin/cmd_api/__init__.py +16 -112
  1517. pygpt_net/plugin/cmd_api/config.py +91 -0
  1518. pygpt_net/plugin/cmd_api/worker.py +19 -25
  1519. pygpt_net/plugin/cmd_code_interpreter/__init__.py +166 -194
  1520. pygpt_net/plugin/cmd_code_interpreter/builder.py +82 -0
  1521. pygpt_net/plugin/cmd_code_interpreter/config.py +390 -0
  1522. pygpt_net/plugin/cmd_code_interpreter/docker.py +63 -0
  1523. pygpt_net/plugin/cmd_code_interpreter/ipython/__init__.py +13 -0
  1524. pygpt_net/plugin/cmd_code_interpreter/ipython/docker_kernel.py +546 -0
  1525. pygpt_net/plugin/cmd_code_interpreter/ipython/local_kernel.py +220 -0
  1526. pygpt_net/plugin/cmd_code_interpreter/output.py +42 -0
  1527. pygpt_net/plugin/cmd_code_interpreter/runner.py +207 -48
  1528. pygpt_net/plugin/cmd_code_interpreter/worker.py +188 -120
  1529. pygpt_net/plugin/cmd_custom/__init__.py +15 -75
  1530. pygpt_net/plugin/cmd_custom/config.py +54 -0
  1531. pygpt_net/plugin/cmd_custom/worker.py +15 -30
  1532. pygpt_net/plugin/cmd_files/__init__.py +31 -436
  1533. pygpt_net/plugin/cmd_files/config.py +426 -0
  1534. pygpt_net/plugin/cmd_files/output.py +42 -0
  1535. pygpt_net/plugin/cmd_files/worker.py +203 -356
  1536. pygpt_net/plugin/cmd_history/__init__.py +33 -294
  1537. pygpt_net/plugin/cmd_history/config.py +270 -0
  1538. pygpt_net/plugin/cmd_history/worker.py +56 -88
  1539. pygpt_net/plugin/cmd_mouse_control/__init__.py +166 -0
  1540. pygpt_net/plugin/cmd_mouse_control/config.py +277 -0
  1541. pygpt_net/plugin/cmd_mouse_control/worker.py +327 -0
  1542. pygpt_net/plugin/cmd_serial/__init__.py +15 -127
  1543. pygpt_net/plugin/cmd_serial/config.py +105 -0
  1544. pygpt_net/plugin/cmd_serial/worker.py +28 -59
  1545. pygpt_net/plugin/cmd_system/__init__.py +169 -0
  1546. pygpt_net/plugin/cmd_system/config.py +137 -0
  1547. pygpt_net/plugin/cmd_system/docker.py +63 -0
  1548. pygpt_net/plugin/cmd_system/output.py +42 -0
  1549. pygpt_net/plugin/cmd_system/runner.py +258 -0
  1550. pygpt_net/plugin/cmd_system/worker.py +120 -0
  1551. pygpt_net/plugin/cmd_web/__init__.py +127 -321
  1552. pygpt_net/plugin/cmd_web/config.py +367 -0
  1553. pygpt_net/plugin/cmd_web/websearch.py +96 -35
  1554. pygpt_net/plugin/cmd_web/worker.py +226 -118
  1555. pygpt_net/plugin/crontab/__init__.py +20 -83
  1556. pygpt_net/plugin/crontab/config.py +73 -0
  1557. pygpt_net/plugin/experts/__init__.py +81 -0
  1558. pygpt_net/plugin/experts/config.py +26 -0
  1559. pygpt_net/plugin/extra_prompt/__init__.py +10 -42
  1560. pygpt_net/plugin/extra_prompt/config.py +44 -0
  1561. pygpt_net/plugin/idx_llama_index/__init__.py +88 -162
  1562. pygpt_net/plugin/idx_llama_index/config.py +134 -0
  1563. pygpt_net/plugin/idx_llama_index/worker.py +31 -31
  1564. pygpt_net/plugin/mailer/__init__.py +123 -0
  1565. pygpt_net/plugin/mailer/config.py +149 -0
  1566. pygpt_net/plugin/mailer/runner.py +285 -0
  1567. pygpt_net/plugin/mailer/worker.py +123 -0
  1568. pygpt_net/plugin/openai_dalle/__init__.py +63 -67
  1569. pygpt_net/plugin/openai_dalle/config.py +72 -0
  1570. pygpt_net/plugin/openai_vision/__init__.py +105 -143
  1571. pygpt_net/plugin/openai_vision/config.py +118 -0
  1572. pygpt_net/plugin/openai_vision/worker.py +159 -0
  1573. pygpt_net/plugin/real_time/__init__.py +101 -51
  1574. pygpt_net/plugin/real_time/config.py +61 -0
  1575. pygpt_net/plugin/voice_control/__init__.py +158 -0
  1576. pygpt_net/plugin/voice_control/config.py +35 -0
  1577. pygpt_net/provider/agents/__init__.py +0 -0
  1578. pygpt_net/provider/agents/base.py +36 -0
  1579. pygpt_net/provider/agents/openai.py +43 -0
  1580. pygpt_net/provider/agents/openai_assistant.py +77 -0
  1581. pygpt_net/provider/agents/planner.py +52 -0
  1582. pygpt_net/provider/agents/react.py +68 -0
  1583. pygpt_net/provider/audio_input/base.py +2 -2
  1584. pygpt_net/provider/audio_output/base.py +2 -2
  1585. pygpt_net/provider/audio_output/openai_tts.py +5 -11
  1586. pygpt_net/provider/core/assistant/base.py +5 -3
  1587. pygpt_net/provider/core/assistant/json_file.py +21 -5
  1588. pygpt_net/provider/core/assistant_file/__init__.py +10 -0
  1589. pygpt_net/provider/core/assistant_file/base.py +55 -0
  1590. pygpt_net/provider/core/assistant_file/db_sqlite/__init__.py +201 -0
  1591. pygpt_net/provider/core/assistant_file/db_sqlite/patch.py +27 -0
  1592. pygpt_net/provider/core/assistant_file/db_sqlite/storage.py +352 -0
  1593. pygpt_net/provider/core/assistant_file/db_sqlite/utils.py +62 -0
  1594. pygpt_net/provider/core/assistant_store/__init__.py +10 -0
  1595. pygpt_net/provider/core/assistant_store/base.py +56 -0
  1596. pygpt_net/provider/core/assistant_store/db_sqlite/__init__.py +135 -0
  1597. pygpt_net/provider/core/assistant_store/db_sqlite/patch.py +27 -0
  1598. pygpt_net/provider/core/assistant_store/db_sqlite/storage.py +240 -0
  1599. pygpt_net/provider/core/assistant_store/db_sqlite/utils.py +66 -0
  1600. pygpt_net/provider/core/assistant_store/json_file.py +150 -0
  1601. pygpt_net/provider/core/attachment/base.py +5 -3
  1602. pygpt_net/provider/core/attachment/json_file.py +14 -4
  1603. pygpt_net/provider/core/calendar/base.py +5 -3
  1604. pygpt_net/provider/core/calendar/db_sqlite/__init__.py +6 -5
  1605. pygpt_net/provider/core/calendar/db_sqlite/storage.py +5 -4
  1606. pygpt_net/provider/core/config/base.py +8 -6
  1607. pygpt_net/provider/core/config/json_file.py +9 -7
  1608. pygpt_net/provider/core/config/patch.py +535 -1
  1609. pygpt_net/provider/core/ctx/base.py +47 -19
  1610. pygpt_net/provider/core/ctx/db_sqlite/__init__.py +152 -20
  1611. pygpt_net/provider/core/ctx/db_sqlite/storage.py +530 -46
  1612. pygpt_net/provider/core/ctx/db_sqlite/utils.py +87 -17
  1613. pygpt_net/provider/core/index/base.py +129 -23
  1614. pygpt_net/provider/core/index/db_sqlite/__init__.py +130 -23
  1615. pygpt_net/provider/core/index/db_sqlite/storage.py +130 -23
  1616. pygpt_net/provider/core/index/db_sqlite/utils.py +4 -2
  1617. pygpt_net/provider/core/mode/base.py +5 -3
  1618. pygpt_net/provider/core/mode/json_file.py +7 -6
  1619. pygpt_net/provider/core/model/base.py +6 -4
  1620. pygpt_net/provider/core/model/json_file.py +13 -7
  1621. pygpt_net/provider/core/model/patch.py +274 -1
  1622. pygpt_net/provider/core/notepad/base.py +5 -3
  1623. pygpt_net/provider/core/notepad/db_sqlite/__init__.py +5 -4
  1624. pygpt_net/provider/core/notepad/db_sqlite/storage.py +4 -3
  1625. pygpt_net/provider/core/plugin_preset/base.py +4 -2
  1626. pygpt_net/provider/core/plugin_preset/json_file.py +5 -3
  1627. pygpt_net/provider/core/preset/base.py +6 -4
  1628. pygpt_net/provider/core/preset/json_file.py +75 -33
  1629. pygpt_net/provider/core/preset/patch.py +63 -1
  1630. pygpt_net/provider/core/prompt/__init__.py +0 -0
  1631. pygpt_net/provider/core/prompt/base.py +51 -0
  1632. pygpt_net/provider/core/prompt/json_file.py +170 -0
  1633. pygpt_net/provider/gpt/__init__.py +107 -60
  1634. pygpt_net/provider/gpt/assistants.py +252 -239
  1635. pygpt_net/provider/gpt/audio.py +64 -0
  1636. pygpt_net/provider/gpt/chat.py +159 -54
  1637. pygpt_net/provider/gpt/completion.py +67 -36
  1638. pygpt_net/provider/gpt/image.py +77 -47
  1639. pygpt_net/provider/gpt/store.py +608 -0
  1640. pygpt_net/provider/gpt/summarizer.py +15 -3
  1641. pygpt_net/provider/gpt/utils.py +27 -0
  1642. pygpt_net/provider/gpt/vision.py +110 -46
  1643. pygpt_net/provider/gpt/worker/assistants.py +454 -36
  1644. pygpt_net/provider/gpt/worker/importer.py +320 -38
  1645. pygpt_net/provider/llms/anthropic.py +23 -20
  1646. pygpt_net/provider/llms/azure_openai.py +39 -6
  1647. pygpt_net/provider/llms/base.py +64 -10
  1648. pygpt_net/provider/llms/google.py +73 -0
  1649. pygpt_net/provider/llms/hugging_face.py +18 -6
  1650. pygpt_net/provider/llms/hugging_face_api.py +85 -0
  1651. pygpt_net/provider/llms/local.py +43 -0
  1652. pygpt_net/provider/llms/ollama.py +83 -5
  1653. pygpt_net/provider/llms/openai.py +50 -6
  1654. pygpt_net/provider/loaders/base.py +25 -1
  1655. pygpt_net/provider/loaders/file_csv.py +5 -1
  1656. pygpt_net/provider/loaders/file_html.py +5 -1
  1657. pygpt_net/provider/loaders/file_image_vision.py +12 -3
  1658. pygpt_net/provider/loaders/file_ipynb.py +5 -1
  1659. pygpt_net/provider/loaders/file_markdown.py +5 -1
  1660. pygpt_net/provider/loaders/file_pdf.py +4 -1
  1661. pygpt_net/provider/loaders/file_video_audio.py +5 -1
  1662. pygpt_net/provider/loaders/file_xml.py +4 -1
  1663. pygpt_net/provider/loaders/hub/github/issues.py +5 -5
  1664. pygpt_net/provider/loaders/hub/google/gmail.py +2 -2
  1665. pygpt_net/provider/loaders/hub/image_vision/base.py +22 -0
  1666. pygpt_net/provider/loaders/hub/json/base.py +2 -2
  1667. pygpt_net/provider/loaders/hub/pandas_excel/base.py +2 -2
  1668. pygpt_net/provider/loaders/hub/simple_csv/base.py +2 -2
  1669. pygpt_net/provider/loaders/hub/yt/base.py +6 -1
  1670. pygpt_net/provider/loaders/web_bitbucket.py +6 -1
  1671. pygpt_net/provider/loaders/web_chatgpt_retrieval.py +7 -1
  1672. pygpt_net/provider/loaders/web_database.py +22 -3
  1673. pygpt_net/provider/loaders/web_github_issues.py +22 -1
  1674. pygpt_net/provider/loaders/web_github_repo.py +23 -1
  1675. pygpt_net/provider/loaders/web_google_calendar.py +13 -1
  1676. pygpt_net/provider/loaders/web_google_docs.py +10 -1
  1677. pygpt_net/provider/loaders/web_google_drive.py +18 -2
  1678. pygpt_net/provider/loaders/web_google_gmail.py +12 -2
  1679. pygpt_net/provider/loaders/web_google_keep.py +8 -1
  1680. pygpt_net/provider/loaders/web_google_sheets.py +10 -1
  1681. pygpt_net/provider/loaders/web_microsoft_onedrive.py +20 -1
  1682. pygpt_net/provider/loaders/web_page.py +4 -2
  1683. pygpt_net/provider/loaders/web_rss.py +3 -1
  1684. pygpt_net/provider/loaders/web_sitemap.py +13 -3
  1685. pygpt_net/provider/loaders/web_twitter.py +8 -2
  1686. pygpt_net/provider/loaders/web_yt.py +35 -2
  1687. pygpt_net/provider/vector_stores/__init__.py +113 -14
  1688. pygpt_net/provider/vector_stores/base.py +45 -10
  1689. pygpt_net/provider/vector_stores/chroma.py +22 -6
  1690. pygpt_net/provider/vector_stores/ctx_attachment.py +125 -0
  1691. pygpt_net/provider/vector_stores/elasticsearch.py +21 -6
  1692. pygpt_net/provider/vector_stores/pinecode.py +21 -6
  1693. pygpt_net/provider/vector_stores/redis.py +21 -6
  1694. pygpt_net/provider/vector_stores/simple.py +17 -6
  1695. pygpt_net/provider/vector_stores/temp.py +21 -7
  1696. pygpt_net/provider/web/base.py +11 -4
  1697. pygpt_net/provider/web/google_custom_search.py +9 -3
  1698. pygpt_net/provider/web/microsoft_bing.py +9 -3
  1699. pygpt_net/tools/__init__.py +150 -0
  1700. pygpt_net/{controller/audio/transcript.py → tools/audio_transcriber/__init__.py} +105 -41
  1701. pygpt_net/tools/audio_transcriber/ui/__init__.py +0 -0
  1702. pygpt_net/tools/audio_transcriber/ui/dialogs.py +150 -0
  1703. pygpt_net/tools/base.py +113 -0
  1704. pygpt_net/tools/code_interpreter/__init__.py +563 -0
  1705. pygpt_net/tools/code_interpreter/ui/__init__.py +0 -0
  1706. pygpt_net/tools/code_interpreter/ui/dialogs.py +127 -0
  1707. pygpt_net/tools/code_interpreter/ui/widgets.py +386 -0
  1708. pygpt_net/tools/html_canvas/__init__.py +320 -0
  1709. pygpt_net/tools/html_canvas/ui/__init__.py +0 -0
  1710. pygpt_net/tools/html_canvas/ui/dialogs.py +142 -0
  1711. pygpt_net/tools/html_canvas/ui/widgets.py +135 -0
  1712. pygpt_net/tools/image_viewer/__init__.py +303 -0
  1713. pygpt_net/tools/image_viewer/ui/__init__.py +0 -0
  1714. pygpt_net/tools/image_viewer/ui/dialogs.py +152 -0
  1715. pygpt_net/tools/indexer/__init__.py +520 -0
  1716. pygpt_net/tools/indexer/ui/__init__.py +0 -0
  1717. pygpt_net/tools/indexer/ui/browse.py +46 -0
  1718. pygpt_net/tools/indexer/ui/ctx.py +96 -0
  1719. pygpt_net/tools/indexer/ui/dialogs.py +199 -0
  1720. pygpt_net/tools/indexer/ui/files.py +101 -0
  1721. pygpt_net/tools/indexer/ui/web.py +199 -0
  1722. pygpt_net/tools/indexer/ui/widgets.py +121 -0
  1723. pygpt_net/tools/media_player/__init__.py +202 -0
  1724. pygpt_net/tools/media_player/ui/__init__.py +0 -0
  1725. pygpt_net/tools/media_player/ui/dialogs.py +113 -0
  1726. pygpt_net/{ui/widget/video/player.py → tools/media_player/ui/widgets.py} +61 -33
  1727. pygpt_net/tools/text_editor/__init__.py +293 -0
  1728. pygpt_net/tools/text_editor/ui/__init__.py +0 -0
  1729. pygpt_net/tools/text_editor/ui/dialogs.py +80 -0
  1730. pygpt_net/tools/text_editor/ui/widgets.py +77 -0
  1731. pygpt_net/ui/__init__.py +90 -22
  1732. pygpt_net/ui/base/config_dialog.py +2 -1
  1733. pygpt_net/ui/base/context_menu.py +81 -0
  1734. pygpt_net/ui/dialog/about.py +44 -29
  1735. pygpt_net/ui/dialog/applog.py +17 -4
  1736. pygpt_net/ui/dialog/assistant.py +45 -29
  1737. pygpt_net/ui/dialog/assistant_store.py +525 -0
  1738. pygpt_net/ui/dialog/db.py +111 -49
  1739. pygpt_net/ui/dialog/editor.py +16 -68
  1740. pygpt_net/ui/dialog/find.py +29 -0
  1741. pygpt_net/ui/dialog/image.py +4 -44
  1742. pygpt_net/ui/dialog/logger.py +2 -1
  1743. pygpt_net/ui/dialog/plugins.py +8 -6
  1744. pygpt_net/ui/dialog/preset.py +118 -47
  1745. pygpt_net/ui/dialog/profile.py +118 -0
  1746. pygpt_net/ui/dialog/settings.py +23 -7
  1747. pygpt_net/ui/dialog/start.py +5 -2
  1748. pygpt_net/ui/dialog/url.py +29 -0
  1749. pygpt_net/ui/dialog/workdir.py +108 -0
  1750. pygpt_net/ui/dialogs.py +35 -19
  1751. pygpt_net/ui/layout/chat/__init__.py +3 -3
  1752. pygpt_net/ui/layout/chat/attachments.py +56 -6
  1753. pygpt_net/ui/layout/chat/attachments_ctx.py +162 -0
  1754. pygpt_net/ui/layout/chat/attachments_uploaded.py +41 -16
  1755. pygpt_net/ui/layout/chat/calendar.py +15 -21
  1756. pygpt_net/ui/layout/chat/explorer.py +39 -0
  1757. pygpt_net/ui/layout/chat/input.py +48 -11
  1758. pygpt_net/ui/layout/chat/output.py +112 -99
  1759. pygpt_net/ui/layout/chat/painter.py +35 -29
  1760. pygpt_net/ui/layout/ctx/__init__.py +4 -1
  1761. pygpt_net/ui/layout/ctx/ctx_list.py +233 -36
  1762. pygpt_net/ui/layout/status.py +9 -1
  1763. pygpt_net/ui/layout/toolbox/__init__.py +17 -23
  1764. pygpt_net/ui/layout/toolbox/agent.py +23 -13
  1765. pygpt_net/ui/layout/toolbox/agent_llama.py +74 -0
  1766. pygpt_net/ui/layout/toolbox/assistants.py +12 -8
  1767. pygpt_net/ui/layout/toolbox/footer.py +33 -7
  1768. pygpt_net/ui/layout/toolbox/image.py +2 -1
  1769. pygpt_net/ui/layout/toolbox/indexes.py +99 -12
  1770. pygpt_net/ui/layout/toolbox/mode.py +11 -49
  1771. pygpt_net/ui/layout/toolbox/model.py +12 -48
  1772. pygpt_net/ui/layout/toolbox/presets.py +44 -12
  1773. pygpt_net/ui/layout/toolbox/prompt.py +30 -15
  1774. pygpt_net/ui/main.py +98 -20
  1775. pygpt_net/ui/menu/__init__.py +11 -1
  1776. pygpt_net/ui/menu/about.py +14 -3
  1777. pygpt_net/ui/menu/audio.py +40 -11
  1778. pygpt_net/ui/menu/config.py +61 -11
  1779. pygpt_net/ui/menu/debug.py +34 -9
  1780. pygpt_net/ui/menu/donate.py +46 -0
  1781. pygpt_net/ui/menu/file.py +25 -3
  1782. pygpt_net/ui/menu/theme.py +19 -1
  1783. pygpt_net/ui/menu/tools.py +83 -0
  1784. pygpt_net/ui/menu/video.py +1 -13
  1785. pygpt_net/ui/tray.py +5 -5
  1786. pygpt_net/ui/widget/anims/loader.py +229 -0
  1787. pygpt_net/ui/widget/anims/toggles.py +167 -0
  1788. pygpt_net/ui/widget/audio/input_button.py +53 -3
  1789. pygpt_net/ui/widget/calendar/select.py +30 -4
  1790. pygpt_net/ui/widget/dialog/alert.py +3 -1
  1791. pygpt_net/ui/widget/dialog/{interpreter.py → assistant_store.py} +14 -14
  1792. pygpt_net/ui/widget/dialog/audio.py +1 -38
  1793. pygpt_net/ui/widget/dialog/base.py +22 -8
  1794. pygpt_net/ui/widget/dialog/confirm.py +8 -7
  1795. pygpt_net/ui/widget/dialog/debug.py +2 -1
  1796. pygpt_net/ui/widget/dialog/editor_file.py +117 -13
  1797. pygpt_net/ui/widget/dialog/find.py +88 -0
  1798. pygpt_net/ui/widget/dialog/image.py +1 -1
  1799. pygpt_net/ui/widget/dialog/preset_plugins.py +2 -2
  1800. pygpt_net/ui/widget/dialog/profile.py +177 -0
  1801. pygpt_net/ui/widget/dialog/url.py +207 -0
  1802. pygpt_net/ui/widget/dialog/{video_player.py → workdir.py} +11 -11
  1803. pygpt_net/ui/widget/draw/painter.py +40 -2
  1804. pygpt_net/ui/widget/element/button.py +87 -3
  1805. pygpt_net/ui/widget/element/group.py +38 -2
  1806. pygpt_net/ui/widget/filesystem/explorer.py +46 -13
  1807. pygpt_net/ui/widget/image/display.py +42 -9
  1808. pygpt_net/ui/widget/lists/assistant_store.py +114 -0
  1809. pygpt_net/ui/widget/lists/attachment.py +82 -15
  1810. pygpt_net/ui/widget/lists/attachment_ctx.py +173 -0
  1811. pygpt_net/ui/widget/lists/base.py +2 -2
  1812. pygpt_net/ui/widget/lists/base_combo.py +130 -0
  1813. pygpt_net/ui/widget/lists/base_list_combo.py +121 -0
  1814. pygpt_net/ui/widget/lists/context.py +359 -173
  1815. pygpt_net/ui/widget/lists/db.py +7 -3
  1816. pygpt_net/ui/widget/lists/experts.py +136 -0
  1817. pygpt_net/ui/widget/lists/index.py +3 -3
  1818. pygpt_net/ui/widget/lists/index_combo.py +130 -0
  1819. pygpt_net/ui/widget/lists/llama_mode_combo.py +35 -0
  1820. pygpt_net/ui/widget/lists/mode.py +2 -6
  1821. pygpt_net/ui/widget/lists/mode_combo.py +34 -0
  1822. pygpt_net/ui/widget/lists/model_combo.py +34 -0
  1823. pygpt_net/ui/widget/lists/preset.py +48 -1
  1824. pygpt_net/ui/widget/lists/profile.py +141 -0
  1825. pygpt_net/ui/widget/lists/uploaded.py +20 -7
  1826. pygpt_net/ui/widget/option/checkbox.py +69 -6
  1827. pygpt_net/ui/widget/option/cmd.py +11 -5
  1828. pygpt_net/ui/widget/option/combo.py +41 -4
  1829. pygpt_net/ui/widget/option/dictionary.py +33 -10
  1830. pygpt_net/ui/widget/option/input.py +106 -2
  1831. pygpt_net/ui/widget/option/prompt.py +14 -1
  1832. pygpt_net/ui/widget/option/textarea.py +18 -1
  1833. pygpt_net/ui/widget/option/toggle.py +63 -0
  1834. pygpt_net/ui/widget/option/toggle_label.py +79 -0
  1835. pygpt_net/ui/widget/tabs/Input.py +2 -2
  1836. pygpt_net/ui/widget/tabs/body.py +36 -0
  1837. pygpt_net/ui/widget/tabs/layout.py +195 -0
  1838. pygpt_net/ui/widget/tabs/output.py +305 -26
  1839. pygpt_net/ui/widget/textarea/calendar_note.py +55 -32
  1840. pygpt_net/ui/widget/textarea/editor.py +66 -115
  1841. pygpt_net/ui/widget/textarea/find.py +52 -0
  1842. pygpt_net/ui/widget/textarea/html.py +329 -0
  1843. pygpt_net/ui/widget/textarea/input.py +67 -33
  1844. pygpt_net/ui/widget/textarea/notepad.py +77 -44
  1845. pygpt_net/ui/widget/textarea/output.py +54 -40
  1846. pygpt_net/ui/widget/textarea/search_input.py +9 -1
  1847. pygpt_net/ui/widget/textarea/url.py +43 -0
  1848. pygpt_net/ui/widget/textarea/web.py +361 -0
  1849. pygpt_net/utils.py +100 -15
  1850. {pygpt_net-2.1.37.dist-info → pygpt_net-2.4.48.dist-info}/LICENSE +2 -0
  1851. {pygpt_net-2.1.37.dist-info → pygpt_net-2.4.48.dist-info}/METADATA +2288 -1173
  1852. pygpt_net-2.4.48.dist-info/RECORD +2181 -0
  1853. pygpt_net/controller/agent/flow.py +0 -223
  1854. pygpt_net/controller/editor.py +0 -54
  1855. pygpt_net/controller/interpreter.py +0 -299
  1856. pygpt_net/controller/video.py +0 -107
  1857. pygpt_net/core/bridge.py +0 -121
  1858. pygpt_net/core/prompt.py +0 -69
  1859. pygpt_net/data/locale/locale.ua.ini +0 -591
  1860. pygpt_net/provider/llms/llama.py +0 -47
  1861. pygpt_net/ui/dialog/audio.py +0 -75
  1862. pygpt_net/ui/dialog/interpreter.py +0 -107
  1863. pygpt_net/ui/dialog/video_player.py +0 -36
  1864. pygpt_net/ui/widget/textarea/interpreter.py +0 -104
  1865. pygpt_net-2.1.37.dist-info/RECORD +0 -760
  1866. /pygpt_net/{ui/widget/video → core/text}/__init__.py +0 -0
  1867. {pygpt_net-2.1.37.dist-info → pygpt_net-2.4.48.dist-info}/WHEEL +0 -0
  1868. {pygpt_net-2.1.37.dist-info → pygpt_net-2.4.48.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,3138 @@
1
+ /*! `gml` grammar compiled for Highlight.js 11.10.0 */
2
+ var hljsGrammar = (function () {
3
+ 'use strict';
4
+
5
+ /*
6
+ Language: GML
7
+ Description: Game Maker Language for GameMaker (rev. 2023.1)
8
+ Website: https://manual.yoyogames.com/
9
+ Category: scripting
10
+ */
11
+
12
+ function gml(hljs) {
13
+ const KEYWORDS = [
14
+ "#endregion",
15
+ "#macro",
16
+ "#region",
17
+ "and",
18
+ "begin",
19
+ "break",
20
+ "case",
21
+ "constructor",
22
+ "continue",
23
+ "default",
24
+ "delete",
25
+ "div",
26
+ "do",
27
+ "else",
28
+ "end",
29
+ "enum",
30
+ "exit",
31
+ "for",
32
+ "function",
33
+ "globalvar",
34
+ "if",
35
+ "mod",
36
+ "new",
37
+ "not",
38
+ "or",
39
+ "repeat",
40
+ "return",
41
+ "static",
42
+ "switch",
43
+ "then",
44
+ "until",
45
+ "var",
46
+ "while",
47
+ "with",
48
+ "xor"
49
+ ];
50
+
51
+ const BUILT_INS = [
52
+ "abs",
53
+ "alarm_get",
54
+ "alarm_set",
55
+ "angle_difference",
56
+ "animcurve_channel_evaluate",
57
+ "animcurve_channel_new",
58
+ "animcurve_create",
59
+ "animcurve_destroy",
60
+ "animcurve_exists",
61
+ "animcurve_get",
62
+ "animcurve_get_channel",
63
+ "animcurve_get_channel_index",
64
+ "animcurve_point_new",
65
+ "ansi_char",
66
+ "application_get_position",
67
+ "application_surface_draw_enable",
68
+ "application_surface_enable",
69
+ "application_surface_is_enabled",
70
+ "arccos",
71
+ "arcsin",
72
+ "arctan",
73
+ "arctan2",
74
+ "array_all",
75
+ "array_any",
76
+ "array_concat",
77
+ "array_contains",
78
+ "array_contains_ext",
79
+ "array_copy",
80
+ "array_copy_while",
81
+ "array_create",
82
+ "array_create_ext",
83
+ "array_delete",
84
+ "array_equals",
85
+ "array_filter",
86
+ "array_filter_ext",
87
+ "array_find_index",
88
+ "array_first",
89
+ "array_foreach",
90
+ "array_get",
91
+ "array_get_index",
92
+ "array_insert",
93
+ "array_intersection",
94
+ "array_last",
95
+ "array_length",
96
+ "array_map",
97
+ "array_map_ext",
98
+ "array_pop",
99
+ "array_push",
100
+ "array_reduce",
101
+ "array_resize",
102
+ "array_reverse",
103
+ "array_reverse_ext",
104
+ "array_set",
105
+ "array_shuffle",
106
+ "array_shuffle_ext",
107
+ "array_sort",
108
+ "array_union",
109
+ "array_unique",
110
+ "array_unique_ext",
111
+ "asset_add_tags",
112
+ "asset_clear_tags",
113
+ "asset_get_ids",
114
+ "asset_get_index",
115
+ "asset_get_tags",
116
+ "asset_get_type",
117
+ "asset_has_any_tag",
118
+ "asset_has_tags",
119
+ "asset_remove_tags",
120
+ "audio_bus_clear_emitters",
121
+ "audio_bus_create",
122
+ "audio_bus_get_emitters",
123
+ "audio_channel_num",
124
+ "audio_create_buffer_sound",
125
+ "audio_create_play_queue",
126
+ "audio_create_stream",
127
+ "audio_create_sync_group",
128
+ "audio_debug",
129
+ "audio_destroy_stream",
130
+ "audio_destroy_sync_group",
131
+ "audio_effect_create",
132
+ "audio_emitter_bus",
133
+ "audio_emitter_create",
134
+ "audio_emitter_exists",
135
+ "audio_emitter_falloff",
136
+ "audio_emitter_free",
137
+ "audio_emitter_gain",
138
+ "audio_emitter_get_bus",
139
+ "audio_emitter_get_gain",
140
+ "audio_emitter_get_listener_mask",
141
+ "audio_emitter_get_pitch",
142
+ "audio_emitter_get_vx",
143
+ "audio_emitter_get_vy",
144
+ "audio_emitter_get_vz",
145
+ "audio_emitter_get_x",
146
+ "audio_emitter_get_y",
147
+ "audio_emitter_get_z",
148
+ "audio_emitter_pitch",
149
+ "audio_emitter_position",
150
+ "audio_emitter_set_listener_mask",
151
+ "audio_emitter_velocity",
152
+ "audio_exists",
153
+ "audio_falloff_set_model",
154
+ "audio_free_buffer_sound",
155
+ "audio_free_play_queue",
156
+ "audio_get_listener_count",
157
+ "audio_get_listener_info",
158
+ "audio_get_listener_mask",
159
+ "audio_get_master_gain",
160
+ "audio_get_name",
161
+ "audio_get_recorder_count",
162
+ "audio_get_recorder_info",
163
+ "audio_get_type",
164
+ "audio_group_get_assets",
165
+ "audio_group_get_gain",
166
+ "audio_group_is_loaded",
167
+ "audio_group_load",
168
+ "audio_group_load_progress",
169
+ "audio_group_name",
170
+ "audio_group_set_gain",
171
+ "audio_group_stop_all",
172
+ "audio_group_unload",
173
+ "audio_is_paused",
174
+ "audio_is_playing",
175
+ "audio_listener_get_data",
176
+ "audio_listener_orientation",
177
+ "audio_listener_position",
178
+ "audio_listener_set_orientation",
179
+ "audio_listener_set_position",
180
+ "audio_listener_set_velocity",
181
+ "audio_listener_velocity",
182
+ "audio_master_gain",
183
+ "audio_pause_all",
184
+ "audio_pause_sound",
185
+ "audio_pause_sync_group",
186
+ "audio_play_in_sync_group",
187
+ "audio_play_sound",
188
+ "audio_play_sound_at",
189
+ "audio_play_sound_ext",
190
+ "audio_play_sound_on",
191
+ "audio_queue_sound",
192
+ "audio_resume_all",
193
+ "audio_resume_sound",
194
+ "audio_resume_sync_group",
195
+ "audio_set_listener_mask",
196
+ "audio_set_master_gain",
197
+ "audio_sound_gain",
198
+ "audio_sound_get_audio_group",
199
+ "audio_sound_get_gain",
200
+ "audio_sound_get_listener_mask",
201
+ "audio_sound_get_loop",
202
+ "audio_sound_get_loop_end",
203
+ "audio_sound_get_loop_start",
204
+ "audio_sound_get_pitch",
205
+ "audio_sound_get_track_position",
206
+ "audio_sound_is_playable",
207
+ "audio_sound_length",
208
+ "audio_sound_loop",
209
+ "audio_sound_loop_end",
210
+ "audio_sound_loop_start",
211
+ "audio_sound_pitch",
212
+ "audio_sound_set_listener_mask",
213
+ "audio_sound_set_track_position",
214
+ "audio_start_recording",
215
+ "audio_start_sync_group",
216
+ "audio_stop_all",
217
+ "audio_stop_recording",
218
+ "audio_stop_sound",
219
+ "audio_stop_sync_group",
220
+ "audio_sync_group_debug",
221
+ "audio_sync_group_get_track_pos",
222
+ "audio_sync_group_is_paused",
223
+ "audio_sync_group_is_playing",
224
+ "audio_system_is_available",
225
+ "audio_system_is_initialised",
226
+ "base64_decode",
227
+ "base64_encode",
228
+ "bool",
229
+ "browser_input_capture",
230
+ "buffer_async_group_begin",
231
+ "buffer_async_group_end",
232
+ "buffer_async_group_option",
233
+ "buffer_base64_decode",
234
+ "buffer_base64_decode_ext",
235
+ "buffer_base64_encode",
236
+ "buffer_compress",
237
+ "buffer_copy",
238
+ "buffer_copy_from_vertex_buffer",
239
+ "buffer_copy_stride",
240
+ "buffer_crc32",
241
+ "buffer_create",
242
+ "buffer_create_from_vertex_buffer",
243
+ "buffer_create_from_vertex_buffer_ext",
244
+ "buffer_decompress",
245
+ "buffer_delete",
246
+ "buffer_exists",
247
+ "buffer_fill",
248
+ "buffer_get_address",
249
+ "buffer_get_alignment",
250
+ "buffer_get_size",
251
+ "buffer_get_surface",
252
+ "buffer_get_type",
253
+ "buffer_load",
254
+ "buffer_load_async",
255
+ "buffer_load_ext",
256
+ "buffer_load_partial",
257
+ "buffer_md5",
258
+ "buffer_peek",
259
+ "buffer_poke",
260
+ "buffer_read",
261
+ "buffer_resize",
262
+ "buffer_save",
263
+ "buffer_save_async",
264
+ "buffer_save_ext",
265
+ "buffer_seek",
266
+ "buffer_set_surface",
267
+ "buffer_set_used_size",
268
+ "buffer_sha1",
269
+ "buffer_sizeof",
270
+ "buffer_tell",
271
+ "buffer_write",
272
+ "call_cancel",
273
+ "call_later",
274
+ "camera_apply",
275
+ "camera_copy_transforms",
276
+ "camera_create",
277
+ "camera_create_view",
278
+ "camera_destroy",
279
+ "camera_get_active",
280
+ "camera_get_begin_script",
281
+ "camera_get_default",
282
+ "camera_get_end_script",
283
+ "camera_get_proj_mat",
284
+ "camera_get_update_script",
285
+ "camera_get_view_angle",
286
+ "camera_get_view_border_x",
287
+ "camera_get_view_border_y",
288
+ "camera_get_view_height",
289
+ "camera_get_view_mat",
290
+ "camera_get_view_speed_x",
291
+ "camera_get_view_speed_y",
292
+ "camera_get_view_target",
293
+ "camera_get_view_width",
294
+ "camera_get_view_x",
295
+ "camera_get_view_y",
296
+ "camera_set_begin_script",
297
+ "camera_set_default",
298
+ "camera_set_end_script",
299
+ "camera_set_proj_mat",
300
+ "camera_set_update_script",
301
+ "camera_set_view_angle",
302
+ "camera_set_view_border",
303
+ "camera_set_view_mat",
304
+ "camera_set_view_pos",
305
+ "camera_set_view_size",
306
+ "camera_set_view_speed",
307
+ "camera_set_view_target",
308
+ "ceil",
309
+ "choose",
310
+ "chr",
311
+ "clamp",
312
+ "clickable_add",
313
+ "clickable_add_ext",
314
+ "clickable_change",
315
+ "clickable_change_ext",
316
+ "clickable_delete",
317
+ "clickable_exists",
318
+ "clickable_set_style",
319
+ "clipboard_get_text",
320
+ "clipboard_has_text",
321
+ "clipboard_set_text",
322
+ "cloud_file_save",
323
+ "cloud_string_save",
324
+ "cloud_synchronise",
325
+ "code_is_compiled",
326
+ "collision_circle",
327
+ "collision_circle_list",
328
+ "collision_ellipse",
329
+ "collision_ellipse_list",
330
+ "collision_line",
331
+ "collision_line_list",
332
+ "collision_point",
333
+ "collision_point_list",
334
+ "collision_rectangle",
335
+ "collision_rectangle_list",
336
+ "color_get_blue",
337
+ "color_get_green",
338
+ "color_get_hue",
339
+ "color_get_red",
340
+ "color_get_saturation",
341
+ "color_get_value",
342
+ "colour_get_blue",
343
+ "colour_get_green",
344
+ "colour_get_hue",
345
+ "colour_get_red",
346
+ "colour_get_saturation",
347
+ "colour_get_value",
348
+ "cos",
349
+ "darccos",
350
+ "darcsin",
351
+ "darctan",
352
+ "darctan2",
353
+ "date_compare_date",
354
+ "date_compare_datetime",
355
+ "date_compare_time",
356
+ "date_create_datetime",
357
+ "date_current_datetime",
358
+ "date_date_of",
359
+ "date_date_string",
360
+ "date_datetime_string",
361
+ "date_day_span",
362
+ "date_days_in_month",
363
+ "date_days_in_year",
364
+ "date_get_day",
365
+ "date_get_day_of_year",
366
+ "date_get_hour",
367
+ "date_get_hour_of_year",
368
+ "date_get_minute",
369
+ "date_get_minute_of_year",
370
+ "date_get_month",
371
+ "date_get_second",
372
+ "date_get_second_of_year",
373
+ "date_get_timezone",
374
+ "date_get_week",
375
+ "date_get_weekday",
376
+ "date_get_year",
377
+ "date_hour_span",
378
+ "date_inc_day",
379
+ "date_inc_hour",
380
+ "date_inc_minute",
381
+ "date_inc_month",
382
+ "date_inc_second",
383
+ "date_inc_week",
384
+ "date_inc_year",
385
+ "date_is_today",
386
+ "date_leap_year",
387
+ "date_minute_span",
388
+ "date_month_span",
389
+ "date_second_span",
390
+ "date_set_timezone",
391
+ "date_time_of",
392
+ "date_time_string",
393
+ "date_valid_datetime",
394
+ "date_week_span",
395
+ "date_year_span",
396
+ "db_to_lin",
397
+ "dbg_add_font_glyphs",
398
+ "dbg_button",
399
+ "dbg_checkbox",
400
+ "dbg_color",
401
+ "dbg_colour",
402
+ "dbg_drop_down",
403
+ "dbg_same_line",
404
+ "dbg_section",
405
+ "dbg_section_delete",
406
+ "dbg_section_exists",
407
+ "dbg_slider",
408
+ "dbg_slider_int",
409
+ "dbg_sprite",
410
+ "dbg_text",
411
+ "dbg_text_input",
412
+ "dbg_view",
413
+ "dbg_view_delete",
414
+ "dbg_view_exists",
415
+ "dbg_watch",
416
+ "dcos",
417
+ "debug_event",
418
+ "debug_get_callstack",
419
+ "degtorad",
420
+ "device_get_tilt_x",
421
+ "device_get_tilt_y",
422
+ "device_get_tilt_z",
423
+ "device_is_keypad_open",
424
+ "device_mouse_check_button",
425
+ "device_mouse_check_button_pressed",
426
+ "device_mouse_check_button_released",
427
+ "device_mouse_dbclick_enable",
428
+ "device_mouse_raw_x",
429
+ "device_mouse_raw_y",
430
+ "device_mouse_x",
431
+ "device_mouse_x_to_gui",
432
+ "device_mouse_y",
433
+ "device_mouse_y_to_gui",
434
+ "directory_create",
435
+ "directory_destroy",
436
+ "directory_exists",
437
+ "display_get_dpi_x",
438
+ "display_get_dpi_y",
439
+ "display_get_frequency",
440
+ "display_get_gui_height",
441
+ "display_get_gui_width",
442
+ "display_get_height",
443
+ "display_get_orientation",
444
+ "display_get_sleep_margin",
445
+ "display_get_timing_method",
446
+ "display_get_width",
447
+ "display_mouse_get_x",
448
+ "display_mouse_get_y",
449
+ "display_mouse_set",
450
+ "display_reset",
451
+ "display_set_gui_maximise",
452
+ "display_set_gui_maximize",
453
+ "display_set_gui_size",
454
+ "display_set_sleep_margin",
455
+ "display_set_timing_method",
456
+ "display_set_ui_visibility",
457
+ "distance_to_object",
458
+ "distance_to_point",
459
+ "dot_product",
460
+ "dot_product_3d",
461
+ "dot_product_3d_normalised",
462
+ "dot_product_3d_normalized",
463
+ "dot_product_normalised",
464
+ "dot_product_normalized",
465
+ "draw_arrow",
466
+ "draw_button",
467
+ "draw_circle",
468
+ "draw_circle_color",
469
+ "draw_circle_colour",
470
+ "draw_clear",
471
+ "draw_clear_alpha",
472
+ "draw_ellipse",
473
+ "draw_ellipse_color",
474
+ "draw_ellipse_colour",
475
+ "draw_enable_drawevent",
476
+ "draw_enable_skeleton_blendmodes",
477
+ "draw_enable_swf_aa",
478
+ "draw_flush",
479
+ "draw_get_alpha",
480
+ "draw_get_color",
481
+ "draw_get_colour",
482
+ "draw_get_enable_skeleton_blendmodes",
483
+ "draw_get_font",
484
+ "draw_get_halign",
485
+ "draw_get_lighting",
486
+ "draw_get_swf_aa_level",
487
+ "draw_get_valign",
488
+ "draw_getpixel",
489
+ "draw_getpixel_ext",
490
+ "draw_healthbar",
491
+ "draw_highscore",
492
+ "draw_light_define_ambient",
493
+ "draw_light_define_direction",
494
+ "draw_light_define_point",
495
+ "draw_light_enable",
496
+ "draw_light_get",
497
+ "draw_light_get_ambient",
498
+ "draw_line",
499
+ "draw_line_color",
500
+ "draw_line_colour",
501
+ "draw_line_width",
502
+ "draw_line_width_color",
503
+ "draw_line_width_colour",
504
+ "draw_path",
505
+ "draw_point",
506
+ "draw_point_color",
507
+ "draw_point_colour",
508
+ "draw_primitive_begin",
509
+ "draw_primitive_begin_texture",
510
+ "draw_primitive_end",
511
+ "draw_rectangle",
512
+ "draw_rectangle_color",
513
+ "draw_rectangle_colour",
514
+ "draw_roundrect",
515
+ "draw_roundrect_color",
516
+ "draw_roundrect_color_ext",
517
+ "draw_roundrect_colour",
518
+ "draw_roundrect_colour_ext",
519
+ "draw_roundrect_ext",
520
+ "draw_self",
521
+ "draw_set_alpha",
522
+ "draw_set_circle_precision",
523
+ "draw_set_color",
524
+ "draw_set_colour",
525
+ "draw_set_font",
526
+ "draw_set_halign",
527
+ "draw_set_lighting",
528
+ "draw_set_swf_aa_level",
529
+ "draw_set_valign",
530
+ "draw_skeleton",
531
+ "draw_skeleton_collision",
532
+ "draw_skeleton_instance",
533
+ "draw_skeleton_time",
534
+ "draw_sprite",
535
+ "draw_sprite_ext",
536
+ "draw_sprite_general",
537
+ "draw_sprite_part",
538
+ "draw_sprite_part_ext",
539
+ "draw_sprite_pos",
540
+ "draw_sprite_stretched",
541
+ "draw_sprite_stretched_ext",
542
+ "draw_sprite_tiled",
543
+ "draw_sprite_tiled_ext",
544
+ "draw_surface",
545
+ "draw_surface_ext",
546
+ "draw_surface_general",
547
+ "draw_surface_part",
548
+ "draw_surface_part_ext",
549
+ "draw_surface_stretched",
550
+ "draw_surface_stretched_ext",
551
+ "draw_surface_tiled",
552
+ "draw_surface_tiled_ext",
553
+ "draw_text",
554
+ "draw_text_color",
555
+ "draw_text_colour",
556
+ "draw_text_ext",
557
+ "draw_text_ext_color",
558
+ "draw_text_ext_colour",
559
+ "draw_text_ext_transformed",
560
+ "draw_text_ext_transformed_color",
561
+ "draw_text_ext_transformed_colour",
562
+ "draw_text_transformed",
563
+ "draw_text_transformed_color",
564
+ "draw_text_transformed_colour",
565
+ "draw_texture_flush",
566
+ "draw_tile",
567
+ "draw_tilemap",
568
+ "draw_triangle",
569
+ "draw_triangle_color",
570
+ "draw_triangle_colour",
571
+ "draw_vertex",
572
+ "draw_vertex_color",
573
+ "draw_vertex_colour",
574
+ "draw_vertex_texture",
575
+ "draw_vertex_texture_color",
576
+ "draw_vertex_texture_colour",
577
+ "ds_exists",
578
+ "ds_grid_add",
579
+ "ds_grid_add_disk",
580
+ "ds_grid_add_grid_region",
581
+ "ds_grid_add_region",
582
+ "ds_grid_clear",
583
+ "ds_grid_copy",
584
+ "ds_grid_create",
585
+ "ds_grid_destroy",
586
+ "ds_grid_get",
587
+ "ds_grid_get_disk_max",
588
+ "ds_grid_get_disk_mean",
589
+ "ds_grid_get_disk_min",
590
+ "ds_grid_get_disk_sum",
591
+ "ds_grid_get_max",
592
+ "ds_grid_get_mean",
593
+ "ds_grid_get_min",
594
+ "ds_grid_get_sum",
595
+ "ds_grid_height",
596
+ "ds_grid_multiply",
597
+ "ds_grid_multiply_disk",
598
+ "ds_grid_multiply_grid_region",
599
+ "ds_grid_multiply_region",
600
+ "ds_grid_read",
601
+ "ds_grid_resize",
602
+ "ds_grid_set",
603
+ "ds_grid_set_disk",
604
+ "ds_grid_set_grid_region",
605
+ "ds_grid_set_region",
606
+ "ds_grid_shuffle",
607
+ "ds_grid_sort",
608
+ "ds_grid_to_mp_grid",
609
+ "ds_grid_value_disk_exists",
610
+ "ds_grid_value_disk_x",
611
+ "ds_grid_value_disk_y",
612
+ "ds_grid_value_exists",
613
+ "ds_grid_value_x",
614
+ "ds_grid_value_y",
615
+ "ds_grid_width",
616
+ "ds_grid_write",
617
+ "ds_list_add",
618
+ "ds_list_clear",
619
+ "ds_list_copy",
620
+ "ds_list_create",
621
+ "ds_list_delete",
622
+ "ds_list_destroy",
623
+ "ds_list_empty",
624
+ "ds_list_find_index",
625
+ "ds_list_find_value",
626
+ "ds_list_insert",
627
+ "ds_list_is_list",
628
+ "ds_list_is_map",
629
+ "ds_list_mark_as_list",
630
+ "ds_list_mark_as_map",
631
+ "ds_list_read",
632
+ "ds_list_replace",
633
+ "ds_list_set",
634
+ "ds_list_shuffle",
635
+ "ds_list_size",
636
+ "ds_list_sort",
637
+ "ds_list_write",
638
+ "ds_map_add",
639
+ "ds_map_add_list",
640
+ "ds_map_add_map",
641
+ "ds_map_clear",
642
+ "ds_map_copy",
643
+ "ds_map_create",
644
+ "ds_map_delete",
645
+ "ds_map_destroy",
646
+ "ds_map_empty",
647
+ "ds_map_exists",
648
+ "ds_map_find_first",
649
+ "ds_map_find_last",
650
+ "ds_map_find_next",
651
+ "ds_map_find_previous",
652
+ "ds_map_find_value",
653
+ "ds_map_is_list",
654
+ "ds_map_is_map",
655
+ "ds_map_keys_to_array",
656
+ "ds_map_read",
657
+ "ds_map_replace",
658
+ "ds_map_replace_list",
659
+ "ds_map_replace_map",
660
+ "ds_map_secure_load",
661
+ "ds_map_secure_load_buffer",
662
+ "ds_map_secure_save",
663
+ "ds_map_secure_save_buffer",
664
+ "ds_map_set",
665
+ "ds_map_size",
666
+ "ds_map_values_to_array",
667
+ "ds_map_write",
668
+ "ds_priority_add",
669
+ "ds_priority_change_priority",
670
+ "ds_priority_clear",
671
+ "ds_priority_copy",
672
+ "ds_priority_create",
673
+ "ds_priority_delete_max",
674
+ "ds_priority_delete_min",
675
+ "ds_priority_delete_value",
676
+ "ds_priority_destroy",
677
+ "ds_priority_empty",
678
+ "ds_priority_find_max",
679
+ "ds_priority_find_min",
680
+ "ds_priority_find_priority",
681
+ "ds_priority_read",
682
+ "ds_priority_size",
683
+ "ds_priority_write",
684
+ "ds_queue_clear",
685
+ "ds_queue_copy",
686
+ "ds_queue_create",
687
+ "ds_queue_dequeue",
688
+ "ds_queue_destroy",
689
+ "ds_queue_empty",
690
+ "ds_queue_enqueue",
691
+ "ds_queue_head",
692
+ "ds_queue_read",
693
+ "ds_queue_size",
694
+ "ds_queue_tail",
695
+ "ds_queue_write",
696
+ "ds_set_precision",
697
+ "ds_stack_clear",
698
+ "ds_stack_copy",
699
+ "ds_stack_create",
700
+ "ds_stack_destroy",
701
+ "ds_stack_empty",
702
+ "ds_stack_pop",
703
+ "ds_stack_push",
704
+ "ds_stack_read",
705
+ "ds_stack_size",
706
+ "ds_stack_top",
707
+ "ds_stack_write",
708
+ "dsin",
709
+ "dtan",
710
+ "effect_clear",
711
+ "effect_create_above",
712
+ "effect_create_below",
713
+ "effect_create_depth",
714
+ "effect_create_layer",
715
+ "environment_get_variable",
716
+ "event_inherited",
717
+ "event_perform",
718
+ "event_perform_async",
719
+ "event_perform_object",
720
+ "event_user",
721
+ "exception_unhandled_handler",
722
+ "exp",
723
+ "extension_exists",
724
+ "extension_get_option_count",
725
+ "extension_get_option_names",
726
+ "extension_get_option_value",
727
+ "extension_get_options",
728
+ "extension_get_version",
729
+ "external_call",
730
+ "external_define",
731
+ "external_free",
732
+ "file_attributes",
733
+ "file_bin_close",
734
+ "file_bin_open",
735
+ "file_bin_position",
736
+ "file_bin_read_byte",
737
+ "file_bin_rewrite",
738
+ "file_bin_seek",
739
+ "file_bin_size",
740
+ "file_bin_write_byte",
741
+ "file_copy",
742
+ "file_delete",
743
+ "file_exists",
744
+ "file_find_close",
745
+ "file_find_first",
746
+ "file_find_next",
747
+ "file_rename",
748
+ "file_text_close",
749
+ "file_text_eof",
750
+ "file_text_eoln",
751
+ "file_text_open_append",
752
+ "file_text_open_from_string",
753
+ "file_text_open_read",
754
+ "file_text_open_write",
755
+ "file_text_read_real",
756
+ "file_text_read_string",
757
+ "file_text_readln",
758
+ "file_text_write_real",
759
+ "file_text_write_string",
760
+ "file_text_writeln",
761
+ "filename_change_ext",
762
+ "filename_dir",
763
+ "filename_drive",
764
+ "filename_ext",
765
+ "filename_name",
766
+ "filename_path",
767
+ "floor",
768
+ "font_add",
769
+ "font_add_enable_aa",
770
+ "font_add_get_enable_aa",
771
+ "font_add_sprite",
772
+ "font_add_sprite_ext",
773
+ "font_cache_glyph",
774
+ "font_delete",
775
+ "font_enable_effects",
776
+ "font_enable_sdf",
777
+ "font_exists",
778
+ "font_get_bold",
779
+ "font_get_first",
780
+ "font_get_fontname",
781
+ "font_get_info",
782
+ "font_get_italic",
783
+ "font_get_last",
784
+ "font_get_name",
785
+ "font_get_sdf_enabled",
786
+ "font_get_sdf_spread",
787
+ "font_get_size",
788
+ "font_get_texture",
789
+ "font_get_uvs",
790
+ "font_replace_sprite",
791
+ "font_replace_sprite_ext",
792
+ "font_sdf_spread",
793
+ "font_set_cache_size",
794
+ "frac",
795
+ "fx_create",
796
+ "fx_get_name",
797
+ "fx_get_parameter",
798
+ "fx_get_parameter_names",
799
+ "fx_get_parameters",
800
+ "fx_get_single_layer",
801
+ "fx_set_parameter",
802
+ "fx_set_parameters",
803
+ "fx_set_single_layer",
804
+ "game_change",
805
+ "game_end",
806
+ "game_get_speed",
807
+ "game_load",
808
+ "game_load_buffer",
809
+ "game_restart",
810
+ "game_save",
811
+ "game_save_buffer",
812
+ "game_set_speed",
813
+ "gamepad_axis_count",
814
+ "gamepad_axis_value",
815
+ "gamepad_button_check",
816
+ "gamepad_button_check_pressed",
817
+ "gamepad_button_check_released",
818
+ "gamepad_button_count",
819
+ "gamepad_button_value",
820
+ "gamepad_get_axis_deadzone",
821
+ "gamepad_get_button_threshold",
822
+ "gamepad_get_description",
823
+ "gamepad_get_device_count",
824
+ "gamepad_get_guid",
825
+ "gamepad_get_mapping",
826
+ "gamepad_get_option",
827
+ "gamepad_hat_count",
828
+ "gamepad_hat_value",
829
+ "gamepad_is_connected",
830
+ "gamepad_is_supported",
831
+ "gamepad_remove_mapping",
832
+ "gamepad_set_axis_deadzone",
833
+ "gamepad_set_button_threshold",
834
+ "gamepad_set_color",
835
+ "gamepad_set_colour",
836
+ "gamepad_set_option",
837
+ "gamepad_set_vibration",
838
+ "gamepad_test_mapping",
839
+ "gc_collect",
840
+ "gc_enable",
841
+ "gc_get_stats",
842
+ "gc_get_target_frame_time",
843
+ "gc_is_enabled",
844
+ "gc_target_frame_time",
845
+ "gesture_double_tap_distance",
846
+ "gesture_double_tap_time",
847
+ "gesture_drag_distance",
848
+ "gesture_drag_time",
849
+ "gesture_flick_speed",
850
+ "gesture_get_double_tap_distance",
851
+ "gesture_get_double_tap_time",
852
+ "gesture_get_drag_distance",
853
+ "gesture_get_drag_time",
854
+ "gesture_get_flick_speed",
855
+ "gesture_get_pinch_angle_away",
856
+ "gesture_get_pinch_angle_towards",
857
+ "gesture_get_pinch_distance",
858
+ "gesture_get_rotate_angle",
859
+ "gesture_get_rotate_time",
860
+ "gesture_get_tap_count",
861
+ "gesture_pinch_angle_away",
862
+ "gesture_pinch_angle_towards",
863
+ "gesture_pinch_distance",
864
+ "gesture_rotate_angle",
865
+ "gesture_rotate_time",
866
+ "gesture_tap_count",
867
+ "get_integer",
868
+ "get_integer_async",
869
+ "get_login_async",
870
+ "get_open_filename",
871
+ "get_open_filename_ext",
872
+ "get_save_filename",
873
+ "get_save_filename_ext",
874
+ "get_string",
875
+ "get_string_async",
876
+ "get_timer",
877
+ "gif_add_surface",
878
+ "gif_open",
879
+ "gif_save",
880
+ "gif_save_buffer",
881
+ "gml_pragma",
882
+ "gml_release_mode",
883
+ "gpu_get_alphatestenable",
884
+ "gpu_get_alphatestref",
885
+ "gpu_get_blendenable",
886
+ "gpu_get_blendmode",
887
+ "gpu_get_blendmode_dest",
888
+ "gpu_get_blendmode_destalpha",
889
+ "gpu_get_blendmode_ext",
890
+ "gpu_get_blendmode_ext_sepalpha",
891
+ "gpu_get_blendmode_src",
892
+ "gpu_get_blendmode_srcalpha",
893
+ "gpu_get_colorwriteenable",
894
+ "gpu_get_colourwriteenable",
895
+ "gpu_get_cullmode",
896
+ "gpu_get_depth",
897
+ "gpu_get_fog",
898
+ "gpu_get_state",
899
+ "gpu_get_tex_filter",
900
+ "gpu_get_tex_filter_ext",
901
+ "gpu_get_tex_max_aniso",
902
+ "gpu_get_tex_max_aniso_ext",
903
+ "gpu_get_tex_max_mip",
904
+ "gpu_get_tex_max_mip_ext",
905
+ "gpu_get_tex_min_mip",
906
+ "gpu_get_tex_min_mip_ext",
907
+ "gpu_get_tex_mip_bias",
908
+ "gpu_get_tex_mip_bias_ext",
909
+ "gpu_get_tex_mip_enable",
910
+ "gpu_get_tex_mip_enable_ext",
911
+ "gpu_get_tex_mip_filter",
912
+ "gpu_get_tex_mip_filter_ext",
913
+ "gpu_get_tex_repeat",
914
+ "gpu_get_tex_repeat_ext",
915
+ "gpu_get_texfilter",
916
+ "gpu_get_texfilter_ext",
917
+ "gpu_get_texrepeat",
918
+ "gpu_get_texrepeat_ext",
919
+ "gpu_get_zfunc",
920
+ "gpu_get_ztestenable",
921
+ "gpu_get_zwriteenable",
922
+ "gpu_pop_state",
923
+ "gpu_push_state",
924
+ "gpu_set_alphatestenable",
925
+ "gpu_set_alphatestref",
926
+ "gpu_set_blendenable",
927
+ "gpu_set_blendmode",
928
+ "gpu_set_blendmode_ext",
929
+ "gpu_set_blendmode_ext_sepalpha",
930
+ "gpu_set_colorwriteenable",
931
+ "gpu_set_colourwriteenable",
932
+ "gpu_set_cullmode",
933
+ "gpu_set_depth",
934
+ "gpu_set_fog",
935
+ "gpu_set_state",
936
+ "gpu_set_tex_filter",
937
+ "gpu_set_tex_filter_ext",
938
+ "gpu_set_tex_max_aniso",
939
+ "gpu_set_tex_max_aniso_ext",
940
+ "gpu_set_tex_max_mip",
941
+ "gpu_set_tex_max_mip_ext",
942
+ "gpu_set_tex_min_mip",
943
+ "gpu_set_tex_min_mip_ext",
944
+ "gpu_set_tex_mip_bias",
945
+ "gpu_set_tex_mip_bias_ext",
946
+ "gpu_set_tex_mip_enable",
947
+ "gpu_set_tex_mip_enable_ext",
948
+ "gpu_set_tex_mip_filter",
949
+ "gpu_set_tex_mip_filter_ext",
950
+ "gpu_set_tex_repeat",
951
+ "gpu_set_tex_repeat_ext",
952
+ "gpu_set_texfilter",
953
+ "gpu_set_texfilter_ext",
954
+ "gpu_set_texrepeat",
955
+ "gpu_set_texrepeat_ext",
956
+ "gpu_set_zfunc",
957
+ "gpu_set_ztestenable",
958
+ "gpu_set_zwriteenable",
959
+ "handle_parse",
960
+ "highscore_add",
961
+ "highscore_clear",
962
+ "highscore_name",
963
+ "highscore_value",
964
+ "http_get",
965
+ "http_get_file",
966
+ "http_get_request_crossorigin",
967
+ "http_post_string",
968
+ "http_request",
969
+ "http_set_request_crossorigin",
970
+ "iap_acquire",
971
+ "iap_activate",
972
+ "iap_consume",
973
+ "iap_enumerate_products",
974
+ "iap_product_details",
975
+ "iap_purchase_details",
976
+ "iap_restore_all",
977
+ "iap_status",
978
+ "ini_close",
979
+ "ini_key_delete",
980
+ "ini_key_exists",
981
+ "ini_open",
982
+ "ini_open_from_string",
983
+ "ini_read_real",
984
+ "ini_read_string",
985
+ "ini_section_delete",
986
+ "ini_section_exists",
987
+ "ini_write_real",
988
+ "ini_write_string",
989
+ "instance_activate_all",
990
+ "instance_activate_layer",
991
+ "instance_activate_object",
992
+ "instance_activate_region",
993
+ "instance_change",
994
+ "instance_copy",
995
+ "instance_create_depth",
996
+ "instance_create_layer",
997
+ "instance_deactivate_all",
998
+ "instance_deactivate_layer",
999
+ "instance_deactivate_object",
1000
+ "instance_deactivate_region",
1001
+ "instance_destroy",
1002
+ "instance_exists",
1003
+ "instance_find",
1004
+ "instance_furthest",
1005
+ "instance_id_get",
1006
+ "instance_nearest",
1007
+ "instance_number",
1008
+ "instance_place",
1009
+ "instance_place_list",
1010
+ "instance_position",
1011
+ "instance_position_list",
1012
+ "instanceof",
1013
+ "int64",
1014
+ "io_clear",
1015
+ "irandom",
1016
+ "irandom_range",
1017
+ "is_array",
1018
+ "is_bool",
1019
+ "is_callable",
1020
+ "is_debug_overlay_open",
1021
+ "is_handle",
1022
+ "is_infinity",
1023
+ "is_instanceof",
1024
+ "is_int32",
1025
+ "is_int64",
1026
+ "is_keyboard_used_debug_overlay",
1027
+ "is_method",
1028
+ "is_mouse_over_debug_overlay",
1029
+ "is_nan",
1030
+ "is_numeric",
1031
+ "is_ptr",
1032
+ "is_real",
1033
+ "is_string",
1034
+ "is_struct",
1035
+ "is_undefined",
1036
+ "json_decode",
1037
+ "json_encode",
1038
+ "json_parse",
1039
+ "json_stringify",
1040
+ "keyboard_check",
1041
+ "keyboard_check_direct",
1042
+ "keyboard_check_pressed",
1043
+ "keyboard_check_released",
1044
+ "keyboard_clear",
1045
+ "keyboard_get_map",
1046
+ "keyboard_get_numlock",
1047
+ "keyboard_key_press",
1048
+ "keyboard_key_release",
1049
+ "keyboard_set_map",
1050
+ "keyboard_set_numlock",
1051
+ "keyboard_unset_map",
1052
+ "keyboard_virtual_height",
1053
+ "keyboard_virtual_hide",
1054
+ "keyboard_virtual_show",
1055
+ "keyboard_virtual_status",
1056
+ "layer_add_instance",
1057
+ "layer_background_alpha",
1058
+ "layer_background_blend",
1059
+ "layer_background_change",
1060
+ "layer_background_create",
1061
+ "layer_background_destroy",
1062
+ "layer_background_exists",
1063
+ "layer_background_get_alpha",
1064
+ "layer_background_get_blend",
1065
+ "layer_background_get_htiled",
1066
+ "layer_background_get_id",
1067
+ "layer_background_get_index",
1068
+ "layer_background_get_speed",
1069
+ "layer_background_get_sprite",
1070
+ "layer_background_get_stretch",
1071
+ "layer_background_get_visible",
1072
+ "layer_background_get_vtiled",
1073
+ "layer_background_get_xscale",
1074
+ "layer_background_get_yscale",
1075
+ "layer_background_htiled",
1076
+ "layer_background_index",
1077
+ "layer_background_speed",
1078
+ "layer_background_sprite",
1079
+ "layer_background_stretch",
1080
+ "layer_background_visible",
1081
+ "layer_background_vtiled",
1082
+ "layer_background_xscale",
1083
+ "layer_background_yscale",
1084
+ "layer_clear_fx",
1085
+ "layer_create",
1086
+ "layer_depth",
1087
+ "layer_destroy",
1088
+ "layer_destroy_instances",
1089
+ "layer_element_move",
1090
+ "layer_enable_fx",
1091
+ "layer_exists",
1092
+ "layer_force_draw_depth",
1093
+ "layer_fx_is_enabled",
1094
+ "layer_get_all",
1095
+ "layer_get_all_elements",
1096
+ "layer_get_depth",
1097
+ "layer_get_element_layer",
1098
+ "layer_get_element_type",
1099
+ "layer_get_forced_depth",
1100
+ "layer_get_fx",
1101
+ "layer_get_hspeed",
1102
+ "layer_get_id",
1103
+ "layer_get_id_at_depth",
1104
+ "layer_get_name",
1105
+ "layer_get_script_begin",
1106
+ "layer_get_script_end",
1107
+ "layer_get_shader",
1108
+ "layer_get_target_room",
1109
+ "layer_get_visible",
1110
+ "layer_get_vspeed",
1111
+ "layer_get_x",
1112
+ "layer_get_y",
1113
+ "layer_has_instance",
1114
+ "layer_hspeed",
1115
+ "layer_instance_get_instance",
1116
+ "layer_is_draw_depth_forced",
1117
+ "layer_reset_target_room",
1118
+ "layer_script_begin",
1119
+ "layer_script_end",
1120
+ "layer_sequence_angle",
1121
+ "layer_sequence_create",
1122
+ "layer_sequence_destroy",
1123
+ "layer_sequence_exists",
1124
+ "layer_sequence_get_angle",
1125
+ "layer_sequence_get_headdir",
1126
+ "layer_sequence_get_headpos",
1127
+ "layer_sequence_get_instance",
1128
+ "layer_sequence_get_length",
1129
+ "layer_sequence_get_sequence",
1130
+ "layer_sequence_get_speedscale",
1131
+ "layer_sequence_get_x",
1132
+ "layer_sequence_get_xscale",
1133
+ "layer_sequence_get_y",
1134
+ "layer_sequence_get_yscale",
1135
+ "layer_sequence_headdir",
1136
+ "layer_sequence_headpos",
1137
+ "layer_sequence_is_finished",
1138
+ "layer_sequence_is_paused",
1139
+ "layer_sequence_pause",
1140
+ "layer_sequence_play",
1141
+ "layer_sequence_speedscale",
1142
+ "layer_sequence_x",
1143
+ "layer_sequence_xscale",
1144
+ "layer_sequence_y",
1145
+ "layer_sequence_yscale",
1146
+ "layer_set_fx",
1147
+ "layer_set_target_room",
1148
+ "layer_set_visible",
1149
+ "layer_shader",
1150
+ "layer_sprite_alpha",
1151
+ "layer_sprite_angle",
1152
+ "layer_sprite_blend",
1153
+ "layer_sprite_change",
1154
+ "layer_sprite_create",
1155
+ "layer_sprite_destroy",
1156
+ "layer_sprite_exists",
1157
+ "layer_sprite_get_alpha",
1158
+ "layer_sprite_get_angle",
1159
+ "layer_sprite_get_blend",
1160
+ "layer_sprite_get_id",
1161
+ "layer_sprite_get_index",
1162
+ "layer_sprite_get_speed",
1163
+ "layer_sprite_get_sprite",
1164
+ "layer_sprite_get_x",
1165
+ "layer_sprite_get_xscale",
1166
+ "layer_sprite_get_y",
1167
+ "layer_sprite_get_yscale",
1168
+ "layer_sprite_index",
1169
+ "layer_sprite_speed",
1170
+ "layer_sprite_x",
1171
+ "layer_sprite_xscale",
1172
+ "layer_sprite_y",
1173
+ "layer_sprite_yscale",
1174
+ "layer_tile_alpha",
1175
+ "layer_tile_blend",
1176
+ "layer_tile_change",
1177
+ "layer_tile_create",
1178
+ "layer_tile_destroy",
1179
+ "layer_tile_exists",
1180
+ "layer_tile_get_alpha",
1181
+ "layer_tile_get_blend",
1182
+ "layer_tile_get_region",
1183
+ "layer_tile_get_sprite",
1184
+ "layer_tile_get_visible",
1185
+ "layer_tile_get_x",
1186
+ "layer_tile_get_xscale",
1187
+ "layer_tile_get_y",
1188
+ "layer_tile_get_yscale",
1189
+ "layer_tile_region",
1190
+ "layer_tile_visible",
1191
+ "layer_tile_x",
1192
+ "layer_tile_xscale",
1193
+ "layer_tile_y",
1194
+ "layer_tile_yscale",
1195
+ "layer_tilemap_create",
1196
+ "layer_tilemap_destroy",
1197
+ "layer_tilemap_exists",
1198
+ "layer_tilemap_get_id",
1199
+ "layer_vspeed",
1200
+ "layer_x",
1201
+ "layer_y",
1202
+ "lengthdir_x",
1203
+ "lengthdir_y",
1204
+ "lerp",
1205
+ "lin_to_db",
1206
+ "ln",
1207
+ "load_csv",
1208
+ "log10",
1209
+ "log2",
1210
+ "logn",
1211
+ "make_color_hsv",
1212
+ "make_color_rgb",
1213
+ "make_colour_hsv",
1214
+ "make_colour_rgb",
1215
+ "math_get_epsilon",
1216
+ "math_set_epsilon",
1217
+ "matrix_build",
1218
+ "matrix_build_identity",
1219
+ "matrix_build_lookat",
1220
+ "matrix_build_projection_ortho",
1221
+ "matrix_build_projection_perspective",
1222
+ "matrix_build_projection_perspective_fov",
1223
+ "matrix_get",
1224
+ "matrix_multiply",
1225
+ "matrix_set",
1226
+ "matrix_stack_clear",
1227
+ "matrix_stack_is_empty",
1228
+ "matrix_stack_pop",
1229
+ "matrix_stack_push",
1230
+ "matrix_stack_set",
1231
+ "matrix_stack_top",
1232
+ "matrix_transform_vertex",
1233
+ "max",
1234
+ "md5_file",
1235
+ "md5_string_unicode",
1236
+ "md5_string_utf8",
1237
+ "mean",
1238
+ "median",
1239
+ "merge_color",
1240
+ "merge_colour",
1241
+ "method",
1242
+ "method_call",
1243
+ "method_get_index",
1244
+ "method_get_self",
1245
+ "min",
1246
+ "motion_add",
1247
+ "motion_set",
1248
+ "mouse_check_button",
1249
+ "mouse_check_button_pressed",
1250
+ "mouse_check_button_released",
1251
+ "mouse_clear",
1252
+ "mouse_wheel_down",
1253
+ "mouse_wheel_up",
1254
+ "move_and_collide",
1255
+ "move_bounce_all",
1256
+ "move_bounce_solid",
1257
+ "move_contact_all",
1258
+ "move_contact_solid",
1259
+ "move_outside_all",
1260
+ "move_outside_solid",
1261
+ "move_random",
1262
+ "move_snap",
1263
+ "move_towards_point",
1264
+ "move_wrap",
1265
+ "mp_grid_add_cell",
1266
+ "mp_grid_add_instances",
1267
+ "mp_grid_add_rectangle",
1268
+ "mp_grid_clear_all",
1269
+ "mp_grid_clear_cell",
1270
+ "mp_grid_clear_rectangle",
1271
+ "mp_grid_create",
1272
+ "mp_grid_destroy",
1273
+ "mp_grid_draw",
1274
+ "mp_grid_get_cell",
1275
+ "mp_grid_path",
1276
+ "mp_grid_to_ds_grid",
1277
+ "mp_linear_path",
1278
+ "mp_linear_path_object",
1279
+ "mp_linear_step",
1280
+ "mp_linear_step_object",
1281
+ "mp_potential_path",
1282
+ "mp_potential_path_object",
1283
+ "mp_potential_settings",
1284
+ "mp_potential_step",
1285
+ "mp_potential_step_object",
1286
+ "nameof",
1287
+ "network_connect",
1288
+ "network_connect_async",
1289
+ "network_connect_raw",
1290
+ "network_connect_raw_async",
1291
+ "network_create_server",
1292
+ "network_create_server_raw",
1293
+ "network_create_socket",
1294
+ "network_create_socket_ext",
1295
+ "network_destroy",
1296
+ "network_resolve",
1297
+ "network_send_broadcast",
1298
+ "network_send_packet",
1299
+ "network_send_raw",
1300
+ "network_send_udp",
1301
+ "network_send_udp_raw",
1302
+ "network_set_config",
1303
+ "network_set_timeout",
1304
+ "object_exists",
1305
+ "object_get_mask",
1306
+ "object_get_name",
1307
+ "object_get_parent",
1308
+ "object_get_persistent",
1309
+ "object_get_physics",
1310
+ "object_get_solid",
1311
+ "object_get_sprite",
1312
+ "object_get_visible",
1313
+ "object_is_ancestor",
1314
+ "object_set_mask",
1315
+ "object_set_persistent",
1316
+ "object_set_solid",
1317
+ "object_set_sprite",
1318
+ "object_set_visible",
1319
+ "ord",
1320
+ "os_check_permission",
1321
+ "os_get_config",
1322
+ "os_get_info",
1323
+ "os_get_language",
1324
+ "os_get_region",
1325
+ "os_is_network_connected",
1326
+ "os_is_paused",
1327
+ "os_lock_orientation",
1328
+ "os_powersave_enable",
1329
+ "os_request_permission",
1330
+ "os_set_orientation_lock",
1331
+ "parameter_count",
1332
+ "parameter_string",
1333
+ "part_emitter_burst",
1334
+ "part_emitter_clear",
1335
+ "part_emitter_create",
1336
+ "part_emitter_delay",
1337
+ "part_emitter_destroy",
1338
+ "part_emitter_destroy_all",
1339
+ "part_emitter_enable",
1340
+ "part_emitter_exists",
1341
+ "part_emitter_interval",
1342
+ "part_emitter_region",
1343
+ "part_emitter_relative",
1344
+ "part_emitter_stream",
1345
+ "part_particles_burst",
1346
+ "part_particles_clear",
1347
+ "part_particles_count",
1348
+ "part_particles_create",
1349
+ "part_particles_create_color",
1350
+ "part_particles_create_colour",
1351
+ "part_system_angle",
1352
+ "part_system_automatic_draw",
1353
+ "part_system_automatic_update",
1354
+ "part_system_clear",
1355
+ "part_system_color",
1356
+ "part_system_colour",
1357
+ "part_system_create",
1358
+ "part_system_create_layer",
1359
+ "part_system_depth",
1360
+ "part_system_destroy",
1361
+ "part_system_draw_order",
1362
+ "part_system_drawit",
1363
+ "part_system_exists",
1364
+ "part_system_get_info",
1365
+ "part_system_get_layer",
1366
+ "part_system_global_space",
1367
+ "part_system_layer",
1368
+ "part_system_position",
1369
+ "part_system_update",
1370
+ "part_type_alpha1",
1371
+ "part_type_alpha2",
1372
+ "part_type_alpha3",
1373
+ "part_type_blend",
1374
+ "part_type_clear",
1375
+ "part_type_color1",
1376
+ "part_type_color2",
1377
+ "part_type_color3",
1378
+ "part_type_color_hsv",
1379
+ "part_type_color_mix",
1380
+ "part_type_color_rgb",
1381
+ "part_type_colour1",
1382
+ "part_type_colour2",
1383
+ "part_type_colour3",
1384
+ "part_type_colour_hsv",
1385
+ "part_type_colour_mix",
1386
+ "part_type_colour_rgb",
1387
+ "part_type_create",
1388
+ "part_type_death",
1389
+ "part_type_destroy",
1390
+ "part_type_direction",
1391
+ "part_type_exists",
1392
+ "part_type_gravity",
1393
+ "part_type_life",
1394
+ "part_type_orientation",
1395
+ "part_type_scale",
1396
+ "part_type_shape",
1397
+ "part_type_size",
1398
+ "part_type_size_x",
1399
+ "part_type_size_y",
1400
+ "part_type_speed",
1401
+ "part_type_sprite",
1402
+ "part_type_step",
1403
+ "part_type_subimage",
1404
+ "particle_exists",
1405
+ "particle_get_info",
1406
+ "path_add",
1407
+ "path_add_point",
1408
+ "path_append",
1409
+ "path_assign",
1410
+ "path_change_point",
1411
+ "path_clear_points",
1412
+ "path_delete",
1413
+ "path_delete_point",
1414
+ "path_duplicate",
1415
+ "path_end",
1416
+ "path_exists",
1417
+ "path_flip",
1418
+ "path_get_closed",
1419
+ "path_get_kind",
1420
+ "path_get_length",
1421
+ "path_get_name",
1422
+ "path_get_number",
1423
+ "path_get_point_speed",
1424
+ "path_get_point_x",
1425
+ "path_get_point_y",
1426
+ "path_get_precision",
1427
+ "path_get_speed",
1428
+ "path_get_x",
1429
+ "path_get_y",
1430
+ "path_insert_point",
1431
+ "path_mirror",
1432
+ "path_rescale",
1433
+ "path_reverse",
1434
+ "path_rotate",
1435
+ "path_set_closed",
1436
+ "path_set_kind",
1437
+ "path_set_precision",
1438
+ "path_shift",
1439
+ "path_start",
1440
+ "physics_apply_angular_impulse",
1441
+ "physics_apply_force",
1442
+ "physics_apply_impulse",
1443
+ "physics_apply_local_force",
1444
+ "physics_apply_local_impulse",
1445
+ "physics_apply_torque",
1446
+ "physics_draw_debug",
1447
+ "physics_fixture_add_point",
1448
+ "physics_fixture_bind",
1449
+ "physics_fixture_bind_ext",
1450
+ "physics_fixture_create",
1451
+ "physics_fixture_delete",
1452
+ "physics_fixture_set_angular_damping",
1453
+ "physics_fixture_set_awake",
1454
+ "physics_fixture_set_box_shape",
1455
+ "physics_fixture_set_chain_shape",
1456
+ "physics_fixture_set_circle_shape",
1457
+ "physics_fixture_set_collision_group",
1458
+ "physics_fixture_set_density",
1459
+ "physics_fixture_set_edge_shape",
1460
+ "physics_fixture_set_friction",
1461
+ "physics_fixture_set_kinematic",
1462
+ "physics_fixture_set_linear_damping",
1463
+ "physics_fixture_set_polygon_shape",
1464
+ "physics_fixture_set_restitution",
1465
+ "physics_fixture_set_sensor",
1466
+ "physics_get_density",
1467
+ "physics_get_friction",
1468
+ "physics_get_restitution",
1469
+ "physics_joint_delete",
1470
+ "physics_joint_distance_create",
1471
+ "physics_joint_enable_motor",
1472
+ "physics_joint_friction_create",
1473
+ "physics_joint_gear_create",
1474
+ "physics_joint_get_value",
1475
+ "physics_joint_prismatic_create",
1476
+ "physics_joint_pulley_create",
1477
+ "physics_joint_revolute_create",
1478
+ "physics_joint_rope_create",
1479
+ "physics_joint_set_value",
1480
+ "physics_joint_weld_create",
1481
+ "physics_joint_wheel_create",
1482
+ "physics_mass_properties",
1483
+ "physics_particle_count",
1484
+ "physics_particle_create",
1485
+ "physics_particle_delete",
1486
+ "physics_particle_delete_region_box",
1487
+ "physics_particle_delete_region_circle",
1488
+ "physics_particle_delete_region_poly",
1489
+ "physics_particle_draw",
1490
+ "physics_particle_draw_ext",
1491
+ "physics_particle_get_damping",
1492
+ "physics_particle_get_data",
1493
+ "physics_particle_get_data_particle",
1494
+ "physics_particle_get_density",
1495
+ "physics_particle_get_gravity_scale",
1496
+ "physics_particle_get_group_flags",
1497
+ "physics_particle_get_max_count",
1498
+ "physics_particle_get_radius",
1499
+ "physics_particle_group_add_point",
1500
+ "physics_particle_group_begin",
1501
+ "physics_particle_group_box",
1502
+ "physics_particle_group_circle",
1503
+ "physics_particle_group_count",
1504
+ "physics_particle_group_delete",
1505
+ "physics_particle_group_end",
1506
+ "physics_particle_group_get_ang_vel",
1507
+ "physics_particle_group_get_angle",
1508
+ "physics_particle_group_get_centre_x",
1509
+ "physics_particle_group_get_centre_y",
1510
+ "physics_particle_group_get_data",
1511
+ "physics_particle_group_get_inertia",
1512
+ "physics_particle_group_get_mass",
1513
+ "physics_particle_group_get_vel_x",
1514
+ "physics_particle_group_get_vel_y",
1515
+ "physics_particle_group_get_x",
1516
+ "physics_particle_group_get_y",
1517
+ "physics_particle_group_join",
1518
+ "physics_particle_group_polygon",
1519
+ "physics_particle_set_category_flags",
1520
+ "physics_particle_set_damping",
1521
+ "physics_particle_set_density",
1522
+ "physics_particle_set_flags",
1523
+ "physics_particle_set_gravity_scale",
1524
+ "physics_particle_set_group_flags",
1525
+ "physics_particle_set_max_count",
1526
+ "physics_particle_set_radius",
1527
+ "physics_pause_enable",
1528
+ "physics_remove_fixture",
1529
+ "physics_set_density",
1530
+ "physics_set_friction",
1531
+ "physics_set_restitution",
1532
+ "physics_test_overlap",
1533
+ "physics_world_create",
1534
+ "physics_world_draw_debug",
1535
+ "physics_world_gravity",
1536
+ "physics_world_update_iterations",
1537
+ "physics_world_update_speed",
1538
+ "place_empty",
1539
+ "place_free",
1540
+ "place_meeting",
1541
+ "place_snapped",
1542
+ "point_direction",
1543
+ "point_distance",
1544
+ "point_distance_3d",
1545
+ "point_in_circle",
1546
+ "point_in_rectangle",
1547
+ "point_in_triangle",
1548
+ "position_change",
1549
+ "position_destroy",
1550
+ "position_empty",
1551
+ "position_meeting",
1552
+ "power",
1553
+ "ptr",
1554
+ "radtodeg",
1555
+ "random",
1556
+ "random_get_seed",
1557
+ "random_range",
1558
+ "random_set_seed",
1559
+ "randomise",
1560
+ "randomize",
1561
+ "real",
1562
+ "rectangle_in_circle",
1563
+ "rectangle_in_rectangle",
1564
+ "rectangle_in_triangle",
1565
+ "ref_create",
1566
+ "rollback_chat",
1567
+ "rollback_create_game",
1568
+ "rollback_define_extra_network_latency",
1569
+ "rollback_define_input",
1570
+ "rollback_define_input_frame_delay",
1571
+ "rollback_define_mock_input",
1572
+ "rollback_define_player",
1573
+ "rollback_display_events",
1574
+ "rollback_get_info",
1575
+ "rollback_get_input",
1576
+ "rollback_get_player_prefs",
1577
+ "rollback_join_game",
1578
+ "rollback_leave_game",
1579
+ "rollback_set_player_prefs",
1580
+ "rollback_start_game",
1581
+ "rollback_sync_on_frame",
1582
+ "rollback_use_late_join",
1583
+ "rollback_use_manual_start",
1584
+ "rollback_use_player_prefs",
1585
+ "rollback_use_random_input",
1586
+ "room_add",
1587
+ "room_assign",
1588
+ "room_duplicate",
1589
+ "room_exists",
1590
+ "room_get_camera",
1591
+ "room_get_info",
1592
+ "room_get_name",
1593
+ "room_get_viewport",
1594
+ "room_goto",
1595
+ "room_goto_next",
1596
+ "room_goto_previous",
1597
+ "room_instance_add",
1598
+ "room_instance_clear",
1599
+ "room_next",
1600
+ "room_previous",
1601
+ "room_restart",
1602
+ "room_set_camera",
1603
+ "room_set_height",
1604
+ "room_set_persistent",
1605
+ "room_set_view_enabled",
1606
+ "room_set_viewport",
1607
+ "room_set_width",
1608
+ "round",
1609
+ "scheduler_resolution_get",
1610
+ "scheduler_resolution_set",
1611
+ "screen_save",
1612
+ "screen_save_part",
1613
+ "script_execute",
1614
+ "script_execute_ext",
1615
+ "script_exists",
1616
+ "script_get_name",
1617
+ "sequence_create",
1618
+ "sequence_destroy",
1619
+ "sequence_exists",
1620
+ "sequence_get",
1621
+ "sequence_get_objects",
1622
+ "sequence_instance_override_object",
1623
+ "sequence_keyframe_new",
1624
+ "sequence_keyframedata_new",
1625
+ "sequence_track_new",
1626
+ "sha1_file",
1627
+ "sha1_string_unicode",
1628
+ "sha1_string_utf8",
1629
+ "shader_current",
1630
+ "shader_enable_corner_id",
1631
+ "shader_get_name",
1632
+ "shader_get_sampler_index",
1633
+ "shader_get_uniform",
1634
+ "shader_is_compiled",
1635
+ "shader_reset",
1636
+ "shader_set",
1637
+ "shader_set_uniform_f",
1638
+ "shader_set_uniform_f_array",
1639
+ "shader_set_uniform_f_buffer",
1640
+ "shader_set_uniform_i",
1641
+ "shader_set_uniform_i_array",
1642
+ "shader_set_uniform_matrix",
1643
+ "shader_set_uniform_matrix_array",
1644
+ "shaders_are_supported",
1645
+ "shop_leave_rating",
1646
+ "show_debug_message",
1647
+ "show_debug_message_ext",
1648
+ "show_debug_overlay",
1649
+ "show_error",
1650
+ "show_message",
1651
+ "show_message_async",
1652
+ "show_question",
1653
+ "show_question_async",
1654
+ "sign",
1655
+ "sin",
1656
+ "skeleton_animation_clear",
1657
+ "skeleton_animation_get",
1658
+ "skeleton_animation_get_duration",
1659
+ "skeleton_animation_get_event_frames",
1660
+ "skeleton_animation_get_ext",
1661
+ "skeleton_animation_get_frame",
1662
+ "skeleton_animation_get_frames",
1663
+ "skeleton_animation_get_position",
1664
+ "skeleton_animation_is_finished",
1665
+ "skeleton_animation_is_looping",
1666
+ "skeleton_animation_list",
1667
+ "skeleton_animation_mix",
1668
+ "skeleton_animation_set",
1669
+ "skeleton_animation_set_ext",
1670
+ "skeleton_animation_set_frame",
1671
+ "skeleton_animation_set_position",
1672
+ "skeleton_attachment_create",
1673
+ "skeleton_attachment_create_color",
1674
+ "skeleton_attachment_create_colour",
1675
+ "skeleton_attachment_destroy",
1676
+ "skeleton_attachment_exists",
1677
+ "skeleton_attachment_get",
1678
+ "skeleton_attachment_replace",
1679
+ "skeleton_attachment_replace_color",
1680
+ "skeleton_attachment_replace_colour",
1681
+ "skeleton_attachment_set",
1682
+ "skeleton_bone_data_get",
1683
+ "skeleton_bone_data_set",
1684
+ "skeleton_bone_list",
1685
+ "skeleton_bone_state_get",
1686
+ "skeleton_bone_state_set",
1687
+ "skeleton_collision_draw_set",
1688
+ "skeleton_find_slot",
1689
+ "skeleton_get_bounds",
1690
+ "skeleton_get_minmax",
1691
+ "skeleton_get_num_bounds",
1692
+ "skeleton_skin_create",
1693
+ "skeleton_skin_get",
1694
+ "skeleton_skin_list",
1695
+ "skeleton_skin_set",
1696
+ "skeleton_slot_alpha_get",
1697
+ "skeleton_slot_color_get",
1698
+ "skeleton_slot_color_set",
1699
+ "skeleton_slot_colour_get",
1700
+ "skeleton_slot_colour_set",
1701
+ "skeleton_slot_data",
1702
+ "skeleton_slot_data_instance",
1703
+ "skeleton_slot_list",
1704
+ "sprite_add",
1705
+ "sprite_add_ext",
1706
+ "sprite_add_from_surface",
1707
+ "sprite_assign",
1708
+ "sprite_collision_mask",
1709
+ "sprite_create_from_surface",
1710
+ "sprite_delete",
1711
+ "sprite_duplicate",
1712
+ "sprite_exists",
1713
+ "sprite_flush",
1714
+ "sprite_flush_multi",
1715
+ "sprite_get_bbox_bottom",
1716
+ "sprite_get_bbox_left",
1717
+ "sprite_get_bbox_mode",
1718
+ "sprite_get_bbox_right",
1719
+ "sprite_get_bbox_top",
1720
+ "sprite_get_height",
1721
+ "sprite_get_info",
1722
+ "sprite_get_name",
1723
+ "sprite_get_nineslice",
1724
+ "sprite_get_number",
1725
+ "sprite_get_speed",
1726
+ "sprite_get_speed_type",
1727
+ "sprite_get_texture",
1728
+ "sprite_get_tpe",
1729
+ "sprite_get_uvs",
1730
+ "sprite_get_width",
1731
+ "sprite_get_xoffset",
1732
+ "sprite_get_yoffset",
1733
+ "sprite_merge",
1734
+ "sprite_nineslice_create",
1735
+ "sprite_prefetch",
1736
+ "sprite_prefetch_multi",
1737
+ "sprite_replace",
1738
+ "sprite_save",
1739
+ "sprite_save_strip",
1740
+ "sprite_set_alpha_from_sprite",
1741
+ "sprite_set_bbox",
1742
+ "sprite_set_bbox_mode",
1743
+ "sprite_set_cache_size",
1744
+ "sprite_set_cache_size_ext",
1745
+ "sprite_set_nineslice",
1746
+ "sprite_set_offset",
1747
+ "sprite_set_speed",
1748
+ "sqr",
1749
+ "sqrt",
1750
+ "static_get",
1751
+ "static_set",
1752
+ "string",
1753
+ "string_byte_at",
1754
+ "string_byte_length",
1755
+ "string_char_at",
1756
+ "string_concat",
1757
+ "string_concat_ext",
1758
+ "string_copy",
1759
+ "string_count",
1760
+ "string_delete",
1761
+ "string_digits",
1762
+ "string_ends_with",
1763
+ "string_ext",
1764
+ "string_foreach",
1765
+ "string_format",
1766
+ "string_hash_to_newline",
1767
+ "string_height",
1768
+ "string_height_ext",
1769
+ "string_insert",
1770
+ "string_join",
1771
+ "string_join_ext",
1772
+ "string_last_pos",
1773
+ "string_last_pos_ext",
1774
+ "string_length",
1775
+ "string_letters",
1776
+ "string_lettersdigits",
1777
+ "string_lower",
1778
+ "string_ord_at",
1779
+ "string_pos",
1780
+ "string_pos_ext",
1781
+ "string_repeat",
1782
+ "string_replace",
1783
+ "string_replace_all",
1784
+ "string_set_byte_at",
1785
+ "string_split",
1786
+ "string_split_ext",
1787
+ "string_starts_with",
1788
+ "string_trim",
1789
+ "string_trim_end",
1790
+ "string_trim_start",
1791
+ "string_upper",
1792
+ "string_width",
1793
+ "string_width_ext",
1794
+ "struct_exists",
1795
+ "struct_foreach",
1796
+ "struct_get",
1797
+ "struct_get_from_hash",
1798
+ "struct_get_names",
1799
+ "struct_names_count",
1800
+ "struct_remove",
1801
+ "struct_set",
1802
+ "struct_set_from_hash",
1803
+ "surface_copy",
1804
+ "surface_copy_part",
1805
+ "surface_create",
1806
+ "surface_create_ext",
1807
+ "surface_depth_disable",
1808
+ "surface_exists",
1809
+ "surface_format_is_supported",
1810
+ "surface_free",
1811
+ "surface_get_depth_disable",
1812
+ "surface_get_format",
1813
+ "surface_get_height",
1814
+ "surface_get_target",
1815
+ "surface_get_target_ext",
1816
+ "surface_get_texture",
1817
+ "surface_get_width",
1818
+ "surface_getpixel",
1819
+ "surface_getpixel_ext",
1820
+ "surface_reset_target",
1821
+ "surface_resize",
1822
+ "surface_save",
1823
+ "surface_save_part",
1824
+ "surface_set_target",
1825
+ "surface_set_target_ext",
1826
+ "tag_get_asset_ids",
1827
+ "tag_get_assets",
1828
+ "tan",
1829
+ "texture_debug_messages",
1830
+ "texture_flush",
1831
+ "texture_get_height",
1832
+ "texture_get_texel_height",
1833
+ "texture_get_texel_width",
1834
+ "texture_get_uvs",
1835
+ "texture_get_width",
1836
+ "texture_global_scale",
1837
+ "texture_is_ready",
1838
+ "texture_prefetch",
1839
+ "texture_set_stage",
1840
+ "texturegroup_get_fonts",
1841
+ "texturegroup_get_names",
1842
+ "texturegroup_get_sprites",
1843
+ "texturegroup_get_status",
1844
+ "texturegroup_get_textures",
1845
+ "texturegroup_get_tilesets",
1846
+ "texturegroup_load",
1847
+ "texturegroup_set_mode",
1848
+ "texturegroup_unload",
1849
+ "tile_get_empty",
1850
+ "tile_get_flip",
1851
+ "tile_get_index",
1852
+ "tile_get_mirror",
1853
+ "tile_get_rotate",
1854
+ "tile_set_empty",
1855
+ "tile_set_flip",
1856
+ "tile_set_index",
1857
+ "tile_set_mirror",
1858
+ "tile_set_rotate",
1859
+ "tilemap_clear",
1860
+ "tilemap_get",
1861
+ "tilemap_get_at_pixel",
1862
+ "tilemap_get_cell_x_at_pixel",
1863
+ "tilemap_get_cell_y_at_pixel",
1864
+ "tilemap_get_frame",
1865
+ "tilemap_get_global_mask",
1866
+ "tilemap_get_height",
1867
+ "tilemap_get_mask",
1868
+ "tilemap_get_tile_height",
1869
+ "tilemap_get_tile_width",
1870
+ "tilemap_get_tileset",
1871
+ "tilemap_get_width",
1872
+ "tilemap_get_x",
1873
+ "tilemap_get_y",
1874
+ "tilemap_set",
1875
+ "tilemap_set_at_pixel",
1876
+ "tilemap_set_global_mask",
1877
+ "tilemap_set_height",
1878
+ "tilemap_set_mask",
1879
+ "tilemap_set_width",
1880
+ "tilemap_tileset",
1881
+ "tilemap_x",
1882
+ "tilemap_y",
1883
+ "tileset_get_info",
1884
+ "tileset_get_name",
1885
+ "tileset_get_texture",
1886
+ "tileset_get_uvs",
1887
+ "time_bpm_to_seconds",
1888
+ "time_seconds_to_bpm",
1889
+ "time_source_create",
1890
+ "time_source_destroy",
1891
+ "time_source_exists",
1892
+ "time_source_get_children",
1893
+ "time_source_get_parent",
1894
+ "time_source_get_period",
1895
+ "time_source_get_reps_completed",
1896
+ "time_source_get_reps_remaining",
1897
+ "time_source_get_state",
1898
+ "time_source_get_time_remaining",
1899
+ "time_source_get_units",
1900
+ "time_source_pause",
1901
+ "time_source_reconfigure",
1902
+ "time_source_reset",
1903
+ "time_source_resume",
1904
+ "time_source_start",
1905
+ "time_source_stop",
1906
+ "timeline_add",
1907
+ "timeline_clear",
1908
+ "timeline_delete",
1909
+ "timeline_exists",
1910
+ "timeline_get_name",
1911
+ "timeline_max_moment",
1912
+ "timeline_moment_add_script",
1913
+ "timeline_moment_clear",
1914
+ "timeline_size",
1915
+ "typeof",
1916
+ "url_get_domain",
1917
+ "url_open",
1918
+ "url_open_ext",
1919
+ "url_open_full",
1920
+ "uwp_device_touchscreen_available",
1921
+ "uwp_livetile_badge_clear",
1922
+ "uwp_livetile_badge_notification",
1923
+ "uwp_livetile_notification_begin",
1924
+ "uwp_livetile_notification_end",
1925
+ "uwp_livetile_notification_expiry",
1926
+ "uwp_livetile_notification_image_add",
1927
+ "uwp_livetile_notification_secondary_begin",
1928
+ "uwp_livetile_notification_tag",
1929
+ "uwp_livetile_notification_template_add",
1930
+ "uwp_livetile_notification_text_add",
1931
+ "uwp_livetile_queue_enable",
1932
+ "uwp_livetile_tile_clear",
1933
+ "uwp_secondarytile_badge_clear",
1934
+ "uwp_secondarytile_badge_notification",
1935
+ "uwp_secondarytile_delete",
1936
+ "uwp_secondarytile_pin",
1937
+ "uwp_secondarytile_tile_clear",
1938
+ "variable_clone",
1939
+ "variable_get_hash",
1940
+ "variable_global_exists",
1941
+ "variable_global_get",
1942
+ "variable_global_set",
1943
+ "variable_instance_exists",
1944
+ "variable_instance_get",
1945
+ "variable_instance_get_names",
1946
+ "variable_instance_names_count",
1947
+ "variable_instance_set",
1948
+ "variable_struct_exists",
1949
+ "variable_struct_get",
1950
+ "variable_struct_get_names",
1951
+ "variable_struct_names_count",
1952
+ "variable_struct_remove",
1953
+ "variable_struct_set",
1954
+ "vertex_argb",
1955
+ "vertex_begin",
1956
+ "vertex_color",
1957
+ "vertex_colour",
1958
+ "vertex_create_buffer",
1959
+ "vertex_create_buffer_ext",
1960
+ "vertex_create_buffer_from_buffer",
1961
+ "vertex_create_buffer_from_buffer_ext",
1962
+ "vertex_delete_buffer",
1963
+ "vertex_end",
1964
+ "vertex_float1",
1965
+ "vertex_float2",
1966
+ "vertex_float3",
1967
+ "vertex_float4",
1968
+ "vertex_format_add_color",
1969
+ "vertex_format_add_colour",
1970
+ "vertex_format_add_custom",
1971
+ "vertex_format_add_normal",
1972
+ "vertex_format_add_position",
1973
+ "vertex_format_add_position_3d",
1974
+ "vertex_format_add_texcoord",
1975
+ "vertex_format_begin",
1976
+ "vertex_format_delete",
1977
+ "vertex_format_end",
1978
+ "vertex_format_get_info",
1979
+ "vertex_freeze",
1980
+ "vertex_get_buffer_size",
1981
+ "vertex_get_number",
1982
+ "vertex_normal",
1983
+ "vertex_position",
1984
+ "vertex_position_3d",
1985
+ "vertex_submit",
1986
+ "vertex_submit_ext",
1987
+ "vertex_texcoord",
1988
+ "vertex_ubyte4",
1989
+ "vertex_update_buffer_from_buffer",
1990
+ "vertex_update_buffer_from_vertex",
1991
+ "video_close",
1992
+ "video_draw",
1993
+ "video_enable_loop",
1994
+ "video_get_duration",
1995
+ "video_get_format",
1996
+ "video_get_position",
1997
+ "video_get_status",
1998
+ "video_get_volume",
1999
+ "video_is_looping",
2000
+ "video_open",
2001
+ "video_pause",
2002
+ "video_resume",
2003
+ "video_seek_to",
2004
+ "video_set_volume",
2005
+ "view_get_camera",
2006
+ "view_get_hport",
2007
+ "view_get_surface_id",
2008
+ "view_get_visible",
2009
+ "view_get_wport",
2010
+ "view_get_xport",
2011
+ "view_get_yport",
2012
+ "view_set_camera",
2013
+ "view_set_hport",
2014
+ "view_set_surface_id",
2015
+ "view_set_visible",
2016
+ "view_set_wport",
2017
+ "view_set_xport",
2018
+ "view_set_yport",
2019
+ "virtual_key_add",
2020
+ "virtual_key_delete",
2021
+ "virtual_key_hide",
2022
+ "virtual_key_show",
2023
+ "wallpaper_set_config",
2024
+ "wallpaper_set_subscriptions",
2025
+ "weak_ref_alive",
2026
+ "weak_ref_any_alive",
2027
+ "weak_ref_create",
2028
+ "window_center",
2029
+ "window_device",
2030
+ "window_enable_borderless_fullscreen",
2031
+ "window_get_borderless_fullscreen",
2032
+ "window_get_caption",
2033
+ "window_get_color",
2034
+ "window_get_colour",
2035
+ "window_get_cursor",
2036
+ "window_get_fullscreen",
2037
+ "window_get_height",
2038
+ "window_get_showborder",
2039
+ "window_get_visible_rects",
2040
+ "window_get_width",
2041
+ "window_get_x",
2042
+ "window_get_y",
2043
+ "window_handle",
2044
+ "window_has_focus",
2045
+ "window_mouse_get_delta_x",
2046
+ "window_mouse_get_delta_y",
2047
+ "window_mouse_get_locked",
2048
+ "window_mouse_get_x",
2049
+ "window_mouse_get_y",
2050
+ "window_mouse_set",
2051
+ "window_mouse_set_locked",
2052
+ "window_set_caption",
2053
+ "window_set_color",
2054
+ "window_set_colour",
2055
+ "window_set_cursor",
2056
+ "window_set_fullscreen",
2057
+ "window_set_max_height",
2058
+ "window_set_max_width",
2059
+ "window_set_min_height",
2060
+ "window_set_min_width",
2061
+ "window_set_position",
2062
+ "window_set_rectangle",
2063
+ "window_set_showborder",
2064
+ "window_set_size",
2065
+ "window_view_mouse_get_x",
2066
+ "window_view_mouse_get_y",
2067
+ "window_views_mouse_get_x",
2068
+ "window_views_mouse_get_y",
2069
+ "winphone_tile_background_color",
2070
+ "winphone_tile_background_colour",
2071
+ "zip_add_file",
2072
+ "zip_create",
2073
+ "zip_save",
2074
+ "zip_unzip",
2075
+ "zip_unzip_async"
2076
+ ];
2077
+ const SYMBOLS = [
2078
+ "AudioEffect",
2079
+ "AudioEffectType",
2080
+ "AudioLFOType",
2081
+ "GM_build_date",
2082
+ "GM_build_type",
2083
+ "GM_is_sandboxed",
2084
+ "GM_project_filename",
2085
+ "GM_runtime_version",
2086
+ "GM_version",
2087
+ "NaN",
2088
+ "_GMFILE_",
2089
+ "_GMFUNCTION_",
2090
+ "_GMLINE_",
2091
+ "alignmentH",
2092
+ "alignmentV",
2093
+ "all",
2094
+ "animcurvetype_bezier",
2095
+ "animcurvetype_catmullrom",
2096
+ "animcurvetype_linear",
2097
+ "asset_animationcurve",
2098
+ "asset_font",
2099
+ "asset_object",
2100
+ "asset_path",
2101
+ "asset_room",
2102
+ "asset_script",
2103
+ "asset_sequence",
2104
+ "asset_shader",
2105
+ "asset_sound",
2106
+ "asset_sprite",
2107
+ "asset_tiles",
2108
+ "asset_timeline",
2109
+ "asset_unknown",
2110
+ "audio_3D",
2111
+ "audio_bus_main",
2112
+ "audio_falloff_exponent_distance",
2113
+ "audio_falloff_exponent_distance_clamped",
2114
+ "audio_falloff_exponent_distance_scaled",
2115
+ "audio_falloff_inverse_distance",
2116
+ "audio_falloff_inverse_distance_clamped",
2117
+ "audio_falloff_inverse_distance_scaled",
2118
+ "audio_falloff_linear_distance",
2119
+ "audio_falloff_linear_distance_clamped",
2120
+ "audio_falloff_none",
2121
+ "audio_mono",
2122
+ "audio_stereo",
2123
+ "bboxkind_diamond",
2124
+ "bboxkind_ellipse",
2125
+ "bboxkind_precise",
2126
+ "bboxkind_rectangular",
2127
+ "bboxmode_automatic",
2128
+ "bboxmode_fullimage",
2129
+ "bboxmode_manual",
2130
+ "bm_add",
2131
+ "bm_dest_alpha",
2132
+ "bm_dest_color",
2133
+ "bm_dest_colour",
2134
+ "bm_inv_dest_alpha",
2135
+ "bm_inv_dest_color",
2136
+ "bm_inv_dest_colour",
2137
+ "bm_inv_src_alpha",
2138
+ "bm_inv_src_color",
2139
+ "bm_inv_src_colour",
2140
+ "bm_max",
2141
+ "bm_normal",
2142
+ "bm_one",
2143
+ "bm_src_alpha",
2144
+ "bm_src_alpha_sat",
2145
+ "bm_src_color",
2146
+ "bm_src_colour",
2147
+ "bm_subtract",
2148
+ "bm_zero",
2149
+ "browser_chrome",
2150
+ "browser_edge",
2151
+ "browser_firefox",
2152
+ "browser_ie",
2153
+ "browser_ie_mobile",
2154
+ "browser_not_a_browser",
2155
+ "browser_opera",
2156
+ "browser_safari",
2157
+ "browser_safari_mobile",
2158
+ "browser_tizen",
2159
+ "browser_unknown",
2160
+ "browser_windows_store",
2161
+ "buffer_bool",
2162
+ "buffer_f16",
2163
+ "buffer_f32",
2164
+ "buffer_f64",
2165
+ "buffer_fast",
2166
+ "buffer_fixed",
2167
+ "buffer_grow",
2168
+ "buffer_s16",
2169
+ "buffer_s32",
2170
+ "buffer_s8",
2171
+ "buffer_seek_end",
2172
+ "buffer_seek_relative",
2173
+ "buffer_seek_start",
2174
+ "buffer_string",
2175
+ "buffer_text",
2176
+ "buffer_u16",
2177
+ "buffer_u32",
2178
+ "buffer_u64",
2179
+ "buffer_u8",
2180
+ "buffer_vbuffer",
2181
+ "buffer_wrap",
2182
+ "c_aqua",
2183
+ "c_black",
2184
+ "c_blue",
2185
+ "c_dkgray",
2186
+ "c_dkgrey",
2187
+ "c_fuchsia",
2188
+ "c_gray",
2189
+ "c_green",
2190
+ "c_grey",
2191
+ "c_lime",
2192
+ "c_ltgray",
2193
+ "c_ltgrey",
2194
+ "c_maroon",
2195
+ "c_navy",
2196
+ "c_olive",
2197
+ "c_orange",
2198
+ "c_purple",
2199
+ "c_red",
2200
+ "c_silver",
2201
+ "c_teal",
2202
+ "c_white",
2203
+ "c_yellow",
2204
+ "cache_directory",
2205
+ "characterSpacing",
2206
+ "cmpfunc_always",
2207
+ "cmpfunc_equal",
2208
+ "cmpfunc_greater",
2209
+ "cmpfunc_greaterequal",
2210
+ "cmpfunc_less",
2211
+ "cmpfunc_lessequal",
2212
+ "cmpfunc_never",
2213
+ "cmpfunc_notequal",
2214
+ "coreColor",
2215
+ "coreColour",
2216
+ "cr_appstart",
2217
+ "cr_arrow",
2218
+ "cr_beam",
2219
+ "cr_cross",
2220
+ "cr_default",
2221
+ "cr_drag",
2222
+ "cr_handpoint",
2223
+ "cr_hourglass",
2224
+ "cr_none",
2225
+ "cr_size_all",
2226
+ "cr_size_nesw",
2227
+ "cr_size_ns",
2228
+ "cr_size_nwse",
2229
+ "cr_size_we",
2230
+ "cr_uparrow",
2231
+ "cull_clockwise",
2232
+ "cull_counterclockwise",
2233
+ "cull_noculling",
2234
+ "device_emulator",
2235
+ "device_ios_ipad",
2236
+ "device_ios_ipad_retina",
2237
+ "device_ios_iphone",
2238
+ "device_ios_iphone5",
2239
+ "device_ios_iphone6",
2240
+ "device_ios_iphone6plus",
2241
+ "device_ios_iphone_retina",
2242
+ "device_ios_unknown",
2243
+ "device_tablet",
2244
+ "display_landscape",
2245
+ "display_landscape_flipped",
2246
+ "display_portrait",
2247
+ "display_portrait_flipped",
2248
+ "dll_cdecl",
2249
+ "dll_stdcall",
2250
+ "dropShadowEnabled",
2251
+ "dropShadowEnabled",
2252
+ "ds_type_grid",
2253
+ "ds_type_list",
2254
+ "ds_type_map",
2255
+ "ds_type_priority",
2256
+ "ds_type_queue",
2257
+ "ds_type_stack",
2258
+ "ef_cloud",
2259
+ "ef_ellipse",
2260
+ "ef_explosion",
2261
+ "ef_firework",
2262
+ "ef_flare",
2263
+ "ef_rain",
2264
+ "ef_ring",
2265
+ "ef_smoke",
2266
+ "ef_smokeup",
2267
+ "ef_snow",
2268
+ "ef_spark",
2269
+ "ef_star",
2270
+ "effectsEnabled",
2271
+ "effectsEnabled",
2272
+ "ev_alarm",
2273
+ "ev_animation_end",
2274
+ "ev_animation_event",
2275
+ "ev_animation_update",
2276
+ "ev_async_audio_playback",
2277
+ "ev_async_audio_playback_ended",
2278
+ "ev_async_audio_recording",
2279
+ "ev_async_dialog",
2280
+ "ev_async_push_notification",
2281
+ "ev_async_save_load",
2282
+ "ev_async_save_load",
2283
+ "ev_async_social",
2284
+ "ev_async_system_event",
2285
+ "ev_async_web",
2286
+ "ev_async_web_cloud",
2287
+ "ev_async_web_iap",
2288
+ "ev_async_web_image_load",
2289
+ "ev_async_web_networking",
2290
+ "ev_async_web_steam",
2291
+ "ev_audio_playback",
2292
+ "ev_audio_playback_ended",
2293
+ "ev_audio_recording",
2294
+ "ev_boundary",
2295
+ "ev_boundary_view0",
2296
+ "ev_boundary_view1",
2297
+ "ev_boundary_view2",
2298
+ "ev_boundary_view3",
2299
+ "ev_boundary_view4",
2300
+ "ev_boundary_view5",
2301
+ "ev_boundary_view6",
2302
+ "ev_boundary_view7",
2303
+ "ev_broadcast_message",
2304
+ "ev_cleanup",
2305
+ "ev_collision",
2306
+ "ev_create",
2307
+ "ev_destroy",
2308
+ "ev_dialog_async",
2309
+ "ev_draw",
2310
+ "ev_draw_begin",
2311
+ "ev_draw_end",
2312
+ "ev_draw_normal",
2313
+ "ev_draw_post",
2314
+ "ev_draw_pre",
2315
+ "ev_end_of_path",
2316
+ "ev_game_end",
2317
+ "ev_game_start",
2318
+ "ev_gesture",
2319
+ "ev_gesture_double_tap",
2320
+ "ev_gesture_drag_end",
2321
+ "ev_gesture_drag_start",
2322
+ "ev_gesture_dragging",
2323
+ "ev_gesture_flick",
2324
+ "ev_gesture_pinch_end",
2325
+ "ev_gesture_pinch_in",
2326
+ "ev_gesture_pinch_out",
2327
+ "ev_gesture_pinch_start",
2328
+ "ev_gesture_rotate_end",
2329
+ "ev_gesture_rotate_start",
2330
+ "ev_gesture_rotating",
2331
+ "ev_gesture_tap",
2332
+ "ev_global_gesture_double_tap",
2333
+ "ev_global_gesture_drag_end",
2334
+ "ev_global_gesture_drag_start",
2335
+ "ev_global_gesture_dragging",
2336
+ "ev_global_gesture_flick",
2337
+ "ev_global_gesture_pinch_end",
2338
+ "ev_global_gesture_pinch_in",
2339
+ "ev_global_gesture_pinch_out",
2340
+ "ev_global_gesture_pinch_start",
2341
+ "ev_global_gesture_rotate_end",
2342
+ "ev_global_gesture_rotate_start",
2343
+ "ev_global_gesture_rotating",
2344
+ "ev_global_gesture_tap",
2345
+ "ev_global_left_button",
2346
+ "ev_global_left_press",
2347
+ "ev_global_left_release",
2348
+ "ev_global_middle_button",
2349
+ "ev_global_middle_press",
2350
+ "ev_global_middle_release",
2351
+ "ev_global_right_button",
2352
+ "ev_global_right_press",
2353
+ "ev_global_right_release",
2354
+ "ev_gui",
2355
+ "ev_gui_begin",
2356
+ "ev_gui_end",
2357
+ "ev_joystick1_button1",
2358
+ "ev_joystick1_button2",
2359
+ "ev_joystick1_button3",
2360
+ "ev_joystick1_button4",
2361
+ "ev_joystick1_button5",
2362
+ "ev_joystick1_button6",
2363
+ "ev_joystick1_button7",
2364
+ "ev_joystick1_button8",
2365
+ "ev_joystick1_down",
2366
+ "ev_joystick1_left",
2367
+ "ev_joystick1_right",
2368
+ "ev_joystick1_up",
2369
+ "ev_joystick2_button1",
2370
+ "ev_joystick2_button2",
2371
+ "ev_joystick2_button3",
2372
+ "ev_joystick2_button4",
2373
+ "ev_joystick2_button5",
2374
+ "ev_joystick2_button6",
2375
+ "ev_joystick2_button7",
2376
+ "ev_joystick2_button8",
2377
+ "ev_joystick2_down",
2378
+ "ev_joystick2_left",
2379
+ "ev_joystick2_right",
2380
+ "ev_joystick2_up",
2381
+ "ev_keyboard",
2382
+ "ev_keypress",
2383
+ "ev_keyrelease",
2384
+ "ev_left_button",
2385
+ "ev_left_press",
2386
+ "ev_left_release",
2387
+ "ev_middle_button",
2388
+ "ev_middle_press",
2389
+ "ev_middle_release",
2390
+ "ev_mouse",
2391
+ "ev_mouse_enter",
2392
+ "ev_mouse_leave",
2393
+ "ev_mouse_wheel_down",
2394
+ "ev_mouse_wheel_up",
2395
+ "ev_no_button",
2396
+ "ev_no_more_health",
2397
+ "ev_no_more_lives",
2398
+ "ev_other",
2399
+ "ev_outside",
2400
+ "ev_outside_view0",
2401
+ "ev_outside_view1",
2402
+ "ev_outside_view2",
2403
+ "ev_outside_view3",
2404
+ "ev_outside_view4",
2405
+ "ev_outside_view5",
2406
+ "ev_outside_view6",
2407
+ "ev_outside_view7",
2408
+ "ev_pre_create",
2409
+ "ev_push_notification",
2410
+ "ev_right_button",
2411
+ "ev_right_press",
2412
+ "ev_right_release",
2413
+ "ev_room_end",
2414
+ "ev_room_start",
2415
+ "ev_social",
2416
+ "ev_step",
2417
+ "ev_step_begin",
2418
+ "ev_step_end",
2419
+ "ev_step_normal",
2420
+ "ev_system_event",
2421
+ "ev_trigger",
2422
+ "ev_user0",
2423
+ "ev_user1",
2424
+ "ev_user10",
2425
+ "ev_user11",
2426
+ "ev_user12",
2427
+ "ev_user13",
2428
+ "ev_user14",
2429
+ "ev_user15",
2430
+ "ev_user2",
2431
+ "ev_user3",
2432
+ "ev_user4",
2433
+ "ev_user5",
2434
+ "ev_user6",
2435
+ "ev_user7",
2436
+ "ev_user8",
2437
+ "ev_user9",
2438
+ "ev_web_async",
2439
+ "ev_web_cloud",
2440
+ "ev_web_iap",
2441
+ "ev_web_image_load",
2442
+ "ev_web_networking",
2443
+ "ev_web_sound_load",
2444
+ "ev_web_steam",
2445
+ "fa_archive",
2446
+ "fa_bottom",
2447
+ "fa_center",
2448
+ "fa_directory",
2449
+ "fa_hidden",
2450
+ "fa_left",
2451
+ "fa_middle",
2452
+ "fa_none",
2453
+ "fa_readonly",
2454
+ "fa_right",
2455
+ "fa_sysfile",
2456
+ "fa_top",
2457
+ "fa_volumeid",
2458
+ "false",
2459
+ "frameSizeX",
2460
+ "frameSizeY",
2461
+ "gamespeed_fps",
2462
+ "gamespeed_microseconds",
2463
+ "global",
2464
+ "glowColor",
2465
+ "glowColour",
2466
+ "glowEnabled",
2467
+ "glowEnabled",
2468
+ "glowEnd",
2469
+ "glowStart",
2470
+ "gp_axis_acceleration_x",
2471
+ "gp_axis_acceleration_y",
2472
+ "gp_axis_acceleration_z",
2473
+ "gp_axis_angular_velocity_x",
2474
+ "gp_axis_angular_velocity_y",
2475
+ "gp_axis_angular_velocity_z",
2476
+ "gp_axis_orientation_w",
2477
+ "gp_axis_orientation_x",
2478
+ "gp_axis_orientation_y",
2479
+ "gp_axis_orientation_z",
2480
+ "gp_axislh",
2481
+ "gp_axislv",
2482
+ "gp_axisrh",
2483
+ "gp_axisrv",
2484
+ "gp_face1",
2485
+ "gp_face2",
2486
+ "gp_face3",
2487
+ "gp_face4",
2488
+ "gp_padd",
2489
+ "gp_padl",
2490
+ "gp_padr",
2491
+ "gp_padu",
2492
+ "gp_select",
2493
+ "gp_shoulderl",
2494
+ "gp_shoulderlb",
2495
+ "gp_shoulderr",
2496
+ "gp_shoulderrb",
2497
+ "gp_start",
2498
+ "gp_stickl",
2499
+ "gp_stickr",
2500
+ "iap_available",
2501
+ "iap_canceled",
2502
+ "iap_ev_consume",
2503
+ "iap_ev_product",
2504
+ "iap_ev_purchase",
2505
+ "iap_ev_restore",
2506
+ "iap_ev_storeload",
2507
+ "iap_failed",
2508
+ "iap_purchased",
2509
+ "iap_refunded",
2510
+ "iap_status_available",
2511
+ "iap_status_loading",
2512
+ "iap_status_processing",
2513
+ "iap_status_restoring",
2514
+ "iap_status_unavailable",
2515
+ "iap_status_uninitialised",
2516
+ "iap_storeload_failed",
2517
+ "iap_storeload_ok",
2518
+ "iap_unavailable",
2519
+ "infinity",
2520
+ "kbv_autocapitalize_characters",
2521
+ "kbv_autocapitalize_none",
2522
+ "kbv_autocapitalize_sentences",
2523
+ "kbv_autocapitalize_words",
2524
+ "kbv_returnkey_continue",
2525
+ "kbv_returnkey_default",
2526
+ "kbv_returnkey_done",
2527
+ "kbv_returnkey_emergency",
2528
+ "kbv_returnkey_go",
2529
+ "kbv_returnkey_google",
2530
+ "kbv_returnkey_join",
2531
+ "kbv_returnkey_next",
2532
+ "kbv_returnkey_route",
2533
+ "kbv_returnkey_search",
2534
+ "kbv_returnkey_send",
2535
+ "kbv_returnkey_yahoo",
2536
+ "kbv_type_ascii",
2537
+ "kbv_type_default",
2538
+ "kbv_type_email",
2539
+ "kbv_type_numbers",
2540
+ "kbv_type_phone",
2541
+ "kbv_type_phone_name",
2542
+ "kbv_type_url",
2543
+ "layerelementtype_background",
2544
+ "layerelementtype_instance",
2545
+ "layerelementtype_oldtilemap",
2546
+ "layerelementtype_particlesystem",
2547
+ "layerelementtype_sequence",
2548
+ "layerelementtype_sprite",
2549
+ "layerelementtype_tile",
2550
+ "layerelementtype_tilemap",
2551
+ "layerelementtype_undefined",
2552
+ "leaderboard_type_number",
2553
+ "leaderboard_type_time_mins_secs",
2554
+ "lighttype_dir",
2555
+ "lighttype_point",
2556
+ "lineSpacing",
2557
+ "m_axisx",
2558
+ "m_axisx_gui",
2559
+ "m_axisy",
2560
+ "m_axisy_gui",
2561
+ "m_scroll_down",
2562
+ "m_scroll_up",
2563
+ "matrix_projection",
2564
+ "matrix_view",
2565
+ "matrix_world",
2566
+ "mb_any",
2567
+ "mb_left",
2568
+ "mb_middle",
2569
+ "mb_none",
2570
+ "mb_right",
2571
+ "mb_side1",
2572
+ "mb_side2",
2573
+ "mip_markedonly",
2574
+ "mip_off",
2575
+ "mip_on",
2576
+ "network_config_avoid_time_wait",
2577
+ "network_config_connect_timeout",
2578
+ "network_config_disable_multicast",
2579
+ "network_config_disable_reliable_udp",
2580
+ "network_config_enable_multicast",
2581
+ "network_config_enable_reliable_udp",
2582
+ "network_config_use_non_blocking_socket",
2583
+ "network_config_websocket_protocol",
2584
+ "network_connect_active",
2585
+ "network_connect_blocking",
2586
+ "network_connect_nonblocking",
2587
+ "network_connect_none",
2588
+ "network_connect_passive",
2589
+ "network_send_binary",
2590
+ "network_send_text",
2591
+ "network_socket_bluetooth",
2592
+ "network_socket_tcp",
2593
+ "network_socket_udp",
2594
+ "network_socket_ws",
2595
+ "network_socket_wss",
2596
+ "network_type_connect",
2597
+ "network_type_data",
2598
+ "network_type_disconnect",
2599
+ "network_type_down",
2600
+ "network_type_non_blocking_connect",
2601
+ "network_type_up",
2602
+ "network_type_up_failed",
2603
+ "nineslice_blank",
2604
+ "nineslice_bottom",
2605
+ "nineslice_center",
2606
+ "nineslice_centre",
2607
+ "nineslice_hide",
2608
+ "nineslice_left",
2609
+ "nineslice_mirror",
2610
+ "nineslice_repeat",
2611
+ "nineslice_right",
2612
+ "nineslice_stretch",
2613
+ "nineslice_top",
2614
+ "noone",
2615
+ "of_challenge_lose",
2616
+ "of_challenge_tie",
2617
+ "of_challenge_win",
2618
+ "os_android",
2619
+ "os_gdk",
2620
+ "os_gxgames",
2621
+ "os_ios",
2622
+ "os_linux",
2623
+ "os_macosx",
2624
+ "os_operagx",
2625
+ "os_permission_denied",
2626
+ "os_permission_denied_dont_request",
2627
+ "os_permission_granted",
2628
+ "os_ps3",
2629
+ "os_ps4",
2630
+ "os_ps5",
2631
+ "os_psvita",
2632
+ "os_switch",
2633
+ "os_tvos",
2634
+ "os_unknown",
2635
+ "os_uwp",
2636
+ "os_win8native",
2637
+ "os_windows",
2638
+ "os_winphone",
2639
+ "os_xboxone",
2640
+ "os_xboxseriesxs",
2641
+ "other",
2642
+ "outlineColor",
2643
+ "outlineColour",
2644
+ "outlineDist",
2645
+ "outlineEnabled",
2646
+ "outlineEnabled",
2647
+ "paragraphSpacing",
2648
+ "path_action_continue",
2649
+ "path_action_restart",
2650
+ "path_action_reverse",
2651
+ "path_action_stop",
2652
+ "phy_debug_render_aabb",
2653
+ "phy_debug_render_collision_pairs",
2654
+ "phy_debug_render_coms",
2655
+ "phy_debug_render_core_shapes",
2656
+ "phy_debug_render_joints",
2657
+ "phy_debug_render_obb",
2658
+ "phy_debug_render_shapes",
2659
+ "phy_joint_anchor_1_x",
2660
+ "phy_joint_anchor_1_y",
2661
+ "phy_joint_anchor_2_x",
2662
+ "phy_joint_anchor_2_y",
2663
+ "phy_joint_angle",
2664
+ "phy_joint_angle_limits",
2665
+ "phy_joint_damping_ratio",
2666
+ "phy_joint_frequency",
2667
+ "phy_joint_length_1",
2668
+ "phy_joint_length_2",
2669
+ "phy_joint_lower_angle_limit",
2670
+ "phy_joint_max_force",
2671
+ "phy_joint_max_length",
2672
+ "phy_joint_max_motor_force",
2673
+ "phy_joint_max_motor_torque",
2674
+ "phy_joint_max_torque",
2675
+ "phy_joint_motor_force",
2676
+ "phy_joint_motor_speed",
2677
+ "phy_joint_motor_torque",
2678
+ "phy_joint_reaction_force_x",
2679
+ "phy_joint_reaction_force_y",
2680
+ "phy_joint_reaction_torque",
2681
+ "phy_joint_speed",
2682
+ "phy_joint_translation",
2683
+ "phy_joint_upper_angle_limit",
2684
+ "phy_particle_data_flag_category",
2685
+ "phy_particle_data_flag_color",
2686
+ "phy_particle_data_flag_colour",
2687
+ "phy_particle_data_flag_position",
2688
+ "phy_particle_data_flag_typeflags",
2689
+ "phy_particle_data_flag_velocity",
2690
+ "phy_particle_flag_colormixing",
2691
+ "phy_particle_flag_colourmixing",
2692
+ "phy_particle_flag_elastic",
2693
+ "phy_particle_flag_powder",
2694
+ "phy_particle_flag_spring",
2695
+ "phy_particle_flag_tensile",
2696
+ "phy_particle_flag_viscous",
2697
+ "phy_particle_flag_wall",
2698
+ "phy_particle_flag_water",
2699
+ "phy_particle_flag_zombie",
2700
+ "phy_particle_group_flag_rigid",
2701
+ "phy_particle_group_flag_solid",
2702
+ "pi",
2703
+ "pointer_invalid",
2704
+ "pointer_null",
2705
+ "pr_linelist",
2706
+ "pr_linestrip",
2707
+ "pr_pointlist",
2708
+ "pr_trianglefan",
2709
+ "pr_trianglelist",
2710
+ "pr_trianglestrip",
2711
+ "ps_distr_gaussian",
2712
+ "ps_distr_invgaussian",
2713
+ "ps_distr_linear",
2714
+ "ps_mode_burst",
2715
+ "ps_mode_stream",
2716
+ "ps_shape_diamond",
2717
+ "ps_shape_ellipse",
2718
+ "ps_shape_line",
2719
+ "ps_shape_rectangle",
2720
+ "pt_shape_circle",
2721
+ "pt_shape_cloud",
2722
+ "pt_shape_disk",
2723
+ "pt_shape_explosion",
2724
+ "pt_shape_flare",
2725
+ "pt_shape_line",
2726
+ "pt_shape_pixel",
2727
+ "pt_shape_ring",
2728
+ "pt_shape_smoke",
2729
+ "pt_shape_snow",
2730
+ "pt_shape_spark",
2731
+ "pt_shape_sphere",
2732
+ "pt_shape_square",
2733
+ "pt_shape_star",
2734
+ "rollback_chat_message",
2735
+ "rollback_connect_error",
2736
+ "rollback_connect_info",
2737
+ "rollback_connected_to_peer",
2738
+ "rollback_connection_rejected",
2739
+ "rollback_disconnected_from_peer",
2740
+ "rollback_end_game",
2741
+ "rollback_game_full",
2742
+ "rollback_game_info",
2743
+ "rollback_game_interrupted",
2744
+ "rollback_game_resumed",
2745
+ "rollback_high_latency",
2746
+ "rollback_player_prefs",
2747
+ "rollback_protocol_rejected",
2748
+ "rollback_synchronized_with_peer",
2749
+ "rollback_synchronizing_with_peer",
2750
+ "self",
2751
+ "seqaudiokey_loop",
2752
+ "seqaudiokey_oneshot",
2753
+ "seqdir_left",
2754
+ "seqdir_right",
2755
+ "seqinterpolation_assign",
2756
+ "seqinterpolation_lerp",
2757
+ "seqplay_loop",
2758
+ "seqplay_oneshot",
2759
+ "seqplay_pingpong",
2760
+ "seqtextkey_bottom",
2761
+ "seqtextkey_center",
2762
+ "seqtextkey_justify",
2763
+ "seqtextkey_left",
2764
+ "seqtextkey_middle",
2765
+ "seqtextkey_right",
2766
+ "seqtextkey_top",
2767
+ "seqtracktype_audio",
2768
+ "seqtracktype_bool",
2769
+ "seqtracktype_clipmask",
2770
+ "seqtracktype_clipmask_mask",
2771
+ "seqtracktype_clipmask_subject",
2772
+ "seqtracktype_color",
2773
+ "seqtracktype_colour",
2774
+ "seqtracktype_empty",
2775
+ "seqtracktype_graphic",
2776
+ "seqtracktype_group",
2777
+ "seqtracktype_instance",
2778
+ "seqtracktype_message",
2779
+ "seqtracktype_moment",
2780
+ "seqtracktype_particlesystem",
2781
+ "seqtracktype_real",
2782
+ "seqtracktype_sequence",
2783
+ "seqtracktype_spriteframes",
2784
+ "seqtracktype_string",
2785
+ "seqtracktype_text",
2786
+ "shadowColor",
2787
+ "shadowColour",
2788
+ "shadowOffsetX",
2789
+ "shadowOffsetY",
2790
+ "shadowSoftness",
2791
+ "sprite_add_ext_error_cancelled",
2792
+ "sprite_add_ext_error_decompressfailed",
2793
+ "sprite_add_ext_error_loadfailed",
2794
+ "sprite_add_ext_error_setupfailed",
2795
+ "sprite_add_ext_error_spritenotfound",
2796
+ "sprite_add_ext_error_unknown",
2797
+ "spritespeed_framespergameframe",
2798
+ "spritespeed_framespersecond",
2799
+ "surface_r16float",
2800
+ "surface_r32float",
2801
+ "surface_r8unorm",
2802
+ "surface_rg8unorm",
2803
+ "surface_rgba16float",
2804
+ "surface_rgba32float",
2805
+ "surface_rgba4unorm",
2806
+ "surface_rgba8unorm",
2807
+ "texturegroup_status_fetched",
2808
+ "texturegroup_status_loaded",
2809
+ "texturegroup_status_loading",
2810
+ "texturegroup_status_unloaded",
2811
+ "tf_anisotropic",
2812
+ "tf_linear",
2813
+ "tf_point",
2814
+ "thickness",
2815
+ "tile_flip",
2816
+ "tile_index_mask",
2817
+ "tile_mirror",
2818
+ "tile_rotate",
2819
+ "time_source_expire_after",
2820
+ "time_source_expire_nearest",
2821
+ "time_source_game",
2822
+ "time_source_global",
2823
+ "time_source_state_active",
2824
+ "time_source_state_initial",
2825
+ "time_source_state_paused",
2826
+ "time_source_state_stopped",
2827
+ "time_source_units_frames",
2828
+ "time_source_units_seconds",
2829
+ "timezone_local",
2830
+ "timezone_utc",
2831
+ "tm_countvsyncs",
2832
+ "tm_sleep",
2833
+ "tm_systemtiming",
2834
+ "true",
2835
+ "ty_real",
2836
+ "ty_string",
2837
+ "undefined",
2838
+ "vertex_type_color",
2839
+ "vertex_type_colour",
2840
+ "vertex_type_float1",
2841
+ "vertex_type_float2",
2842
+ "vertex_type_float3",
2843
+ "vertex_type_float4",
2844
+ "vertex_type_ubyte4",
2845
+ "vertex_usage_binormal",
2846
+ "vertex_usage_blendindices",
2847
+ "vertex_usage_blendweight",
2848
+ "vertex_usage_color",
2849
+ "vertex_usage_colour",
2850
+ "vertex_usage_depth",
2851
+ "vertex_usage_fog",
2852
+ "vertex_usage_normal",
2853
+ "vertex_usage_position",
2854
+ "vertex_usage_psize",
2855
+ "vertex_usage_sample",
2856
+ "vertex_usage_tangent",
2857
+ "vertex_usage_texcoord",
2858
+ "video_format_rgba",
2859
+ "video_format_yuv",
2860
+ "video_status_closed",
2861
+ "video_status_paused",
2862
+ "video_status_playing",
2863
+ "video_status_preparing",
2864
+ "vk_add",
2865
+ "vk_alt",
2866
+ "vk_anykey",
2867
+ "vk_backspace",
2868
+ "vk_control",
2869
+ "vk_decimal",
2870
+ "vk_delete",
2871
+ "vk_divide",
2872
+ "vk_down",
2873
+ "vk_end",
2874
+ "vk_enter",
2875
+ "vk_escape",
2876
+ "vk_f1",
2877
+ "vk_f10",
2878
+ "vk_f11",
2879
+ "vk_f12",
2880
+ "vk_f2",
2881
+ "vk_f3",
2882
+ "vk_f4",
2883
+ "vk_f5",
2884
+ "vk_f6",
2885
+ "vk_f7",
2886
+ "vk_f8",
2887
+ "vk_f9",
2888
+ "vk_home",
2889
+ "vk_insert",
2890
+ "vk_lalt",
2891
+ "vk_lcontrol",
2892
+ "vk_left",
2893
+ "vk_lshift",
2894
+ "vk_multiply",
2895
+ "vk_nokey",
2896
+ "vk_numpad0",
2897
+ "vk_numpad1",
2898
+ "vk_numpad2",
2899
+ "vk_numpad3",
2900
+ "vk_numpad4",
2901
+ "vk_numpad5",
2902
+ "vk_numpad6",
2903
+ "vk_numpad7",
2904
+ "vk_numpad8",
2905
+ "vk_numpad9",
2906
+ "vk_pagedown",
2907
+ "vk_pageup",
2908
+ "vk_pause",
2909
+ "vk_printscreen",
2910
+ "vk_ralt",
2911
+ "vk_rcontrol",
2912
+ "vk_return",
2913
+ "vk_right",
2914
+ "vk_rshift",
2915
+ "vk_shift",
2916
+ "vk_space",
2917
+ "vk_subtract",
2918
+ "vk_tab",
2919
+ "vk_up",
2920
+ "wallpaper_config",
2921
+ "wallpaper_subscription_data",
2922
+ "wrap"
2923
+ ];
2924
+ const LANGUAGE_VARIABLES = [
2925
+ "alarm",
2926
+ "application_surface",
2927
+ "argument",
2928
+ "argument0",
2929
+ "argument1",
2930
+ "argument2",
2931
+ "argument3",
2932
+ "argument4",
2933
+ "argument5",
2934
+ "argument6",
2935
+ "argument7",
2936
+ "argument8",
2937
+ "argument9",
2938
+ "argument10",
2939
+ "argument11",
2940
+ "argument12",
2941
+ "argument13",
2942
+ "argument14",
2943
+ "argument15",
2944
+ "argument_count",
2945
+ "async_load",
2946
+ "background_color",
2947
+ "background_colour",
2948
+ "background_showcolor",
2949
+ "background_showcolour",
2950
+ "bbox_bottom",
2951
+ "bbox_left",
2952
+ "bbox_right",
2953
+ "bbox_top",
2954
+ "browser_height",
2955
+ "browser_width",
2956
+ "colour?ColourTrack",
2957
+ "current_day",
2958
+ "current_hour",
2959
+ "current_minute",
2960
+ "current_month",
2961
+ "current_second",
2962
+ "current_time",
2963
+ "current_weekday",
2964
+ "current_year",
2965
+ "cursor_sprite",
2966
+ "debug_mode",
2967
+ "delta_time",
2968
+ "depth",
2969
+ "direction",
2970
+ "display_aa",
2971
+ "drawn_by_sequence",
2972
+ "event_action",
2973
+ "event_data",
2974
+ "event_number",
2975
+ "event_object",
2976
+ "event_type",
2977
+ "font_texture_page_size",
2978
+ "fps",
2979
+ "fps_real",
2980
+ "friction",
2981
+ "game_display_name",
2982
+ "game_id",
2983
+ "game_project_name",
2984
+ "game_save_id",
2985
+ "gravity",
2986
+ "gravity_direction",
2987
+ "health",
2988
+ "hspeed",
2989
+ "iap_data",
2990
+ "id",
2991
+ "image_alpha",
2992
+ "image_angle",
2993
+ "image_blend",
2994
+ "image_index",
2995
+ "image_number",
2996
+ "image_speed",
2997
+ "image_xscale",
2998
+ "image_yscale",
2999
+ "in_collision_tree",
3000
+ "in_sequence",
3001
+ "instance_count",
3002
+ "instance_id",
3003
+ "keyboard_key",
3004
+ "keyboard_lastchar",
3005
+ "keyboard_lastkey",
3006
+ "keyboard_string",
3007
+ "layer",
3008
+ "lives",
3009
+ "longMessage",
3010
+ "managed",
3011
+ "mask_index",
3012
+ "message",
3013
+ "mouse_button",
3014
+ "mouse_lastbutton",
3015
+ "mouse_x",
3016
+ "mouse_y",
3017
+ "object_index",
3018
+ "os_browser",
3019
+ "os_device",
3020
+ "os_type",
3021
+ "os_version",
3022
+ "path_endaction",
3023
+ "path_index",
3024
+ "path_orientation",
3025
+ "path_position",
3026
+ "path_positionprevious",
3027
+ "path_scale",
3028
+ "path_speed",
3029
+ "persistent",
3030
+ "phy_active",
3031
+ "phy_angular_damping",
3032
+ "phy_angular_velocity",
3033
+ "phy_bullet",
3034
+ "phy_col_normal_x",
3035
+ "phy_col_normal_y",
3036
+ "phy_collision_points",
3037
+ "phy_collision_x",
3038
+ "phy_collision_y",
3039
+ "phy_com_x",
3040
+ "phy_com_y",
3041
+ "phy_dynamic",
3042
+ "phy_fixed_rotation",
3043
+ "phy_inertia",
3044
+ "phy_kinematic",
3045
+ "phy_linear_damping",
3046
+ "phy_linear_velocity_x",
3047
+ "phy_linear_velocity_y",
3048
+ "phy_mass",
3049
+ "phy_position_x",
3050
+ "phy_position_xprevious",
3051
+ "phy_position_y",
3052
+ "phy_position_yprevious",
3053
+ "phy_rotation",
3054
+ "phy_sleeping",
3055
+ "phy_speed",
3056
+ "phy_speed_x",
3057
+ "phy_speed_y",
3058
+ "player_avatar_sprite",
3059
+ "player_avatar_url",
3060
+ "player_id",
3061
+ "player_local",
3062
+ "player_type",
3063
+ "player_user_id",
3064
+ "program_directory",
3065
+ "rollback_api_server",
3066
+ "rollback_confirmed_frame",
3067
+ "rollback_current_frame",
3068
+ "rollback_event_id",
3069
+ "rollback_event_param",
3070
+ "rollback_game_running",
3071
+ "room",
3072
+ "room_first",
3073
+ "room_height",
3074
+ "room_last",
3075
+ "room_persistent",
3076
+ "room_speed",
3077
+ "room_width",
3078
+ "score",
3079
+ "script",
3080
+ "sequence_instance",
3081
+ "solid",
3082
+ "speed",
3083
+ "sprite_height",
3084
+ "sprite_index",
3085
+ "sprite_width",
3086
+ "sprite_xoffset",
3087
+ "sprite_yoffset",
3088
+ "stacktrace",
3089
+ "temp_directory",
3090
+ "timeline_index",
3091
+ "timeline_loop",
3092
+ "timeline_position",
3093
+ "timeline_running",
3094
+ "timeline_speed",
3095
+ "view_camera",
3096
+ "view_current",
3097
+ "view_enabled",
3098
+ "view_hport",
3099
+ "view_surface_id",
3100
+ "view_visible",
3101
+ "view_wport",
3102
+ "view_xport",
3103
+ "view_yport",
3104
+ "visible",
3105
+ "vspeed",
3106
+ "webgl_enabled",
3107
+ "working_directory",
3108
+ "x",
3109
+ "xprevious",
3110
+ "xstart",
3111
+ "y",
3112
+ "yprevious",
3113
+ "ystart"
3114
+ ];
3115
+ return {
3116
+ name: 'GML',
3117
+ case_insensitive: false, // language is case-insensitive
3118
+ keywords: {
3119
+ keyword: KEYWORDS,
3120
+ built_in: BUILT_INS,
3121
+ symbol: SYMBOLS,
3122
+ "variable.language": LANGUAGE_VARIABLES
3123
+ },
3124
+ contains: [
3125
+ hljs.C_LINE_COMMENT_MODE,
3126
+ hljs.C_BLOCK_COMMENT_MODE,
3127
+ hljs.APOS_STRING_MODE,
3128
+ hljs.QUOTE_STRING_MODE,
3129
+ hljs.C_NUMBER_MODE
3130
+ ]
3131
+ };
3132
+ }
3133
+
3134
+ return gml;
3135
+
3136
+ })();
3137
+ ;
3138
+ export default hljsGrammar;