├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── index.html ├── index.js ├── package.json ├── showcase.html ├── vote.html └── web ├── .jshintignore ├── .npmrc ├── .travis.yml ├── DragandDrop.js ├── LICENSE ├── appengine ├── .gcloudignore ├── README.txt ├── app.yaml ├── apple-touch-icon.png ├── deploy ├── favicon.ico ├── index.yaml ├── main.py ├── redirect.html ├── requirements.txt ├── robots.txt ├── storage.js └── storage.py ├── blockly_compressed.js ├── blockly_compressed.js.map ├── blocks ├── colour.js ├── lists.js ├── logic.js ├── loops.js ├── math.js ├── procedures.js ├── text.js ├── variables.js └── variables_dynamic.js ├── blocks_compressed.js ├── blocks_compressed.js.map ├── build.py ├── chatblocks.js ├── closure ├── bin │ └── calcdeps.py └── goog │ └── base.js ├── core ├── block.js ├── block_animations.js ├── block_drag_surface.js ├── block_dragger.js ├── block_events.js ├── block_svg.js ├── blockly.js ├── blocks.js ├── bubble.js ├── bubble_dragger.js ├── comment.js ├── components │ ├── component.js │ └── tree │ │ ├── basenode.js │ │ ├── treecontrol.js │ │ └── treenode.js ├── connection.js ├── connection_db.js ├── constants.js ├── contextmenu.js ├── css.js ├── dropdowndiv.js ├── events.js ├── events_abstract.js ├── extensions.js ├── field.js ├── field_angle.js ├── field_checkbox.js ├── field_colour.js ├── field_dropdown.js ├── field_image.js ├── field_label.js ├── field_label_serializable.js ├── field_multilineinput.js ├── field_number.js ├── field_registry.js ├── field_textinput.js ├── field_variable.js ├── flyout_base.js ├── flyout_button.js ├── flyout_dragger.js ├── flyout_horizontal.js ├── flyout_vertical.js ├── generator.js ├── gesture.js ├── grid.js ├── icon.js ├── inject.js ├── input.js ├── insertion_marker_manager.js ├── interfaces │ ├── i_accessibility.js │ ├── i_bounded_element.js │ ├── i_copyable.js │ ├── i_deletable.js │ ├── i_deletearea.js │ ├── i_movable.js │ ├── i_registrable.js │ ├── i_selectable.js │ ├── i_styleable.js │ └── i_toolbox.js ├── keyboard_nav │ ├── action.js │ ├── ast_node.js │ ├── basic_cursor.js │ ├── cursor.js │ ├── flyout_cursor.js │ ├── key_map.js │ ├── marker.js │ ├── navigation.js │ └── tab_navigate_cursor.js ├── marker_manager.js ├── menu.js ├── menuitem.js ├── msg.js ├── mutator.js ├── names.js ├── options.js ├── procedures.js ├── registry.js ├── rendered_connection.js ├── renderers │ ├── common │ │ ├── block_rendering.js │ │ ├── constants.js │ │ ├── debugger.js │ │ ├── drawer.js │ │ ├── i_path_object.js │ │ ├── info.js │ │ ├── marker_svg.js │ │ ├── path_object.js │ │ └── renderer.js │ ├── geras │ │ ├── constants.js │ │ ├── drawer.js │ │ ├── highlight_constants.js │ │ ├── highlighter.js │ │ ├── info.js │ │ ├── measurables │ │ │ └── inputs.js │ │ ├── path_object.js │ │ └── renderer.js │ ├── measurables │ │ ├── base.js │ │ ├── connections.js │ │ ├── inputs.js │ │ ├── row_elements.js │ │ ├── rows.js │ │ └── types.js │ ├── minimalist │ │ ├── constants.js │ │ ├── drawer.js │ │ ├── info.js │ │ └── renderer.js │ ├── thrasos │ │ ├── info.js │ │ └── renderer.js │ └── zelos │ │ ├── constants.js │ │ ├── drawer.js │ │ ├── info.js │ │ ├── marker_svg.js │ │ ├── measurables │ │ ├── inputs.js │ │ ├── row_elements.js │ │ └── rows.js │ │ ├── path_object.js │ │ └── renderer.js ├── requires.js ├── scrollbar.js ├── theme.js ├── theme │ ├── classic.js │ ├── dark.js │ ├── deuteranopia.js │ ├── highcontrast.js │ ├── modern.js │ ├── tritanopia.js │ └── zelos.js ├── theme_manager.js ├── toolbox.js ├── tooltip.js ├── touch.js ├── touch_gesture.js ├── trashcan.js ├── ui_events.js ├── utils.js ├── utils │ ├── aria.js │ ├── colour.js │ ├── coordinate.js │ ├── dom.js │ ├── global.js │ ├── idgenerator.js │ ├── keycodes.js │ ├── math.js │ ├── metrics.js │ ├── object.js │ ├── rect.js │ ├── size.js │ ├── string.js │ ├── style.js │ ├── svg_paths.js │ ├── toolbox.js │ ├── useragent.js │ └── xml.js ├── variable_events.js ├── variable_map.js ├── variable_model.js ├── variables.js ├── variables_dynamic.js ├── warning.js ├── widgetdiv.js ├── workspace.js ├── workspace_audio.js ├── workspace_comment.js ├── workspace_comment_render_svg.js ├── workspace_comment_svg.js ├── workspace_drag_surface_svg.js ├── workspace_dragger.js ├── workspace_events.js ├── workspace_svg.js ├── ws_comment_events.js ├── xml.js └── zoom_controls.js ├── externs ├── block-externs.js ├── generator-externs.js ├── goog-externs.js └── svg-externs.js ├── field-slider ├── index.js └── index.js.map ├── fonts ├── OpenDyslexic-Bold-Italic.otf ├── OpenDyslexic-Bold-Italic.woff ├── OpenDyslexic-Bold.otf ├── OpenDyslexic-Bold.woff ├── OpenDyslexic-Italic.otf ├── OpenDyslexic-Italic.woff ├── OpenDyslexic-Regular.otf └── OpenDyslexic-Regular.woff ├── generators ├── javascript.js └── javascript │ ├── colour.js │ ├── lists.js │ ├── logic.js │ ├── loops.js │ ├── math.js │ ├── procedures.js │ ├── text.js │ ├── variables.js │ └── variables_dynamic.js ├── gulpfile.js ├── i18n ├── common.py ├── create_messages.py ├── dedup_json.py ├── js_to_json.py └── tests.py ├── javascript_compressed.js ├── javascript_compressed.js.map ├── jsconfig.json ├── media ├── 1x1.gif ├── click.mp3 ├── click.ogg ├── click.wav ├── delete.mp3 ├── delete.ogg ├── delete.wav ├── disconnect.mp3 ├── disconnect.ogg ├── disconnect.wav ├── dropdown-arrow.svg ├── handclosed.cur ├── handdelete.cur ├── handopen.cur ├── pilcrow.png ├── quote0.png ├── quote1.png ├── sprites.png └── sprites.svg ├── msg ├── js │ ├── ab.js │ ├── ar.js │ ├── az.js │ ├── ba.js │ ├── bcc.js │ ├── be-tarask.js │ ├── be.js │ ├── bg.js │ ├── bn.js │ ├── br.js │ ├── ca.js │ ├── cs.js │ ├── da.js │ ├── de.js │ ├── diq.js │ ├── dty.js │ ├── ee.js │ ├── el.js │ ├── en-gb.js │ ├── en.js │ ├── eo.js │ ├── es.js │ ├── et.js │ ├── eu.js │ ├── fa.js │ ├── fi.js │ ├── fr.js │ ├── gl.js │ ├── gor.js │ ├── ha.js │ ├── he.js │ ├── hi.js │ ├── hrx.js │ ├── hu.js │ ├── hy.js │ ├── ia.js │ ├── id.js │ ├── ig.js │ ├── is.js │ ├── it.js │ ├── ja.js │ ├── kab.js │ ├── kn.js │ ├── ko.js │ ├── lb.js │ ├── lki.js │ ├── lo.js │ ├── lrc.js │ ├── lt.js │ ├── lv.js │ ├── mk.js │ ├── mnw.js │ ├── ms.js │ ├── nb.js │ ├── nl.js │ ├── oc.js │ ├── pl.js │ ├── pms.js │ ├── pt-br.js │ ├── pt.js │ ├── ro.js │ ├── ru.js │ ├── sc.js │ ├── sd.js │ ├── shn.js │ ├── sk.js │ ├── skr-arab.js │ ├── sl.js │ ├── sq.js │ ├── sr-latn.js │ ├── sr.js │ ├── sv.js │ ├── ta.js │ ├── tcy.js │ ├── te.js │ ├── th.js │ ├── tl.js │ ├── tlh.js │ ├── tr.js │ ├── ug-arab.js │ ├── uk.js │ ├── ur.js │ ├── vi.js │ ├── xmf.js │ ├── yo.js │ ├── zh-hans.js │ └── zh-hant.js ├── json │ ├── ab.json │ ├── ar.json │ ├── az.json │ ├── ba.json │ ├── bcc.json │ ├── be-tarask.json │ ├── be.json │ ├── bg.json │ ├── bn.json │ ├── br.json │ ├── ca.json │ ├── constants.json │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── diq.json │ ├── dty.json │ ├── ee.json │ ├── el.json │ ├── en-gb.json │ ├── en.json │ ├── eo.json │ ├── es.json │ ├── et.json │ ├── eu.json │ ├── fa.json │ ├── fi.json │ ├── fr.json │ ├── gl.json │ ├── gor.json │ ├── ha.json │ ├── he.json │ ├── hi.json │ ├── hrx.json │ ├── hu.json │ ├── hy.json │ ├── ia.json │ ├── id.json │ ├── ig.json │ ├── is.json │ ├── it.json │ ├── ja.json │ ├── kab.json │ ├── kn.json │ ├── ko.json │ ├── lb.json │ ├── lki.json │ ├── lo.json │ ├── lrc.json │ ├── lt.json │ ├── lv.json │ ├── mk.json │ ├── mnw.json │ ├── ms.json │ ├── nb.json │ ├── nl.json │ ├── oc.json │ ├── pl.json │ ├── pms.json │ ├── pt-br.json │ ├── pt.json │ ├── qqq.json │ ├── ro.json │ ├── ru.json │ ├── sc.json │ ├── sd.json │ ├── shn.json │ ├── sk.json │ ├── skr-arab.json │ ├── sl.json │ ├── sq.json │ ├── sr-latn.json │ ├── sr.json │ ├── sv.json │ ├── synonyms.json │ ├── ta.json │ ├── tcy.json │ ├── te.json │ ├── th.json │ ├── tl.json │ ├── tlh.json │ ├── tr.json │ ├── ug-arab.json │ ├── uk.json │ ├── ur.json │ ├── vi.json │ ├── xmf.json │ ├── yo.json │ ├── zh-hans.json │ └── zh-hant.json └── messages.js ├── package-lock.json ├── package.json ├── package ├── README.md ├── blockly.js ├── blocks.js ├── browser │ ├── core.js │ └── index.js ├── dart.js ├── index.js ├── javascript.js ├── lua.js ├── node │ ├── core.js │ └── index.js ├── php.js ├── python.js └── templates │ ├── node.template │ └── umd.template ├── theme_scripts ├── blockStyles_example.json └── create_blockStyles.py ├── vote1 ├── 10_weather.cbs ├── 10_weather_01.png ├── 10_weather_02.png ├── 11_rollinit.cbs ├── 11_rollinit_01.png ├── 12_passwordfinder.cbs ├── 12_passwordfinder_01.png ├── 13_fishing.cbs ├── 13_fishing_01.png ├── 13_fishing_02.png ├── 13_fishing_03.png ├── 13_fishing_04.png ├── 13_fishing_05.png ├── 1_superhero.cbs ├── 1_superhero_01.png ├── 1_superhero_02.png ├── 2_fluffyfacts.cbs ├── 2_fluffyfacts_01.png ├── 3_subhandler.cbs ├── 3_subhandler_01.png ├── 4_speciesspotlight.cbs ├── 4_speciesspotlight_01.png ├── 5_inspireme.cbs ├── 5_inspireme_01.png ├── 6_trackthor.cbs ├── 6_trackthor_01.png ├── 6_trackthor_02.png ├── 6_trackthor_03.png ├── 7_localdroptracker.cbs ├── 7_localdroptracker_01.png ├── 8_gilokk0.cbs ├── 8_gilokk0_01.png ├── 9_smile.cbs └── 9_smile_01.jpg ├── vote2 ├── 1_quest.cbs ├── 1_quest_01.png ├── 2_mathlete.cbs ├── 2_mathlete_01.png ├── 2_mathlete_02.png ├── 3_windwaker.cbs ├── 3_windwaker_01.png ├── 4_cleanbot.cbs ├── 4_cleanbot_01.jpg ├── 4_cleanbot_02.jpg ├── 5_funtranslations.cbs ├── 5_funtranslations_01.png ├── 6_counter.cbs ├── 6_counter_01.png ├── 6_counter_02.png ├── 7_fishing.cbs ├── 7_fishing_01.png ├── 8_eventtts.cbs ├── 8_eventtts_01.png ├── 9_cbwinodds.cbs └── 9_cbwinodds_01.png └── vote3 ├── 1_pokeball.cbs ├── 1_pokeball_01.png ├── 1_pokeball_02.png ├── 2_bean.cbs ├── 2_bean_01.jpg ├── 3_cooldown.cbs ├── 3_cooldown_01.png ├── 3_cooldown_02.png ├── 4_questions.cbs ├── 4_questions_01.png ├── 4_questions_02.jpg ├── 5_sketch.cbs ├── 5_sketch_01.png ├── 6_username.cbs ├── 6_username_01.png ├── 7_wiki.cbs ├── 7_wiki_01.png ├── 8_stretch.cbs ├── 8_stretch_01.png └── 8_stretch_02.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/SECURITY.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/package.json -------------------------------------------------------------------------------- /showcase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/showcase.html -------------------------------------------------------------------------------- /vote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/vote.html -------------------------------------------------------------------------------- /web/.jshintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/.jshintignore -------------------------------------------------------------------------------- /web/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/.npmrc -------------------------------------------------------------------------------- /web/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/.travis.yml -------------------------------------------------------------------------------- /web/DragandDrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/DragandDrop.js -------------------------------------------------------------------------------- /web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/LICENSE -------------------------------------------------------------------------------- /web/appengine/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/appengine/.gcloudignore -------------------------------------------------------------------------------- /web/appengine/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/appengine/README.txt -------------------------------------------------------------------------------- /web/appengine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/appengine/app.yaml -------------------------------------------------------------------------------- /web/appengine/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/appengine/apple-touch-icon.png -------------------------------------------------------------------------------- /web/appengine/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/appengine/deploy -------------------------------------------------------------------------------- /web/appengine/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/appengine/favicon.ico -------------------------------------------------------------------------------- /web/appengine/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/appengine/index.yaml -------------------------------------------------------------------------------- /web/appengine/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/appengine/main.py -------------------------------------------------------------------------------- /web/appengine/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/appengine/redirect.html -------------------------------------------------------------------------------- /web/appengine/requirements.txt: -------------------------------------------------------------------------------- 1 | google-cloud-ndb 2 | -------------------------------------------------------------------------------- /web/appengine/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /storage 3 | -------------------------------------------------------------------------------- /web/appengine/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/appengine/storage.js -------------------------------------------------------------------------------- /web/appengine/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/appengine/storage.py -------------------------------------------------------------------------------- /web/blockly_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/blockly_compressed.js -------------------------------------------------------------------------------- /web/blockly_compressed.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/blockly_compressed.js.map -------------------------------------------------------------------------------- /web/blocks/colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/blocks/colour.js -------------------------------------------------------------------------------- /web/blocks/lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/blocks/lists.js -------------------------------------------------------------------------------- /web/blocks/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/blocks/logic.js -------------------------------------------------------------------------------- /web/blocks/loops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/blocks/loops.js -------------------------------------------------------------------------------- /web/blocks/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/blocks/math.js -------------------------------------------------------------------------------- /web/blocks/procedures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/blocks/procedures.js -------------------------------------------------------------------------------- /web/blocks/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/blocks/text.js -------------------------------------------------------------------------------- /web/blocks/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/blocks/variables.js -------------------------------------------------------------------------------- /web/blocks/variables_dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/blocks/variables_dynamic.js -------------------------------------------------------------------------------- /web/blocks_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/blocks_compressed.js -------------------------------------------------------------------------------- /web/blocks_compressed.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/blocks_compressed.js.map -------------------------------------------------------------------------------- /web/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/build.py -------------------------------------------------------------------------------- /web/chatblocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/chatblocks.js -------------------------------------------------------------------------------- /web/closure/bin/calcdeps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/closure/bin/calcdeps.py -------------------------------------------------------------------------------- /web/closure/goog/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/closure/goog/base.js -------------------------------------------------------------------------------- /web/core/block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/block.js -------------------------------------------------------------------------------- /web/core/block_animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/block_animations.js -------------------------------------------------------------------------------- /web/core/block_drag_surface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/block_drag_surface.js -------------------------------------------------------------------------------- /web/core/block_dragger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/block_dragger.js -------------------------------------------------------------------------------- /web/core/block_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/block_events.js -------------------------------------------------------------------------------- /web/core/block_svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/block_svg.js -------------------------------------------------------------------------------- /web/core/blockly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/blockly.js -------------------------------------------------------------------------------- /web/core/blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/blocks.js -------------------------------------------------------------------------------- /web/core/bubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/bubble.js -------------------------------------------------------------------------------- /web/core/bubble_dragger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/bubble_dragger.js -------------------------------------------------------------------------------- /web/core/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/comment.js -------------------------------------------------------------------------------- /web/core/components/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/components/component.js -------------------------------------------------------------------------------- /web/core/components/tree/basenode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/components/tree/basenode.js -------------------------------------------------------------------------------- /web/core/components/tree/treecontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/components/tree/treecontrol.js -------------------------------------------------------------------------------- /web/core/components/tree/treenode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/components/tree/treenode.js -------------------------------------------------------------------------------- /web/core/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/connection.js -------------------------------------------------------------------------------- /web/core/connection_db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/connection_db.js -------------------------------------------------------------------------------- /web/core/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/constants.js -------------------------------------------------------------------------------- /web/core/contextmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/contextmenu.js -------------------------------------------------------------------------------- /web/core/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/css.js -------------------------------------------------------------------------------- /web/core/dropdowndiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/dropdowndiv.js -------------------------------------------------------------------------------- /web/core/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/events.js -------------------------------------------------------------------------------- /web/core/events_abstract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/events_abstract.js -------------------------------------------------------------------------------- /web/core/extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/extensions.js -------------------------------------------------------------------------------- /web/core/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/field.js -------------------------------------------------------------------------------- /web/core/field_angle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/field_angle.js -------------------------------------------------------------------------------- /web/core/field_checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/field_checkbox.js -------------------------------------------------------------------------------- /web/core/field_colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/field_colour.js -------------------------------------------------------------------------------- /web/core/field_dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/field_dropdown.js -------------------------------------------------------------------------------- /web/core/field_image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/field_image.js -------------------------------------------------------------------------------- /web/core/field_label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/field_label.js -------------------------------------------------------------------------------- /web/core/field_label_serializable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/field_label_serializable.js -------------------------------------------------------------------------------- /web/core/field_multilineinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/field_multilineinput.js -------------------------------------------------------------------------------- /web/core/field_number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/field_number.js -------------------------------------------------------------------------------- /web/core/field_registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/field_registry.js -------------------------------------------------------------------------------- /web/core/field_textinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/field_textinput.js -------------------------------------------------------------------------------- /web/core/field_variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/field_variable.js -------------------------------------------------------------------------------- /web/core/flyout_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/flyout_base.js -------------------------------------------------------------------------------- /web/core/flyout_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/flyout_button.js -------------------------------------------------------------------------------- /web/core/flyout_dragger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/flyout_dragger.js -------------------------------------------------------------------------------- /web/core/flyout_horizontal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/flyout_horizontal.js -------------------------------------------------------------------------------- /web/core/flyout_vertical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/flyout_vertical.js -------------------------------------------------------------------------------- /web/core/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/generator.js -------------------------------------------------------------------------------- /web/core/gesture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/gesture.js -------------------------------------------------------------------------------- /web/core/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/grid.js -------------------------------------------------------------------------------- /web/core/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/icon.js -------------------------------------------------------------------------------- /web/core/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/inject.js -------------------------------------------------------------------------------- /web/core/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/input.js -------------------------------------------------------------------------------- /web/core/insertion_marker_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/insertion_marker_manager.js -------------------------------------------------------------------------------- /web/core/interfaces/i_accessibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/interfaces/i_accessibility.js -------------------------------------------------------------------------------- /web/core/interfaces/i_bounded_element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/interfaces/i_bounded_element.js -------------------------------------------------------------------------------- /web/core/interfaces/i_copyable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/interfaces/i_copyable.js -------------------------------------------------------------------------------- /web/core/interfaces/i_deletable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/interfaces/i_deletable.js -------------------------------------------------------------------------------- /web/core/interfaces/i_deletearea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/interfaces/i_deletearea.js -------------------------------------------------------------------------------- /web/core/interfaces/i_movable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/interfaces/i_movable.js -------------------------------------------------------------------------------- /web/core/interfaces/i_registrable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/interfaces/i_registrable.js -------------------------------------------------------------------------------- /web/core/interfaces/i_selectable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/interfaces/i_selectable.js -------------------------------------------------------------------------------- /web/core/interfaces/i_styleable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/interfaces/i_styleable.js -------------------------------------------------------------------------------- /web/core/interfaces/i_toolbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/interfaces/i_toolbox.js -------------------------------------------------------------------------------- /web/core/keyboard_nav/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/keyboard_nav/action.js -------------------------------------------------------------------------------- /web/core/keyboard_nav/ast_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/keyboard_nav/ast_node.js -------------------------------------------------------------------------------- /web/core/keyboard_nav/basic_cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/keyboard_nav/basic_cursor.js -------------------------------------------------------------------------------- /web/core/keyboard_nav/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/keyboard_nav/cursor.js -------------------------------------------------------------------------------- /web/core/keyboard_nav/flyout_cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/keyboard_nav/flyout_cursor.js -------------------------------------------------------------------------------- /web/core/keyboard_nav/key_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/keyboard_nav/key_map.js -------------------------------------------------------------------------------- /web/core/keyboard_nav/marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/keyboard_nav/marker.js -------------------------------------------------------------------------------- /web/core/keyboard_nav/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/keyboard_nav/navigation.js -------------------------------------------------------------------------------- /web/core/keyboard_nav/tab_navigate_cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/keyboard_nav/tab_navigate_cursor.js -------------------------------------------------------------------------------- /web/core/marker_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/marker_manager.js -------------------------------------------------------------------------------- /web/core/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/menu.js -------------------------------------------------------------------------------- /web/core/menuitem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/menuitem.js -------------------------------------------------------------------------------- /web/core/msg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/msg.js -------------------------------------------------------------------------------- /web/core/mutator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/mutator.js -------------------------------------------------------------------------------- /web/core/names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/names.js -------------------------------------------------------------------------------- /web/core/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/options.js -------------------------------------------------------------------------------- /web/core/procedures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/procedures.js -------------------------------------------------------------------------------- /web/core/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/registry.js -------------------------------------------------------------------------------- /web/core/rendered_connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/rendered_connection.js -------------------------------------------------------------------------------- /web/core/renderers/common/block_rendering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/common/block_rendering.js -------------------------------------------------------------------------------- /web/core/renderers/common/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/common/constants.js -------------------------------------------------------------------------------- /web/core/renderers/common/debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/common/debugger.js -------------------------------------------------------------------------------- /web/core/renderers/common/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/common/drawer.js -------------------------------------------------------------------------------- /web/core/renderers/common/i_path_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/common/i_path_object.js -------------------------------------------------------------------------------- /web/core/renderers/common/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/common/info.js -------------------------------------------------------------------------------- /web/core/renderers/common/marker_svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/common/marker_svg.js -------------------------------------------------------------------------------- /web/core/renderers/common/path_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/common/path_object.js -------------------------------------------------------------------------------- /web/core/renderers/common/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/common/renderer.js -------------------------------------------------------------------------------- /web/core/renderers/geras/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/geras/constants.js -------------------------------------------------------------------------------- /web/core/renderers/geras/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/geras/drawer.js -------------------------------------------------------------------------------- /web/core/renderers/geras/highlight_constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/geras/highlight_constants.js -------------------------------------------------------------------------------- /web/core/renderers/geras/highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/geras/highlighter.js -------------------------------------------------------------------------------- /web/core/renderers/geras/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/geras/info.js -------------------------------------------------------------------------------- /web/core/renderers/geras/measurables/inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/geras/measurables/inputs.js -------------------------------------------------------------------------------- /web/core/renderers/geras/path_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/geras/path_object.js -------------------------------------------------------------------------------- /web/core/renderers/geras/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/geras/renderer.js -------------------------------------------------------------------------------- /web/core/renderers/measurables/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/measurables/base.js -------------------------------------------------------------------------------- /web/core/renderers/measurables/connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/measurables/connections.js -------------------------------------------------------------------------------- /web/core/renderers/measurables/inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/measurables/inputs.js -------------------------------------------------------------------------------- /web/core/renderers/measurables/row_elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/measurables/row_elements.js -------------------------------------------------------------------------------- /web/core/renderers/measurables/rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/measurables/rows.js -------------------------------------------------------------------------------- /web/core/renderers/measurables/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/measurables/types.js -------------------------------------------------------------------------------- /web/core/renderers/minimalist/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/minimalist/constants.js -------------------------------------------------------------------------------- /web/core/renderers/minimalist/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/minimalist/drawer.js -------------------------------------------------------------------------------- /web/core/renderers/minimalist/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/minimalist/info.js -------------------------------------------------------------------------------- /web/core/renderers/minimalist/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/minimalist/renderer.js -------------------------------------------------------------------------------- /web/core/renderers/thrasos/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/thrasos/info.js -------------------------------------------------------------------------------- /web/core/renderers/thrasos/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/thrasos/renderer.js -------------------------------------------------------------------------------- /web/core/renderers/zelos/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/zelos/constants.js -------------------------------------------------------------------------------- /web/core/renderers/zelos/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/zelos/drawer.js -------------------------------------------------------------------------------- /web/core/renderers/zelos/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/zelos/info.js -------------------------------------------------------------------------------- /web/core/renderers/zelos/marker_svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/zelos/marker_svg.js -------------------------------------------------------------------------------- /web/core/renderers/zelos/measurables/inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/zelos/measurables/inputs.js -------------------------------------------------------------------------------- /web/core/renderers/zelos/measurables/row_elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/zelos/measurables/row_elements.js -------------------------------------------------------------------------------- /web/core/renderers/zelos/measurables/rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/zelos/measurables/rows.js -------------------------------------------------------------------------------- /web/core/renderers/zelos/path_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/zelos/path_object.js -------------------------------------------------------------------------------- /web/core/renderers/zelos/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/renderers/zelos/renderer.js -------------------------------------------------------------------------------- /web/core/requires.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/requires.js -------------------------------------------------------------------------------- /web/core/scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/scrollbar.js -------------------------------------------------------------------------------- /web/core/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/theme.js -------------------------------------------------------------------------------- /web/core/theme/classic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/theme/classic.js -------------------------------------------------------------------------------- /web/core/theme/dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/theme/dark.js -------------------------------------------------------------------------------- /web/core/theme/deuteranopia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/theme/deuteranopia.js -------------------------------------------------------------------------------- /web/core/theme/highcontrast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/theme/highcontrast.js -------------------------------------------------------------------------------- /web/core/theme/modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/theme/modern.js -------------------------------------------------------------------------------- /web/core/theme/tritanopia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/theme/tritanopia.js -------------------------------------------------------------------------------- /web/core/theme/zelos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/theme/zelos.js -------------------------------------------------------------------------------- /web/core/theme_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/theme_manager.js -------------------------------------------------------------------------------- /web/core/toolbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/toolbox.js -------------------------------------------------------------------------------- /web/core/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/tooltip.js -------------------------------------------------------------------------------- /web/core/touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/touch.js -------------------------------------------------------------------------------- /web/core/touch_gesture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/touch_gesture.js -------------------------------------------------------------------------------- /web/core/trashcan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/trashcan.js -------------------------------------------------------------------------------- /web/core/ui_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/ui_events.js -------------------------------------------------------------------------------- /web/core/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils.js -------------------------------------------------------------------------------- /web/core/utils/aria.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/aria.js -------------------------------------------------------------------------------- /web/core/utils/colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/colour.js -------------------------------------------------------------------------------- /web/core/utils/coordinate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/coordinate.js -------------------------------------------------------------------------------- /web/core/utils/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/dom.js -------------------------------------------------------------------------------- /web/core/utils/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/global.js -------------------------------------------------------------------------------- /web/core/utils/idgenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/idgenerator.js -------------------------------------------------------------------------------- /web/core/utils/keycodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/keycodes.js -------------------------------------------------------------------------------- /web/core/utils/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/math.js -------------------------------------------------------------------------------- /web/core/utils/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/metrics.js -------------------------------------------------------------------------------- /web/core/utils/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/object.js -------------------------------------------------------------------------------- /web/core/utils/rect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/rect.js -------------------------------------------------------------------------------- /web/core/utils/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/size.js -------------------------------------------------------------------------------- /web/core/utils/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/string.js -------------------------------------------------------------------------------- /web/core/utils/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/style.js -------------------------------------------------------------------------------- /web/core/utils/svg_paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/svg_paths.js -------------------------------------------------------------------------------- /web/core/utils/toolbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/toolbox.js -------------------------------------------------------------------------------- /web/core/utils/useragent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/useragent.js -------------------------------------------------------------------------------- /web/core/utils/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/utils/xml.js -------------------------------------------------------------------------------- /web/core/variable_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/variable_events.js -------------------------------------------------------------------------------- /web/core/variable_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/variable_map.js -------------------------------------------------------------------------------- /web/core/variable_model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/variable_model.js -------------------------------------------------------------------------------- /web/core/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/variables.js -------------------------------------------------------------------------------- /web/core/variables_dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/variables_dynamic.js -------------------------------------------------------------------------------- /web/core/warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/warning.js -------------------------------------------------------------------------------- /web/core/widgetdiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/widgetdiv.js -------------------------------------------------------------------------------- /web/core/workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/workspace.js -------------------------------------------------------------------------------- /web/core/workspace_audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/workspace_audio.js -------------------------------------------------------------------------------- /web/core/workspace_comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/workspace_comment.js -------------------------------------------------------------------------------- /web/core/workspace_comment_render_svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/workspace_comment_render_svg.js -------------------------------------------------------------------------------- /web/core/workspace_comment_svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/workspace_comment_svg.js -------------------------------------------------------------------------------- /web/core/workspace_drag_surface_svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/workspace_drag_surface_svg.js -------------------------------------------------------------------------------- /web/core/workspace_dragger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/workspace_dragger.js -------------------------------------------------------------------------------- /web/core/workspace_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/workspace_events.js -------------------------------------------------------------------------------- /web/core/workspace_svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/workspace_svg.js -------------------------------------------------------------------------------- /web/core/ws_comment_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/ws_comment_events.js -------------------------------------------------------------------------------- /web/core/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/xml.js -------------------------------------------------------------------------------- /web/core/zoom_controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/core/zoom_controls.js -------------------------------------------------------------------------------- /web/externs/block-externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/externs/block-externs.js -------------------------------------------------------------------------------- /web/externs/generator-externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/externs/generator-externs.js -------------------------------------------------------------------------------- /web/externs/goog-externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/externs/goog-externs.js -------------------------------------------------------------------------------- /web/externs/svg-externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/externs/svg-externs.js -------------------------------------------------------------------------------- /web/field-slider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/field-slider/index.js -------------------------------------------------------------------------------- /web/field-slider/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/field-slider/index.js.map -------------------------------------------------------------------------------- /web/fonts/OpenDyslexic-Bold-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/fonts/OpenDyslexic-Bold-Italic.otf -------------------------------------------------------------------------------- /web/fonts/OpenDyslexic-Bold-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/fonts/OpenDyslexic-Bold-Italic.woff -------------------------------------------------------------------------------- /web/fonts/OpenDyslexic-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/fonts/OpenDyslexic-Bold.otf -------------------------------------------------------------------------------- /web/fonts/OpenDyslexic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/fonts/OpenDyslexic-Bold.woff -------------------------------------------------------------------------------- /web/fonts/OpenDyslexic-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/fonts/OpenDyslexic-Italic.otf -------------------------------------------------------------------------------- /web/fonts/OpenDyslexic-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/fonts/OpenDyslexic-Italic.woff -------------------------------------------------------------------------------- /web/fonts/OpenDyslexic-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/fonts/OpenDyslexic-Regular.otf -------------------------------------------------------------------------------- /web/fonts/OpenDyslexic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/fonts/OpenDyslexic-Regular.woff -------------------------------------------------------------------------------- /web/generators/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/generators/javascript.js -------------------------------------------------------------------------------- /web/generators/javascript/colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/generators/javascript/colour.js -------------------------------------------------------------------------------- /web/generators/javascript/lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/generators/javascript/lists.js -------------------------------------------------------------------------------- /web/generators/javascript/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/generators/javascript/logic.js -------------------------------------------------------------------------------- /web/generators/javascript/loops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/generators/javascript/loops.js -------------------------------------------------------------------------------- /web/generators/javascript/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/generators/javascript/math.js -------------------------------------------------------------------------------- /web/generators/javascript/procedures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/generators/javascript/procedures.js -------------------------------------------------------------------------------- /web/generators/javascript/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/generators/javascript/text.js -------------------------------------------------------------------------------- /web/generators/javascript/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/generators/javascript/variables.js -------------------------------------------------------------------------------- /web/generators/javascript/variables_dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/generators/javascript/variables_dynamic.js -------------------------------------------------------------------------------- /web/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/gulpfile.js -------------------------------------------------------------------------------- /web/i18n/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/i18n/common.py -------------------------------------------------------------------------------- /web/i18n/create_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/i18n/create_messages.py -------------------------------------------------------------------------------- /web/i18n/dedup_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/i18n/dedup_json.py -------------------------------------------------------------------------------- /web/i18n/js_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/i18n/js_to_json.py -------------------------------------------------------------------------------- /web/i18n/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/i18n/tests.py -------------------------------------------------------------------------------- /web/javascript_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/javascript_compressed.js -------------------------------------------------------------------------------- /web/javascript_compressed.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/javascript_compressed.js.map -------------------------------------------------------------------------------- /web/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/jsconfig.json -------------------------------------------------------------------------------- /web/media/1x1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/1x1.gif -------------------------------------------------------------------------------- /web/media/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/click.mp3 -------------------------------------------------------------------------------- /web/media/click.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/click.ogg -------------------------------------------------------------------------------- /web/media/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/click.wav -------------------------------------------------------------------------------- /web/media/delete.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/delete.mp3 -------------------------------------------------------------------------------- /web/media/delete.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/delete.ogg -------------------------------------------------------------------------------- /web/media/delete.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/delete.wav -------------------------------------------------------------------------------- /web/media/disconnect.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/disconnect.mp3 -------------------------------------------------------------------------------- /web/media/disconnect.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/disconnect.ogg -------------------------------------------------------------------------------- /web/media/disconnect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/disconnect.wav -------------------------------------------------------------------------------- /web/media/dropdown-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/dropdown-arrow.svg -------------------------------------------------------------------------------- /web/media/handclosed.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/handclosed.cur -------------------------------------------------------------------------------- /web/media/handdelete.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/handdelete.cur -------------------------------------------------------------------------------- /web/media/handopen.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/handopen.cur -------------------------------------------------------------------------------- /web/media/pilcrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/pilcrow.png -------------------------------------------------------------------------------- /web/media/quote0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/quote0.png -------------------------------------------------------------------------------- /web/media/quote1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/quote1.png -------------------------------------------------------------------------------- /web/media/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/sprites.png -------------------------------------------------------------------------------- /web/media/sprites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/media/sprites.svg -------------------------------------------------------------------------------- /web/msg/js/ab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/ab.js -------------------------------------------------------------------------------- /web/msg/js/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/ar.js -------------------------------------------------------------------------------- /web/msg/js/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/az.js -------------------------------------------------------------------------------- /web/msg/js/ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/ba.js -------------------------------------------------------------------------------- /web/msg/js/bcc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/bcc.js -------------------------------------------------------------------------------- /web/msg/js/be-tarask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/be-tarask.js -------------------------------------------------------------------------------- /web/msg/js/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/be.js -------------------------------------------------------------------------------- /web/msg/js/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/bg.js -------------------------------------------------------------------------------- /web/msg/js/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/bn.js -------------------------------------------------------------------------------- /web/msg/js/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/br.js -------------------------------------------------------------------------------- /web/msg/js/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/ca.js -------------------------------------------------------------------------------- /web/msg/js/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/cs.js -------------------------------------------------------------------------------- /web/msg/js/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/da.js -------------------------------------------------------------------------------- /web/msg/js/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/de.js -------------------------------------------------------------------------------- /web/msg/js/diq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/diq.js -------------------------------------------------------------------------------- /web/msg/js/dty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/dty.js -------------------------------------------------------------------------------- /web/msg/js/ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/ee.js -------------------------------------------------------------------------------- /web/msg/js/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/el.js -------------------------------------------------------------------------------- /web/msg/js/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/en-gb.js -------------------------------------------------------------------------------- /web/msg/js/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/en.js -------------------------------------------------------------------------------- /web/msg/js/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/eo.js -------------------------------------------------------------------------------- /web/msg/js/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/es.js -------------------------------------------------------------------------------- /web/msg/js/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/et.js -------------------------------------------------------------------------------- /web/msg/js/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/eu.js -------------------------------------------------------------------------------- /web/msg/js/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/fa.js -------------------------------------------------------------------------------- /web/msg/js/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/fi.js -------------------------------------------------------------------------------- /web/msg/js/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/fr.js -------------------------------------------------------------------------------- /web/msg/js/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/gl.js -------------------------------------------------------------------------------- /web/msg/js/gor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/gor.js -------------------------------------------------------------------------------- /web/msg/js/ha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/ha.js -------------------------------------------------------------------------------- /web/msg/js/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/he.js -------------------------------------------------------------------------------- /web/msg/js/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/hi.js -------------------------------------------------------------------------------- /web/msg/js/hrx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/hrx.js -------------------------------------------------------------------------------- /web/msg/js/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/hu.js -------------------------------------------------------------------------------- /web/msg/js/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/hy.js -------------------------------------------------------------------------------- /web/msg/js/ia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/ia.js -------------------------------------------------------------------------------- /web/msg/js/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/id.js -------------------------------------------------------------------------------- /web/msg/js/ig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/ig.js -------------------------------------------------------------------------------- /web/msg/js/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/is.js -------------------------------------------------------------------------------- /web/msg/js/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/it.js -------------------------------------------------------------------------------- /web/msg/js/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/ja.js -------------------------------------------------------------------------------- /web/msg/js/kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/kab.js -------------------------------------------------------------------------------- /web/msg/js/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/kn.js -------------------------------------------------------------------------------- /web/msg/js/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/ko.js -------------------------------------------------------------------------------- /web/msg/js/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/lb.js -------------------------------------------------------------------------------- /web/msg/js/lki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/lki.js -------------------------------------------------------------------------------- /web/msg/js/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/lo.js -------------------------------------------------------------------------------- /web/msg/js/lrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/lrc.js -------------------------------------------------------------------------------- /web/msg/js/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/lt.js -------------------------------------------------------------------------------- /web/msg/js/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/lv.js -------------------------------------------------------------------------------- /web/msg/js/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/mk.js -------------------------------------------------------------------------------- /web/msg/js/mnw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/mnw.js -------------------------------------------------------------------------------- /web/msg/js/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/ms.js -------------------------------------------------------------------------------- /web/msg/js/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/nb.js -------------------------------------------------------------------------------- /web/msg/js/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/nl.js -------------------------------------------------------------------------------- /web/msg/js/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/oc.js -------------------------------------------------------------------------------- /web/msg/js/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/pl.js -------------------------------------------------------------------------------- /web/msg/js/pms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/pms.js -------------------------------------------------------------------------------- /web/msg/js/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/pt-br.js -------------------------------------------------------------------------------- /web/msg/js/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/pt.js -------------------------------------------------------------------------------- /web/msg/js/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/ro.js -------------------------------------------------------------------------------- /web/msg/js/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/ru.js -------------------------------------------------------------------------------- /web/msg/js/sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/sc.js -------------------------------------------------------------------------------- /web/msg/js/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/sd.js -------------------------------------------------------------------------------- /web/msg/js/shn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/shn.js -------------------------------------------------------------------------------- /web/msg/js/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/sk.js -------------------------------------------------------------------------------- /web/msg/js/skr-arab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/skr-arab.js -------------------------------------------------------------------------------- /web/msg/js/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/sl.js -------------------------------------------------------------------------------- /web/msg/js/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/sq.js -------------------------------------------------------------------------------- /web/msg/js/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/sr-latn.js -------------------------------------------------------------------------------- /web/msg/js/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/sr.js -------------------------------------------------------------------------------- /web/msg/js/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/sv.js -------------------------------------------------------------------------------- /web/msg/js/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/ta.js -------------------------------------------------------------------------------- /web/msg/js/tcy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/tcy.js -------------------------------------------------------------------------------- /web/msg/js/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/te.js -------------------------------------------------------------------------------- /web/msg/js/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/th.js -------------------------------------------------------------------------------- /web/msg/js/tl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/tl.js -------------------------------------------------------------------------------- /web/msg/js/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/tlh.js -------------------------------------------------------------------------------- /web/msg/js/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/tr.js -------------------------------------------------------------------------------- /web/msg/js/ug-arab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/ug-arab.js -------------------------------------------------------------------------------- /web/msg/js/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/uk.js -------------------------------------------------------------------------------- /web/msg/js/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/ur.js -------------------------------------------------------------------------------- /web/msg/js/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/vi.js -------------------------------------------------------------------------------- /web/msg/js/xmf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/xmf.js -------------------------------------------------------------------------------- /web/msg/js/yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/yo.js -------------------------------------------------------------------------------- /web/msg/js/zh-hans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/zh-hans.js -------------------------------------------------------------------------------- /web/msg/js/zh-hant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/js/zh-hant.js -------------------------------------------------------------------------------- /web/msg/json/ab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/ab.json -------------------------------------------------------------------------------- /web/msg/json/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/ar.json -------------------------------------------------------------------------------- /web/msg/json/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/az.json -------------------------------------------------------------------------------- /web/msg/json/ba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/ba.json -------------------------------------------------------------------------------- /web/msg/json/bcc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/bcc.json -------------------------------------------------------------------------------- /web/msg/json/be-tarask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/be-tarask.json -------------------------------------------------------------------------------- /web/msg/json/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/be.json -------------------------------------------------------------------------------- /web/msg/json/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/bg.json -------------------------------------------------------------------------------- /web/msg/json/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/bn.json -------------------------------------------------------------------------------- /web/msg/json/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/br.json -------------------------------------------------------------------------------- /web/msg/json/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/ca.json -------------------------------------------------------------------------------- /web/msg/json/constants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/constants.json -------------------------------------------------------------------------------- /web/msg/json/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/cs.json -------------------------------------------------------------------------------- /web/msg/json/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/da.json -------------------------------------------------------------------------------- /web/msg/json/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/de.json -------------------------------------------------------------------------------- /web/msg/json/diq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/diq.json -------------------------------------------------------------------------------- /web/msg/json/dty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/dty.json -------------------------------------------------------------------------------- /web/msg/json/ee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/ee.json -------------------------------------------------------------------------------- /web/msg/json/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/el.json -------------------------------------------------------------------------------- /web/msg/json/en-gb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/en-gb.json -------------------------------------------------------------------------------- /web/msg/json/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/en.json -------------------------------------------------------------------------------- /web/msg/json/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/eo.json -------------------------------------------------------------------------------- /web/msg/json/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/es.json -------------------------------------------------------------------------------- /web/msg/json/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/et.json -------------------------------------------------------------------------------- /web/msg/json/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/eu.json -------------------------------------------------------------------------------- /web/msg/json/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/fa.json -------------------------------------------------------------------------------- /web/msg/json/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/fi.json -------------------------------------------------------------------------------- /web/msg/json/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/fr.json -------------------------------------------------------------------------------- /web/msg/json/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/gl.json -------------------------------------------------------------------------------- /web/msg/json/gor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/gor.json -------------------------------------------------------------------------------- /web/msg/json/ha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/ha.json -------------------------------------------------------------------------------- /web/msg/json/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/he.json -------------------------------------------------------------------------------- /web/msg/json/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/hi.json -------------------------------------------------------------------------------- /web/msg/json/hrx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/hrx.json -------------------------------------------------------------------------------- /web/msg/json/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/hu.json -------------------------------------------------------------------------------- /web/msg/json/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/hy.json -------------------------------------------------------------------------------- /web/msg/json/ia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/ia.json -------------------------------------------------------------------------------- /web/msg/json/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/id.json -------------------------------------------------------------------------------- /web/msg/json/ig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/ig.json -------------------------------------------------------------------------------- /web/msg/json/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/is.json -------------------------------------------------------------------------------- /web/msg/json/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/it.json -------------------------------------------------------------------------------- /web/msg/json/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/ja.json -------------------------------------------------------------------------------- /web/msg/json/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/kab.json -------------------------------------------------------------------------------- /web/msg/json/kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/kn.json -------------------------------------------------------------------------------- /web/msg/json/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/ko.json -------------------------------------------------------------------------------- /web/msg/json/lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/lb.json -------------------------------------------------------------------------------- /web/msg/json/lki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/lki.json -------------------------------------------------------------------------------- /web/msg/json/lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/lo.json -------------------------------------------------------------------------------- /web/msg/json/lrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/lrc.json -------------------------------------------------------------------------------- /web/msg/json/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/lt.json -------------------------------------------------------------------------------- /web/msg/json/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/lv.json -------------------------------------------------------------------------------- /web/msg/json/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/mk.json -------------------------------------------------------------------------------- /web/msg/json/mnw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/mnw.json -------------------------------------------------------------------------------- /web/msg/json/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/ms.json -------------------------------------------------------------------------------- /web/msg/json/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/nb.json -------------------------------------------------------------------------------- /web/msg/json/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/nl.json -------------------------------------------------------------------------------- /web/msg/json/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/oc.json -------------------------------------------------------------------------------- /web/msg/json/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/pl.json -------------------------------------------------------------------------------- /web/msg/json/pms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/pms.json -------------------------------------------------------------------------------- /web/msg/json/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/pt-br.json -------------------------------------------------------------------------------- /web/msg/json/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/pt.json -------------------------------------------------------------------------------- /web/msg/json/qqq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/qqq.json -------------------------------------------------------------------------------- /web/msg/json/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/ro.json -------------------------------------------------------------------------------- /web/msg/json/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/ru.json -------------------------------------------------------------------------------- /web/msg/json/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/sc.json -------------------------------------------------------------------------------- /web/msg/json/sd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/sd.json -------------------------------------------------------------------------------- /web/msg/json/shn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/shn.json -------------------------------------------------------------------------------- /web/msg/json/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/sk.json -------------------------------------------------------------------------------- /web/msg/json/skr-arab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/skr-arab.json -------------------------------------------------------------------------------- /web/msg/json/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/sl.json -------------------------------------------------------------------------------- /web/msg/json/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/sq.json -------------------------------------------------------------------------------- /web/msg/json/sr-latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/sr-latn.json -------------------------------------------------------------------------------- /web/msg/json/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/sr.json -------------------------------------------------------------------------------- /web/msg/json/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/sv.json -------------------------------------------------------------------------------- /web/msg/json/synonyms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/synonyms.json -------------------------------------------------------------------------------- /web/msg/json/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/ta.json -------------------------------------------------------------------------------- /web/msg/json/tcy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/tcy.json -------------------------------------------------------------------------------- /web/msg/json/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/te.json -------------------------------------------------------------------------------- /web/msg/json/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/th.json -------------------------------------------------------------------------------- /web/msg/json/tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/tl.json -------------------------------------------------------------------------------- /web/msg/json/tlh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/tlh.json -------------------------------------------------------------------------------- /web/msg/json/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/tr.json -------------------------------------------------------------------------------- /web/msg/json/ug-arab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/ug-arab.json -------------------------------------------------------------------------------- /web/msg/json/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/uk.json -------------------------------------------------------------------------------- /web/msg/json/ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/ur.json -------------------------------------------------------------------------------- /web/msg/json/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/vi.json -------------------------------------------------------------------------------- /web/msg/json/xmf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/xmf.json -------------------------------------------------------------------------------- /web/msg/json/yo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/yo.json -------------------------------------------------------------------------------- /web/msg/json/zh-hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/zh-hans.json -------------------------------------------------------------------------------- /web/msg/json/zh-hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/json/zh-hant.json -------------------------------------------------------------------------------- /web/msg/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/msg/messages.js -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package-lock.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package.json -------------------------------------------------------------------------------- /web/package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package/README.md -------------------------------------------------------------------------------- /web/package/blockly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package/blockly.js -------------------------------------------------------------------------------- /web/package/blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package/blocks.js -------------------------------------------------------------------------------- /web/package/browser/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package/browser/core.js -------------------------------------------------------------------------------- /web/package/browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package/browser/index.js -------------------------------------------------------------------------------- /web/package/dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package/dart.js -------------------------------------------------------------------------------- /web/package/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package/index.js -------------------------------------------------------------------------------- /web/package/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package/javascript.js -------------------------------------------------------------------------------- /web/package/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package/lua.js -------------------------------------------------------------------------------- /web/package/node/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package/node/core.js -------------------------------------------------------------------------------- /web/package/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package/node/index.js -------------------------------------------------------------------------------- /web/package/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package/php.js -------------------------------------------------------------------------------- /web/package/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package/python.js -------------------------------------------------------------------------------- /web/package/templates/node.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package/templates/node.template -------------------------------------------------------------------------------- /web/package/templates/umd.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/package/templates/umd.template -------------------------------------------------------------------------------- /web/theme_scripts/blockStyles_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/theme_scripts/blockStyles_example.json -------------------------------------------------------------------------------- /web/theme_scripts/create_blockStyles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/theme_scripts/create_blockStyles.py -------------------------------------------------------------------------------- /web/vote1/10_weather.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/10_weather.cbs -------------------------------------------------------------------------------- /web/vote1/10_weather_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/10_weather_01.png -------------------------------------------------------------------------------- /web/vote1/10_weather_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/10_weather_02.png -------------------------------------------------------------------------------- /web/vote1/11_rollinit.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/11_rollinit.cbs -------------------------------------------------------------------------------- /web/vote1/11_rollinit_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/11_rollinit_01.png -------------------------------------------------------------------------------- /web/vote1/12_passwordfinder.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/12_passwordfinder.cbs -------------------------------------------------------------------------------- /web/vote1/12_passwordfinder_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/12_passwordfinder_01.png -------------------------------------------------------------------------------- /web/vote1/13_fishing.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/13_fishing.cbs -------------------------------------------------------------------------------- /web/vote1/13_fishing_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/13_fishing_01.png -------------------------------------------------------------------------------- /web/vote1/13_fishing_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/13_fishing_02.png -------------------------------------------------------------------------------- /web/vote1/13_fishing_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/13_fishing_03.png -------------------------------------------------------------------------------- /web/vote1/13_fishing_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/13_fishing_04.png -------------------------------------------------------------------------------- /web/vote1/13_fishing_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/13_fishing_05.png -------------------------------------------------------------------------------- /web/vote1/1_superhero.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/1_superhero.cbs -------------------------------------------------------------------------------- /web/vote1/1_superhero_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/1_superhero_01.png -------------------------------------------------------------------------------- /web/vote1/1_superhero_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/1_superhero_02.png -------------------------------------------------------------------------------- /web/vote1/2_fluffyfacts.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/2_fluffyfacts.cbs -------------------------------------------------------------------------------- /web/vote1/2_fluffyfacts_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/2_fluffyfacts_01.png -------------------------------------------------------------------------------- /web/vote1/3_subhandler.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/3_subhandler.cbs -------------------------------------------------------------------------------- /web/vote1/3_subhandler_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/3_subhandler_01.png -------------------------------------------------------------------------------- /web/vote1/4_speciesspotlight.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/4_speciesspotlight.cbs -------------------------------------------------------------------------------- /web/vote1/4_speciesspotlight_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/4_speciesspotlight_01.png -------------------------------------------------------------------------------- /web/vote1/5_inspireme.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/5_inspireme.cbs -------------------------------------------------------------------------------- /web/vote1/5_inspireme_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/5_inspireme_01.png -------------------------------------------------------------------------------- /web/vote1/6_trackthor.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/6_trackthor.cbs -------------------------------------------------------------------------------- /web/vote1/6_trackthor_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/6_trackthor_01.png -------------------------------------------------------------------------------- /web/vote1/6_trackthor_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/6_trackthor_02.png -------------------------------------------------------------------------------- /web/vote1/6_trackthor_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/6_trackthor_03.png -------------------------------------------------------------------------------- /web/vote1/7_localdroptracker.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/7_localdroptracker.cbs -------------------------------------------------------------------------------- /web/vote1/7_localdroptracker_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/7_localdroptracker_01.png -------------------------------------------------------------------------------- /web/vote1/8_gilokk0.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/8_gilokk0.cbs -------------------------------------------------------------------------------- /web/vote1/8_gilokk0_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/8_gilokk0_01.png -------------------------------------------------------------------------------- /web/vote1/9_smile.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/9_smile.cbs -------------------------------------------------------------------------------- /web/vote1/9_smile_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote1/9_smile_01.jpg -------------------------------------------------------------------------------- /web/vote2/1_quest.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/1_quest.cbs -------------------------------------------------------------------------------- /web/vote2/1_quest_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/1_quest_01.png -------------------------------------------------------------------------------- /web/vote2/2_mathlete.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/2_mathlete.cbs -------------------------------------------------------------------------------- /web/vote2/2_mathlete_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/2_mathlete_01.png -------------------------------------------------------------------------------- /web/vote2/2_mathlete_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/2_mathlete_02.png -------------------------------------------------------------------------------- /web/vote2/3_windwaker.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/3_windwaker.cbs -------------------------------------------------------------------------------- /web/vote2/3_windwaker_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/3_windwaker_01.png -------------------------------------------------------------------------------- /web/vote2/4_cleanbot.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/4_cleanbot.cbs -------------------------------------------------------------------------------- /web/vote2/4_cleanbot_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/4_cleanbot_01.jpg -------------------------------------------------------------------------------- /web/vote2/4_cleanbot_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/4_cleanbot_02.jpg -------------------------------------------------------------------------------- /web/vote2/5_funtranslations.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/5_funtranslations.cbs -------------------------------------------------------------------------------- /web/vote2/5_funtranslations_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/5_funtranslations_01.png -------------------------------------------------------------------------------- /web/vote2/6_counter.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/6_counter.cbs -------------------------------------------------------------------------------- /web/vote2/6_counter_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/6_counter_01.png -------------------------------------------------------------------------------- /web/vote2/6_counter_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/6_counter_02.png -------------------------------------------------------------------------------- /web/vote2/7_fishing.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/7_fishing.cbs -------------------------------------------------------------------------------- /web/vote2/7_fishing_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/7_fishing_01.png -------------------------------------------------------------------------------- /web/vote2/8_eventtts.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/8_eventtts.cbs -------------------------------------------------------------------------------- /web/vote2/8_eventtts_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/8_eventtts_01.png -------------------------------------------------------------------------------- /web/vote2/9_cbwinodds.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/9_cbwinodds.cbs -------------------------------------------------------------------------------- /web/vote2/9_cbwinodds_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote2/9_cbwinodds_01.png -------------------------------------------------------------------------------- /web/vote3/1_pokeball.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/1_pokeball.cbs -------------------------------------------------------------------------------- /web/vote3/1_pokeball_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/1_pokeball_01.png -------------------------------------------------------------------------------- /web/vote3/1_pokeball_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/1_pokeball_02.png -------------------------------------------------------------------------------- /web/vote3/2_bean.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/2_bean.cbs -------------------------------------------------------------------------------- /web/vote3/2_bean_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/2_bean_01.jpg -------------------------------------------------------------------------------- /web/vote3/3_cooldown.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/3_cooldown.cbs -------------------------------------------------------------------------------- /web/vote3/3_cooldown_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/3_cooldown_01.png -------------------------------------------------------------------------------- /web/vote3/3_cooldown_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/3_cooldown_02.png -------------------------------------------------------------------------------- /web/vote3/4_questions.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/4_questions.cbs -------------------------------------------------------------------------------- /web/vote3/4_questions_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/4_questions_01.png -------------------------------------------------------------------------------- /web/vote3/4_questions_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/4_questions_02.jpg -------------------------------------------------------------------------------- /web/vote3/5_sketch.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/5_sketch.cbs -------------------------------------------------------------------------------- /web/vote3/5_sketch_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/5_sketch_01.png -------------------------------------------------------------------------------- /web/vote3/6_username.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/6_username.cbs -------------------------------------------------------------------------------- /web/vote3/6_username_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/6_username_01.png -------------------------------------------------------------------------------- /web/vote3/7_wiki.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/7_wiki.cbs -------------------------------------------------------------------------------- /web/vote3/7_wiki_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/7_wiki_01.png -------------------------------------------------------------------------------- /web/vote3/8_stretch.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/8_stretch.cbs -------------------------------------------------------------------------------- /web/vote3/8_stretch_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/8_stretch_01.png -------------------------------------------------------------------------------- /web/vote3/8_stretch_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/ChatBlocks/HEAD/web/vote3/8_stretch_02.png --------------------------------------------------------------------------------