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